Skip to content

Commit 2f3db29

Browse files
committed
Generated 2015-01-01 for R-kvstore
1 parent f67c1b3 commit 2f3db29

File tree

127 files changed

+2740
-1488
lines changed

Some content is hidden

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

127 files changed

+2740
-1488
lines changed

aliyun-python-sdk-r-kvstore/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-05-28 Version: 3.0.0
2+
- Generated 2015-01-01 for `R-kvstore`
3+
14
2019-04-18 Version: 2.0.7
25
1, CreateCacheAnalysisTask prop modify
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.7"
1+
__version__ = '3.0.0'
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
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+
class ActivateInstanceRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'R-kvstore', '2015-01-01', 'ActivateInstance','kvstore')
25+
26+
def get_ResourceOwnerId(self):
27+
return self.get_query_params().get('ResourceOwnerId')
28+
29+
def set_ResourceOwnerId(self,ResourceOwnerId):
30+
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
31+
32+
def get_SecurityToken(self):
33+
return self.get_query_params().get('SecurityToken')
34+
35+
def set_SecurityToken(self,SecurityToken):
36+
self.add_query_param('SecurityToken',SecurityToken)
37+
38+
def get_ResourceOwnerAccount(self):
39+
return self.get_query_params().get('ResourceOwnerAccount')
40+
41+
def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
42+
self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
43+
44+
def get_OwnerAccount(self):
45+
return self.get_query_params().get('OwnerAccount')
46+
47+
def set_OwnerAccount(self,OwnerAccount):
48+
self.add_query_param('OwnerAccount',OwnerAccount)
49+
50+
def get_OwnerId(self):
51+
return self.get_query_params().get('OwnerId')
52+
53+
def set_OwnerId(self,OwnerId):
54+
self.add_query_param('OwnerId',OwnerId)
55+
56+
def get_InstanceId(self):
57+
return self.get_query_params().get('InstanceId')
58+
59+
def set_InstanceId(self,InstanceId):
60+
self.add_query_param('InstanceId',InstanceId)

aliyun-python-sdk-r-kvstore/aliyunsdkr_kvstore/request/v20150101/AllocateInstancePublicConnectionRequest.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class AllocateInstancePublicConnectionRequest(RpcRequest):
2222

2323
def __init__(self):
24-
RpcRequest.__init__(self, 'R-kvstore', '2015-01-01', 'AllocateInstancePublicConnection','redisa')
24+
RpcRequest.__init__(self, 'R-kvstore', '2015-01-01', 'AllocateInstancePublicConnection','kvstore')
2525

2626
def get_ResourceOwnerId(self):
2727
return self.get_query_params().get('ResourceOwnerId')
@@ -35,12 +35,6 @@ def get_ConnectionStringPrefix(self):
3535
def set_ConnectionStringPrefix(self,ConnectionStringPrefix):
3636
self.add_query_param('ConnectionStringPrefix',ConnectionStringPrefix)
3737

38-
def get_InstanceId(self):
39-
return self.get_query_params().get('InstanceId')
40-
41-
def set_InstanceId(self,InstanceId):
42-
self.add_query_param('InstanceId',InstanceId)
43-
4438
def get_SecurityToken(self):
4539
return self.get_query_params().get('SecurityToken')
4640

@@ -53,12 +47,6 @@ def get_ResourceOwnerAccount(self):
5347
def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
5448
self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
5549

56-
def get_Port(self):
57-
return self.get_query_params().get('Port')
58-
59-
def set_Port(self,Port):
60-
self.add_query_param('Port',Port)
61-
6250
def get_OwnerAccount(self):
6351
return self.get_query_params().get('OwnerAccount')
6452

@@ -69,4 +57,16 @@ def get_OwnerId(self):
6957
return self.get_query_params().get('OwnerId')
7058

7159
def set_OwnerId(self,OwnerId):
72-
self.add_query_param('OwnerId',OwnerId)
60+
self.add_query_param('OwnerId',OwnerId)
61+
62+
def get_InstanceId(self):
63+
return self.get_query_params().get('InstanceId')
64+
65+
def set_InstanceId(self,InstanceId):
66+
self.add_query_param('InstanceId',InstanceId)
67+
68+
def get_Port(self):
69+
return self.get_query_params().get('Port')
70+
71+
def set_Port(self,Port):
72+
self.add_query_param('Port',Port)
Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
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+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
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+
class AppendReplicaInstanceRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'R-kvstore', '2015-01-01', 'AppendReplicaInstance','kvstore')
25+
26+
def get_ResourceOwnerId(self):
27+
return self.get_query_params().get('ResourceOwnerId')
28+
29+
def set_ResourceOwnerId(self,ResourceOwnerId):
30+
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
31+
32+
def get_ClientToken(self):
33+
return self.get_query_params().get('ClientToken')
34+
35+
def set_ClientToken(self,ClientToken):
36+
self.add_query_param('ClientToken',ClientToken)
37+
38+
def get_NetworkType(self):
39+
return self.get_query_params().get('NetworkType')
40+
41+
def set_NetworkType(self,NetworkType):
42+
self.add_query_param('NetworkType',NetworkType)
43+
44+
def get_SecurityToken(self):
45+
return self.get_query_params().get('SecurityToken')
46+
47+
def set_SecurityToken(self,SecurityToken):
48+
self.add_query_param('SecurityToken',SecurityToken)
49+
50+
def get_ReplicaId(self):
51+
return self.get_query_params().get('ReplicaId')
52+
53+
def set_ReplicaId(self,ReplicaId):
54+
self.add_query_param('ReplicaId',ReplicaId)
55+
56+
def get_Period(self):
57+
return self.get_query_params().get('Period')
58+
59+
def set_Period(self,Period):
60+
self.add_query_param('Period',Period)
61+
62+
def get_ResourceOwnerAccount(self):
63+
return self.get_query_params().get('ResourceOwnerAccount')
64+
65+
def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
66+
self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
67+
68+
def get_OwnerAccount(self):
69+
return self.get_query_params().get('OwnerAccount')
70+
71+
def set_OwnerAccount(self,OwnerAccount):
72+
self.add_query_param('OwnerAccount',OwnerAccount)
73+
74+
def get_OwnerId(self):
75+
return self.get_query_params().get('OwnerId')
76+
77+
def set_OwnerId(self,OwnerId):
78+
self.add_query_param('OwnerId',OwnerId)
79+
80+
def get_VSwitchId(self):
81+
return self.get_query_params().get('VSwitchId')
82+
83+
def set_VSwitchId(self,VSwitchId):
84+
self.add_query_param('VSwitchId',VSwitchId)
85+
86+
def get_InstanceName(self):
87+
return self.get_query_params().get('InstanceName')
88+
89+
def set_InstanceName(self,InstanceName):
90+
self.add_query_param('InstanceName',InstanceName)
91+
92+
def get_VpcId(self):
93+
return self.get_query_params().get('VpcId')
94+
95+
def set_VpcId(self,VpcId):
96+
self.add_query_param('VpcId',VpcId)
97+
98+
def get_ZoneId(self):
99+
return self.get_query_params().get('ZoneId')
100+
101+
def set_ZoneId(self,ZoneId):
102+
self.add_query_param('ZoneId',ZoneId)
103+
104+
def get_ChargeType(self):
105+
return self.get_query_params().get('ChargeType')
106+
107+
def set_ChargeType(self,ChargeType):
108+
self.add_query_param('ChargeType',ChargeType)

aliyun-python-sdk-r-kvstore/aliyunsdkr_kvstore/request/v20150101/CreateAccountRequest.py

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -21,38 +21,20 @@
2121
class CreateAccountRequest(RpcRequest):
2222

2323
def __init__(self):
24-
RpcRequest.__init__(self, 'R-kvstore', '2015-01-01', 'CreateAccount','redisa')
24+
RpcRequest.__init__(self, 'R-kvstore', '2015-01-01', 'CreateAccount','kvstore')
2525

2626
def get_ResourceOwnerId(self):
2727
return self.get_query_params().get('ResourceOwnerId')
2828

2929
def set_ResourceOwnerId(self,ResourceOwnerId):
3030
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
3131

32-
def get_ResourceOwnerAccount(self):
33-
return self.get_query_params().get('ResourceOwnerAccount')
34-
35-
def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
36-
self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
37-
38-
def get_OwnerAccount(self):
39-
return self.get_query_params().get('OwnerAccount')
40-
41-
def set_OwnerAccount(self,OwnerAccount):
42-
self.add_query_param('OwnerAccount',OwnerAccount)
43-
4432
def get_AccountType(self):
4533
return self.get_query_params().get('AccountType')
4634

4735
def set_AccountType(self,AccountType):
4836
self.add_query_param('AccountType',AccountType)
4937

50-
def get_OwnerId(self):
51-
return self.get_query_params().get('OwnerId')
52-
53-
def set_OwnerId(self,OwnerId):
54-
self.add_query_param('OwnerId',OwnerId)
55-
5638
def get_AccountDescription(self):
5739
return self.get_query_params().get('AccountDescription')
5840

@@ -65,18 +47,6 @@ def get_AccountPrivilege(self):
6547
def set_AccountPrivilege(self,AccountPrivilege):
6648
self.add_query_param('AccountPrivilege',AccountPrivilege)
6749

68-
def get_AccountPassword(self):
69-
return self.get_query_params().get('AccountPassword')
70-
71-
def set_AccountPassword(self,AccountPassword):
72-
self.add_query_param('AccountPassword',AccountPassword)
73-
74-
def get_InstanceId(self):
75-
return self.get_query_params().get('InstanceId')
76-
77-
def set_InstanceId(self,InstanceId):
78-
self.add_query_param('InstanceId',InstanceId)
79-
8050
def get_AccountName(self):
8151
return self.get_query_params().get('AccountName')
8252

@@ -87,4 +57,34 @@ def get_SecurityToken(self):
8757
return self.get_query_params().get('SecurityToken')
8858

8959
def set_SecurityToken(self,SecurityToken):
90-
self.add_query_param('SecurityToken',SecurityToken)
60+
self.add_query_param('SecurityToken',SecurityToken)
61+
62+
def get_ResourceOwnerAccount(self):
63+
return self.get_query_params().get('ResourceOwnerAccount')
64+
65+
def set_ResourceOwnerAccount(self,ResourceOwnerAccount):
66+
self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount)
67+
68+
def get_OwnerAccount(self):
69+
return self.get_query_params().get('OwnerAccount')
70+
71+
def set_OwnerAccount(self,OwnerAccount):
72+
self.add_query_param('OwnerAccount',OwnerAccount)
73+
74+
def get_OwnerId(self):
75+
return self.get_query_params().get('OwnerId')
76+
77+
def set_OwnerId(self,OwnerId):
78+
self.add_query_param('OwnerId',OwnerId)
79+
80+
def get_AccountPassword(self):
81+
return self.get_query_params().get('AccountPassword')
82+
83+
def set_AccountPassword(self,AccountPassword):
84+
self.add_query_param('AccountPassword',AccountPassword)
85+
86+
def get_InstanceId(self):
87+
return self.get_query_params().get('InstanceId')
88+
89+
def set_InstanceId(self,InstanceId):
90+
self.add_query_param('InstanceId',InstanceId)

aliyun-python-sdk-r-kvstore/aliyunsdkr_kvstore/request/v20150101/CreateBackupRequest.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,14 @@
2121
class CreateBackupRequest(RpcRequest):
2222

2323
def __init__(self):
24-
RpcRequest.__init__(self, 'R-kvstore', '2015-01-01', 'CreateBackup','redisa')
24+
RpcRequest.__init__(self, 'R-kvstore', '2015-01-01', 'CreateBackup','kvstore')
2525

2626
def get_ResourceOwnerId(self):
2727
return self.get_query_params().get('ResourceOwnerId')
2828

2929
def set_ResourceOwnerId(self,ResourceOwnerId):
3030
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
3131

32-
def get_InstanceId(self):
33-
return self.get_query_params().get('InstanceId')
34-
35-
def set_InstanceId(self,InstanceId):
36-
self.add_query_param('InstanceId',InstanceId)
37-
3832
def get_SecurityToken(self):
3933
return self.get_query_params().get('SecurityToken')
4034

@@ -57,4 +51,10 @@ def get_OwnerId(self):
5751
return self.get_query_params().get('OwnerId')
5852

5953
def set_OwnerId(self,OwnerId):
60-
self.add_query_param('OwnerId',OwnerId)
54+
self.add_query_param('OwnerId',OwnerId)
55+
56+
def get_InstanceId(self):
57+
return self.get_query_params().get('InstanceId')
58+
59+
def set_InstanceId(self,InstanceId):
60+
self.add_query_param('InstanceId',InstanceId)

0 commit comments

Comments
 (0)