terraform/vendor/github.com/packer-community/winrmcp/winrmcp/psobject.go

18 lines
269 B
Go

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"`
}