struct_launch_template_data.go 5.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package ecs
  2. //Licensed under the Apache License, Version 2.0 (the "License");
  3. //you may not use this file except in compliance with the License.
  4. //You may obtain a copy of the License at
  5. //
  6. //http://www.apache.org/licenses/LICENSE-2.0
  7. //
  8. //Unless required by applicable law or agreed to in writing, software
  9. //distributed under the License is distributed on an "AS IS" BASIS,
  10. //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. //See the License for the specific language governing permissions and
  12. //limitations under the License.
  13. //
  14. // Code generated by Alibaba Cloud SDK Code Generator.
  15. // Changes may cause incorrect behavior and will be lost if the code is regenerated.
  16. // LaunchTemplateData is a nested struct in ecs response
  17. type LaunchTemplateData struct {
  18. ImageId string `json:"ImageId" xml:"ImageId"`
  19. ImageOwnerAlias string `json:"ImageOwnerAlias" xml:"ImageOwnerAlias"`
  20. InstanceType string `json:"InstanceType" xml:"InstanceType"`
  21. SecurityGroupId string `json:"SecurityGroupId" xml:"SecurityGroupId"`
  22. VpcId string `json:"VpcId" xml:"VpcId"`
  23. VSwitchId string `json:"VSwitchId" xml:"VSwitchId"`
  24. InstanceName string `json:"InstanceName" xml:"InstanceName"`
  25. Description string `json:"Description" xml:"Description"`
  26. InternetMaxBandwidthIn int `json:"InternetMaxBandwidthIn" xml:"InternetMaxBandwidthIn"`
  27. InternetMaxBandwidthOut int `json:"InternetMaxBandwidthOut" xml:"InternetMaxBandwidthOut"`
  28. HostName string `json:"HostName" xml:"HostName"`
  29. ZoneId string `json:"ZoneId" xml:"ZoneId"`
  30. SystemDiskSize int `json:"SystemDisk.Size" xml:"SystemDisk.Size"`
  31. SystemDiskCategory string `json:"SystemDisk.Category" xml:"SystemDisk.Category"`
  32. SystemDiskDiskName string `json:"SystemDisk.DiskName" xml:"SystemDisk.DiskName"`
  33. SystemDiskDescription string `json:"SystemDisk.Description" xml:"SystemDisk.Description"`
  34. SystemDiskIops int `json:"SystemDisk.Iops" xml:"SystemDisk.Iops"`
  35. IoOptimized string `json:"IoOptimized" xml:"IoOptimized"`
  36. InstanceChargeType string `json:"InstanceChargeType" xml:"InstanceChargeType"`
  37. Period int `json:"Period" xml:"Period"`
  38. InternetChargeType string `json:"InternetChargeType" xml:"InternetChargeType"`
  39. EnableVmOsConfig bool `json:"EnableVmOsConfig" xml:"EnableVmOsConfig"`
  40. NetworkType string `json:"NetworkType" xml:"NetworkType"`
  41. UserData string `json:"UserData" xml:"UserData"`
  42. KeyPairName string `json:"KeyPairName" xml:"KeyPairName"`
  43. RamRoleName string `json:"RamRoleName" xml:"RamRoleName"`
  44. AutoReleaseTime string `json:"AutoReleaseTime" xml:"AutoReleaseTime"`
  45. SpotStrategy string `json:"SpotStrategy" xml:"SpotStrategy"`
  46. SpotPriceLimit float64 `json:"SpotPriceLimit" xml:"SpotPriceLimit"`
  47. SpotDuration int `json:"SpotDuration" xml:"SpotDuration"`
  48. ResourceGroupId string `json:"ResourceGroupId" xml:"ResourceGroupId"`
  49. SecurityEnhancementStrategy string `json:"SecurityEnhancementStrategy" xml:"SecurityEnhancementStrategy"`
  50. DataDisks DataDisks `json:"DataDisks" xml:"DataDisks"`
  51. NetworkInterfaces NetworkInterfacesInDescribeLaunchTemplateVersions `json:"NetworkInterfaces" xml:"NetworkInterfaces"`
  52. Tags TagsInDescribeLaunchTemplateVersions `json:"Tags" xml:"Tags"`
  53. }