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 Sep 13, 2024
1 parent ce88ed4 commit 69006f2
Show file tree
Hide file tree
Showing 3 changed files with 52 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 @@
2024-09-13 Version: 1.0.25
- Generated 2019-09-01 for `OceanBasePro`.

2024-09-02 Version: 1.0.24
- Generated 2019-09-01 for `OceanBasePro`.

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.24'
__version__ = '1.0.25'
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest
from aliyunsdkoceanbasepro.endpoint import endpoint_data

class RemoveStandbyInstanceRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'OceanBasePro', '2019-09-01', 'RemoveStandbyInstance','oceanbase')
self.set_method('POST')

if hasattr(self, "endpoint_map"):
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_Forced(self): # Boolean
return self.get_body_params().get('Forced')

def set_Forced(self, Forced): # Boolean
self.add_body_params('Forced', Forced)
def get_InstanceId(self): # String
return self.get_body_params().get('InstanceId')

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

def set_TargetInstanceId(self, TargetInstanceId): # String
self.add_body_params('TargetInstanceId', TargetInstanceId)

0 comments on commit 69006f2

Please sign in to comment.