Skip to content

Commit ddc0ab9

Browse files
committed
Support DryRunCluster For LakeVersion.
1 parent fe677ea commit ddc0ab9

File tree

4 files changed

+72
-1
lines changed

4 files changed

+72
-1
lines changed

aliyun-python-sdk-adb/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2023-08-23 Version: 1.1.6
2+
- Support DryRunCluster For LakeVersion.
3+
14
2023-08-03 Version: 1.1.5
25
- Support region id.
36

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

aliyun-python-sdk-adb/aliyunsdkadb/request/v20190315/DescribeComputeResourceRequest.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ def get_ResourceOwnerAccount(self): # String
4141

4242
def set_ResourceOwnerAccount(self, ResourceOwnerAccount): # String
4343
self.add_query_param('ResourceOwnerAccount', ResourceOwnerAccount)
44+
def get_DBClusterId(self): # String
45+
return self.get_query_params().get('DBClusterId')
46+
47+
def set_DBClusterId(self, DBClusterId): # String
48+
self.add_query_param('DBClusterId', DBClusterId)
4449
def get_OwnerAccount(self): # String
4550
return self.get_query_params().get('OwnerAccount')
4651

@@ -61,3 +66,8 @@ def get_ZoneId(self): # String
6166

6267
def set_ZoneId(self, ZoneId): # String
6368
self.add_query_param('ZoneId', ZoneId)
69+
def get_Migrate(self): # Boolean
70+
return self.get_query_params().get('Migrate')
71+
72+
def set_Migrate(self, Migrate): # Boolean
73+
self.add_query_param('Migrate', Migrate)
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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 aliyunsdkadb.endpoint import endpoint_data
22+
23+
class MigrateDBClusterRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'adb', '2019-03-15', 'MigrateDBCluster','ads')
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_ResourceOwnerId(self): # Long
35+
return self.get_query_params().get('ResourceOwnerId')
36+
37+
def set_ResourceOwnerId(self, ResourceOwnerId): # Long
38+
self.add_query_param('ResourceOwnerId', ResourceOwnerId)
39+
def get_ResourceOwnerAccount(self): # String
40+
return self.get_query_params().get('ResourceOwnerAccount')
41+
42+
def set_ResourceOwnerAccount(self, ResourceOwnerAccount): # String
43+
self.add_query_param('ResourceOwnerAccount', ResourceOwnerAccount)
44+
def get_DBClusterId(self): # String
45+
return self.get_query_params().get('DBClusterId')
46+
47+
def set_DBClusterId(self, DBClusterId): # String
48+
self.add_query_param('DBClusterId', DBClusterId)
49+
def get_OwnerAccount(self): # String
50+
return self.get_query_params().get('OwnerAccount')
51+
52+
def set_OwnerAccount(self, OwnerAccount): # String
53+
self.add_query_param('OwnerAccount', OwnerAccount)
54+
def get_OwnerId(self): # Long
55+
return self.get_query_params().get('OwnerId')
56+
57+
def set_OwnerId(self, OwnerId): # Long
58+
self.add_query_param('OwnerId', OwnerId)

0 commit comments

Comments
 (0)