Skip to content

Commit

Permalink
Generated 2019-09-01 for OceanBasePro.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 28, 2023
1 parent 96ac2b7 commit 37f6cb1
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-python-sdk-oceanbasepro/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2023-12-28 Version: 1.0.14
- Generated 2019-09-01 for `OceanBasePro`.

2023-12-14 Version: 1.0.13
- Generated 2019-09-01 for `OceanBasePro`.

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.13'
__version__ = '1.0.14'
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,16 @@ def get_Series(self): # String

def set_Series(self, Series): # String
self.add_body_params('Series', Series)
def get_PrimaryInstance(self): # String
return self.get_body_params().get('PrimaryInstance')

def set_PrimaryInstance(self, PrimaryInstance): # String
self.add_body_params('PrimaryInstance', PrimaryInstance)
def get_PrimaryRegion(self): # String
return self.get_body_params().get('PrimaryRegion')

def set_PrimaryRegion(self, PrimaryRegion): # String
self.add_body_params('PrimaryRegion', PrimaryRegion)
def get_ChargeType(self): # String
return self.get_body_params().get('ChargeType')

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

def set_SortMetricKey(self, SortMetricKey): # String
self.add_query_param('SortMetricKey', SortMetricKey)
def get_ReplicaType(self): # String
return self.get_body_params().get('ReplicaType')

def set_ReplicaType(self, ReplicaType): # String
self.add_body_params('ReplicaType', ReplicaType)
def get_EndTime(self): # String
return self.get_query_params().get('EndTime')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ def get_DiskSize(self): # Long

def set_DiskSize(self, DiskSize): # Long
self.add_body_params('DiskSize', DiskSize)
def get_DiskType(self): # String
return self.get_body_params().get('DiskType')

def set_DiskType(self, DiskType): # String
self.add_body_params('DiskType', DiskType)
def get_InstanceId(self): # String
return self.get_body_params().get('InstanceId')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,8 @@ def get_InstanceId(self): # String

def set_InstanceId(self, InstanceId): # String
self.add_body_params('InstanceId', InstanceId)
def get_AcceptLanguage(self): # String
return self.get_body_params().get('AcceptLanguage')

def set_AcceptLanguage(self, AcceptLanguage): # String
self.add_body_params('AcceptLanguage', AcceptLanguage)
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ def __init__(self):
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_TenantEndpointDirectId(self): # String
return self.get_body_params().get('TenantEndpointDirectId')

def set_TenantEndpointDirectId(self, TenantEndpointDirectId): # String
self.add_body_params('TenantEndpointDirectId', TenantEndpointDirectId)
def get_UserVSwitchId(self): # String
return self.get_body_params().get('UserVSwitchId')

Expand Down Expand Up @@ -61,3 +66,8 @@ def get_PrimaryZone(self): # String

def set_PrimaryZone(self, PrimaryZone): # String
self.add_body_params('PrimaryZone', PrimaryZone)
def get_UserDirectVSwitchId(self): # String
return self.get_body_params().get('UserDirectVSwitchId')

def set_UserDirectVSwitchId(self, UserDirectVSwitchId): # String
self.add_body_params('UserDirectVSwitchId', UserDirectVSwitchId)

0 comments on commit 37f6cb1

Please sign in to comment.