Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit856a38f

Browse files
committed
Describe describeAvailableResource.
1 parent5290769 commit856a38f

File tree

48 files changed

+571
-227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+571
-227
lines changed

‎aliyun-python-sdk-hbase/ChangeLog.txt‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2020-04-27 Version: 2.4.1
2+
- Describe describeAvailableResource.
3+
14
2020-02-24 Version: 2.3.0
25
- ImmediateDelete.
36
- DescribeInstance CreateTimeUTC ExpireTimeUTC.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__='2.3.0'
1+
__version__='2.4.1'

‎aliyun-python-sdk-hbase/aliyunsdkhbase/request/v20190101/AddUserHdfsInfoRequest.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
classAddUserHdfsInfoRequest(RpcRequest):
2424

2525
def__init__(self):
26-
RpcRequest.__init__(self,'HBase','2019-01-01','AddUserHdfsInfo')
26+
RpcRequest.__init__(self,'HBase','2019-01-01','AddUserHdfsInfo','hbase')
2727
ifhasattr(self,"endpoint_map"):
2828
setattr(self,"endpoint_map",endpoint_data.getEndpointMap())
2929
ifhasattr(self,"endpoint_regional"):

‎aliyun-python-sdk-hbase/aliyunsdkhbase/request/v20190101/ConvertInstanceRequest.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
classConvertInstanceRequest(RpcRequest):
2424

2525
def__init__(self):
26-
RpcRequest.__init__(self,'HBase','2019-01-01','ConvertInstance')
26+
RpcRequest.__init__(self,'HBase','2019-01-01','ConvertInstance','hbase')
2727
ifhasattr(self,"endpoint_map"):
2828
setattr(self,"endpoint_map",endpoint_data.getEndpointMap())
2929
ifhasattr(self,"endpoint_regional"):
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+
fromaliyunsdkcore.requestimportRpcRequest
21+
fromaliyunsdkhbase.endpointimportendpoint_data
22+
23+
classCreateBackupPlanRequest(RpcRequest):
24+
25+
def__init__(self):
26+
RpcRequest.__init__(self,'HBase','2019-01-01','CreateBackupPlan','hbase')
27+
ifhasattr(self,"endpoint_map"):
28+
setattr(self,"endpoint_map",endpoint_data.getEndpointMap())
29+
ifhasattr(self,"endpoint_regional"):
30+
setattr(self,"endpoint_regional",endpoint_data.getEndpointRegional())
31+
32+
33+
defget_ClusterId(self):
34+
returnself.get_query_params().get('ClusterId')
35+
36+
defset_ClusterId(self,ClusterId):
37+
self.add_query_param('ClusterId',ClusterId)

‎aliyun-python-sdk-hbase/aliyunsdkhbase/request/v20190101/CreateClusterRequest.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
classCreateClusterRequest(RpcRequest):
2424

2525
def__init__(self):
26-
RpcRequest.__init__(self,'HBase','2019-01-01','CreateCluster')
26+
RpcRequest.__init__(self,'HBase','2019-01-01','CreateCluster','hbase')
2727
ifhasattr(self,"endpoint_map"):
2828
setattr(self,"endpoint_map",endpoint_data.getEndpointMap())
2929
ifhasattr(self,"endpoint_regional"):

‎aliyun-python-sdk-hbase/aliyunsdkhbase/request/v20190101/CreateHbaseHaSlbRequest.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
classCreateHbaseHaSlbRequest(RpcRequest):
2424

2525
def__init__(self):
26-
RpcRequest.__init__(self,'HBase','2019-01-01','CreateHbaseHaSlb')
26+
RpcRequest.__init__(self,'HBase','2019-01-01','CreateHbaseHaSlb','hbase')
2727
ifhasattr(self,"endpoint_map"):
2828
setattr(self,"endpoint_map",endpoint_data.getEndpointMap())
2929
ifhasattr(self,"endpoint_regional"):

‎aliyun-python-sdk-hbase/aliyunsdkhbase/request/v20190101/CreateInstanceRequest.py‎

Lines changed: 0 additions & 193 deletions
This file was deleted.
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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+
fromaliyunsdkcore.requestimportRpcRequest
21+
fromaliyunsdkhbase.endpointimportendpoint_data
22+
23+
classCreateRestorePlanRequest(RpcRequest):
24+
25+
def__init__(self):
26+
RpcRequest.__init__(self,'HBase','2019-01-01','CreateRestorePlan','hbase')
27+
ifhasattr(self,"endpoint_map"):
28+
setattr(self,"endpoint_map",endpoint_data.getEndpointMap())
29+
ifhasattr(self,"endpoint_regional"):
30+
setattr(self,"endpoint_regional",endpoint_data.getEndpointRegional())
31+
32+
33+
defget_RestoreToDate(self):
34+
returnself.get_query_params().get('RestoreToDate')
35+
36+
defset_RestoreToDate(self,RestoreToDate):
37+
self.add_query_param('RestoreToDate',RestoreToDate)
38+
39+
defget_Tables(self):
40+
returnself.get_query_params().get('Tables')
41+
42+
defset_Tables(self,Tables):
43+
self.add_query_param('Tables',Tables)
44+
45+
defget_RestoreByCopy(self):
46+
returnself.get_query_params().get('RestoreByCopy')
47+
48+
defset_RestoreByCopy(self,RestoreByCopy):
49+
self.add_query_param('RestoreByCopy',RestoreByCopy)
50+
51+
defget_RestoreAllTable(self):
52+
returnself.get_query_params().get('RestoreAllTable')
53+
54+
defset_RestoreAllTable(self,RestoreAllTable):
55+
self.add_query_param('RestoreAllTable',RestoreAllTable)
56+
57+
defget_ClusterId(self):
58+
returnself.get_query_params().get('ClusterId')
59+
60+
defset_ClusterId(self,ClusterId):
61+
self.add_query_param('ClusterId',ClusterId)
62+
63+
defget_TargetClusterId(self):
64+
returnself.get_query_params().get('TargetClusterId')
65+
66+
defset_TargetClusterId(self,TargetClusterId):
67+
self.add_query_param('TargetClusterId',TargetClusterId)

‎aliyun-python-sdk-hbase/aliyunsdkhbase/request/v20190101/DeleteHbaseHaSlbRequest.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
classDeleteHbaseHaSlbRequest(RpcRequest):
2424

2525
def__init__(self):
26-
RpcRequest.__init__(self,'HBase','2019-01-01','DeleteHbaseHaSlb')
26+
RpcRequest.__init__(self,'HBase','2019-01-01','DeleteHbaseHaSlb','hbase')
2727
ifhasattr(self,"endpoint_map"):
2828
setattr(self,"endpoint_map",endpoint_data.getEndpointMap())
2929
ifhasattr(self,"endpoint_regional"):

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp