From 69006f2ea5b81f419287709accc73b02155c7906 Mon Sep 17 00:00:00 2001 From: sdk-team Date: Fri, 13 Sep 2024 11:29:22 +0000 Subject: [PATCH] Generated 2019-09-01 for OceanBasePro. --- aliyun-python-sdk-oceanbasepro/ChangeLog.txt | 3 ++ .../aliyunsdkoceanbasepro/__init__.py | 2 +- .../v20190901/RemoveStandbyInstanceRequest.py | 48 +++++++++++++++++++ 3 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/request/v20190901/RemoveStandbyInstanceRequest.py diff --git a/aliyun-python-sdk-oceanbasepro/ChangeLog.txt b/aliyun-python-sdk-oceanbasepro/ChangeLog.txt index 488b0a2ad8..3f8436e643 100644 --- a/aliyun-python-sdk-oceanbasepro/ChangeLog.txt +++ b/aliyun-python-sdk-oceanbasepro/ChangeLog.txt @@ -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`. diff --git a/aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/__init__.py b/aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/__init__.py index 42a5db2b6b..6088ae85a2 100644 --- a/aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/__init__.py +++ b/aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/__init__.py @@ -1 +1 @@ -__version__ = '1.0.24' \ No newline at end of file +__version__ = '1.0.25' \ No newline at end of file diff --git a/aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/request/v20190901/RemoveStandbyInstanceRequest.py b/aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/request/v20190901/RemoveStandbyInstanceRequest.py new file mode 100644 index 0000000000..e5515aee18 --- /dev/null +++ b/aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/request/v20190901/RemoveStandbyInstanceRequest.py @@ -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)