You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/vendor/github.com/packer-community/winrmcp/winrmcp/psobject.go

18 lines
269 B

package winrmcp
type pslist struct {
Objects []psobject `xml:"Object"`
}
type psobject struct {
Properties []psproperty `xml:"Property"`
Value string `xml:",innerxml"`
}
type psproperty struct {
Name string `xml:"Name,attr"`
Value string `xml:",innerxml"`
}