~julian-edwards/gwacl/listhostedservices

« back to all changes in this revision

Viewing changes to xmlobjects.go

  • Committer: Tarmac
  • Author(s): Raphael Badin
  • Date: 2013-07-02 16:01:24 UTC
  • mfrom: (155.1.1 gwacl)
  • Revision ID: tarmac-20130702160124-eu6hrd9ipx6lk9tk
[r=allenap][bug=][author=rvb] Fix semantic conflict between Julian's branch and mine. (NetworkConfiguration is not an object anymore, it's just a ConfigurationSet object with a 'NetworkConfiguration' type.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
496
496
// GetRole response bits
497
497
//
498
498
type GetRole struct {
499
 
    XMLName                           xml.Name               `xml:"PersistentVMRole"`
500
 
    XMLNS                             string                 `xml:"xmlns,attr"`
501
 
    XMLNS_I                           string                 `xml:"xmlns:i,attr"`
502
 
    RoleName                          string                 `xml:"RoleName"`
503
 
    OsVersion                         string                 `xml:"OsVersion"`
504
 
    RoleType                          string                 `xml:"RoleType"` // Always PersistentVMRole
505
 
    ConfigurationSets                 []NetworkConfiguration `xml:"ConfigurationSets>ConfigurationSet"`
506
 
    AvailabilitySetName               string                 `xml:"AvailabilitySetName"`
507
 
    OSVirtualHardDisk                 OSVirtualHardDisk      `xml:"OSVirtualHardDisk"`
508
 
    RoleSize                          string                 `xml:"RoleSize"`
509
 
    DefaultWinRmCertificateThumbprint string                 `xml:"DefaultWinRmCertificateThumbprint"`
 
499
    XMLName                           xml.Name           `xml:"PersistentVMRole"`
 
500
    XMLNS                             string             `xml:"xmlns,attr"`
 
501
    XMLNS_I                           string             `xml:"xmlns:i,attr"`
 
502
    RoleName                          string             `xml:"RoleName"`
 
503
    OsVersion                         string             `xml:"OsVersion"`
 
504
    RoleType                          string             `xml:"RoleType"` // Always PersistentVMRole
 
505
    ConfigurationSets                 []ConfigurationSet `xml:"ConfigurationSets>ConfigurationSet"`
 
506
    AvailabilitySetName               string             `xml:"AvailabilitySetName"`
 
507
    OSVirtualHardDisk                 OSVirtualHardDisk  `xml:"OSVirtualHardDisk"`
 
508
    RoleSize                          string             `xml:"RoleSize"`
 
509
    DefaultWinRmCertificateThumbprint string             `xml:"DefaultWinRmCertificateThumbprint"`
510
510
    // TODO: DataVirtualHardDisks and other info we don't need right now
511
511
}
512
512