Skip to content

Commit

Permalink
ScalingConfiguration supoort ConfidentialComputingMode.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Nov 12, 2024
1 parent 36d9b83 commit 2efb8a7
Show file tree
Hide file tree
Showing 5 changed files with 144 additions and 25 deletions.
3 changes: 3 additions & 0 deletions aliyun-python-sdk-ess/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-11-12 Version: 2.3.26
- ScalingConfiguration supoort ConfidentialComputingMode.

2024-10-22 Version: 2.3.25
- ScalingConfiguration supoort ConfidentialComputingMode.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-python-sdk-ess/aliyunsdkess/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.3.25'
__version__ = '2.3.26'
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,11 @@ def get_ImageName(self): # String

def set_ImageName(self, ImageName): # String
self.add_query_param('ImageName', ImageName)
def get_HttpEndpoint(self): # String
return self.get_query_params().get('HttpEndpoint')

def set_HttpEndpoint(self, HttpEndpoint): # String
self.add_query_param('HttpEndpoint', HttpEndpoint)
def get_DedicatedHostClusterId(self): # String
return self.get_query_params().get('DedicatedHostClusterId')

Expand Down Expand Up @@ -473,6 +478,11 @@ def get_ImageFamily(self): # String

def set_ImageFamily(self, ImageFamily): # String
self.add_query_param('ImageFamily', ImageFamily)
def get_HttpTokens(self): # String
return self.get_query_params().get('HttpTokens')

def set_HttpTokens(self, HttpTokens): # String
self.add_query_param('HttpTokens', HttpTokens)
def get_SystemDiskDescription(self): # String
return self.get_query_params().get('SystemDisk.Description')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,50 +31,75 @@ def __init__(self):
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_MemoryLists(self): # RepeatList
return self.get_query_params().get('MemoryList')
def get_MaximumCpuCoreCount(self): # Integer
return self.get_query_params().get('MaximumCpuCoreCount')

def set_MemoryLists(self, MemoryList): # RepeatList
for depth1 in range(len(MemoryList)):
self.add_query_param('MemoryList.' + str(depth1 + 1), MemoryList[depth1])
def get_Memory(self): # Float
return self.get_query_params().get('Memory')
def set_MaximumCpuCoreCount(self, MaximumCpuCoreCount): # Integer
self.add_query_param('MaximumCpuCoreCount', MaximumCpuCoreCount)
def get_MaximumGpuAmount(self): # Integer
return self.get_query_params().get('MaximumGpuAmount')

def set_Memory(self, Memory): # Float
self.add_query_param('Memory', Memory)
def get_CoresLists(self): # RepeatList
return self.get_query_params().get('CoresList')
def set_MaximumGpuAmount(self, MaximumGpuAmount): # Integer
self.add_query_param('MaximumGpuAmount', MaximumGpuAmount)
def get_MaximumMemorySize(self): # Float
return self.get_query_params().get('MaximumMemorySize')

def set_CoresLists(self, CoresList): # RepeatList
for depth1 in range(len(CoresList)):
self.add_query_param('CoresList.' + str(depth1 + 1), CoresList[depth1])
def set_MaximumMemorySize(self, MaximumMemorySize): # Float
self.add_query_param('MaximumMemorySize', MaximumMemorySize)
def get_MinimumCpuCoreCount(self): # Integer
return self.get_query_params().get('MinimumCpuCoreCount')

def set_MinimumCpuCoreCount(self, MinimumCpuCoreCount): # Integer
self.add_query_param('MinimumCpuCoreCount', MinimumCpuCoreCount)
def get_Cores(self): # Integer
return self.get_query_params().get('Cores')

def set_Cores(self, Cores): # Integer
self.add_query_param('Cores', Cores)
def get_Architectures(self): # RepeatList
return self.get_query_params().get('Architecture')
def get_InstanceTypeFamiliess(self): # RepeatList
return self.get_query_params().get('InstanceTypeFamilies')

def set_Architectures(self, Architecture): # RepeatList
for depth1 in range(len(Architecture)):
self.add_query_param('Architecture.' + str(depth1 + 1), Architecture[depth1])
def set_InstanceTypeFamiliess(self, InstanceTypeFamilies): # RepeatList
for depth1 in range(len(InstanceTypeFamilies)):
self.add_query_param('InstanceTypeFamilies.' + str(depth1 + 1), InstanceTypeFamilies[depth1])
def get_MinimumBaselineCredit(self): # Integer
return self.get_query_params().get('MinimumBaselineCredit')

def set_MinimumBaselineCredit(self, MinimumBaselineCredit): # Integer
self.add_query_param('MinimumBaselineCredit', MinimumBaselineCredit)
def get_CpuArchitecturess(self): # RepeatList
return self.get_query_params().get('CpuArchitectures')

def set_CpuArchitecturess(self, CpuArchitectures): # RepeatList
for depth1 in range(len(CpuArchitectures)):
self.add_query_param('CpuArchitectures.' + str(depth1 + 1), CpuArchitectures[depth1])
def get_InstanceCategoriess(self): # RepeatList
return self.get_query_params().get('InstanceCategories')

def set_InstanceCategoriess(self, InstanceCategories): # RepeatList
for depth1 in range(len(InstanceCategories)):
self.add_query_param('InstanceCategories.' + str(depth1 + 1), InstanceCategories[depth1])
def get_MaxPrice(self): # Float
return self.get_query_params().get('MaxPrice')

def set_MaxPrice(self, MaxPrice): # Float
self.add_query_param('MaxPrice', MaxPrice)
def get_ExcludedInstanceTypes(self): # RepeatList
return self.get_query_params().get('ExcludedInstanceType')
def get_MinimumGpuAmount(self): # Integer
return self.get_query_params().get('MinimumGpuAmount')

def set_ExcludedInstanceTypes(self, ExcludedInstanceType): # RepeatList
for depth1 in range(len(ExcludedInstanceType)):
self.add_query_param('ExcludedInstanceType.' + str(depth1 + 1), ExcludedInstanceType[depth1])
def set_MinimumGpuAmount(self, MinimumGpuAmount): # Integer
self.add_query_param('MinimumGpuAmount', MinimumGpuAmount)
def get_BurstablePerformance(self): # String
return self.get_query_params().get('BurstablePerformance')

def set_BurstablePerformance(self, BurstablePerformance): # String
self.add_query_param('BurstablePerformance', BurstablePerformance)
def get_PhysicalProcessorModelss(self): # RepeatList
return self.get_query_params().get('PhysicalProcessorModels')

def set_PhysicalProcessorModelss(self, PhysicalProcessorModels): # RepeatList
for depth1 in range(len(PhysicalProcessorModels)):
self.add_query_param('PhysicalProcessorModels.' + str(depth1 + 1), PhysicalProcessorModels[depth1])
def get_SpotStrategy(self): # String
return self.get_query_params().get('SpotStrategy')

Expand All @@ -86,11 +111,77 @@ def get_VSwitchIds(self): # RepeatList
def set_VSwitchIds(self, VSwitchId): # RepeatList
for depth1 in range(len(VSwitchId)):
self.add_query_param('VSwitchId.' + str(depth1 + 1), VSwitchId[depth1])
def get_MinimumEniQuantity(self): # Integer
return self.get_query_params().get('MinimumEniQuantity')

def set_MinimumEniQuantity(self, MinimumEniQuantity): # Integer
self.add_query_param('MinimumEniQuantity', MinimumEniQuantity)
def get_MinimumMemorySize(self): # Float
return self.get_query_params().get('MinimumMemorySize')

def set_MinimumMemorySize(self, MinimumMemorySize): # Float
self.add_query_param('MinimumMemorySize', MinimumMemorySize)
def get_InstanceFamilyLevel(self): # String
return self.get_query_params().get('InstanceFamilyLevel')

def set_InstanceFamilyLevel(self, InstanceFamilyLevel): # String
self.add_query_param('InstanceFamilyLevel', InstanceFamilyLevel)
def get_ZoneIds(self): # RepeatList
return self.get_query_params().get('ZoneId')

def set_ZoneIds(self, ZoneId): # RepeatList
for depth1 in range(len(ZoneId)):
self.add_query_param('ZoneId.' + str(depth1 + 1), ZoneId[depth1])
def get_MemoryLists(self): # RepeatList
return self.get_query_params().get('MemoryList')

def set_MemoryLists(self, MemoryList): # RepeatList
for depth1 in range(len(MemoryList)):
self.add_query_param('MemoryList.' + str(depth1 + 1), MemoryList[depth1])
def get_Memory(self): # Float
return self.get_query_params().get('Memory')

def set_Memory(self, Memory): # Float
self.add_query_param('Memory', Memory)
def get_MinimumEniIpv6AddressQuantity(self): # Integer
return self.get_query_params().get('MinimumEniIpv6AddressQuantity')

def set_MinimumEniIpv6AddressQuantity(self, MinimumEniIpv6AddressQuantity): # Integer
self.add_query_param('MinimumEniIpv6AddressQuantity', MinimumEniIpv6AddressQuantity)
def get_CoresLists(self): # RepeatList
return self.get_query_params().get('CoresList')

def set_CoresLists(self, CoresList): # RepeatList
for depth1 in range(len(CoresList)):
self.add_query_param('CoresList.' + str(depth1 + 1), CoresList[depth1])
def get_Architectures(self): # RepeatList
return self.get_query_params().get('Architecture')

def set_Architectures(self, Architecture): # RepeatList
for depth1 in range(len(Architecture)):
self.add_query_param('Architecture.' + str(depth1 + 1), Architecture[depth1])
def get_MinimumInitialCredit(self): # Integer
return self.get_query_params().get('MinimumInitialCredit')

def set_MinimumInitialCredit(self, MinimumInitialCredit): # Integer
self.add_query_param('MinimumInitialCredit', MinimumInitialCredit)
def get_ExcludedInstanceTypes(self): # RepeatList
return self.get_query_params().get('ExcludedInstanceType')

def set_ExcludedInstanceTypes(self, ExcludedInstanceType): # RepeatList
for depth1 in range(len(ExcludedInstanceType)):
self.add_query_param('ExcludedInstanceType.' + str(depth1 + 1), ExcludedInstanceType[depth1])
def get_MinimumEniPrivateIpAddressQuantity(self): # Integer
return self.get_query_params().get('MinimumEniPrivateIpAddressQuantity')

def set_MinimumEniPrivateIpAddressQuantity(self, MinimumEniPrivateIpAddressQuantity): # Integer
self.add_query_param('MinimumEniPrivateIpAddressQuantity', MinimumEniPrivateIpAddressQuantity)
def get_GpuSpecss(self): # RepeatList
return self.get_query_params().get('GpuSpecs')

def set_GpuSpecss(self, GpuSpecs): # RepeatList
for depth1 in range(len(GpuSpecs)):
self.add_query_param('GpuSpecs.' + str(depth1 + 1), GpuSpecs[depth1])
def get_ChannelId(self): # Long
return self.get_query_params().get('ChannelId')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,11 @@ def get_ZoneId(self): # String

def set_ZoneId(self, ZoneId): # String
self.add_query_param('ZoneId', ZoneId)
def get_InternetMaxBandwidthIn(self): # Integer
return self.get_query_params().get('InternetMaxBandwidthIn')

def set_InternetMaxBandwidthIn(self, InternetMaxBandwidthIn): # Integer
self.add_query_param('InternetMaxBandwidthIn', InternetMaxBandwidthIn)
def get_InstancePatternInfos(self): # RepeatList
return self.get_query_params().get('InstancePatternInfo')

Expand Down Expand Up @@ -319,6 +324,11 @@ def get_ImageName(self): # String

def set_ImageName(self, ImageName): # String
self.add_query_param('ImageName', ImageName)
def get_HttpEndpoint(self): # String
return self.get_query_params().get('HttpEndpoint')

def set_HttpEndpoint(self, HttpEndpoint): # String
self.add_query_param('HttpEndpoint', HttpEndpoint)
def get_DedicatedHostClusterId(self): # String
return self.get_query_params().get('DedicatedHostClusterId')

Expand Down Expand Up @@ -458,6 +468,11 @@ def get_ImageFamily(self): # String

def set_ImageFamily(self, ImageFamily): # String
self.add_query_param('ImageFamily', ImageFamily)
def get_HttpTokens(self): # String
return self.get_query_params().get('HttpTokens')

def set_HttpTokens(self, HttpTokens): # String
self.add_query_param('HttpTokens', HttpTokens)
def get_SystemDiskDescription(self): # String
return self.get_query_params().get('SystemDisk.Description')

Expand Down

0 comments on commit 2efb8a7

Please sign in to comment.