Skip to content

Commit

Permalink
ScalingConfiguration support StorageSet.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 4, 2023
1 parent 1508a8f commit 4ca5f4c
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 1 deletion.
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 @@
2023-12-04 Version: 2.3.15
- ScalingConfiguration support StorageSet.

2023-11-14 Version: 2.3.14
- ECIScalingConfiguration add data cache fields.

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.14'
__version__ = '2.3.15'
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ def get_InstanceDescription(self): # String

def set_InstanceDescription(self, InstanceDescription): # String
self.add_query_param('InstanceDescription', InstanceDescription)
def get_StorageSetPartitionNumber(self): # Integer
return self.get_query_params().get('StorageSetPartitionNumber')

def set_StorageSetPartitionNumber(self, StorageSetPartitionNumber): # Integer
self.add_query_param('StorageSetPartitionNumber', StorageSetPartitionNumber)
def get_SystemDiskAutoSnapshotPolicyId(self): # String
return self.get_query_params().get('SystemDisk.AutoSnapshotPolicyId')

Expand Down Expand Up @@ -382,6 +387,11 @@ def get_LoadBalancerWeight(self): # Integer

def set_LoadBalancerWeight(self, LoadBalancerWeight): # Integer
self.add_query_param('LoadBalancerWeight', LoadBalancerWeight)
def get_StorageSetId(self): # String
return self.get_query_params().get('StorageSetId')

def set_StorageSetId(self, StorageSetId): # String
self.add_query_param('StorageSetId', StorageSetId)
def get_SystemDiskSize(self): # Integer
return self.get_query_params().get('SystemDisk.Size')

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

def set_InstanceDescription(self, InstanceDescription): # String
self.add_query_param('InstanceDescription', InstanceDescription)
def get_StorageSetPartitionNumber(self): # Integer
return self.get_query_params().get('StorageSetPartitionNumber')

def set_StorageSetPartitionNumber(self, StorageSetPartitionNumber): # Integer
self.add_query_param('StorageSetPartitionNumber', StorageSetPartitionNumber)
def get_SystemDiskAutoSnapshotPolicyId(self): # String
return self.get_query_params().get('SystemDisk.AutoSnapshotPolicyId')

Expand Down Expand Up @@ -362,6 +367,11 @@ def get_LoadBalancerWeight(self): # Integer

def set_LoadBalancerWeight(self, LoadBalancerWeight): # Integer
self.add_query_param('LoadBalancerWeight', LoadBalancerWeight)
def get_StorageSetId(self): # String
return self.get_query_params().get('StorageSetId')

def set_StorageSetId(self, StorageSetId): # String
self.add_query_param('StorageSetId', StorageSetId)
def get_SystemDiskSize(self): # Integer
return self.get_query_params().get('SystemDisk.Size')

Expand Down

0 comments on commit 4ca5f4c

Please sign in to comment.