RunInstancesRequest.py 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. #
  13. # Unless required by applicable law or agreed to in writing,
  14. # software distributed under the License is distributed on an
  15. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. # KIND, either express or implied. See the License for the
  17. # specific language governing permissions and limitations
  18. # under the License.
  19. from aliyunsdkcore.request import RpcRequest
  20. from aliyunsdkecs.endpoint import endpoint_data
  21. class RunInstancesRequest(RpcRequest):
  22. def __init__(self):
  23. RpcRequest.__init__(self, 'Ecs', '2014-05-26', 'RunInstances','ecs')
  24. self.set_method('POST')
  25. if hasattr(self, "endpoint_map"):
  26. setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
  27. if hasattr(self, "endpoint_regional"):
  28. setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
  29. def get_UniqueSuffix(self):
  30. return self.get_query_params().get('UniqueSuffix')
  31. def set_UniqueSuffix(self,UniqueSuffix):
  32. self.add_query_param('UniqueSuffix',UniqueSuffix)
  33. def get_SecurityEnhancementStrategy(self):
  34. return self.get_query_params().get('SecurityEnhancementStrategy')
  35. def set_SecurityEnhancementStrategy(self,SecurityEnhancementStrategy):
  36. self.add_query_param('SecurityEnhancementStrategy',SecurityEnhancementStrategy)
  37. def get_MinAmount(self):
  38. return self.get_query_params().get('MinAmount')
  39. def set_MinAmount(self,MinAmount):
  40. self.add_query_param('MinAmount',MinAmount)
  41. def get_DeletionProtection(self):
  42. return self.get_query_params().get('DeletionProtection')
  43. def set_DeletionProtection(self,DeletionProtection):
  44. self.add_query_param('DeletionProtection',DeletionProtection)
  45. def get_ResourceGroupId(self):
  46. return self.get_query_params().get('ResourceGroupId')
  47. def set_ResourceGroupId(self,ResourceGroupId):
  48. self.add_query_param('ResourceGroupId',ResourceGroupId)
  49. def get_HostName(self):
  50. return self.get_query_params().get('HostName')
  51. def set_HostName(self,HostName):
  52. self.add_query_param('HostName',HostName)
  53. def get_Password(self):
  54. return self.get_query_params().get('Password')
  55. def set_Password(self,Password):
  56. self.add_query_param('Password',Password)
  57. def get_DeploymentSetGroupNo(self):
  58. return self.get_query_params().get('DeploymentSetGroupNo')
  59. def set_DeploymentSetGroupNo(self,DeploymentSetGroupNo):
  60. self.add_query_param('DeploymentSetGroupNo',DeploymentSetGroupNo)
  61. def get_SystemDiskAutoSnapshotPolicyId(self):
  62. return self.get_query_params().get('SystemDisk.AutoSnapshotPolicyId')
  63. def set_SystemDiskAutoSnapshotPolicyId(self,SystemDiskAutoSnapshotPolicyId):
  64. self.add_query_param('SystemDisk.AutoSnapshotPolicyId',SystemDiskAutoSnapshotPolicyId)
  65. def get_CpuOptionsCore(self):
  66. return self.get_query_params().get('CpuOptions.Core')
  67. def set_CpuOptionsCore(self,CpuOptionsCore):
  68. self.add_query_param('CpuOptions.Core',CpuOptionsCore)
  69. def get_Period(self):
  70. return self.get_query_params().get('Period')
  71. def set_Period(self,Period):
  72. self.add_query_param('Period',Period)
  73. def get_DryRun(self):
  74. return self.get_query_params().get('DryRun')
  75. def set_DryRun(self,DryRun):
  76. self.add_query_param('DryRun',DryRun)
  77. def get_CpuOptionsNuma(self):
  78. return self.get_query_params().get('CpuOptions.Numa')
  79. def set_CpuOptionsNuma(self,CpuOptionsNuma):
  80. self.add_query_param('CpuOptions.Numa',CpuOptionsNuma)
  81. def get_OwnerId(self):
  82. return self.get_query_params().get('OwnerId')
  83. def set_OwnerId(self,OwnerId):
  84. self.add_query_param('OwnerId',OwnerId)
  85. def get_SpotStrategy(self):
  86. return self.get_query_params().get('SpotStrategy')
  87. def set_SpotStrategy(self,SpotStrategy):
  88. self.add_query_param('SpotStrategy',SpotStrategy)
  89. def get_PrivateIpAddress(self):
  90. return self.get_query_params().get('PrivateIpAddress')
  91. def set_PrivateIpAddress(self,PrivateIpAddress):
  92. self.add_query_param('PrivateIpAddress',PrivateIpAddress)
  93. def get_PeriodUnit(self):
  94. return self.get_query_params().get('PeriodUnit')
  95. def set_PeriodUnit(self,PeriodUnit):
  96. self.add_query_param('PeriodUnit',PeriodUnit)
  97. def get_AutoRenew(self):
  98. return self.get_query_params().get('AutoRenew')
  99. def set_AutoRenew(self,AutoRenew):
  100. self.add_query_param('AutoRenew',AutoRenew)
  101. def get_InternetChargeType(self):
  102. return self.get_query_params().get('InternetChargeType')
  103. def set_InternetChargeType(self,InternetChargeType):
  104. self.add_query_param('InternetChargeType',InternetChargeType)
  105. def get_InternetMaxBandwidthIn(self):
  106. return self.get_query_params().get('InternetMaxBandwidthIn')
  107. def set_InternetMaxBandwidthIn(self,InternetMaxBandwidthIn):
  108. self.add_query_param('InternetMaxBandwidthIn',InternetMaxBandwidthIn)
  109. def get_Affinity(self):
  110. return self.get_query_params().get('Affinity')
  111. def set_Affinity(self,Affinity):
  112. self.add_query_param('Affinity',Affinity)
  113. def get_ImageId(self):
  114. return self.get_query_params().get('ImageId')
  115. def set_ImageId(self,ImageId):
  116. self.add_query_param('ImageId',ImageId)
  117. def get_SpotInterruptionBehavior(self):
  118. return self.get_query_params().get('SpotInterruptionBehavior')
  119. def set_SpotInterruptionBehavior(self,SpotInterruptionBehavior):
  120. self.add_query_param('SpotInterruptionBehavior',SpotInterruptionBehavior)
  121. def get_IoOptimized(self):
  122. return self.get_query_params().get('IoOptimized')
  123. def set_IoOptimized(self,IoOptimized):
  124. self.add_query_param('IoOptimized',IoOptimized)
  125. def get_SecurityGroupId(self):
  126. return self.get_query_params().get('SecurityGroupId')
  127. def set_SecurityGroupId(self,SecurityGroupId):
  128. self.add_query_param('SecurityGroupId',SecurityGroupId)
  129. def get_SystemDiskPerformanceLevel(self):
  130. return self.get_query_params().get('SystemDisk.PerformanceLevel')
  131. def set_SystemDiskPerformanceLevel(self,SystemDiskPerformanceLevel):
  132. self.add_query_param('SystemDisk.PerformanceLevel',SystemDiskPerformanceLevel)
  133. def get_PasswordInherit(self):
  134. return self.get_query_params().get('PasswordInherit')
  135. def set_PasswordInherit(self,PasswordInherit):
  136. self.add_query_param('PasswordInherit',PasswordInherit)
  137. def get_InstanceType(self):
  138. return self.get_query_params().get('InstanceType')
  139. def set_InstanceType(self,InstanceType):
  140. self.add_query_param('InstanceType',InstanceType)
  141. def get_Arns(self):
  142. return self.get_query_params().get('Arns')
  143. def set_Arns(self, Arns):
  144. for depth1 in range(len(Arns)):
  145. if Arns[depth1].get('AssumeRoleFor') is not None:
  146. self.add_query_param('Arn.' + str(depth1 + 1) + '.AssumeRoleFor', Arns[depth1].get('AssumeRoleFor'))
  147. if Arns[depth1].get('Rolearn') is not None:
  148. self.add_query_param('Arn.' + str(depth1 + 1) + '.Rolearn', Arns[depth1].get('Rolearn'))
  149. if Arns[depth1].get('RoleType') is not None:
  150. self.add_query_param('Arn.' + str(depth1 + 1) + '.RoleType', Arns[depth1].get('RoleType'))
  151. def get_ResourceOwnerAccount(self):
  152. return self.get_query_params().get('ResourceOwnerAccount')
  153. def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
  154. self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
  155. def get_SystemDiskDiskName(self):
  156. return self.get_query_params().get('SystemDisk.DiskName')
  157. def set_SystemDiskDiskName(self,SystemDiskDiskName):
  158. self.add_query_param('SystemDisk.DiskName',SystemDiskDiskName)
  159. def get_DedicatedHostId(self):
  160. return self.get_query_params().get('DedicatedHostId')
  161. def set_DedicatedHostId(self,DedicatedHostId):
  162. self.add_query_param('DedicatedHostId',DedicatedHostId)
  163. def get_SecurityGroupIdss(self):
  164. return self.get_query_params().get('SecurityGroupIdss')
  165. def set_SecurityGroupIdss(self, SecurityGroupIdss):
  166. for depth1 in range(len(SecurityGroupIdss)):
  167. if SecurityGroupIdss[depth1] is not None:
  168. self.add_query_param('SecurityGroupIds.' + str(depth1 + 1) , SecurityGroupIdss[depth1])
  169. def get_SpotDuration(self):
  170. return self.get_query_params().get('SpotDuration')
  171. def set_SpotDuration(self,SpotDuration):
  172. self.add_query_param('SpotDuration',SpotDuration)
  173. def get_SystemDiskSize(self):
  174. return self.get_query_params().get('SystemDisk.Size')
  175. def set_SystemDiskSize(self,SystemDiskSize):
  176. self.add_query_param('SystemDisk.Size',SystemDiskSize)
  177. def get_ImageFamily(self):
  178. return self.get_query_params().get('ImageFamily')
  179. def set_ImageFamily(self,ImageFamily):
  180. self.add_query_param('ImageFamily',ImageFamily)
  181. def get_LaunchTemplateName(self):
  182. return self.get_query_params().get('LaunchTemplateName')
  183. def set_LaunchTemplateName(self,LaunchTemplateName):
  184. self.add_query_param('LaunchTemplateName',LaunchTemplateName)
  185. def get_ResourceOwnerId(self):
  186. return self.get_query_params().get('ResourceOwnerId')
  187. def set_ResourceOwnerId(self,ResourceOwnerId):
  188. self.add_query_param('ResourceOwnerId',ResourceOwnerId)
  189. def get_HpcClusterId(self):
  190. return self.get_query_params().get('HpcClusterId')
  191. def set_HpcClusterId(self,HpcClusterId):
  192. self.add_query_param('HpcClusterId',HpcClusterId)
  193. def get_HttpPutResponseHopLimit(self):
  194. return self.get_query_params().get('HttpPutResponseHopLimit')
  195. def set_HttpPutResponseHopLimit(self,HttpPutResponseHopLimit):
  196. self.add_query_param('HttpPutResponseHopLimit',HttpPutResponseHopLimit)
  197. def get_KeyPairName(self):
  198. return self.get_query_params().get('KeyPairName')
  199. def set_KeyPairName(self,KeyPairName):
  200. self.add_query_param('KeyPairName',KeyPairName)
  201. def get_SpotPriceLimit(self):
  202. return self.get_query_params().get('SpotPriceLimit')
  203. def set_SpotPriceLimit(self,SpotPriceLimit):
  204. self.add_query_param('SpotPriceLimit',SpotPriceLimit)
  205. def get_StorageSetPartitionNumber(self):
  206. return self.get_query_params().get('StorageSetPartitionNumber')
  207. def set_StorageSetPartitionNumber(self,StorageSetPartitionNumber):
  208. self.add_query_param('StorageSetPartitionNumber',StorageSetPartitionNumber)
  209. def get_Tags(self):
  210. return self.get_query_params().get('Tags')
  211. def set_Tags(self, Tags):
  212. for depth1 in range(len(Tags)):
  213. if Tags[depth1].get('Key') is not None:
  214. self.add_query_param('Tag.' + str(depth1 + 1) + '.Key', Tags[depth1].get('Key'))
  215. if Tags[depth1].get('Value') is not None:
  216. self.add_query_param('Tag.' + str(depth1 + 1) + '.Value', Tags[depth1].get('Value'))
  217. def get_AutoRenewPeriod(self):
  218. return self.get_query_params().get('AutoRenewPeriod')
  219. def set_AutoRenewPeriod(self,AutoRenewPeriod):
  220. self.add_query_param('AutoRenewPeriod',AutoRenewPeriod)
  221. def get_LaunchTemplateId(self):
  222. return self.get_query_params().get('LaunchTemplateId')
  223. def set_LaunchTemplateId(self,LaunchTemplateId):
  224. self.add_query_param('LaunchTemplateId',LaunchTemplateId)
  225. def get_Ipv6AddressCount(self):
  226. return self.get_query_params().get('Ipv6AddressCount')
  227. def set_Ipv6AddressCount(self,Ipv6AddressCount):
  228. self.add_query_param('Ipv6AddressCount',Ipv6AddressCount)
  229. def get_VSwitchId(self):
  230. return self.get_query_params().get('VSwitchId')
  231. def set_VSwitchId(self,VSwitchId):
  232. self.add_query_param('VSwitchId',VSwitchId)
  233. def get_InstanceName(self):
  234. return self.get_query_params().get('InstanceName')
  235. def set_InstanceName(self,InstanceName):
  236. self.add_query_param('InstanceName',InstanceName)
  237. def get_ZoneId(self):
  238. return self.get_query_params().get('ZoneId')
  239. def set_ZoneId(self,ZoneId):
  240. self.add_query_param('ZoneId',ZoneId)
  241. def get_Ipv6Addresss(self):
  242. return self.get_query_params().get('Ipv6Addresss')
  243. def set_Ipv6Addresss(self, Ipv6Addresss):
  244. for depth1 in range(len(Ipv6Addresss)):
  245. if Ipv6Addresss[depth1] is not None:
  246. self.add_query_param('Ipv6Address.' + str(depth1 + 1) , Ipv6Addresss[depth1])
  247. def get_ClientToken(self):
  248. return self.get_query_params().get('ClientToken')
  249. def set_ClientToken(self,ClientToken):
  250. self.add_query_param('ClientToken',ClientToken)
  251. def get_InternetMaxBandwidthOut(self):
  252. return self.get_query_params().get('InternetMaxBandwidthOut')
  253. def set_InternetMaxBandwidthOut(self,InternetMaxBandwidthOut):
  254. self.add_query_param('InternetMaxBandwidthOut',InternetMaxBandwidthOut)
  255. def get_Description(self):
  256. return self.get_query_params().get('Description')
  257. def set_Description(self,Description):
  258. self.add_query_param('Description',Description)
  259. def get_CpuOptionsThreadsPerCore(self):
  260. return self.get_query_params().get('CpuOptions.ThreadsPerCore')
  261. def set_CpuOptionsThreadsPerCore(self,CpuOptionsThreadsPerCore):
  262. self.add_query_param('CpuOptions.ThreadsPerCore',CpuOptionsThreadsPerCore)
  263. def get_SystemDiskCategory(self):
  264. return self.get_query_params().get('SystemDisk.Category')
  265. def set_SystemDiskCategory(self,SystemDiskCategory):
  266. self.add_query_param('SystemDisk.Category',SystemDiskCategory)
  267. def get_UserData(self):
  268. return self.get_query_params().get('UserData')
  269. def set_UserData(self,UserData):
  270. self.add_query_param('UserData',UserData)
  271. def get_HttpEndpoint(self):
  272. return self.get_query_params().get('HttpEndpoint')
  273. def set_HttpEndpoint(self,HttpEndpoint):
  274. self.add_query_param('HttpEndpoint',HttpEndpoint)
  275. def get_InstanceChargeType(self):
  276. return self.get_query_params().get('InstanceChargeType')
  277. def set_InstanceChargeType(self,InstanceChargeType):
  278. self.add_query_param('InstanceChargeType',InstanceChargeType)
  279. def get_NetworkInterfaces(self):
  280. return self.get_query_params().get('NetworkInterfaces')
  281. def set_NetworkInterfaces(self, NetworkInterfaces):
  282. for depth1 in range(len(NetworkInterfaces)):
  283. if NetworkInterfaces[depth1].get('PrimaryIpAddress') is not None:
  284. self.add_query_param('NetworkInterface.' + str(depth1 + 1) + '.PrimaryIpAddress', NetworkInterfaces[depth1].get('PrimaryIpAddress'))
  285. if NetworkInterfaces[depth1].get('VSwitchId') is not None:
  286. self.add_query_param('NetworkInterface.' + str(depth1 + 1) + '.VSwitchId', NetworkInterfaces[depth1].get('VSwitchId'))
  287. if NetworkInterfaces[depth1].get('SecurityGroupId') is not None:
  288. self.add_query_param('NetworkInterface.' + str(depth1 + 1) + '.SecurityGroupId', NetworkInterfaces[depth1].get('SecurityGroupId'))
  289. if NetworkInterfaces[depth1].get('SecurityGroupIds') is not None:
  290. for depth2 in range(len(NetworkInterfaces[depth1].get('SecurityGroupIds'))):
  291. if NetworkInterfaces[depth1].get('SecurityGroupIds')[depth2] is not None:
  292. self.add_query_param('NetworkInterface.' + str(depth1 + 1) + '.SecurityGroupIds.' + str(depth2 + 1) , NetworkInterfaces[depth1].get('SecurityGroupIds')[depth2])
  293. if NetworkInterfaces[depth1].get('NetworkInterfaceName') is not None:
  294. self.add_query_param('NetworkInterface.' + str(depth1 + 1) + '.NetworkInterfaceName', NetworkInterfaces[depth1].get('NetworkInterfaceName'))
  295. if NetworkInterfaces[depth1].get('Description') is not None:
  296. self.add_query_param('NetworkInterface.' + str(depth1 + 1) + '.Description', NetworkInterfaces[depth1].get('Description'))
  297. def get_DeploymentSetId(self):
  298. return self.get_query_params().get('DeploymentSetId')
  299. def set_DeploymentSetId(self,DeploymentSetId):
  300. self.add_query_param('DeploymentSetId',DeploymentSetId)
  301. def get_Amount(self):
  302. return self.get_query_params().get('Amount')
  303. def set_Amount(self,Amount):
  304. self.add_query_param('Amount',Amount)
  305. def get_OwnerAccount(self):
  306. return self.get_query_params().get('OwnerAccount')
  307. def set_OwnerAccount(self,OwnerAccount):
  308. self.add_query_param('OwnerAccount',OwnerAccount)
  309. def get_Tenancy(self):
  310. return self.get_query_params().get('Tenancy')
  311. def set_Tenancy(self,Tenancy):
  312. self.add_query_param('Tenancy',Tenancy)
  313. def get_RamRoleName(self):
  314. return self.get_query_params().get('RamRoleName')
  315. def set_RamRoleName(self,RamRoleName):
  316. self.add_query_param('RamRoleName',RamRoleName)
  317. def get_AutoReleaseTime(self):
  318. return self.get_query_params().get('AutoReleaseTime')
  319. def set_AutoReleaseTime(self,AutoReleaseTime):
  320. self.add_query_param('AutoReleaseTime',AutoReleaseTime)
  321. def get_CreditSpecification(self):
  322. return self.get_query_params().get('CreditSpecification')
  323. def set_CreditSpecification(self,CreditSpecification):
  324. self.add_query_param('CreditSpecification',CreditSpecification)
  325. def get_DataDisks(self):
  326. return self.get_query_params().get('DataDisks')
  327. def set_DataDisks(self, DataDisks):
  328. for depth1 in range(len(DataDisks)):
  329. if DataDisks[depth1].get('Size') is not None:
  330. self.add_query_param('DataDisk.' + str(depth1 + 1) + '.Size', DataDisks[depth1].get('Size'))
  331. if DataDisks[depth1].get('SnapshotId') is not None:
  332. self.add_query_param('DataDisk.' + str(depth1 + 1) + '.SnapshotId', DataDisks[depth1].get('SnapshotId'))
  333. if DataDisks[depth1].get('Category') is not None:
  334. self.add_query_param('DataDisk.' + str(depth1 + 1) + '.Category', DataDisks[depth1].get('Category'))
  335. if DataDisks[depth1].get('Encrypted') is not None:
  336. self.add_query_param('DataDisk.' + str(depth1 + 1) + '.Encrypted', DataDisks[depth1].get('Encrypted'))
  337. if DataDisks[depth1].get('KMSKeyId') is not None:
  338. self.add_query_param('DataDisk.' + str(depth1 + 1) + '.KMSKeyId', DataDisks[depth1].get('KMSKeyId'))
  339. if DataDisks[depth1].get('DiskName') is not None:
  340. self.add_query_param('DataDisk.' + str(depth1 + 1) + '.DiskName', DataDisks[depth1].get('DiskName'))
  341. if DataDisks[depth1].get('Description') is not None:
  342. self.add_query_param('DataDisk.' + str(depth1 + 1) + '.Description', DataDisks[depth1].get('Description'))
  343. if DataDisks[depth1].get('Device') is not None:
  344. self.add_query_param('DataDisk.' + str(depth1 + 1) + '.Device', DataDisks[depth1].get('Device'))
  345. if DataDisks[depth1].get('DeleteWithInstance') is not None:
  346. self.add_query_param('DataDisk.' + str(depth1 + 1) + '.DeleteWithInstance', DataDisks[depth1].get('DeleteWithInstance'))
  347. if DataDisks[depth1].get('PerformanceLevel') is not None:
  348. self.add_query_param('DataDisk.' + str(depth1 + 1) + '.PerformanceLevel', DataDisks[depth1].get('PerformanceLevel'))
  349. if DataDisks[depth1].get('AutoSnapshotPolicyId') is not None:
  350. self.add_query_param('DataDisk.' + str(depth1 + 1) + '.AutoSnapshotPolicyId', DataDisks[depth1].get('AutoSnapshotPolicyId'))
  351. if DataDisks[depth1].get('EncryptAlgorithm') is not None:
  352. self.add_query_param('DataDisk.' + str(depth1 + 1) + '.EncryptAlgorithm', DataDisks[depth1].get('EncryptAlgorithm'))
  353. def get_LaunchTemplateVersion(self):
  354. return self.get_query_params().get('LaunchTemplateVersion')
  355. def set_LaunchTemplateVersion(self,LaunchTemplateVersion):
  356. self.add_query_param('LaunchTemplateVersion',LaunchTemplateVersion)
  357. def get_StorageSetId(self):
  358. return self.get_query_params().get('StorageSetId')
  359. def set_StorageSetId(self,StorageSetId):
  360. self.add_query_param('StorageSetId',StorageSetId)
  361. def get_HttpTokens(self):
  362. return self.get_query_params().get('HttpTokens')
  363. def set_HttpTokens(self,HttpTokens):
  364. self.add_query_param('HttpTokens',HttpTokens)
  365. def get_SystemDiskDescription(self):
  366. return self.get_query_params().get('SystemDisk.Description')
  367. def set_SystemDiskDescription(self,SystemDiskDescription):
  368. self.add_query_param('SystemDisk.Description',SystemDiskDescription)