Skip to content

Commit e8fd673

Browse files
committed
Generated 2019-09-01 for OceanBasePro.
1 parent 54c8682 commit e8fd673

12 files changed

+84
-13
lines changed

aliyun-python-sdk-oceanbasepro/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-03-11 Version: 1.0.26
2+
- Generated 2019-09-01 for `OceanBasePro`.
3+
14
2024-09-13 Version: 1.0.25
25
- Generated 2019-09-01 for `OceanBasePro`.
36

aliyun-python-sdk-oceanbasepro/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Aliyun Python SDK is the official software development kit. It makes things easy
88

99
This module works on Python versions:
1010

11-
2.6.5 and greater
11+
3.7 and greater
1212

1313
**Documentation:**
1414

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.25'
1+
__version__ = '1.0.26'

aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/request/v20190901/CreateTenantUserRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ def get_UserPassword(self): # String
4646

4747
def set_UserPassword(self, UserPassword): # String
4848
self.add_body_params('UserPassword', UserPassword)
49+
def get_GlobalPermissions(self): # String
50+
return self.get_body_params().get('GlobalPermissions')
51+
52+
def set_GlobalPermissions(self, GlobalPermissions): # String
53+
self.add_body_params('GlobalPermissions', GlobalPermissions)
4954
def get_TenantId(self): # String
5055
return self.get_body_params().get('TenantId')
5156

aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/request/v20190901/DescribeInstanceRequest.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@ def get_PageNumber(self): # Integer
3636

3737
def set_PageNumber(self, PageNumber): # Integer
3838
self.add_body_params('PageNumber', PageNumber)
39-
def get_MaxConnectionLimit(self): # String
40-
return self.get_body_params().get('MaxConnectionLimit')
41-
42-
def set_MaxConnectionLimit(self, MaxConnectionLimit): # String
43-
self.add_body_params('MaxConnectionLimit', MaxConnectionLimit)
4439
def get_InstanceId(self): # String
4540
return self.get_body_params().get('InstanceId')
4641

aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/request/v20190901/DescribeInstanceSSLRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,8 @@ def get_InstanceId(self): # String
3636

3737
def set_InstanceId(self, InstanceId): # String
3838
self.add_body_params('InstanceId', InstanceId)
39+
def get_TenantId(self): # String
40+
return self.get_body_params().get('TenantId')
41+
42+
def set_TenantId(self, TenantId): # String
43+
self.add_body_params('TenantId', TenantId)
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkoceanbasepro.endpoint import endpoint_data
22+
23+
class DescribeProxyServiceRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'OceanBasePro', '2019-09-01', 'DescribeProxyService','oceanbase')
27+
self.set_method('POST')
28+
29+
if hasattr(self, "endpoint_map"):
30+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
31+
if hasattr(self, "endpoint_regional"):
32+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
33+
34+
def get_InstanceId(self): # String
35+
return self.get_body_params().get('InstanceId')
36+
37+
def set_InstanceId(self, InstanceId): # String
38+
self.add_body_params('InstanceId', InstanceId)

aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/request/v20190901/DescribeSampleSqlRawTextsRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ def get_StartTime(self): # String
4242

4343
def set_StartTime(self, StartTime): # String
4444
self.add_body_params('StartTime', StartTime)
45+
def get_DynamicSql(self): # Boolean
46+
return self.get_body_params().get('DynamicSql')
47+
48+
def set_DynamicSql(self, DynamicSql): # Boolean
49+
self.add_body_params('DynamicSql', DynamicSql)
4550
def get_TenantId(self): # String
4651
return self.get_body_params().get('TenantId')
4752

aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/request/v20190901/DescribeTenantUserRolesRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ def __init__(self):
3131
if hasattr(self, "endpoint_regional"):
3232
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
3333

34+
def get_InstanceId(self): # String
35+
return self.get_body_params().get('InstanceId')
36+
37+
def set_InstanceId(self, InstanceId): # String
38+
self.add_body_params('InstanceId', InstanceId)
3439
def get_TenantId(self): # String
3540
return self.get_body_params().get('TenantId')
3641

aliyun-python-sdk-oceanbasepro/aliyunsdkoceanbasepro/request/v20190901/ModifyInstanceSSLRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,8 @@ def get_EnableSSL(self): # String
4141

4242
def set_EnableSSL(self, EnableSSL): # String
4343
self.add_body_params('EnableSSL', EnableSSL)
44+
def get_TenantId(self): # String
45+
return self.get_body_params().get('TenantId')
46+
47+
def set_TenantId(self, TenantId): # String
48+
self.add_body_params('TenantId', TenantId)

0 commit comments

Comments
 (0)