-
Notifications
You must be signed in to change notification settings - Fork 587
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
551 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '1.8.48' | ||
__version__ = '1.8.49' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
aliyun-python-sdk-polardb/aliyunsdkpolardb/request/v20170801/CreateActivationCodeRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# 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 aliyunsdkpolardb.endpoint import endpoint_data | ||
|
||
class CreateActivationCodeRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'polardb', '2017-08-01', 'CreateActivationCode','polardb') | ||
self.set_protocol_type('https') | ||
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_ResourceOwnerId(self): # Long | ||
return self.get_query_params().get('ResourceOwnerId') | ||
|
||
def set_ResourceOwnerId(self, ResourceOwnerId): # Long | ||
self.add_query_param('ResourceOwnerId', ResourceOwnerId) | ||
def get_Description(self): # String | ||
return self.get_query_params().get('Description') | ||
|
||
def set_Description(self, Description): # String | ||
self.add_query_param('Description', Description) | ||
def get_AliyunOrderId(self): # String | ||
return self.get_query_params().get('AliyunOrderId') | ||
|
||
def set_AliyunOrderId(self, AliyunOrderId): # String | ||
self.add_query_param('AliyunOrderId', AliyunOrderId) | ||
def get_MacAddress(self): # String | ||
return self.get_query_params().get('MacAddress') | ||
|
||
def set_MacAddress(self, MacAddress): # String | ||
self.add_query_param('MacAddress', MacAddress) | ||
def get_SystemIdentifier(self): # String | ||
return self.get_query_params().get('SystemIdentifier') | ||
|
||
def set_SystemIdentifier(self, SystemIdentifier): # String | ||
self.add_query_param('SystemIdentifier', SystemIdentifier) | ||
def get_ResourceOwnerAccount(self): # String | ||
return self.get_query_params().get('ResourceOwnerAccount') | ||
|
||
def set_ResourceOwnerAccount(self, ResourceOwnerAccount): # String | ||
self.add_query_param('ResourceOwnerAccount', ResourceOwnerAccount) | ||
def get_OwnerAccount(self): # String | ||
return self.get_query_params().get('OwnerAccount') | ||
|
||
def set_OwnerAccount(self, OwnerAccount): # String | ||
self.add_query_param('OwnerAccount', OwnerAccount) | ||
def get_OwnerId(self): # Long | ||
return self.get_query_params().get('OwnerId') | ||
|
||
def set_OwnerId(self, OwnerId): # Long | ||
self.add_query_param('OwnerId', OwnerId) | ||
def get_Name(self): # String | ||
return self.get_query_params().get('Name') | ||
|
||
def set_Name(self, Name): # String | ||
self.add_query_param('Name', Name) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
...n-sdk-polardb/aliyunsdkpolardb/request/v20170801/CreateOrGetVirtualLicenseOrderRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# 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 aliyunsdkpolardb.endpoint import endpoint_data | ||
|
||
class CreateOrGetVirtualLicenseOrderRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'polardb', '2017-08-01', 'CreateOrGetVirtualLicenseOrder','polardb') | ||
self.set_protocol_type('https') | ||
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_ResourceOwnerId(self): # Long | ||
return self.get_query_params().get('ResourceOwnerId') | ||
|
||
def set_ResourceOwnerId(self, ResourceOwnerId): # Long | ||
self.add_query_param('ResourceOwnerId', ResourceOwnerId) | ||
def get_Engine(self): # String | ||
return self.get_query_params().get('Engine') | ||
|
||
def set_Engine(self, Engine): # String | ||
self.add_query_param('Engine', Engine) | ||
def get_ResourceOwnerAccount(self): # String | ||
return self.get_query_params().get('ResourceOwnerAccount') | ||
|
||
def set_ResourceOwnerAccount(self, ResourceOwnerAccount): # String | ||
self.add_query_param('ResourceOwnerAccount', ResourceOwnerAccount) | ||
def get_OwnerAccount(self): # String | ||
return self.get_query_params().get('OwnerAccount') | ||
|
||
def set_OwnerAccount(self, OwnerAccount): # String | ||
self.add_query_param('OwnerAccount', OwnerAccount) | ||
def get_OwnerId(self): # Long | ||
return self.get_query_params().get('OwnerId') | ||
|
||
def set_OwnerId(self, OwnerId): # Long | ||
self.add_query_param('OwnerId', OwnerId) |
64 changes: 64 additions & 0 deletions
64
...on-sdk-polardb/aliyunsdkpolardb/request/v20170801/DescribeActivationCodeDetailsRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# 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 aliyunsdkpolardb.endpoint import endpoint_data | ||
|
||
class DescribeActivationCodeDetailsRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'polardb', '2017-08-01', 'DescribeActivationCodeDetails','polardb') | ||
self.set_protocol_type('https') | ||
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_ResourceOwnerId(self): # Long | ||
return self.get_query_params().get('ResourceOwnerId') | ||
|
||
def set_ResourceOwnerId(self, ResourceOwnerId): # Long | ||
self.add_query_param('ResourceOwnerId', ResourceOwnerId) | ||
def get_ActivationCodeId(self): # Integer | ||
return self.get_query_params().get('ActivationCodeId') | ||
|
||
def set_ActivationCodeId(self, ActivationCodeId): # Integer | ||
self.add_query_param('ActivationCodeId', ActivationCodeId) | ||
def get_AliyunOrderId(self): # String | ||
return self.get_query_params().get('AliyunOrderId') | ||
|
||
def set_AliyunOrderId(self, AliyunOrderId): # String | ||
self.add_query_param('AliyunOrderId', AliyunOrderId) | ||
def get_ResourceOwnerAccount(self): # String | ||
return self.get_query_params().get('ResourceOwnerAccount') | ||
|
||
def set_ResourceOwnerAccount(self, ResourceOwnerAccount): # String | ||
self.add_query_param('ResourceOwnerAccount', ResourceOwnerAccount) | ||
def get_OwnerAccount(self): # String | ||
return self.get_query_params().get('OwnerAccount') | ||
|
||
def set_OwnerAccount(self, OwnerAccount): # String | ||
self.add_query_param('OwnerAccount', OwnerAccount) | ||
def get_OwnerId(self): # Long | ||
return self.get_query_params().get('OwnerId') | ||
|
||
def set_OwnerId(self, OwnerId): # Long | ||
self.add_query_param('OwnerId', OwnerId) |
69 changes: 69 additions & 0 deletions
69
...n-python-sdk-polardb/aliyunsdkpolardb/request/v20170801/DescribeActivationCodesRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# 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 aliyunsdkpolardb.endpoint import endpoint_data | ||
|
||
class DescribeActivationCodesRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'polardb', '2017-08-01', 'DescribeActivationCodes','polardb') | ||
self.set_protocol_type('https') | ||
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_ResourceOwnerId(self): # Long | ||
return self.get_query_params().get('ResourceOwnerId') | ||
|
||
def set_ResourceOwnerId(self, ResourceOwnerId): # Long | ||
self.add_query_param('ResourceOwnerId', ResourceOwnerId) | ||
def get_PageNumber(self): # Integer | ||
return self.get_query_params().get('PageNumber') | ||
|
||
def set_PageNumber(self, PageNumber): # Integer | ||
self.add_query_param('PageNumber', PageNumber) | ||
def get_PageSize(self): # Integer | ||
return self.get_query_params().get('PageSize') | ||
|
||
def set_PageSize(self, PageSize): # Integer | ||
self.add_query_param('PageSize', PageSize) | ||
def get_AliyunOrderId(self): # String | ||
return self.get_query_params().get('AliyunOrderId') | ||
|
||
def set_AliyunOrderId(self, AliyunOrderId): # String | ||
self.add_query_param('AliyunOrderId', AliyunOrderId) | ||
def get_ResourceOwnerAccount(self): # String | ||
return self.get_query_params().get('ResourceOwnerAccount') | ||
|
||
def set_ResourceOwnerAccount(self, ResourceOwnerAccount): # String | ||
self.add_query_param('ResourceOwnerAccount', ResourceOwnerAccount) | ||
def get_OwnerAccount(self): # String | ||
return self.get_query_params().get('OwnerAccount') | ||
|
||
def set_OwnerAccount(self, OwnerAccount): # String | ||
self.add_query_param('OwnerAccount', OwnerAccount) | ||
def get_OwnerId(self): # Long | ||
return self.get_query_params().get('OwnerId') | ||
|
||
def set_OwnerId(self, OwnerId): # Long | ||
self.add_query_param('OwnerId', OwnerId) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.