diff --git a/aliyun-python-sdk-aas/ChangeLog.txt b/aliyun-python-sdk-aas/ChangeLog.txt new file mode 100644 index 0000000000..1817de6934 --- /dev/null +++ b/aliyun-python-sdk-aas/ChangeLog.txt @@ -0,0 +1,10 @@ +2019-11-18 Version: 2.1.1 +- Supported ChangePreferredLanguage for Internet customers. +- Fixed bugs for ChangePreferredLanguage. + +2019-10-31 Version: 2.1.0 +- Supported ChangePreferredLanguage for Internet customers. + +2019-10-31 Version: 1.1.0 +- Supported ChangePreferredLanguage for Internet customers. + diff --git a/aliyun-python-sdk-aas/MANIFEST.in b/aliyun-python-sdk-aas/MANIFEST.in new file mode 100755 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-aas/README.rst b/aliyun-python-sdk-aas/README.rst new file mode 100755 index 0000000000..009dd6dd75 --- /dev/null +++ b/aliyun-python-sdk-aas/README.rst @@ -0,0 +1,15 @@ +============================================================= +aliyun-python-sdk-aas +============================================================= + +.. This is the aas module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater + +**Documentation:** + +Please visit `http://develop.aliyun.com/sdk/python `_ diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/__init__.py b/aliyun-python-sdk-aas/aliyunsdkaas/__init__.py new file mode 100644 index 0000000000..e900a8ac60 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/__init__.py @@ -0,0 +1 @@ +__version__ = '2.1.1' \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/endpoint.py b/aliyun-python-sdk-aas/aliyunsdkaas/endpoint.py new file mode 100644 index 0000000000..2c5cf6ce43 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/endpoint.py @@ -0,0 +1,73 @@ +# # 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. + + +class EndpointData(): + def __init__(self): + self.endpoint_map = { + "cn-shanghai-internal-test-1": "aas.aliyuncs.com", + "cn-beijing-gov-1": "aas.aliyuncs.com", + "cn-shenzhen-su18-b01": "aas.aliyuncs.com", + "cn-shanghai-inner": "aas.aliyuncs.com", + "cn-shenzhen-st4-d01": "aas.aliyuncs.com", + "cn-haidian-cm12-c01": "aas.aliyuncs.com", + "cn-hangzhou-internal-prod-1": "aas.aliyuncs.com", + "cn-north-2-gov-1": "aas.aliyuncs.com", + "cn-yushanfang": "aas.aliyuncs.com", + "cn-hongkong-finance-pop": "aas.aliyuncs.com", + "cn-qingdao-nebula": "aas.aliyuncs.com", + "cn-shanghai": "aas-vpc.cn-shanghai.aliyuncs.com", + "cn-shanghai-finance-1": "aas.aliyuncs.com", + "cn-beijing-finance-pop": "aas.aliyuncs.com", + "cn-wuhan": "aas.aliyuncs.com", + "cn-shenzhen": "aas.aliyuncs.com", + "cn-zhengzhou-nebula-1": "aas.aliyuncs.com", + "rus-west-1-pop": "aas.ap-northeast-1.aliyuncs.com", + "cn-shanghai-et15-b01": "aas.aliyuncs.com", + "cn-hangzhou-bj-b01": "aas.aliyuncs.com", + "cn-hangzhou-internal-test-1": "aas.aliyuncs.com", + "eu-west-1-oxs": "aas.ap-northeast-1.aliyuncs.com", + "cn-zhangbei-na61-b01": "aas.aliyuncs.com", + "cn-beijing-finance-1": "aas.aliyuncs.com", + "cn-hangzhou-internal-test-3": "aas.aliyuncs.com", + "cn-hangzhou-internal-test-2": "aas.aliyuncs.com", + "cn-shenzhen-finance-1": "aas.aliyuncs.com", + "cn-chengdu": "aas.aliyuncs.com", + "cn-hangzhou-test-306": "aas.aliyuncs.com", + "cn-shanghai-et2-b01": "aas.aliyuncs.com", + "cn-hangzhou-finance": "aas.aliyuncs.com", + "cn-beijing-nu16-b01": "aas.aliyuncs.com", + "cn-edge-1": "aas.aliyuncs.com", + "cn-huhehaote": "aas.aliyuncs.com", + "cn-fujian": "aas.aliyuncs.com", + "us-east-1": "aas.ap-northeast-1.aliyuncs.com", + "ap-northeast-2-pop": "aas.ap-northeast-1.aliyuncs.com", + "cn-shenzhen-inner": "aas.aliyuncs.com", + "cn-zhangjiakou-na62-a01": "aas.aliyuncs.com", + } + self.endpoint_regional = "regional" + + def getEndpointMap(self): + return self.endpoint_map + + def getEndpointRegional(self): + return self.endpoint_regional + + +endpoint_data = EndpointData() diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/__init__.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/ChangePreferredLanguageRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/ChangePreferredLanguageRequest.py new file mode 100644 index 0000000000..7acd84f088 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/ChangePreferredLanguageRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class ChangePreferredLanguageRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'ChangePreferredLanguage') + 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_PreferredLanguage(self): + return self.get_query_params().get('PreferredLanguage') + + def set_PreferredLanguage(self,PreferredLanguage): + self.add_query_param('PreferredLanguage',PreferredLanguage) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CheckMfaBindRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CheckMfaBindRequest.py new file mode 100644 index 0000000000..58cd391c3b --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CheckMfaBindRequest.py @@ -0,0 +1,30 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class CheckMfaBindRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'CheckMfaBind') + if hasattr(self, "endpoint_map"): + setattr(self, "endpoint_map", endpoint_data.getEndpointMap()) + if hasattr(self, "endpoint_regional"): + setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional()) diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateAccessKeyForAccountRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateAccessKeyForAccountRequest.py new file mode 100644 index 0000000000..2ea8ac2258 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateAccessKeyForAccountRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class CreateAccessKeyForAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'CreateAccessKeyForAccount') + 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_AKSecret(self): + return self.get_query_params().get('AKSecret') + + def set_AKSecret(self,AKSecret): + self.add_query_param('AKSecret',AKSecret) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateAliyunAccountRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateAliyunAccountRequest.py new file mode 100644 index 0000000000..133f03123a --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateAliyunAccountRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class CreateAliyunAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'CreateAliyunAccount') + 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_AliyunId(self): + return self.get_query_params().get('AliyunId') + + def set_AliyunId(self,AliyunId): + self.add_query_param('AliyunId',AliyunId) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateAliyunAccountWithBindHidRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateAliyunAccountWithBindHidRequest.py new file mode 100644 index 0000000000..6af73423f5 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateAliyunAccountWithBindHidRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class CreateAliyunAccountWithBindHidRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'CreateAliyunAccountWithBindHid') + 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_InnerAccountHid(self): + return self.get_query_params().get('InnerAccountHid') + + def set_InnerAccountHid(self,InnerAccountHid): + self.add_query_param('InnerAccountHid',InnerAccountHid) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateIntlAliyunAccountRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateIntlAliyunAccountRequest.py new file mode 100644 index 0000000000..56453c58b0 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateIntlAliyunAccountRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class CreateIntlAliyunAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'CreateIntlAliyunAccount') + 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_NationalityCode(self): + return self.get_query_params().get('NationalityCode') + + def set_NationalityCode(self,NationalityCode): + self.add_query_param('NationalityCode',NationalityCode) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateShortTermAccessKeyForAccountRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateShortTermAccessKeyForAccountRequest.py new file mode 100644 index 0000000000..96ad32c265 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/CreateShortTermAccessKeyForAccountRequest.py @@ -0,0 +1,49 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class CreateShortTermAccessKeyForAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'CreateShortTermAccessKeyForAccount') + 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_ExpireTime(self): + return self.get_query_params().get('ExpireTime') + + def set_ExpireTime(self,ExpireTime): + self.add_query_param('ExpireTime',ExpireTime) + + def get_IsMfaPresent(self): + return self.get_query_params().get('IsMfaPresent') + + def set_IsMfaPresent(self,IsMfaPresent): + self.add_query_param('IsMfaPresent',IsMfaPresent) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/DeleteAccessKeyForAccountRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/DeleteAccessKeyForAccountRequest.py new file mode 100644 index 0000000000..5203b62600 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/DeleteAccessKeyForAccountRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class DeleteAccessKeyForAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'DeleteAccessKeyForAccount') + 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_AKId(self): + return self.get_query_params().get('AKId') + + def set_AKId(self,AKId): + self.add_query_param('AKId',AKId) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GenerateAccountLoginTokenRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GenerateAccountLoginTokenRequest.py new file mode 100644 index 0000000000..63fa435595 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GenerateAccountLoginTokenRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class GenerateAccountLoginTokenRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'GenerateAccountLoginToken') + 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_TargetPk(self): + return self.get_query_params().get('TargetPk') + + def set_TargetPk(self,TargetPk): + self.add_query_param('TargetPk',TargetPk) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GetAliyunAccountWithBindHidRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GetAliyunAccountWithBindHidRequest.py new file mode 100644 index 0000000000..9536cc80f8 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GetAliyunAccountWithBindHidRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class GetAliyunAccountWithBindHidRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'GetAliyunAccountWithBindHid') + 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_InnerAccountHid(self): + return self.get_query_params().get('InnerAccountHid') + + def set_InnerAccountHid(self,InnerAccountHid): + self.add_query_param('InnerAccountHid',InnerAccountHid) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GetAliyunAccountWithBindTaobaoHidRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GetAliyunAccountWithBindTaobaoHidRequest.py new file mode 100644 index 0000000000..e8a7945da7 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GetAliyunAccountWithBindTaobaoHidRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class GetAliyunAccountWithBindTaobaoHidRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'GetAliyunAccountWithBindTaobaoHid') + 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_HavanaId(self): + return self.get_query_params().get('HavanaId') + + def set_HavanaId(self,HavanaId): + self.add_query_param('HavanaId',HavanaId) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GetBasicInfoForAccountRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GetBasicInfoForAccountRequest.py new file mode 100644 index 0000000000..8328ce0a76 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GetBasicInfoForAccountRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class GetBasicInfoForAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'GetBasicInfoForAccount') + 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_AliyunId(self): + return self.get_query_params().get('AliyunId') + + def set_AliyunId(self,AliyunId): + self.add_query_param('AliyunId',AliyunId) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GetShortTermAccessKeyForAccountRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GetShortTermAccessKeyForAccountRequest.py new file mode 100644 index 0000000000..0b9cbfa392 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/GetShortTermAccessKeyForAccountRequest.py @@ -0,0 +1,49 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class GetShortTermAccessKeyForAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'GetShortTermAccessKeyForAccount') + 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_ExpireTime(self): + return self.get_query_params().get('ExpireTime') + + def set_ExpireTime(self,ExpireTime): + self.add_query_param('ExpireTime',ExpireTime) + + def get_IsMfaPresent(self): + return self.get_query_params().get('IsMfaPresent') + + def set_IsMfaPresent(self,IsMfaPresent): + self.add_query_param('IsMfaPresent',IsMfaPresent) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/ListAccessKeysForAccountRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/ListAccessKeysForAccountRequest.py new file mode 100644 index 0000000000..5931db1e57 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/ListAccessKeysForAccountRequest.py @@ -0,0 +1,49 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class ListAccessKeysForAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'ListAccessKeysForAccount') + 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_AKType(self): + return self.get_query_params().get('AKType') + + def set_AKType(self,AKType): + self.add_query_param('AKType',AKType) + + def get_AKStatus(self): + return self.get_query_params().get('AKStatus') + + def set_AKStatus(self,AKStatus): + self.add_query_param('AKStatus',AKStatus) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/ListAliyunAccountRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/ListAliyunAccountRequest.py new file mode 100644 index 0000000000..f4bff93a54 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/ListAliyunAccountRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class ListAliyunAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'ListAliyunAccount') + 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_Marker(self): + return self.get_query_params().get('Marker') + + def set_Marker(self,Marker): + self.add_query_param('Marker',Marker) + + def get_MaxItems(self): + return self.get_query_params().get('MaxItems') + + def set_MaxItems(self,MaxItems): + self.add_query_param('MaxItems',MaxItems) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/UpdateAccessKeyStatusForAccountRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/UpdateAccessKeyStatusForAccountRequest.py new file mode 100644 index 0000000000..f1acd858c8 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/UpdateAccessKeyStatusForAccountRequest.py @@ -0,0 +1,49 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class UpdateAccessKeyStatusForAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'UpdateAccessKeyStatusForAccount') + 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_AKStatus(self): + return self.get_query_params().get('AKStatus') + + def set_AKStatus(self,AKStatus): + self.add_query_param('AKStatus',AKStatus) + + def get_AKId(self): + return self.get_query_params().get('AKId') + + def set_AKId(self,AKId): + self.add_query_param('AKId',AKId) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/UpdatePasswordForAccountRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/UpdatePasswordForAccountRequest.py new file mode 100644 index 0000000000..04801cf008 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/UpdatePasswordForAccountRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class UpdatePasswordForAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'UpdatePasswordForAccount') + 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_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) + + def get_NewPassword(self): + return self.get_query_params().get('NewPassword') + + def set_NewPassword(self,NewPassword): + self.add_query_param('NewPassword',NewPassword) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/UpdateStatusForAccountRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/UpdateStatusForAccountRequest.py new file mode 100644 index 0000000000..447e650f41 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/UpdateStatusForAccountRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class UpdateStatusForAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'UpdateStatusForAccount') + 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_AccountStatus(self): + return self.get_query_params().get('AccountStatus') + + def set_AccountStatus(self,AccountStatus): + self.add_query_param('AccountStatus',AccountStatus) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/VerifyAccountLoginTokenRequest.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/VerifyAccountLoginTokenRequest.py new file mode 100644 index 0000000000..7ed4ce3506 --- /dev/null +++ b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/VerifyAccountLoginTokenRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkaas.endpoint import endpoint_data + +class VerifyAccountLoginTokenRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Aas', '2015-07-01', 'VerifyAccountLoginToken') + 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_LoginToken(self): + return self.get_query_params().get('LoginToken') + + def set_LoginToken(self,LoginToken): + self.add_query_param('LoginToken',LoginToken) \ No newline at end of file diff --git a/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/__init__.py b/aliyun-python-sdk-aas/aliyunsdkaas/request/v20150701/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-aas/setup.py b/aliyun-python-sdk-aas/setup.py new file mode 100644 index 0000000000..d7d253e27c --- /dev/null +++ b/aliyun-python-sdk-aas/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for aas. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkaas" +NAME = "aliyun-python-sdk-aas" +DESCRIPTION = "The aas module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","aas"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/ChangeLog.txt b/aliyun-python-sdk-aegis/ChangeLog.txt new file mode 100644 index 0000000000..ff69f1eccb --- /dev/null +++ b/aliyun-python-sdk-aegis/ChangeLog.txt @@ -0,0 +1,6 @@ +2019-04-15 Version: 1.0.6 +1, Add apis, DescribeScreenHostStatistics、DescribeScreenSummaryInfo、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData + +2018-02-07 Version: 1.0.1 +1, add the access interface of logs such as vulnerabilities, baselines, exceptions, etc. + diff --git a/aliyun-python-sdk-aegis/MANIFEST.in b/aliyun-python-sdk-aegis/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-aegis/README.rst b/aliyun-python-sdk-aegis/README.rst new file mode 100644 index 0000000000..a375e45d42 --- /dev/null +++ b/aliyun-python-sdk-aegis/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-aegis +This is the aegis module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/__init__.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/__init__.py new file mode 100644 index 0000000000..010279ae45 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/__init__.py @@ -0,0 +1 @@ +__version__ = "1.0.6" \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/__init__.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/AutoUpgradeSasRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/AutoUpgradeSasRequest.py new file mode 100644 index 0000000000..644635957a --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/AutoUpgradeSasRequest.py @@ -0,0 +1,30 @@ +# 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 +class AutoUpgradeSasRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'AutoUpgradeSas','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/AutoUpgradeToSasAdvancedVersionRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/AutoUpgradeToSasAdvancedVersionRequest.py new file mode 100644 index 0000000000..46269e0306 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/AutoUpgradeToSasAdvancedVersionRequest.py @@ -0,0 +1,30 @@ +# 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 +class AutoUpgradeToSasAdvancedVersionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'AutoUpgradeToSasAdvancedVersion','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/BatchDeleteWhiteListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/BatchDeleteWhiteListRequest.py new file mode 100644 index 0000000000..fa6c07055a --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/BatchDeleteWhiteListRequest.py @@ -0,0 +1,36 @@ +# 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 +class BatchDeleteWhiteListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'BatchDeleteWhiteList','vipaegis') + + def get_RiskIdList(self): + return self.get_query_params().get('RiskIdList') + + def set_RiskIdList(self,RiskIdList): + self.add_query_param('RiskIdList',RiskIdList) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CanTrySasRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CanTrySasRequest.py new file mode 100644 index 0000000000..1bd78cea63 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CanTrySasRequest.py @@ -0,0 +1,30 @@ +# 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 +class CanTrySasRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CanTrySas','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreatScreenSettingRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreatScreenSettingRequest.py new file mode 100644 index 0000000000..df78caaffd --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreatScreenSettingRequest.py @@ -0,0 +1,42 @@ +# 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 +class CreatScreenSettingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CreatScreenSetting','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ScreenTitle(self): + return self.get_query_params().get('ScreenTitle') + + def set_ScreenTitle(self,ScreenTitle): + self.add_query_param('ScreenTitle',ScreenTitle) + + def get_ScreenIdSetting(self): + return self.get_query_params().get('ScreenIdSetting') + + def set_ScreenIdSetting(self,ScreenIdSetting): + self.add_query_param('ScreenIdSetting',ScreenIdSetting) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateInstanceRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateInstanceRequest.py new file mode 100644 index 0000000000..4282752998 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateInstanceRequest.py @@ -0,0 +1,72 @@ +# 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 +class CreateInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CreateInstance','vipaegis') + + def get_Duration(self): + return self.get_query_params().get('Duration') + + def set_Duration(self,Duration): + self.add_query_param('Duration',Duration) + + def get_IsAutoRenew(self): + return self.get_query_params().get('IsAutoRenew') + + def set_IsAutoRenew(self,IsAutoRenew): + self.add_query_param('IsAutoRenew',IsAutoRenew) + + def get_ClientToken(self): + return self.get_query_params().get('ClientToken') + + def set_ClientToken(self,ClientToken): + self.add_query_param('ClientToken',ClientToken) + + def get_VmNumber(self): + return self.get_query_params().get('VmNumber') + + def set_VmNumber(self,VmNumber): + self.add_query_param('VmNumber',VmNumber) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) + + def get_VersionCode(self): + return self.get_query_params().get('VersionCode') + + def set_VersionCode(self,VersionCode): + self.add_query_param('VersionCode',VersionCode) + + def get_PricingCycle(self): + return self.get_query_params().get('PricingCycle') + + def set_PricingCycle(self,PricingCycle): + self.add_query_param('PricingCycle',PricingCycle) + + def get_AutoRenewDuration(self): + return self.get_query_params().get('AutoRenewDuration') + + def set_AutoRenewDuration(self,AutoRenewDuration): + self.add_query_param('AutoRenewDuration',AutoRenewDuration) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateLogQueryRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateLogQueryRequest.py new file mode 100644 index 0000000000..1181c551a9 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateLogQueryRequest.py @@ -0,0 +1,48 @@ +# 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 +class CreateLogQueryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CreateLogQuery','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_QueryName(self): + return self.get_query_params().get('QueryName') + + def set_QueryName(self,QueryName): + self.add_query_param('QueryName',QueryName) + + def get_Conditions(self): + return self.get_query_params().get('Conditions') + + def set_Conditions(self,Conditions): + self.add_query_param('Conditions',Conditions) + + def get_QueryDetail(self): + return self.get_query_params().get('QueryDetail') + + def set_QueryDetail(self,QueryDetail): + self.add_query_param('QueryDetail',QueryDetail) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateDataSourceRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateDataSourceRequest.py new file mode 100644 index 0000000000..cd66bc6b0c --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateDataSourceRequest.py @@ -0,0 +1,60 @@ +# 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 +class CreateOrUpdateDataSourceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CreateOrUpdateDataSource','vipaegis') + + def get_ProjectName(self): + return self.get_query_params().get('ProjectName') + + def set_ProjectName(self,ProjectName): + self.add_query_param('ProjectName',ProjectName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_LogStoreName(self): + return self.get_query_params().get('LogStoreName') + + def set_LogStoreName(self,LogStoreName): + self.add_query_param('LogStoreName',LogStoreName) + + def get_DatasourceDescription(self): + return self.get_query_params().get('DatasourceDescription') + + def set_DatasourceDescription(self,DatasourceDescription): + self.add_query_param('DatasourceDescription',DatasourceDescription) + + def get_Fields(self): + return self.get_query_params().get('Fields') + + def set_Fields(self,Fields): + self.add_query_param('Fields',Fields) + + def get_RegionNo(self): + return self.get_query_params().get('RegionNo') + + def set_RegionNo(self,RegionNo): + self.add_query_param('RegionNo',RegionNo) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateDingTalkRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateDingTalkRequest.py new file mode 100644 index 0000000000..c9c55f7e11 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateDingTalkRequest.py @@ -0,0 +1,54 @@ +# 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 +class CreateOrUpdateDingTalkRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CreateOrUpdateDingTalk','vipaegis') + + def get_RuleActionName(self): + return self.get_query_params().get('RuleActionName') + + def set_RuleActionName(self,RuleActionName): + self.add_query_param('RuleActionName',RuleActionName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_SendUrl(self): + return self.get_query_params().get('SendUrl') + + def set_SendUrl(self,SendUrl): + self.add_query_param('SendUrl',SendUrl) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_IntervalTime(self): + return self.get_query_params().get('IntervalTime') + + def set_IntervalTime(self,IntervalTime): + self.add_query_param('IntervalTime',IntervalTime) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateGroupRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateGroupRequest.py new file mode 100644 index 0000000000..54a1f6ddd1 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateGroupRequest.py @@ -0,0 +1,66 @@ +# 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 +class CreateOrUpdateGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CreateOrUpdateGroup','vipaegis') + + def get_RuleIds(self): + return self.get_query_params().get('RuleIds') + + def set_RuleIds(self,RuleIds): + self.add_query_param('RuleIds',RuleIds) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_MachineGroupIds(self): + return self.get_query_params().get('MachineGroupIds') + + def set_MachineGroupIds(self,MachineGroupIds): + self.add_query_param('MachineGroupIds',MachineGroupIds) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_GroupName(self): + return self.get_query_params().get('GroupName') + + def set_GroupName(self,GroupName): + self.add_query_param('GroupName',GroupName) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateJoinRuleRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateJoinRuleRequest.py new file mode 100644 index 0000000000..a27f5dfff5 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateJoinRuleRequest.py @@ -0,0 +1,102 @@ +# 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 +class CreateOrUpdateJoinRuleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CreateOrUpdateJoinRule','vipaegis') + + def get_WarnLevel(self): + return self.get_query_params().get('WarnLevel') + + def set_WarnLevel(self,WarnLevel): + self.add_query_param('WarnLevel',WarnLevel) + + def get_DataSourceId2(self): + return self.get_query_params().get('DataSourceId2') + + def set_DataSourceId2(self,DataSourceId2): + self.add_query_param('DataSourceId2',DataSourceId2) + + def get_DataSourceId1(self): + return self.get_query_params().get('DataSourceId1') + + def set_DataSourceId1(self,DataSourceId1): + self.add_query_param('DataSourceId1',DataSourceId1) + + def get_TimeWindow(self): + return self.get_query_params().get('TimeWindow') + + def set_TimeWindow(self,TimeWindow): + self.add_query_param('TimeWindow',TimeWindow) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_RuleName(self): + return self.get_query_params().get('RuleName') + + def set_RuleName(self,RuleName): + self.add_query_param('RuleName',RuleName) + + def get_Expression2(self): + return self.get_query_params().get('Expression2') + + def set_Expression2(self,Expression2): + self.add_query_param('Expression2',Expression2) + + def get_Expression1(self): + return self.get_query_params().get('Expression1') + + def set_Expression1(self,Expression1): + self.add_query_param('Expression1',Expression1) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StatisticsRules(self): + return self.get_query_params().get('StatisticsRules') + + def set_StatisticsRules(self,StatisticsRules): + self.add_query_param('StatisticsRules',StatisticsRules) + + def get_JoinRelation(self): + return self.get_query_params().get('JoinRelation') + + def set_JoinRelation(self,JoinRelation): + self.add_query_param('JoinRelation',JoinRelation) + + def get_RuleId(self): + return self.get_query_params().get('RuleId') + + def set_RuleId(self,RuleId): + self.add_query_param('RuleId',RuleId) + + def get_Actions(self): + return self.get_query_params().get('Actions') + + def set_Actions(self,Actions): + self.add_query_param('Actions',Actions) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateRuleRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateRuleRequest.py new file mode 100644 index 0000000000..3b194e2eb0 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateOrUpdateRuleRequest.py @@ -0,0 +1,90 @@ +# 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 +class CreateOrUpdateRuleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CreateOrUpdateRule','vipaegis') + + def get_WarnLevel(self): + return self.get_query_params().get('WarnLevel') + + def set_WarnLevel(self,WarnLevel): + self.add_query_param('WarnLevel',WarnLevel) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StatisticsRules(self): + return self.get_query_params().get('StatisticsRules') + + def set_StatisticsRules(self,StatisticsRules): + self.add_query_param('StatisticsRules',StatisticsRules) + + def get_DataSourceId(self): + return self.get_query_params().get('DataSourceId') + + def set_DataSourceId(self,DataSourceId): + self.add_query_param('DataSourceId',DataSourceId) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_RuleName(self): + return self.get_query_params().get('RuleName') + + def set_RuleName(self,RuleName): + self.add_query_param('RuleName',RuleName) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Expressions(self): + return self.get_query_params().get('Expressions') + + def set_Expressions(self,Expressions): + self.add_query_param('Expressions',Expressions) + + def get_Actions(self): + return self.get_query_params().get('Actions') + + def set_Actions(self,Actions): + self.add_query_param('Actions',Actions) + + def get_RuleGroupIds(self): + return self.get_query_params().get('RuleGroupIds') + + def set_RuleGroupIds(self,RuleGroupIds): + self.add_query_param('RuleGroupIds',RuleGroupIds) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateSuspiciousExportRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateSuspiciousExportRequest.py new file mode 100644 index 0000000000..d9016bc0da --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateSuspiciousExportRequest.py @@ -0,0 +1,78 @@ +# 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 +class CreateSuspiciousExportRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CreateSuspiciousExport','vipaegis') + + def get_StatusList(self): + return self.get_query_params().get('StatusList') + + def set_StatusList(self,StatusList): + self.add_query_param('StatusList',StatusList) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_EventNameRemark(self): + return self.get_query_params().get('EventNameRemark') + + def set_EventNameRemark(self,EventNameRemark): + self.add_query_param('EventNameRemark',EventNameRemark) + + def get_Level(self): + return self.get_query_params().get('Level') + + def set_Level(self,Level): + self.add_query_param('Level',Level) + + def get_GroupId(self): + return self.get_query_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_query_param('GroupId',GroupId) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_EventType(self): + return self.get_query_params().get('EventType') + + def set_EventType(self,EventType): + self.add_query_param('EventType',EventType) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_Tag(self): + return self.get_query_params().get('Tag') + + def set_Tag(self,Tag): + self.add_query_param('Tag',Tag) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateUserSettingRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateUserSettingRequest.py new file mode 100644 index 0000000000..ecb81eef03 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateUserSettingRequest.py @@ -0,0 +1,42 @@ +# 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 +class CreateUserSettingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CreateUserSetting','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_AlertLevels(self): + return self.get_query_params().get('AlertLevels') + + def set_AlertLevels(self,AlertLevels): + self.add_query_param('AlertLevels',AlertLevels) + + def get_InvalidWarningKeepDays(self): + return self.get_query_params().get('InvalidWarningKeepDays') + + def set_InvalidWarningKeepDays(self,InvalidWarningKeepDays): + self.add_query_param('InvalidWarningKeepDays',InvalidWarningKeepDays) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateUserWhiteListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateUserWhiteListRequest.py new file mode 100644 index 0000000000..c35f2ffeee --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateUserWhiteListRequest.py @@ -0,0 +1,42 @@ +# 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 +class CreateUserWhiteListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CreateUserWhiteList','vipaegis') + + def get_RiskIdList(self): + return self.get_query_params().get('RiskIdList') + + def set_RiskIdList(self,RiskIdList): + self.add_query_param('RiskIdList',RiskIdList) + + def get_Reason(self): + return self.get_query_params().get('Reason') + + def set_Reason(self,Reason): + self.add_query_param('Reason',Reason) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateVulWhitelistRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateVulWhitelistRequest.py new file mode 100644 index 0000000000..0b97d94e34 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/CreateVulWhitelistRequest.py @@ -0,0 +1,42 @@ +# 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 +class CreateVulWhitelistRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'CreateVulWhitelist','vipaegis') + + def get_Reason(self): + return self.get_query_params().get('Reason') + + def set_Reason(self,Reason): + self.add_query_param('Reason',Reason) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Whitelist(self): + return self.get_query_params().get('Whitelist') + + def set_Whitelist(self,Whitelist): + self.add_query_param('Whitelist',Whitelist) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteDingTalkRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteDingTalkRequest.py new file mode 100644 index 0000000000..f0edeb714c --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteDingTalkRequest.py @@ -0,0 +1,36 @@ +# 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 +class DeleteDingTalkRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DeleteDingTalk','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Ids(self): + return self.get_query_params().get('Ids') + + def set_Ids(self,Ids): + self.add_query_param('Ids',Ids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteJoinRuleRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteJoinRuleRequest.py new file mode 100644 index 0000000000..bf6caeca14 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteJoinRuleRequest.py @@ -0,0 +1,36 @@ +# 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 +class DeleteJoinRuleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DeleteJoinRule','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Ids(self): + return self.get_query_params().get('Ids') + + def set_Ids(self,Ids): + self.add_query_param('Ids',Ids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteLogQueryRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteLogQueryRequest.py new file mode 100644 index 0000000000..12f9012b41 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteLogQueryRequest.py @@ -0,0 +1,36 @@ +# 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 +class DeleteLogQueryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DeleteLogQuery','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_QueryName(self): + return self.get_query_params().get('QueryName') + + def set_QueryName(self,QueryName): + self.add_query_param('QueryName',QueryName) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteRuleGroupRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteRuleGroupRequest.py new file mode 100644 index 0000000000..c5e5443ac5 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteRuleGroupRequest.py @@ -0,0 +1,42 @@ +# 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 +class DeleteRuleGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DeleteRuleGroup','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteRuleRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteRuleRequest.py new file mode 100644 index 0000000000..e97e122e07 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteRuleRequest.py @@ -0,0 +1,42 @@ +# 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 +class DeleteRuleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DeleteRule','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteScreenSettingRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteScreenSettingRequest.py new file mode 100644 index 0000000000..5bd3e1b29a --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteScreenSettingRequest.py @@ -0,0 +1,36 @@ +# 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 +class DeleteScreenSettingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DeleteScreenSetting','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ScreenTitle(self): + return self.get_query_params().get('ScreenTitle') + + def set_ScreenTitle(self,ScreenTitle): + self.add_query_param('ScreenTitle',ScreenTitle) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteSearchConditionRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteSearchConditionRequest.py new file mode 100644 index 0000000000..df839f3749 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteSearchConditionRequest.py @@ -0,0 +1,36 @@ +# 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 +class DeleteSearchConditionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DeleteSearchCondition','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteStrategyRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteStrategyRequest.py new file mode 100644 index 0000000000..ca087a2b2d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteStrategyRequest.py @@ -0,0 +1,37 @@ +# 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 +class DeleteStrategyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DeleteStrategy','vipaegis') + self.set_method('POST') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteVulBatchRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteVulBatchRequest.py new file mode 100644 index 0000000000..b919434228 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteVulBatchRequest.py @@ -0,0 +1,42 @@ +# 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 +class DeleteVulBatchRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DeleteVulBatch','vipaegis') + + def get_BatchName(self): + return self.get_query_params().get('BatchName') + + def set_BatchName(self,BatchName): + self.add_query_param('BatchName',BatchName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Resource(self): + return self.get_query_params().get('Resource') + + def set_Resource(self,Resource): + self.add_query_param('Resource',Resource) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteVulWhitelistRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteVulWhitelistRequest.py new file mode 100644 index 0000000000..f6631c3d6f --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DeleteVulWhitelistRequest.py @@ -0,0 +1,36 @@ +# 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 +class DeleteVulWhitelistRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DeleteVulWhitelist','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Whitelist(self): + return self.get_query_params().get('Whitelist') + + def set_Whitelist(self,Whitelist): + self.add_query_param('Whitelist',Whitelist) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAgentInstallStatusRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAgentInstallStatusRequest.py new file mode 100644 index 0000000000..58be9462b9 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAgentInstallStatusRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeAgentInstallStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAgentInstallStatus','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAlarmEventDetailRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAlarmEventDetailRequest.py new file mode 100644 index 0000000000..dbccc3af76 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAlarmEventDetailRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeAlarmEventDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAlarmEventDetail','vipaegis') + + def get_AlarmUniqueInfo(self): + return self.get_query_params().get('AlarmUniqueInfo') + + def set_AlarmUniqueInfo(self,AlarmUniqueInfo): + self.add_query_param('AlarmUniqueInfo',AlarmUniqueInfo) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAlarmEventListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAlarmEventListRequest.py new file mode 100644 index 0000000000..5402cb8873 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAlarmEventListRequest.py @@ -0,0 +1,84 @@ +# 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 +class DescribeAlarmEventListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAlarmEventList','vipaegis') + + def get_AlarmEventName(self): + return self.get_query_params().get('AlarmEventName') + + def set_AlarmEventName(self,AlarmEventName): + self.add_query_param('AlarmEventName',AlarmEventName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_AlarmEventType(self): + return self.get_query_params().get('AlarmEventType') + + def set_AlarmEventType(self,AlarmEventType): + self.add_query_param('AlarmEventType',AlarmEventType) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Levels(self): + return self.get_query_params().get('Levels') + + def set_Levels(self,Levels): + self.add_query_param('Levels',Levels) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAllRegionsStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAllRegionsStatisticsRequest.py new file mode 100644 index 0000000000..ad2c43e2ad --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAllRegionsStatisticsRequest.py @@ -0,0 +1,138 @@ +# 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 +class DescribeAllRegionsStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAllRegionsStatistics','vipaegis') + + def get_StatusList(self): + return self.get_query_params().get('StatusList') + + def set_StatusList(self,StatusList): + self.add_query_param('StatusList',StatusList) + + def get_SaleId(self): + return self.get_query_params().get('SaleId') + + def set_SaleId(self,SaleId): + self.add_query_param('SaleId',SaleId) + + def get_RuleType(self): + return self.get_query_params().get('RuleType') + + def set_RuleType(self,RuleType): + self.add_query_param('RuleType',RuleType) + + def get_GroupId(self): + return self.get_query_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_query_param('GroupId',GroupId) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_SecureToken(self): + return self.get_query_params().get('SecureToken') + + def set_SecureToken(self,SecureToken): + self.add_query_param('SecureToken',SecureToken) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_WebGroupId(self): + return self.get_query_params().get('WebGroupId') + + def set_WebGroupId(self,WebGroupId): + self.add_query_param('WebGroupId',WebGroupId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Action1(self): + return self.get_query_params().get('Action1') + + def set_Action1(self,Action1): + self.add_query_param('Action1',Action1) + + def get_Tag(self): + return self.get_query_params().get('Tag') + + def set_Tag(self,Tag): + self.add_query_param('Tag',Tag) + + def get_Flow(self): + return self.get_query_params().get('Flow') + + def set_Flow(self,Flow): + self.add_query_param('Flow',Flow) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisCurveRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisCurveRequest.py new file mode 100644 index 0000000000..bb613b0ff1 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisCurveRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeAnalysisCurveRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAnalysisCurve','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StartTimeStamp(self): + return self.get_query_params().get('StartTimeStamp') + + def set_StartTimeStamp(self,StartTimeStamp): + self.add_query_param('StartTimeStamp',StartTimeStamp) + + def get_EndTimeStamp(self): + return self.get_query_params().get('EndTimeStamp') + + def set_EndTimeStamp(self,EndTimeStamp): + self.add_query_param('EndTimeStamp',EndTimeStamp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisHistogramsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisHistogramsRequest.py new file mode 100644 index 0000000000..e01f011121 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisHistogramsRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeAnalysisHistogramsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAnalysisHistograms','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Query(self): + return self.get_query_params().get('Query') + + def set_Query(self,Query): + self.add_query_param('Query',Query) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_To(self): + return self.get_query_params().get('To') + + def set_To(self,To): + self.add_query_param('To',To) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisLogsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisLogsRequest.py new file mode 100644 index 0000000000..43b6b94eac --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisLogsRequest.py @@ -0,0 +1,66 @@ +# 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 +class DescribeAnalysisLogsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAnalysisLogs','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Query(self): + return self.get_query_params().get('Query') + + def set_Query(self,Query): + self.add_query_param('Query',Query) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_To(self): + return self.get_query_params().get('To') + + def set_To(self,To): + self.add_query_param('To',To) + + def get_Reverse(self): + return self.get_query_params().get('Reverse') + + def set_Reverse(self,Reverse): + self.add_query_param('Reverse',Reverse) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisShipperStatusRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisShipperStatusRequest.py new file mode 100644 index 0000000000..2f85d59044 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisShipperStatusRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeAnalysisShipperStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAnalysisShipperStatus','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisSlsIndexRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisSlsIndexRequest.py new file mode 100644 index 0000000000..b0062430c2 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisSlsIndexRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeAnalysisSlsIndexRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAnalysisSlsIndex','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisStatisticsRequest.py new file mode 100644 index 0000000000..d68e892aa1 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAnalysisStatisticsRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeAnalysisStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAnalysisStatistics','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeApiBuySummaryRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeApiBuySummaryRequest.py new file mode 100644 index 0000000000..220cfc6b59 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeApiBuySummaryRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeApiBuySummaryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeApiBuySummary','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAssetDetailByUuidRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAssetDetailByUuidRequest.py new file mode 100644 index 0000000000..19bcb6233c --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAssetDetailByUuidRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeAssetDetailByUuidRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAssetDetailByUuid','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAssetListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAssetListRequest.py new file mode 100644 index 0000000000..6638e53594 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAssetListRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeAssetListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAssetList','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_FilterConditions(self): + return self.get_query_params().get('FilterConditions') + + def set_FilterConditions(self,FilterConditions): + self.add_query_param('FilterConditions',FilterConditions) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAssetSummaryRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAssetSummaryRequest.py new file mode 100644 index 0000000000..20ce8798d8 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAssetSummaryRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeAssetSummaryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAssetSummary','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAttackAnalysisDataRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAttackAnalysisDataRequest.py new file mode 100644 index 0000000000..f1797ffead --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAttackAnalysisDataRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeAttackAnalysisDataRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAttackAnalysisData','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Data(self): + return self.get_query_params().get('Data') + + def set_Data(self,Data): + self.add_query_param('Data',Data) + + def get_Base64(self): + return self.get_query_params().get('Base64') + + def set_Base64(self,Base64): + self.add_query_param('Base64',Base64) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAutoDelConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAutoDelConfigRequest.py new file mode 100644 index 0000000000..f450f5eac3 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeAutoDelConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeAutoDelConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeAutoDelConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeBuySummaryRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeBuySummaryRequest.py new file mode 100644 index 0000000000..59044f0d45 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeBuySummaryRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeBuySummaryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeBuySummary','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCanTrySasRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCanTrySasRequest.py new file mode 100644 index 0000000000..7abd0d1095 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCanTrySasRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeCanTrySasRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeCanTrySas','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCanUpgradeSasRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCanUpgradeSasRequest.py new file mode 100644 index 0000000000..cbd1fdc6d9 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCanUpgradeSasRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeCanUpgradeSasRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeCanUpgradeSas','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCheckWarningDetailRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCheckWarningDetailRequest.py new file mode 100644 index 0000000000..7b60b309f9 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCheckWarningDetailRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeCheckWarningDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeCheckWarningDetail','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_CheckWarningId(self): + return self.get_query_params().get('CheckWarningId') + + def set_CheckWarningId(self,CheckWarningId): + self.add_query_param('CheckWarningId',CheckWarningId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCheckWarningSummaryRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCheckWarningSummaryRequest.py new file mode 100644 index 0000000000..ef246aa2a5 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCheckWarningSummaryRequest.py @@ -0,0 +1,84 @@ +# 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 +class DescribeCheckWarningSummaryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeCheckWarningSummary','vipaegis') + + def get_RiskName(self): + return self.get_query_params().get('RiskName') + + def set_RiskName(self,RiskName): + self.add_query_param('RiskName',RiskName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_RiskStatus(self): + return self.get_query_params().get('RiskStatus') + + def set_RiskStatus(self,RiskStatus): + self.add_query_param('RiskStatus',RiskStatus) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_TypeName(self): + return self.get_query_params().get('TypeName') + + def set_TypeName(self,TypeName): + self.add_query_param('TypeName',TypeName) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCheckWarningsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCheckWarningsRequest.py new file mode 100644 index 0000000000..e2903eb4b3 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeCheckWarningsRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeCheckWarningsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeCheckWarnings','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_RiskId(self): + return self.get_query_params().get('RiskId') + + def set_RiskId(self,RiskId): + self.add_query_param('RiskId',RiskId) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeConcernNecessityRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeConcernNecessityRequest.py new file mode 100644 index 0000000000..51532c13f8 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeConcernNecessityRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeConcernNecessityRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeConcernNecessity','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeDataSourceRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeDataSourceRequest.py new file mode 100644 index 0000000000..8ad3510be4 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeDataSourceRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeDataSourceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeDataSource','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_GroupName(self): + return self.get_query_params().get('GroupName') + + def set_GroupName(self,GroupName): + self.add_query_param('GroupName',GroupName) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeDefenceThreadRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeDefenceThreadRequest.py new file mode 100644 index 0000000000..264cf0e231 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeDefenceThreadRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeDefenceThreadRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeDefenceThread','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeDingTalkRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeDingTalkRequest.py new file mode 100644 index 0000000000..9909bd478e --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeDingTalkRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeDingTalkRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeDingTalk','vipaegis') + + def get_RuleActionName(self): + return self.get_query_params().get('RuleActionName') + + def set_RuleActionName(self,RuleActionName): + self.add_query_param('RuleActionName',RuleActionName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEcsStsStatusRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEcsStsStatusRequest.py new file mode 100644 index 0000000000..5fc7428156 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEcsStsStatusRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeEcsStsStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeEcsStsStatus','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEmgNoticeRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEmgNoticeRequest.py new file mode 100644 index 0000000000..6f14357e2b --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEmgNoticeRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeEmgNoticeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeEmgNotice','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEmgUserAgreementRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEmgUserAgreementRequest.py new file mode 100644 index 0000000000..371760ab9d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEmgUserAgreementRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeEmgUserAgreementRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeEmgUserAgreement','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEmgVulGroupRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEmgVulGroupRequest.py new file mode 100644 index 0000000000..7c1a33538b --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEmgVulGroupRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeEmgVulGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeEmgVulGroup','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEventCountCurveRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEventCountCurveRequest.py new file mode 100644 index 0000000000..c5938d26e6 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEventCountCurveRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeEventCountCurveRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeEventCountCurve','vipaegis') + + def get_Types(self): + return self.get_query_params().get('Types') + + def set_Types(self,Types): + self.add_query_param('Types',Types) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_VulEventLevels(self): + return self.get_query_params().get('VulEventLevels') + + def set_VulEventLevels(self,VulEventLevels): + self.add_query_param('VulEventLevels',VulEventLevels) + + def get_LastDays(self): + return self.get_query_params().get('LastDays') + + def set_LastDays(self,LastDays): + self.add_query_param('LastDays',LastDays) + + def get_HealthEventLevels(self): + return self.get_query_params().get('HealthEventLevels') + + def set_HealthEventLevels(self,HealthEventLevels): + self.add_query_param('HealthEventLevels',HealthEventLevels) + + def get_SuspiciousEventLevels(self): + return self.get_query_params().get('SuspiciousEventLevels') + + def set_SuspiciousEventLevels(self,SuspiciousEventLevels): + self.add_query_param('SuspiciousEventLevels',SuspiciousEventLevels) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEventLevelCountRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEventLevelCountRequest.py new file mode 100644 index 0000000000..37fc143f0c --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeEventLevelCountRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeEventLevelCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeEventLevelCount','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeExportInfoRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeExportInfoRequest.py new file mode 100644 index 0000000000..4ca9089500 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeExportInfoRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeExportInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeExportInfo','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ExportId(self): + return self.get_query_params().get('ExportId') + + def set_ExportId(self,ExportId): + self.add_query_param('ExportId',ExportId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeFilterFieldsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeFilterFieldsRequest.py new file mode 100644 index 0000000000..20c224f95d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeFilterFieldsRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeFilterFieldsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeFilterFields','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Query(self): + return self.get_query_params().get('Query') + + def set_Query(self,Query): + self.add_query_param('Query',Query) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeGroupListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeGroupListRequest.py new file mode 100644 index 0000000000..97ba13960a --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeGroupListRequest.py @@ -0,0 +1,66 @@ +# 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 +class DescribeGroupListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeGroupList','vipaegis') + + def get_WarnLevel(self): + return self.get_query_params().get('WarnLevel') + + def set_WarnLevel(self,WarnLevel): + self.add_query_param('WarnLevel',WarnLevel) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_RuleGroupId(self): + return self.get_query_params().get('RuleGroupId') + + def set_RuleGroupId(self,RuleGroupId): + self.add_query_param('RuleGroupId',RuleGroupId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_ExGroupId(self): + return self.get_query_params().get('ExGroupId') + + def set_ExGroupId(self,ExGroupId): + self.add_query_param('ExGroupId',ExGroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeGroupStructRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeGroupStructRequest.py new file mode 100644 index 0000000000..abe41d881f --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeGroupStructRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeGroupStructRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeGroupStruct','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_tagIdList(self): + return self.get_query_params().get('tagIdList') + + def set_tagIdList(self,tagIdList): + self.add_query_param('tagIdList',tagIdList) + + def get_remark(self): + return self.get_query_params().get('remark') + + def set_remark(self,remark): + self.add_query_param('remark',remark) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeGroupedVulRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeGroupedVulRequest.py new file mode 100644 index 0000000000..9e0ba00af5 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeGroupedVulRequest.py @@ -0,0 +1,138 @@ +# 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 +class DescribeGroupedVulRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeGroupedVul','vipaegis') + + def get_StatusList(self): + return self.get_query_params().get('StatusList') + + def set_StatusList(self,StatusList): + self.add_query_param('StatusList',StatusList) + + def get_Level(self): + return self.get_query_params().get('Level') + + def set_Level(self,Level): + self.add_query_param('Level',Level) + + def get_OrderBy(self): + return self.get_query_params().get('OrderBy') + + def set_OrderBy(self,OrderBy): + self.add_query_param('OrderBy',OrderBy) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_LastTsEnd(self): + return self.get_query_params().get('LastTsEnd') + + def set_LastTsEnd(self,LastTsEnd): + self.add_query_param('LastTsEnd',LastTsEnd) + + def get_CreateTsStart(self): + return self.get_query_params().get('CreateTsStart') + + def set_CreateTsStart(self,CreateTsStart): + self.add_query_param('CreateTsStart',CreateTsStart) + + def get_AliasName(self): + return self.get_query_params().get('AliasName') + + def set_AliasName(self,AliasName): + self.add_query_param('AliasName',AliasName) + + def get_PatchId(self): + return self.get_query_params().get('PatchId') + + def set_PatchId(self,PatchId): + self.add_query_param('PatchId',PatchId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_CreateTsEnd(self): + return self.get_query_params().get('CreateTsEnd') + + def set_CreateTsEnd(self,CreateTsEnd): + self.add_query_param('CreateTsEnd',CreateTsEnd) + + def get_LastTsStart(self): + return self.get_query_params().get('LastTsStart') + + def set_LastTsStart(self,LastTsStart): + self.add_query_param('LastTsStart',LastTsStart) + + def get_Necessity(self): + return self.get_query_params().get('Necessity') + + def set_Necessity(self,Necessity): + self.add_query_param('Necessity',Necessity) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeHistogramRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeHistogramRequest.py new file mode 100644 index 0000000000..1d7b14ed60 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeHistogramRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeHistogramRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeHistogram','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Query(self): + return self.get_query_params().get('Query') + + def set_Query(self,Query): + self.add_query_param('Query',Query) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeInstanceStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeInstanceStatisticsRequest.py new file mode 100644 index 0000000000..a6bc1de56e --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeInstanceStatisticsRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeInstanceStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeInstanceStatistics','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeJoinRuleListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeJoinRuleListRequest.py new file mode 100644 index 0000000000..c6bca9f530 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeJoinRuleListRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeJoinRuleListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeJoinRuleList','vipaegis') + + def get_WarnLevel(self): + return self.get_query_params().get('WarnLevel') + + def set_WarnLevel(self,WarnLevel): + self.add_query_param('WarnLevel',WarnLevel) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_remark(self): + return self.get_query_params().get('remark') + + def set_remark(self,remark): + self.add_query_param('remark',remark) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeListAccessKeyIdAuthRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeListAccessKeyIdAuthRequest.py new file mode 100644 index 0000000000..3328bae823 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeListAccessKeyIdAuthRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeListAccessKeyIdAuthRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeListAccessKeyIdAuth','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogInfoRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogInfoRequest.py new file mode 100644 index 0000000000..69b9d2595b --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogInfoRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeLogInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeLogInfo','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Query(self): + return self.get_query_params().get('Query') + + def set_Query(self,Query): + self.add_query_param('Query',Query) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogItemsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogItemsRequest.py new file mode 100644 index 0000000000..3641c0c850 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogItemsRequest.py @@ -0,0 +1,102 @@ +# 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 +class DescribeLogItemsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeLogItems','vipaegis') + + def get_LoginOffset(self): + return self.get_query_params().get('LoginOffset') + + def set_LoginOffset(self,LoginOffset): + self.add_query_param('LoginOffset',LoginOffset) + + def get_ProcessSnapshotOffset(self): + return self.get_query_params().get('ProcessSnapshotOffset') + + def set_ProcessSnapshotOffset(self,ProcessSnapshotOffset): + self.add_query_param('ProcessSnapshotOffset',ProcessSnapshotOffset) + + def get_PortSnapshotOffset(self): + return self.get_query_params().get('PortSnapshotOffset') + + def set_PortSnapshotOffset(self,PortSnapshotOffset): + self.add_query_param('PortSnapshotOffset',PortSnapshotOffset) + + def get_Query(self): + return self.get_query_params().get('Query') + + def set_Query(self,Query): + self.add_query_param('Query',Query) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_NetworkOffset(self): + return self.get_query_params().get('NetworkOffset') + + def set_NetworkOffset(self,NetworkOffset): + self.add_query_param('NetworkOffset',NetworkOffset) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_AccountSnapshotOffset(self): + return self.get_query_params().get('AccountSnapshotOffset') + + def set_AccountSnapshotOffset(self,AccountSnapshotOffset): + self.add_query_param('AccountSnapshotOffset',AccountSnapshotOffset) + + def get_ProcessOffset(self): + return self.get_query_params().get('ProcessOffset') + + def set_ProcessOffset(self,ProcessOffset): + self.add_query_param('ProcessOffset',ProcessOffset) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_CrackOffset(self): + return self.get_query_params().get('CrackOffset') + + def set_CrackOffset(self,CrackOffset): + self.add_query_param('CrackOffset',CrackOffset) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogMetaRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogMetaRequest.py new file mode 100644 index 0000000000..9fd191f5d5 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogMetaRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeLogMetaRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeLogMeta','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogQueryRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogQueryRequest.py new file mode 100644 index 0000000000..85e07c911b --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogQueryRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeLogQueryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeLogQuery','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogShipperStatusRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogShipperStatusRequest.py new file mode 100644 index 0000000000..059d668f5f --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogShipperStatusRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeLogShipperStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeLogShipperStatus','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLoginLogsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLoginLogsRequest.py new file mode 100644 index 0000000000..ff96497ec2 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLoginLogsRequest.py @@ -0,0 +1,66 @@ +# 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 +class DescribeLoginLogsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeLoginLogs','vipaegis') + + def get_Types(self): + return self.get_query_params().get('Types') + + def set_Types(self,Types): + self.add_query_param('Types',Types) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Statuses(self): + return self.get_query_params().get('Statuses') + + def set_Statuses(self,Statuses): + self.add_query_param('Statuses',Statuses) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_Tag(self): + return self.get_query_params().get('Tag') + + def set_Tag(self,Tag): + self.add_query_param('Tag',Tag) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogstoreStorageRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogstoreStorageRequest.py new file mode 100644 index 0000000000..5dcd76774d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeLogstoreStorageRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeLogstoreStorageRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeLogstoreStorage','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeMacConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeMacConfigRequest.py new file mode 100644 index 0000000000..26a2297831 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeMacConfigRequest.py @@ -0,0 +1,66 @@ +# 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 +class DescribeMacConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeMacConfig','vipaegis') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_Types(self): + return self.get_query_params().get('Types') + + def set_Types(self,Types): + self.add_query_param('Types',Types) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Extern(self): + return self.get_query_params().get('Extern') + + def set_Extern(self,Extern): + self.add_query_param('Extern',Extern) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Config(self): + return self.get_query_params().get('Config') + + def set_Config(self,Config): + self.add_query_param('Config',Config) + + def get_Target(self): + return self.get_query_params().get('Target') + + def set_Target(self,Target): + self.add_query_param('Target',Target) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeMachineConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeMachineConfigRequest.py new file mode 100644 index 0000000000..69eb3897bd --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeMachineConfigRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeMachineConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeMachineConfig','vipaegis') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_Types(self): + return self.get_query_params().get('Types') + + def set_Types(self,Types): + self.add_query_param('Types',Types) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Config(self): + return self.get_query_params().get('Config') + + def set_Config(self,Config): + self.add_query_param('Config',Config) + + def get_Target(self): + return self.get_query_params().get('Target') + + def set_Target(self,Target): + self.add_query_param('Target',Target) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeMetaDataRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeMetaDataRequest.py new file mode 100644 index 0000000000..07eb3e476a --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeMetaDataRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeMetaDataRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeMetaData','vipaegis') + + def get_ProjectName(self): + return self.get_query_params().get('ProjectName') + + def set_ProjectName(self,ProjectName): + self.add_query_param('ProjectName',ProjectName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_LogStoreName(self): + return self.get_query_params().get('LogStoreName') + + def set_LogStoreName(self,LogStoreName): + self.add_query_param('LogStoreName',LogStoreName) + + def get_RegionNo(self): + return self.get_query_params().get('RegionNo') + + def set_RegionNo(self,RegionNo): + self.add_query_param('RegionNo',RegionNo) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeNsasSuspEventTypeRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeNsasSuspEventTypeRequest.py new file mode 100644 index 0000000000..8a45c9d18d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeNsasSuspEventTypeRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeNsasSuspEventTypeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeNsasSuspEventType','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeOperateInfoRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeOperateInfoRequest.py new file mode 100644 index 0000000000..aa244a1731 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeOperateInfoRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeOperateInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeOperateInfo','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeQuaraFileRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeQuaraFileRequest.py new file mode 100644 index 0000000000..e04baf28ef --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeQuaraFileRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeQuaraFileRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeQuaraFile','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeResultListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeResultListRequest.py new file mode 100644 index 0000000000..60f8f66e51 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeResultListRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeResultListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeResultList','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_RuleName(self): + return self.get_query_params().get('RuleName') + + def set_RuleName(self,RuleName): + self.add_query_param('RuleName',RuleName) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_UuidList(self): + return self.get_query_params().get('UuidList') + + def set_UuidList(self,UuidList): + self.add_query_param('UuidList',UuidList) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeRiskTypeRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeRiskTypeRequest.py new file mode 100644 index 0000000000..01889adb68 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeRiskTypeRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeRiskTypeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeRiskType','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeRiskWhiteListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeRiskWhiteListRequest.py new file mode 100644 index 0000000000..2a9c059707 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeRiskWhiteListRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeRiskWhiteListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeRiskWhiteList','vipaegis') + + def get_RiskName(self): + return self.get_query_params().get('RiskName') + + def set_RiskName(self,RiskName): + self.add_query_param('RiskName',RiskName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeRisksRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeRisksRequest.py new file mode 100644 index 0000000000..c41bab89e3 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeRisksRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeRisksRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeRisks','vipaegis') + + def get_RiskName(self): + return self.get_query_params().get('RiskName') + + def set_RiskName(self,RiskName): + self.add_query_param('RiskName',RiskName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Limit(self): + return self.get_query_params().get('Limit') + + def set_Limit(self,Limit): + self.add_query_param('Limit',Limit) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_RiskId(self): + return self.get_query_params().get('RiskId') + + def set_RiskId(self,RiskId): + self.add_query_param('RiskId',RiskId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeRuleListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeRuleListRequest.py new file mode 100644 index 0000000000..37cf813481 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeRuleListRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeRuleListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeRuleList','vipaegis') + + def get_WarnLevel(self): + return self.get_query_params().get('WarnLevel') + + def set_WarnLevel(self,WarnLevel): + self.add_query_param('WarnLevel',WarnLevel) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_GroupId(self): + return self.get_query_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_query_param('GroupId',GroupId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_ExGroupId(self): + return self.get_query_params().get('ExGroupId') + + def set_ExGroupId(self,ExGroupId): + self.add_query_param('ExGroupId',ExGroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSasAssetStatisticsColumnRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSasAssetStatisticsColumnRequest.py new file mode 100644 index 0000000000..b06912d80c --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSasAssetStatisticsColumnRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeSasAssetStatisticsColumnRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSasAssetStatisticsColumn','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSasAssetStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSasAssetStatisticsRequest.py new file mode 100644 index 0000000000..4a245fc18e --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSasAssetStatisticsRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeSasAssetStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSasAssetStatistics','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StatisticsColumn(self): + return self.get_query_params().get('StatisticsColumn') + + def set_StatisticsColumn(self,StatisticsColumn): + self.add_query_param('StatisticsColumn',StatisticsColumn) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSasLeftConditionRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSasLeftConditionRequest.py new file mode 100644 index 0000000000..aa565b6031 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSasLeftConditionRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeSasLeftConditionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSasLeftCondition','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ConditionType(self): + return self.get_query_params().get('ConditionType') + + def set_ConditionType(self,ConditionType): + self.add_query_param('ConditionType',ConditionType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_FilterConditions(self): + return self.get_query_params().get('FilterConditions') + + def set_FilterConditions(self,FilterConditions): + self.add_query_param('FilterConditions',FilterConditions) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenAlarmEventListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenAlarmEventListRequest.py new file mode 100644 index 0000000000..21cf93532f --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenAlarmEventListRequest.py @@ -0,0 +1,84 @@ +# 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 +class DescribeScreenAlarmEventListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeScreenAlarmEventList','vipaegis') + + def get_AlarmEventName(self): + return self.get_query_params().get('AlarmEventName') + + def set_AlarmEventName(self,AlarmEventName): + self.add_query_param('AlarmEventName',AlarmEventName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_AlarmEventType(self): + return self.get_query_params().get('AlarmEventType') + + def set_AlarmEventType(self,AlarmEventType): + self.add_query_param('AlarmEventType',AlarmEventType) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Levels(self): + return self.get_query_params().get('Levels') + + def set_Levels(self,Levels): + self.add_query_param('Levels',Levels) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenAttackAnalysisDataRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenAttackAnalysisDataRequest.py new file mode 100644 index 0000000000..2f5fcead75 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenAttackAnalysisDataRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeScreenAttackAnalysisDataRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeScreenAttackAnalysisData','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Data(self): + return self.get_query_params().get('Data') + + def set_Data(self,Data): + self.add_query_param('Data',Data) + + def get_Base64(self): + return self.get_query_params().get('Base64') + + def set_Base64(self,Base64): + self.add_query_param('Base64',Base64) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenHostStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenHostStatisticsRequest.py new file mode 100644 index 0000000000..ced6a2be0c --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenHostStatisticsRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeScreenHostStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeScreenHostStatistics','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenOperateInfoRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenOperateInfoRequest.py new file mode 100644 index 0000000000..c188f96671 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenOperateInfoRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeScreenOperateInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeScreenOperateInfo','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenScoreThreadRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenScoreThreadRequest.py new file mode 100644 index 0000000000..89be17cb20 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenScoreThreadRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeScreenScoreThreadRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeScreenScoreThread','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenSecurityStatInfoRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenSecurityStatInfoRequest.py new file mode 100644 index 0000000000..4d2c3dbe54 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenSecurityStatInfoRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeScreenSecurityStatInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeScreenSecurityStatInfo','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenSettingRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenSettingRequest.py new file mode 100644 index 0000000000..6d7acb34b2 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenSettingRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeScreenSettingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeScreenSetting','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ScreenTitle(self): + return self.get_query_params().get('ScreenTitle') + + def set_ScreenTitle(self,ScreenTitle): + self.add_query_param('ScreenTitle',ScreenTitle) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenSettingsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenSettingsRequest.py new file mode 100644 index 0000000000..bf67ab986f --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenSettingsRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeScreenSettingsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeScreenSettings','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenSummaryInfoRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenSummaryInfoRequest.py new file mode 100644 index 0000000000..065b965622 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenSummaryInfoRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeScreenSummaryInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeScreenSummaryInfo','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenVersionConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenVersionConfigRequest.py new file mode 100644 index 0000000000..7da2b938ae --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeScreenVersionConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeScreenVersionConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeScreenVersionConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSearchConditionRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSearchConditionRequest.py new file mode 100644 index 0000000000..ec22e33f2d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSearchConditionRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeSearchConditionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSearchCondition','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSecureSuggestionRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSecureSuggestionRequest.py new file mode 100644 index 0000000000..37180fb732 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSecureSuggestionRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeSecureSuggestionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSecureSuggestion','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSecurityStatInfoRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSecurityStatInfoRequest.py new file mode 100644 index 0000000000..6004ce590b --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSecurityStatInfoRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeSecurityStatInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSecurityStatInfo','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSlsProjectRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSlsProjectRequest.py new file mode 100644 index 0000000000..c4b3869f32 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSlsProjectRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeSlsProjectRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSlsProject','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_RegionNo(self): + return self.get_query_params().get('RegionNo') + + def set_RegionNo(self,RegionNo): + self.add_query_param('RegionNo',RegionNo) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStatisticsRequest.py new file mode 100644 index 0000000000..719f1ec39a --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStatisticsRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeStatistics','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStrategyExecDetailRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStrategyExecDetailRequest.py new file mode 100644 index 0000000000..ebb803adbd --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStrategyExecDetailRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeStrategyExecDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeStrategyExecDetail','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStrategyProcessRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStrategyProcessRequest.py new file mode 100644 index 0000000000..98a7eff1d2 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStrategyProcessRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeStrategyProcessRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeStrategyProcess','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStrategyTargetRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStrategyTargetRequest.py new file mode 100644 index 0000000000..40f9e6de0d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStrategyTargetRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeStrategyTargetRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeStrategyTarget','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Config(self): + return self.get_query_params().get('Config') + + def set_Config(self,Config): + self.add_query_param('Config',Config) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStratetyDetailRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStratetyDetailRequest.py new file mode 100644 index 0000000000..10a95477a8 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStratetyDetailRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeStratetyDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeStratetyDetail','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStratetyRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStratetyRequest.py new file mode 100644 index 0000000000..af05bb16f3 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeStratetyRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeStratetyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeStratety','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StrategyIds(self): + return self.get_query_params().get('StrategyIds') + + def set_StrategyIds(self,StrategyIds): + self.add_query_param('StrategyIds',StrategyIds) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSummaryInfoRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSummaryInfoRequest.py new file mode 100644 index 0000000000..109534d92c --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSummaryInfoRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeSummaryInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSummaryInfo','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventDetailRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventDetailRequest.py new file mode 100644 index 0000000000..119d801326 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventDetailRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeSuspEventDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSuspEventDetail','vipaegis') + + def get_SuspiciousEventId(self): + return self.get_query_params().get('SuspiciousEventId') + + def set_SuspiciousEventId(self,SuspiciousEventId): + self.add_query_param('SuspiciousEventId',SuspiciousEventId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventExportInfoRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventExportInfoRequest.py new file mode 100644 index 0000000000..b56c442b65 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventExportInfoRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeSuspEventExportInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSuspEventExportInfo','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_ExportId(self): + return self.get_query_params().get('ExportId') + + def set_ExportId(self,ExportId): + self.add_query_param('ExportId',ExportId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventQuaraFilesRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventQuaraFilesRequest.py new file mode 100644 index 0000000000..13fe5bcaea --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventQuaraFilesRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeSuspEventQuaraFilesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSuspEventQuaraFiles','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventTypesRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventTypesRequest.py new file mode 100644 index 0000000000..b52e9a929b --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventTypesRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeSuspEventTypesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSuspEventTypes','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventUserSettingRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventUserSettingRequest.py new file mode 100644 index 0000000000..59a809e436 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventUserSettingRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeSuspEventUserSettingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSuspEventUserSetting','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventsRequest.py new file mode 100644 index 0000000000..d74d1e73ea --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspEventsRequest.py @@ -0,0 +1,90 @@ +# 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 +class DescribeSuspEventsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSuspEvents','vipaegis') + + def get_AlarmUniqueInfo(self): + return self.get_query_params().get('AlarmUniqueInfo') + + def set_AlarmUniqueInfo(self,AlarmUniqueInfo): + self.add_query_param('AlarmUniqueInfo',AlarmUniqueInfo) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Levels(self): + return self.get_query_params().get('Levels') + + def set_Levels(self,Levels): + self.add_query_param('Levels',Levels) + + def get_ParentEventTypes(self): + return self.get_query_params().get('ParentEventTypes') + + def set_ParentEventTypes(self,ParentEventTypes): + self.add_query_param('ParentEventTypes',ParentEventTypes) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspTrendStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspTrendStatisticsRequest.py new file mode 100644 index 0000000000..9b8239798d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspTrendStatisticsRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeSuspTrendStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSuspTrendStatistics','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspiciousEventsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspiciousEventsRequest.py new file mode 100644 index 0000000000..6eac947274 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspiciousEventsRequest.py @@ -0,0 +1,72 @@ +# 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 +class DescribeSuspiciousEventsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSuspiciousEvents','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Level(self): + return self.get_query_params().get('Level') + + def set_Level(self,Level): + self.add_query_param('Level',Level) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_EventType(self): + return self.get_query_params().get('EventType') + + def set_EventType(self,EventType): + self.add_query_param('EventType',EventType) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspiciousExportInfoRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspiciousExportInfoRequest.py new file mode 100644 index 0000000000..562c64d664 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspiciousExportInfoRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeSuspiciousExportInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSuspiciousExportInfo','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ExportId(self): + return self.get_query_params().get('ExportId') + + def set_ExportId(self,ExportId): + self.add_query_param('ExportId',ExportId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspiciousOverallConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspiciousOverallConfigRequest.py new file mode 100644 index 0000000000..82bad3529d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspiciousOverallConfigRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeSuspiciousOverallConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSuspiciousOverallConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspiciousUUIDConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspiciousUUIDConfigRequest.py new file mode 100644 index 0000000000..600f3ccef5 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeSuspiciousUUIDConfigRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeSuspiciousUUIDConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeSuspiciousUUIDConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTargetConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTargetConfigRequest.py new file mode 100644 index 0000000000..18e9b44cca --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTargetConfigRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeTargetConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeTargetConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTargetRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTargetRequest.py new file mode 100644 index 0000000000..3ad647294a --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTargetRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeTargetRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeTarget','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Config(self): + return self.get_query_params().get('Config') + + def set_Config(self,Config): + self.add_query_param('Config',Config) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTopRiskyAssetsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTopRiskyAssetsRequest.py new file mode 100644 index 0000000000..1e198ff6db --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTopRiskyAssetsRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeTopRiskyAssetsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeTopRiskyAssets','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTopicListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTopicListRequest.py new file mode 100644 index 0000000000..f5a5e02bd8 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTopicListRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeTopicListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeTopicList','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTotalStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTotalStatisticsRequest.py new file mode 100644 index 0000000000..11bccd3860 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTotalStatisticsRequest.py @@ -0,0 +1,144 @@ +# 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 +class DescribeTotalStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeTotalStatistics','vipaegis') + + def get_StatusList(self): + return self.get_query_params().get('StatusList') + + def set_StatusList(self,StatusList): + self.add_query_param('StatusList',StatusList) + + def get_SaleId(self): + return self.get_query_params().get('SaleId') + + def set_SaleId(self,SaleId): + self.add_query_param('SaleId',SaleId) + + def get_RuleType(self): + return self.get_query_params().get('RuleType') + + def set_RuleType(self,RuleType): + self.add_query_param('RuleType',RuleType) + + def get_GroupId(self): + return self.get_query_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_query_param('GroupId',GroupId) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_SecureToken(self): + return self.get_query_params().get('SecureToken') + + def set_SecureToken(self,SecureToken): + self.add_query_param('SecureToken',SecureToken) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_WebGroupId(self): + return self.get_query_params().get('WebGroupId') + + def set_WebGroupId(self,WebGroupId): + self.add_query_param('WebGroupId',WebGroupId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Action1(self): + return self.get_query_params().get('Action1') + + def set_Action1(self,Action1): + self.add_query_param('Action1',Action1) + + def get_Tag(self): + return self.get_query_params().get('Tag') + + def set_Tag(self,Tag): + self.add_query_param('Tag',Tag) + + def get_Flow(self): + return self.get_query_params().get('Flow') + + def set_Flow(self,Flow): + self.add_query_param('Flow',Flow) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTraceInfoDetailRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTraceInfoDetailRequest.py new file mode 100644 index 0000000000..719d60329b --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTraceInfoDetailRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeTraceInfoDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeTraceInfoDetail','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_VertexId(self): + return self.get_query_params().get('VertexId') + + def set_VertexId(self,VertexId): + self.add_query_param('VertexId',VertexId) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTraceInfoNodeListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTraceInfoNodeListRequest.py new file mode 100644 index 0000000000..78a63be831 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTraceInfoNodeListRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeTraceInfoNodeListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeTraceInfoNodeList','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_VertexId(self): + return self.get_query_params().get('VertexId') + + def set_VertexId(self,VertexId): + self.add_query_param('VertexId',VertexId) + + def get_StartType(self): + return self.get_query_params().get('StartType') + + def set_StartType(self,StartType): + self.add_query_param('StartType',StartType) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTraceInfoNodeRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTraceInfoNodeRequest.py new file mode 100644 index 0000000000..6265c14deb --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeTraceInfoNodeRequest.py @@ -0,0 +1,66 @@ +# 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 +class DescribeTraceInfoNodeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeTraceInfoNode','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_VertexId(self): + return self.get_query_params().get('VertexId') + + def set_VertexId(self,VertexId): + self.add_query_param('VertexId',VertexId) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_EventName(self): + return self.get_query_params().get('EventName') + + def set_EventName(self,EventName): + self.add_query_param('EventName',EventName) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeUserSettingRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeUserSettingRequest.py new file mode 100644 index 0000000000..be44c4bf33 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeUserSettingRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeUserSettingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeUserSetting','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeUuidConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeUuidConfigRequest.py new file mode 100644 index 0000000000..56702541eb --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeUuidConfigRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeUuidConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeUuidConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVersionConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVersionConfigRequest.py new file mode 100644 index 0000000000..288fe114cb --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVersionConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeVersionConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVersionConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulBatchRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulBatchRequest.py new file mode 100644 index 0000000000..5b234e80ad --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulBatchRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeVulBatchRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVulBatch','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Resource(self): + return self.get_query_params().get('Resource') + + def set_Resource(self,Resource): + self.add_query_param('Resource',Resource) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulConfigRequest.py new file mode 100644 index 0000000000..471868b209 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulConfigRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeVulConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVulConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulDetailsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulDetailsRequest.py new file mode 100644 index 0000000000..2835f871cf --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulDetailsRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeVulDetailsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVulDetails','vipaegis') + + def get_AliasName(self): + return self.get_query_params().get('AliasName') + + def set_AliasName(self,AliasName): + self.add_query_param('AliasName',AliasName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulExportInfoRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulExportInfoRequest.py new file mode 100644 index 0000000000..72d0e7f7d1 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulExportInfoRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeVulExportInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVulExportInfo','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ExportId(self): + return self.get_query_params().get('ExportId') + + def set_ExportId(self,ExportId): + self.add_query_param('ExportId',ExportId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulLevelRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulLevelRequest.py new file mode 100644 index 0000000000..5959952381 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulLevelRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeVulLevelRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVulLevel','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulLevelStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulLevelStatisticsRequest.py new file mode 100644 index 0000000000..b5032f0b62 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulLevelStatisticsRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeVulLevelStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVulLevelStatistics','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_EndTs(self): + return self.get_query_params().get('EndTs') + + def set_EndTs(self,EndTs): + self.add_query_param('EndTs',EndTs) + + def get_StartTs(self): + return self.get_query_params().get('StartTs') + + def set_StartTs(self,StartTs): + self.add_query_param('StartTs',StartTs) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulListRequest.py new file mode 100644 index 0000000000..83e96e65ac --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulListRequest.py @@ -0,0 +1,126 @@ +# 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 +class DescribeVulListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVulList','vipaegis') + + def get_StatusList(self): + return self.get_query_params().get('StatusList') + + def set_StatusList(self,StatusList): + self.add_query_param('StatusList',StatusList) + + def get_Level(self): + return self.get_query_params().get('Level') + + def set_Level(self,Level): + self.add_query_param('Level',Level) + + def get_Resource(self): + return self.get_query_params().get('Resource') + + def set_Resource(self,Resource): + self.add_query_param('Resource',Resource) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_CreateTsStart(self): + return self.get_query_params().get('CreateTsStart') + + def set_CreateTsStart(self,CreateTsStart): + self.add_query_param('CreateTsStart',CreateTsStart) + + def get_BatchName(self): + return self.get_query_params().get('BatchName') + + def set_BatchName(self,BatchName): + self.add_query_param('BatchName',BatchName) + + def get_AliasName(self): + return self.get_query_params().get('AliasName') + + def set_AliasName(self,AliasName): + self.add_query_param('AliasName',AliasName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_CreateTsEnd(self): + return self.get_query_params().get('CreateTsEnd') + + def set_CreateTsEnd(self,CreateTsEnd): + self.add_query_param('CreateTsEnd',CreateTsEnd) + + def get_Necessity(self): + return self.get_query_params().get('Necessity') + + def set_Necessity(self,Necessity): + self.add_query_param('Necessity',Necessity) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulMachineListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulMachineListRequest.py new file mode 100644 index 0000000000..1e10ff9217 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulMachineListRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeVulMachineListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVulMachineList','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_EndTs(self): + return self.get_query_params().get('EndTs') + + def set_EndTs(self,EndTs): + self.add_query_param('EndTs',EndTs) + + def get_StartTs(self): + return self.get_query_params().get('StartTs') + + def set_StartTs(self,StartTs): + self.add_query_param('StartTs',StartTs) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulNumStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulNumStatisticsRequest.py new file mode 100644 index 0000000000..877209b879 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulNumStatisticsRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeVulNumStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVulNumStatistics','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_EndTs(self): + return self.get_query_params().get('EndTs') + + def set_EndTs(self,EndTs): + self.add_query_param('EndTs',EndTs) + + def get_StartTs(self): + return self.get_query_params().get('StartTs') + + def set_StartTs(self,StartTs): + self.add_query_param('StartTs',StartTs) + + def get_CreateTsEnd(self): + return self.get_query_params().get('CreateTsEnd') + + def set_CreateTsEnd(self,CreateTsEnd): + self.add_query_param('CreateTsEnd',CreateTsEnd) + + def get_CreateTsStart(self): + return self.get_query_params().get('CreateTsStart') + + def set_CreateTsStart(self,CreateTsStart): + self.add_query_param('CreateTsStart',CreateTsStart) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulTargetStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulTargetStatisticsRequest.py new file mode 100644 index 0000000000..50bdfe7cf7 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulTargetStatisticsRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeVulTargetStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVulTargetStatistics','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulWhitelistRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulWhitelistRequest.py new file mode 100644 index 0000000000..ce057dc706 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulWhitelistRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeVulWhitelistRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVulWhitelist','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulnerabilitySummaryRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulnerabilitySummaryRequest.py new file mode 100644 index 0000000000..e6c1ced147 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeVulnerabilitySummaryRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeVulnerabilitySummaryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeVulnerabilitySummary','vipaegis') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_CronJobId(self): + return self.get_query_params().get('CronJobId') + + def set_CronJobId(self,CronJobId): + self.add_query_param('CronJobId',CronJobId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWarningMachinesRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWarningMachinesRequest.py new file mode 100644 index 0000000000..f3bece9d7b --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWarningMachinesRequest.py @@ -0,0 +1,72 @@ +# 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 +class DescribeWarningMachinesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWarningMachines','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_MachineName(self): + return self.get_query_params().get('MachineName') + + def set_MachineName(self,MachineName): + self.add_query_param('MachineName',MachineName) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_RiskId(self): + return self.get_query_params().get('RiskId') + + def set_RiskId(self,RiskId): + self.add_query_param('RiskId',RiskId) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWarningRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWarningRequest.py new file mode 100644 index 0000000000..540050c41b --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWarningRequest.py @@ -0,0 +1,90 @@ +# 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 +class DescribeWarningRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWarning','vipaegis') + + def get_TypeNames(self): + return self.get_query_params().get('TypeNames') + + def set_TypeNames(self,TypeNames): + self.add_query_param('TypeNames',TypeNames) + + def get_RiskName(self): + return self.get_query_params().get('RiskName') + + def set_RiskName(self,RiskName): + self.add_query_param('RiskName',RiskName) + + def get_StatusList(self): + return self.get_query_params().get('StatusList') + + def set_StatusList(self,StatusList): + self.add_query_param('StatusList',StatusList) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_RiskLevels(self): + return self.get_query_params().get('RiskLevels') + + def set_RiskLevels(self,RiskLevels): + self.add_query_param('RiskLevels',RiskLevels) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_SubTypeNames(self): + return self.get_query_params().get('SubTypeNames') + + def set_SubTypeNames(self,SubTypeNames): + self.add_query_param('SubTypeNames',SubTypeNames) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockBindListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockBindListRequest.py new file mode 100644 index 0000000000..e9c98c8203 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockBindListRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeWebLockBindListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWebLockBindList','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockConfigListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockConfigListRequest.py new file mode 100644 index 0000000000..684089c7dc --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockConfigListRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeWebLockConfigListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWebLockConfigList','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockEventsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockEventsRequest.py new file mode 100644 index 0000000000..639e938284 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockEventsRequest.py @@ -0,0 +1,90 @@ +# 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 +class DescribeWebLockEventsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWebLockEvents','vipaegis') + + def get_StatusList(self): + return self.get_query_params().get('StatusList') + + def set_StatusList(self,StatusList): + self.add_query_param('StatusList',StatusList) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Level(self): + return self.get_query_params().get('Level') + + def set_Level(self,Level): + self.add_query_param('Level',Level) + + def get_GroupId(self): + return self.get_query_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_query_param('GroupId',GroupId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Tag(self): + return self.get_query_params().get('Tag') + + def set_Tag(self,Tag): + self.add_query_param('Tag',Tag) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_EventName(self): + return self.get_query_params().get('EventName') + + def set_EventName(self,EventName): + self.add_query_param('EventName',EventName) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockMachineListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockMachineListRequest.py new file mode 100644 index 0000000000..7ce65f5ac1 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockMachineListRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeWebLockMachineListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWebLockMachineList','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockStatusRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockStatusRequest.py new file mode 100644 index 0000000000..3d1164d242 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebLockStatusRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeWebLockStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWebLockStatus','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebshellRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebshellRequest.py new file mode 100644 index 0000000000..4a8745c78d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWebshellRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeWebshellRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWebshell','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_GroupId(self): + return self.get_query_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_query_param('GroupId',GroupId) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_Tag(self): + return self.get_query_params().get('Tag') + + def set_Tag(self,Tag): + self.add_query_param('Tag',Tag) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListAssetRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListAssetRequest.py new file mode 100644 index 0000000000..294ac68ebf --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListAssetRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeWhiteListAssetRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWhiteListAsset','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_LastMaxId(self): + return self.get_query_params().get('LastMaxId') + + def set_LastMaxId(self,LastMaxId): + self.add_query_param('LastMaxId',LastMaxId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListAuthorizeRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListAuthorizeRequest.py new file mode 100644 index 0000000000..3fe16d0f83 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListAuthorizeRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeWhiteListAuthorizeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWhiteListAuthorize','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListEffectiveAssetsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListEffectiveAssetsRequest.py new file mode 100644 index 0000000000..c3d29ff434 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListEffectiveAssetsRequest.py @@ -0,0 +1,66 @@ +# 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 +class DescribeWhiteListEffectiveAssetsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWhiteListEffectiveAssets','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_NeedStatistics(self): + return self.get_query_params().get('NeedStatistics') + + def set_NeedStatistics(self,NeedStatistics): + self.add_query_param('NeedStatistics',NeedStatistics) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListProcessRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListProcessRequest.py new file mode 100644 index 0000000000..5d55bd7937 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListProcessRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeWhiteListProcessRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWhiteListProcess','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ProcessName(self): + return self.get_query_params().get('ProcessName') + + def set_ProcessName(self,ProcessName): + self.add_query_param('ProcessName',ProcessName) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_ProcessType(self): + return self.get_query_params().get('ProcessType') + + def set_ProcessType(self,ProcessType): + self.add_query_param('ProcessType',ProcessType) + + def get_OrderBy(self): + return self.get_query_params().get('OrderBy') + + def set_OrderBy(self,OrderBy): + self.add_query_param('OrderBy',OrderBy) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Desc(self): + return self.get_query_params().get('Desc') + + def set_Desc(self,Desc): + self.add_query_param('Desc',Desc) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListStrategyCountRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListStrategyCountRequest.py new file mode 100644 index 0000000000..9c9e1e0185 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListStrategyCountRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeWhiteListStrategyCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWhiteListStrategyCount','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListStrategyListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListStrategyListRequest.py new file mode 100644 index 0000000000..02990924fb --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListStrategyListRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeWhiteListStrategyListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWhiteListStrategyList','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StrategyIds(self): + return self.get_query_params().get('StrategyIds') + + def set_StrategyIds(self,StrategyIds): + self.add_query_param('StrategyIds',StrategyIds) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListStrategyStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListStrategyStatisticsRequest.py new file mode 100644 index 0000000000..ba945f9ab2 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListStrategyStatisticsRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeWhiteListStrategyStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWhiteListStrategyStatistics','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_StrategyIds(self): + return self.get_query_params().get('StrategyIds') + + def set_StrategyIds(self,StrategyIds): + self.add_query_param('StrategyIds',StrategyIds) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListStrategyUuidCountRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListStrategyUuidCountRequest.py new file mode 100644 index 0000000000..33bf962dab --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeWhiteListStrategyUuidCountRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeWhiteListStrategyUuidCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeWhiteListStrategyUuidCount','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeYesterdayStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeYesterdayStatisticsRequest.py new file mode 100644 index 0000000000..d2270041ee --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribeYesterdayStatisticsRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeYesterdayStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DescribeYesterdayStatistics','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribesummaryRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribesummaryRequest.py new file mode 100644 index 0000000000..f674be83c5 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DescribesummaryRequest.py @@ -0,0 +1,90 @@ +# 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 +class DescribesummaryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'Describesummary','vipaegis') + + def get_TypeNames(self): + return self.get_query_params().get('TypeNames') + + def set_TypeNames(self,TypeNames): + self.add_query_param('TypeNames',TypeNames) + + def get_RiskName(self): + return self.get_query_params().get('RiskName') + + def set_RiskName(self,RiskName): + self.add_query_param('RiskName',RiskName) + + def get_StatusList(self): + return self.get_query_params().get('StatusList') + + def set_StatusList(self,StatusList): + self.add_query_param('StatusList',StatusList) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_RiskLevels(self): + return self.get_query_params().get('RiskLevels') + + def set_RiskLevels(self,RiskLevels): + self.add_query_param('RiskLevels',RiskLevels) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_SubTypeNames(self): + return self.get_query_params().get('SubTypeNames') + + def set_SubTypeNames(self,SubTypeNames): + self.add_query_param('SubTypeNames',SubTypeNames) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DownloadLogRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DownloadLogRequest.py new file mode 100644 index 0000000000..fb6f0e44c5 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/DownloadLogRequest.py @@ -0,0 +1,48 @@ +# 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 +class DownloadLogRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'DownloadLog','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Query(self): + return self.get_query_params().get('Query') + + def set_Query(self,Query): + self.add_query_param('Query',Query) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExecStrategyRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExecStrategyRequest.py new file mode 100644 index 0000000000..c095f7de36 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExecStrategyRequest.py @@ -0,0 +1,36 @@ +# 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 +class ExecStrategyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ExecStrategy','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExecuteRuleEngineActualTimeRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExecuteRuleEngineActualTimeRequest.py new file mode 100644 index 0000000000..af62f6cf65 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExecuteRuleEngineActualTimeRequest.py @@ -0,0 +1,42 @@ +# 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 +class ExecuteRuleEngineActualTimeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ExecuteRuleEngineActualTime','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_RuleId(self): + return self.get_query_params().get('RuleId') + + def set_RuleId(self,RuleId): + self.add_query_param('RuleId',RuleId) + + def get_Message(self): + return self.get_query_params().get('Message') + + def set_Message(self,Message): + self.add_query_param('Message',Message) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExportSuspEventsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExportSuspEventsRequest.py new file mode 100644 index 0000000000..1b1e73e3e0 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExportSuspEventsRequest.py @@ -0,0 +1,90 @@ +# 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 +class ExportSuspEventsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ExportSuspEvents','vipaegis') + + def get_TimeEnd(self): + return self.get_query_params().get('TimeEnd') + + def set_TimeEnd(self,TimeEnd): + self.add_query_param('TimeEnd',TimeEnd) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_TimeStart(self): + return self.get_query_params().get('TimeStart') + + def set_TimeStart(self,TimeStart): + self.add_query_param('TimeStart',TimeStart) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Levels(self): + return self.get_query_params().get('Levels') + + def set_Levels(self,Levels): + self.add_query_param('Levels',Levels) + + def get_ParentEventTypes(self): + return self.get_query_params().get('ParentEventTypes') + + def set_ParentEventTypes(self,ParentEventTypes): + self.add_query_param('ParentEventTypes',ParentEventTypes) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExportVulRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExportVulRequest.py new file mode 100644 index 0000000000..3ed46d820f --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExportVulRequest.py @@ -0,0 +1,96 @@ +# 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 +class ExportVulRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ExportVul','vipaegis') + + def get_BatchName(self): + return self.get_query_params().get('BatchName') + + def set_BatchName(self,BatchName): + self.add_query_param('BatchName',BatchName) + + def get_AliasName(self): + return self.get_query_params().get('AliasName') + + def set_AliasName(self,AliasName): + self.add_query_param('AliasName',AliasName) + + def get_StatusList(self): + return self.get_query_params().get('StatusList') + + def set_StatusList(self,StatusList): + self.add_query_param('StatusList',StatusList) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Level(self): + return self.get_query_params().get('Level') + + def set_Level(self,Level): + self.add_query_param('Level',Level) + + def get_Resource(self): + return self.get_query_params().get('Resource') + + def set_Resource(self,Resource): + self.add_query_param('Resource',Resource) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Necessity(self): + return self.get_query_params().get('Necessity') + + def set_Necessity(self,Necessity): + self.add_query_param('Necessity',Necessity) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExportWarningRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExportWarningRequest.py new file mode 100644 index 0000000000..b57df4257d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ExportWarningRequest.py @@ -0,0 +1,108 @@ +# 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 +class ExportWarningRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ExportWarning','vipaegis') + + def get_StatusList(self): + return self.get_query_params().get('StatusList') + + def set_StatusList(self,StatusList): + self.add_query_param('StatusList',StatusList) + + def get_RiskLevels(self): + return self.get_query_params().get('RiskLevels') + + def set_RiskLevels(self,RiskLevels): + self.add_query_param('RiskLevels',RiskLevels) + + def get_ExportType(self): + return self.get_query_params().get('ExportType') + + def set_ExportType(self,ExportType): + self.add_query_param('ExportType',ExportType) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_TypeNames(self): + return self.get_query_params().get('TypeNames') + + def set_TypeNames(self,TypeNames): + self.add_query_param('TypeNames',TypeNames) + + def get_IsSummaryExport(self): + return self.get_query_params().get('IsSummaryExport') + + def set_IsSummaryExport(self,IsSummaryExport): + self.add_query_param('IsSummaryExport',IsSummaryExport) + + def get_RiskName(self): + return self.get_query_params().get('RiskName') + + def set_RiskName(self,RiskName): + self.add_query_param('RiskName',RiskName) + + def get_RiskIds(self): + return self.get_query_params().get('RiskIds') + + def set_RiskIds(self,RiskIds): + self.add_query_param('RiskIds',RiskIds) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_TypeName(self): + return self.get_query_params().get('TypeName') + + def set_TypeName(self,TypeName): + self.add_query_param('TypeName',TypeName) + + def get_SubTypeNames(self): + return self.get_query_params().get('SubTypeNames') + + def set_SubTypeNames(self,SubTypeNames): + self.add_query_param('SubTypeNames',SubTypeNames) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetAccountStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetAccountStatisticsRequest.py new file mode 100644 index 0000000000..392f9d706e --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetAccountStatisticsRequest.py @@ -0,0 +1,36 @@ +# 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 +class GetAccountStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'GetAccountStatistics','vipaegis') + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetCrackStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetCrackStatisticsRequest.py new file mode 100644 index 0000000000..484bc38d67 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetCrackStatisticsRequest.py @@ -0,0 +1,36 @@ +# 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 +class GetCrackStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'GetCrackStatistics','vipaegis') + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetEntityListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetEntityListRequest.py new file mode 100644 index 0000000000..8a50f15621 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetEntityListRequest.py @@ -0,0 +1,60 @@ +# 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 +class GetEntityListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'GetEntityList','vipaegis') + + def get_GroupId(self): + return self.get_query_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_query_param('GroupId',GroupId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_EventType(self): + return self.get_query_params().get('EventType') + + def set_EventType(self,EventType): + self.add_query_param('EventType',EventType) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_RegionNo(self): + return self.get_query_params().get('RegionNo') + + def set_RegionNo(self,RegionNo): + self.add_query_param('RegionNo',RegionNo) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetStatisticsByUuidRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetStatisticsByUuidRequest.py new file mode 100644 index 0000000000..06d84a33eb --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetStatisticsByUuidRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetStatisticsByUuidRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'GetStatisticsByUuid','vipaegis') + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetStatisticsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetStatisticsRequest.py new file mode 100644 index 0000000000..6f243d658a --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/GetStatisticsRequest.py @@ -0,0 +1,36 @@ +# 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 +class GetStatisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'GetStatistics','vipaegis') + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/IgnoreHcCheckWarningsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/IgnoreHcCheckWarningsRequest.py new file mode 100644 index 0000000000..373369d0d8 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/IgnoreHcCheckWarningsRequest.py @@ -0,0 +1,54 @@ +# 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 +class IgnoreHcCheckWarningsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'IgnoreHcCheckWarnings','vipaegis') + + def get_Reason(self): + return self.get_query_params().get('Reason') + + def set_Reason(self,Reason): + self.add_query_param('Reason',Reason) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_CheckWarningIds(self): + return self.get_query_params().get('CheckWarningIds') + + def set_CheckWarningIds(self,CheckWarningIds): + self.add_query_param('CheckWarningIds',CheckWarningIds) + + def get_RiskId(self): + return self.get_query_params().get('RiskId') + + def set_RiskId(self,RiskId): + self.add_query_param('RiskId',RiskId) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyAssetGroupRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyAssetGroupRequest.py new file mode 100644 index 0000000000..51c3f464bc --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyAssetGroupRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyAssetGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyAssetGroup','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_GroupId(self): + return self.get_query_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_query_param('GroupId',GroupId) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyAutoDelConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyAutoDelConfigRequest.py new file mode 100644 index 0000000000..c99172e6ec --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyAutoDelConfigRequest.py @@ -0,0 +1,36 @@ +# 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 +class ModifyAutoDelConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyAutoDelConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Days(self): + return self.get_query_params().get('Days') + + def set_Days(self,Days): + self.add_query_param('Days',Days) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyBatchIgnoreVulRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyBatchIgnoreVulRequest.py new file mode 100644 index 0000000000..75c1c1e8d6 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyBatchIgnoreVulRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyBatchIgnoreVulRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyBatchIgnoreVul','vipaegis') + + def get_Reason(self): + return self.get_query_params().get('Reason') + + def set_Reason(self,Reason): + self.add_query_param('Reason',Reason) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Info(self): + return self.get_query_params().get('Info') + + def set_Info(self,Info): + self.add_query_param('Info',Info) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyClearLogstoreStorageRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyClearLogstoreStorageRequest.py new file mode 100644 index 0000000000..8175584c53 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyClearLogstoreStorageRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyClearLogstoreStorageRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyClearLogstoreStorage','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyConcernNecessityRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyConcernNecessityRequest.py new file mode 100644 index 0000000000..7ea485983b --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyConcernNecessityRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyConcernNecessityRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyConcernNecessity','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_ConcernNecessity(self): + return self.get_query_params().get('ConcernNecessity') + + def set_ConcernNecessity(self,ConcernNecessity): + self.add_query_param('ConcernNecessity',ConcernNecessity) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyEmgVulSubmitRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyEmgVulSubmitRequest.py new file mode 100644 index 0000000000..cd679e7eac --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyEmgVulSubmitRequest.py @@ -0,0 +1,48 @@ +# 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 +class ModifyEmgVulSubmitRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyEmgVulSubmit','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_UserAgreement(self): + return self.get_query_params().get('UserAgreement') + + def set_UserAgreement(self,UserAgreement): + self.add_query_param('UserAgreement',UserAgreement) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyLogMetaStatusRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyLogMetaStatusRequest.py new file mode 100644 index 0000000000..a9c5f2ff7d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyLogMetaStatusRequest.py @@ -0,0 +1,60 @@ +# 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 +class ModifyLogMetaStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyLogMetaStatus','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Project(self): + return self.get_query_params().get('Project') + + def set_Project(self,Project): + self.add_query_param('Project',Project) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_LogStore(self): + return self.get_query_params().get('LogStore') + + def set_LogStore(self,LogStore): + self.add_query_param('LogStore',LogStore) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyMachineConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyMachineConfigRequest.py new file mode 100644 index 0000000000..51b4f75908 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyMachineConfigRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyMachineConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyMachineConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Target(self): + return self.get_query_params().get('Target') + + def set_Target(self,Target): + self.add_query_param('Target',Target) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyOpenLogShipperRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyOpenLogShipperRequest.py new file mode 100644 index 0000000000..0536be25c9 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyOpenLogShipperRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyOpenLogShipperRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyOpenLogShipper','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifySasAssetStatisticsColumnRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifySasAssetStatisticsColumnRequest.py new file mode 100644 index 0000000000..c9fd6742bc --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifySasAssetStatisticsColumnRequest.py @@ -0,0 +1,36 @@ +# 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 +class ModifySasAssetStatisticsColumnRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifySasAssetStatisticsColumn','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StatisticsColumn(self): + return self.get_query_params().get('StatisticsColumn') + + def set_StatisticsColumn(self,StatisticsColumn): + self.add_query_param('StatisticsColumn',StatisticsColumn) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifySaveVulBatchRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifySaveVulBatchRequest.py new file mode 100644 index 0000000000..271311774d --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifySaveVulBatchRequest.py @@ -0,0 +1,96 @@ +# 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 +class ModifySaveVulBatchRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifySaveVulBatch','vipaegis') + + def get_BatchName(self): + return self.get_query_params().get('BatchName') + + def set_BatchName(self,BatchName): + self.add_query_param('BatchName',BatchName) + + def get_AliasName(self): + return self.get_query_params().get('AliasName') + + def set_AliasName(self,AliasName): + self.add_query_param('AliasName',AliasName) + + def get_StatusList(self): + return self.get_query_params().get('StatusList') + + def set_StatusList(self,StatusList): + self.add_query_param('StatusList',StatusList) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Level(self): + return self.get_query_params().get('Level') + + def set_Level(self,Level): + self.add_query_param('Level',Level) + + def get_Resource(self): + return self.get_query_params().get('Resource') + + def set_Resource(self,Resource): + self.add_query_param('Resource',Resource) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Dealed(self): + return self.get_query_params().get('Dealed') + + def set_Dealed(self,Dealed): + self.add_query_param('Dealed',Dealed) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Necessity(self): + return self.get_query_params().get('Necessity') + + def set_Necessity(self,Necessity): + self.add_query_param('Necessity',Necessity) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyScreenSettingRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyScreenSettingRequest.py new file mode 100644 index 0000000000..dd9a695d49 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyScreenSettingRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyScreenSettingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyScreenSetting','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ScreenTitle(self): + return self.get_query_params().get('ScreenTitle') + + def set_ScreenTitle(self,ScreenTitle): + self.add_query_param('ScreenTitle',ScreenTitle) + + def get_ScreenIdSetting(self): + return self.get_query_params().get('ScreenIdSetting') + + def set_ScreenIdSetting(self,ScreenIdSetting): + self.add_query_param('ScreenIdSetting',ScreenIdSetting) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifySearchConditionRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifySearchConditionRequest.py new file mode 100644 index 0000000000..da6284a466 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifySearchConditionRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifySearchConditionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifySearchCondition','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_FilterConditions(self): + return self.get_query_params().get('FilterConditions') + + def set_FilterConditions(self,FilterConditions): + self.add_query_param('FilterConditions',FilterConditions) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyStrategyRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyStrategyRequest.py new file mode 100644 index 0000000000..71cff5ce4a --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyStrategyRequest.py @@ -0,0 +1,61 @@ +# 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 +class ModifyStrategyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyStrategy','vipaegis') + self.set_method('POST') + + def get_RiskSubTypeName(self): + return self.get_query_params().get('RiskSubTypeName') + + def set_RiskSubTypeName(self,RiskSubTypeName): + self.add_query_param('RiskSubTypeName',RiskSubTypeName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_CycleStartTime(self): + return self.get_query_params().get('CycleStartTime') + + def set_CycleStartTime(self,CycleStartTime): + self.add_query_param('CycleStartTime',CycleStartTime) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_CycleDays(self): + return self.get_query_params().get('CycleDays') + + def set_CycleDays(self,CycleDays): + self.add_query_param('CycleDays',CycleDays) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyStrategyTargetRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyStrategyTargetRequest.py new file mode 100644 index 0000000000..40c091ad42 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyStrategyTargetRequest.py @@ -0,0 +1,49 @@ +# 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 +class ModifyStrategyTargetRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyStrategyTarget','vipaegis') + self.set_method('POST') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Config(self): + return self.get_query_params().get('Config') + + def set_Config(self,Config): + self.add_query_param('Config',Config) + + def get_Target(self): + return self.get_query_params().get('Target') + + def set_Target(self,Target): + self.add_query_param('Target',Target) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyTargetConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyTargetConfigRequest.py new file mode 100644 index 0000000000..31b4c38da0 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyTargetConfigRequest.py @@ -0,0 +1,48 @@ +# 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 +class ModifyTargetConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyTargetConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_Config(self): + return self.get_query_params().get('Config') + + def set_Config(self,Config): + self.add_query_param('Config',Config) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyVulConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyVulConfigRequest.py new file mode 100644 index 0000000000..4310cdbf96 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyVulConfigRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyVulConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyVulConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Config(self): + return self.get_query_params().get('Config') + + def set_Config(self,Config): + self.add_query_param('Config',Config) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyVulLevelRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyVulLevelRequest.py new file mode 100644 index 0000000000..0d31db0523 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyVulLevelRequest.py @@ -0,0 +1,36 @@ +# 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 +class ModifyVulLevelRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyVulLevel','vipaegis') + + def get_ConcernLevel(self): + return self.get_query_params().get('ConcernLevel') + + def set_ConcernLevel(self,ConcernLevel): + self.add_query_param('ConcernLevel',ConcernLevel) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyVulTargetRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyVulTargetRequest.py new file mode 100644 index 0000000000..fa1d135972 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyVulTargetRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyVulTargetRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyVulTarget','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Config(self): + return self.get_query_params().get('Config') + + def set_Config(self,Config): + self.add_query_param('Config',Config) + + def get_Target(self): + return self.get_query_params().get('Target') + + def set_Target(self,Target): + self.add_query_param('Target',Target) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockCreateConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockCreateConfigRequest.py new file mode 100644 index 0000000000..685d724f46 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockCreateConfigRequest.py @@ -0,0 +1,66 @@ +# 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 +class ModifyWebLockCreateConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyWebLockCreateConfig','vipaegis') + + def get_LocalBackupDir(self): + return self.get_query_params().get('LocalBackupDir') + + def set_LocalBackupDir(self,LocalBackupDir): + self.add_query_param('LocalBackupDir',LocalBackupDir) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ExclusiveFileType(self): + return self.get_query_params().get('ExclusiveFileType') + + def set_ExclusiveFileType(self,ExclusiveFileType): + self.add_query_param('ExclusiveFileType',ExclusiveFileType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Dir(self): + return self.get_query_params().get('Dir') + + def set_Dir(self,Dir): + self.add_query_param('Dir',Dir) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_ExclusiveDir(self): + return self.get_query_params().get('ExclusiveDir') + + def set_ExclusiveDir(self,ExclusiveDir): + self.add_query_param('ExclusiveDir',ExclusiveDir) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockDeleteConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockDeleteConfigRequest.py new file mode 100644 index 0000000000..61e05ba192 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockDeleteConfigRequest.py @@ -0,0 +1,48 @@ +# 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 +class ModifyWebLockDeleteConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyWebLockDeleteConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockMachineListRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockMachineListRequest.py new file mode 100644 index 0000000000..789700fd63 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockMachineListRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyWebLockMachineListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyWebLockMachineList','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockOperateEventsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockOperateEventsRequest.py new file mode 100644 index 0000000000..d368ac7ed2 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockOperateEventsRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyWebLockOperateEventsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyWebLockOperateEvents','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Operation(self): + return self.get_query_params().get('Operation') + + def set_Operation(self,Operation): + self.add_query_param('Operation',Operation) + + def get_EventIds(self): + return self.get_query_params().get('EventIds') + + def set_EventIds(self,EventIds): + self.add_query_param('EventIds',EventIds) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockRefreshRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockRefreshRequest.py new file mode 100644 index 0000000000..3c8df8ca24 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockRefreshRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyWebLockRefreshRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyWebLockRefresh','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockStatusRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockStatusRequest.py new file mode 100644 index 0000000000..c318e8891f --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockStatusRequest.py @@ -0,0 +1,48 @@ +# 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 +class ModifyWebLockStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyWebLockStatus','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockUpdateConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockUpdateConfigRequest.py new file mode 100644 index 0000000000..8058fcf148 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ModifyWebLockUpdateConfigRequest.py @@ -0,0 +1,72 @@ +# 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 +class ModifyWebLockUpdateConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ModifyWebLockUpdateConfig','vipaegis') + + def get_LocalBackupDir(self): + return self.get_query_params().get('LocalBackupDir') + + def set_LocalBackupDir(self,LocalBackupDir): + self.add_query_param('LocalBackupDir',LocalBackupDir) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ExclusiveFileType(self): + return self.get_query_params().get('ExclusiveFileType') + + def set_ExclusiveFileType(self,ExclusiveFileType): + self.add_query_param('ExclusiveFileType',ExclusiveFileType) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Dir(self): + return self.get_query_params().get('Dir') + + def set_Dir(self,Dir): + self.add_query_param('Dir',Dir) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_ExclusiveDir(self): + return self.get_query_params().get('ExclusiveDir') + + def set_ExclusiveDir(self,ExclusiveDir): + self.add_query_param('ExclusiveDir',ExclusiveDir) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OpenSasTrialRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OpenSasTrialRequest.py new file mode 100644 index 0000000000..c1d645523e --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OpenSasTrialRequest.py @@ -0,0 +1,36 @@ +# 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 +class OpenSasTrialRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'OpenSasTrial','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_BuyVersion(self): + return self.get_query_params().get('BuyVersion') + + def set_BuyVersion(self,BuyVersion): + self.add_query_param('BuyVersion',BuyVersion) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateAgentClientInstallRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateAgentClientInstallRequest.py new file mode 100644 index 0000000000..31002d57de --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateAgentClientInstallRequest.py @@ -0,0 +1,48 @@ +# 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 +class OperateAgentClientInstallRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'OperateAgentClientInstall','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_InstanceIds(self): + return self.get_query_params().get('InstanceIds') + + def set_InstanceIds(self,InstanceIds): + self.add_query_param('InstanceIds',InstanceIds) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateResultRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateResultRequest.py new file mode 100644 index 0000000000..3448a01b83 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateResultRequest.py @@ -0,0 +1,42 @@ +# 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 +class OperateResultRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'OperateResult','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Ids(self): + return self.get_query_params().get('Ids') + + def set_Ids(self,Ids): + self.add_query_param('Ids',Ids) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateSuspiciousEventRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateSuspiciousEventRequest.py new file mode 100644 index 0000000000..af8cf1fa3e --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateSuspiciousEventRequest.py @@ -0,0 +1,42 @@ +# 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 +class OperateSuspiciousEventRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'OperateSuspiciousEvent','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Data(self): + return self.get_query_params().get('Data') + + def set_Data(self,Data): + self.add_query_param('Data',Data) + + def get_OperateType(self): + return self.get_query_params().get('OperateType') + + def set_OperateType(self,OperateType): + self.add_query_param('OperateType',OperateType) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateSuspiciousOverallConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateSuspiciousOverallConfigRequest.py new file mode 100644 index 0000000000..299785dec8 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateSuspiciousOverallConfigRequest.py @@ -0,0 +1,48 @@ +# 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 +class OperateSuspiciousOverallConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'OperateSuspiciousOverallConfig','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Config(self): + return self.get_query_params().get('Config') + + def set_Config(self,Config): + self.add_query_param('Config',Config) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateSuspiciousTargetConfigRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateSuspiciousTargetConfigRequest.py new file mode 100644 index 0000000000..30802c2c98 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateSuspiciousTargetConfigRequest.py @@ -0,0 +1,54 @@ +# 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 +class OperateSuspiciousTargetConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'OperateSuspiciousTargetConfig','vipaegis') + + def get_TargetOperations(self): + return self.get_query_params().get('TargetOperations') + + def set_TargetOperations(self,TargetOperations): + self.add_query_param('TargetOperations',TargetOperations) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_TargetType(self): + return self.get_query_params().get('TargetType') + + def set_TargetType(self,TargetType): + self.add_query_param('TargetType',TargetType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateVulRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateVulRequest.py new file mode 100644 index 0000000000..8f17e6ec36 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateVulRequest.py @@ -0,0 +1,54 @@ +# 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 +class OperateVulRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'OperateVul','vipaegis') + + def get_Reason(self): + return self.get_query_params().get('Reason') + + def set_Reason(self,Reason): + self.add_query_param('Reason',Reason) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_OperateType(self): + return self.get_query_params().get('OperateType') + + def set_OperateType(self,OperateType): + self.add_query_param('OperateType',OperateType) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Info(self): + return self.get_query_params().get('Info') + + def set_Info(self,Info): + self.add_query_param('Info',Info) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateWarningRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateWarningRequest.py new file mode 100644 index 0000000000..93420f5920 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperateWarningRequest.py @@ -0,0 +1,48 @@ +# 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 +class OperateWarningRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'OperateWarning','vipaegis') + + def get_Reason(self): + return self.get_query_params().get('Reason') + + def set_Reason(self,Reason): + self.add_query_param('Reason',Reason) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_OperateType(self): + return self.get_query_params().get('OperateType') + + def set_OperateType(self,OperateType): + self.add_query_param('OperateType',OperateType) + + def get_RiskWarningIds(self): + return self.get_query_params().get('RiskWarningIds') + + def set_RiskWarningIds(self,RiskWarningIds): + self.add_query_param('RiskWarningIds',RiskWarningIds) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperationSuspEventsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperationSuspEventsRequest.py new file mode 100644 index 0000000000..f0d5096109 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/OperationSuspEventsRequest.py @@ -0,0 +1,60 @@ +# 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 +class OperationSuspEventsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'OperationSuspEvents','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_WarnType(self): + return self.get_query_params().get('WarnType') + + def set_WarnType(self,WarnType): + self.add_query_param('WarnType',WarnType) + + def get_SuspiciousEventIds(self): + return self.get_query_params().get('SuspiciousEventIds') + + def set_SuspiciousEventIds(self,SuspiciousEventIds): + self.add_query_param('SuspiciousEventIds',SuspiciousEventIds) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_SubOperation(self): + return self.get_query_params().get('SubOperation') + + def set_SubOperation(self,SubOperation): + self.add_query_param('SubOperation',SubOperation) + + def get_Operation(self): + return self.get_query_params().get('Operation') + + def set_Operation(self,Operation): + self.add_query_param('Operation',Operation) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/QueryCrackEventRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/QueryCrackEventRequest.py new file mode 100644 index 0000000000..da84fd0361 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/QueryCrackEventRequest.py @@ -0,0 +1,54 @@ +# 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 +class QueryCrackEventRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'QueryCrackEvent','vipaegis') + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/QueryLoginEventRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/QueryLoginEventRequest.py new file mode 100644 index 0000000000..7066983f90 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/QueryLoginEventRequest.py @@ -0,0 +1,54 @@ +# 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 +class QueryLoginEventRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'QueryLoginEvent','vipaegis') + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ReleaseInstanceRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ReleaseInstanceRequest.py new file mode 100644 index 0000000000..d1e6d0dc8a --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ReleaseInstanceRequest.py @@ -0,0 +1,36 @@ +# 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 +class ReleaseInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ReleaseInstance','vipaegis') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/RenewInstanceRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/RenewInstanceRequest.py new file mode 100644 index 0000000000..5e49cfe434 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/RenewInstanceRequest.py @@ -0,0 +1,60 @@ +# 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 +class RenewInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'RenewInstance','vipaegis') + + def get_Duration(self): + return self.get_query_params().get('Duration') + + def set_Duration(self,Duration): + self.add_query_param('Duration',Duration) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_ClientToken(self): + return self.get_query_params().get('ClientToken') + + def set_ClientToken(self,ClientToken): + self.add_query_param('ClientToken',ClientToken) + + def get_VmNumber(self): + return self.get_query_params().get('VmNumber') + + def set_VmNumber(self,VmNumber): + self.add_query_param('VmNumber',VmNumber) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) + + def get_PricingCycle(self): + return self.get_query_params().get('PricingCycle') + + def set_PricingCycle(self,PricingCycle): + self.add_query_param('PricingCycle',PricingCycle) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/RollbackQuaraFileRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/RollbackQuaraFileRequest.py new file mode 100644 index 0000000000..1445d858d4 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/RollbackQuaraFileRequest.py @@ -0,0 +1,54 @@ +# 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 +class RollbackQuaraFileRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'RollbackQuaraFile','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_EventType(self): + return self.get_query_params().get('EventType') + + def set_EventType(self,EventType): + self.add_query_param('EventType',EventType) + + def get_Tag(self): + return self.get_query_params().get('Tag') + + def set_Tag(self,Tag): + self.add_query_param('Tag',Tag) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_EventName(self): + return self.get_query_params().get('EventName') + + def set_EventName(self,EventName): + self.add_query_param('EventName',EventName) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/RollbackSuspEventQuaraFileRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/RollbackSuspEventQuaraFileRequest.py new file mode 100644 index 0000000000..aa4bc0a296 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/RollbackSuspEventQuaraFileRequest.py @@ -0,0 +1,42 @@ +# 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 +class RollbackSuspEventQuaraFileRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'RollbackSuspEventQuaraFile','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_QuaraFileId(self): + return self.get_query_params().get('QuaraFileId') + + def set_QuaraFileId(self,QuaraFileId): + self.add_query_param('QuaraFileId',QuaraFileId) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/SaveSuspEventUserSettingRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/SaveSuspEventUserSettingRequest.py new file mode 100644 index 0000000000..819f7f24af --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/SaveSuspEventUserSettingRequest.py @@ -0,0 +1,42 @@ +# 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 +class SaveSuspEventUserSettingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'SaveSuspEventUserSetting','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get__From(self): + return self.get_query_params().get('From') + + def set__From(self,_From): + self.add_query_param('From',_From) + + def get_LevelsOn(self): + return self.get_query_params().get('LevelsOn') + + def set_LevelsOn(self,LevelsOn): + self.add_query_param('LevelsOn',LevelsOn) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/SaveWhiteListStrategyAssetsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/SaveWhiteListStrategyAssetsRequest.py new file mode 100644 index 0000000000..e3207bc021 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/SaveWhiteListStrategyAssetsRequest.py @@ -0,0 +1,54 @@ +# 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 +class SaveWhiteListStrategyAssetsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'SaveWhiteListStrategyAssets','vipaegis') + + def get_Operations(self): + return self.get_query_params().get('Operations') + + def set_Operations(self,Operations): + self.add_query_param('Operations',Operations) + + def get_RelationType(self): + return self.get_query_params().get('RelationType') + + def set_RelationType(self,RelationType): + self.add_query_param('RelationType',RelationType) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/SaveWhiteListStrategyRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/SaveWhiteListStrategyRequest.py new file mode 100644 index 0000000000..3164cdd887 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/SaveWhiteListStrategyRequest.py @@ -0,0 +1,54 @@ +# 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 +class SaveWhiteListStrategyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'SaveWhiteListStrategy','vipaegis') + + def get_StrategyName(self): + return self.get_query_params().get('StrategyName') + + def set_StrategyName(self,StrategyName): + self.add_query_param('StrategyName',StrategyName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StudyTime(self): + return self.get_query_params().get('StudyTime') + + def set_StudyTime(self,StudyTime): + self.add_query_param('StudyTime',StudyTime) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/SetDatasourceStatusRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/SetDatasourceStatusRequest.py new file mode 100644 index 0000000000..edad771598 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/SetDatasourceStatusRequest.py @@ -0,0 +1,54 @@ +# 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 +class SetDatasourceStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'SetDatasourceStatus','vipaegis') + + def get_ProjectName(self): + return self.get_query_params().get('ProjectName') + + def set_ProjectName(self,ProjectName): + self.add_query_param('ProjectName',ProjectName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_LogStoreName(self): + return self.get_query_params().get('LogStoreName') + + def set_LogStoreName(self,LogStoreName): + self.add_query_param('LogStoreName',LogStoreName) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) + + def get_RegionNo(self): + return self.get_query_params().get('RegionNo') + + def set_RegionNo(self,RegionNo): + self.add_query_param('RegionNo',RegionNo) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/TransformLeakageRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/TransformLeakageRequest.py new file mode 100644 index 0000000000..155b381466 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/TransformLeakageRequest.py @@ -0,0 +1,30 @@ +# 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 +class TransformLeakageRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'TransformLeakage','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/UpdateWhiteListProcessStatusRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/UpdateWhiteListProcessStatusRequest.py new file mode 100644 index 0000000000..8fa2cc07bd --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/UpdateWhiteListProcessStatusRequest.py @@ -0,0 +1,54 @@ +# 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 +class UpdateWhiteListProcessStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'UpdateWhiteListProcessStatus','vipaegis') + + def get_ProcessIds(self): + return self.get_query_params().get('ProcessIds') + + def set_ProcessIds(self,ProcessIds): + self.add_query_param('ProcessIds',ProcessIds) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/UpdateWhiteListStrategyRelationRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/UpdateWhiteListStrategyRelationRequest.py new file mode 100644 index 0000000000..4ba296e746 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/UpdateWhiteListStrategyRelationRequest.py @@ -0,0 +1,66 @@ +# 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 +class UpdateWhiteListStrategyRelationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'UpdateWhiteListStrategyRelation','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ProcessMethod(self): + return self.get_query_params().get('ProcessMethod') + + def set_ProcessMethod(self,ProcessMethod): + self.add_query_param('ProcessMethod',ProcessMethod) + + def get_StrategyId(self): + return self.get_query_params().get('StrategyId') + + def set_StrategyId(self,StrategyId): + self.add_query_param('StrategyId',StrategyId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/UpdateWhiteListStrategyStatusRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/UpdateWhiteListStrategyStatusRequest.py new file mode 100644 index 0000000000..e2c826658f --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/UpdateWhiteListStrategyStatusRequest.py @@ -0,0 +1,48 @@ +# 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 +class UpdateWhiteListStrategyStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'UpdateWhiteListStrategyStatus','vipaegis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StrategyIds(self): + return self.get_query_params().get('StrategyIds') + + def set_StrategyIds(self,StrategyIds): + self.add_query_param('StrategyIds',StrategyIds) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/UpgradeInstanceRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/UpgradeInstanceRequest.py new file mode 100644 index 0000000000..3701a471a5 --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/UpgradeInstanceRequest.py @@ -0,0 +1,54 @@ +# 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 +class UpgradeInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'UpgradeInstance','vipaegis') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_ClientToken(self): + return self.get_query_params().get('ClientToken') + + def set_ClientToken(self,ClientToken): + self.add_query_param('ClientToken',ClientToken) + + def get_VmNumber(self): + return self.get_query_params().get('VmNumber') + + def set_VmNumber(self,VmNumber): + self.add_query_param('VmNumber',VmNumber) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) + + def get_VersionCode(self): + return self.get_query_params().get('VersionCode') + + def set_VersionCode(self,VersionCode): + self.add_query_param('VersionCode',VersionCode) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ValidateHcWarningsRequest.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ValidateHcWarningsRequest.py new file mode 100644 index 0000000000..7a3f38fdfb --- /dev/null +++ b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/ValidateHcWarningsRequest.py @@ -0,0 +1,42 @@ +# 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 +class ValidateHcWarningsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aegis', '2016-11-11', 'ValidateHcWarnings','vipaegis') + + def get_RiskIds(self): + return self.get_query_params().get('RiskIds') + + def set_RiskIds(self,RiskIds): + self.add_query_param('RiskIds',RiskIds) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Uuids(self): + return self.get_query_params().get('Uuids') + + def set_Uuids(self,Uuids): + self.add_query_param('Uuids',Uuids) \ No newline at end of file diff --git a/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/__init__.py b/aliyun-python-sdk-aegis/aliyunsdkaegis/request/v20161111/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-aegis/setup.py b/aliyun-python-sdk-aegis/setup.py new file mode 100644 index 0000000000..5ec8719315 --- /dev/null +++ b/aliyun-python-sdk-aegis/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for aegis. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkaegis" +NAME = "aliyun-python-sdk-aegis" +DESCRIPTION = "The aegis module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","aegis"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/ChangeLog.txt b/aliyun-python-sdk-afs/ChangeLog.txt new file mode 100644 index 0000000000..341ace64d4 --- /dev/null +++ b/aliyun-python-sdk-afs/ChangeLog.txt @@ -0,0 +1,6 @@ +2019-03-18 Version: 1.0.1 +1, Update Dependency + +2018-02-02 Version: 1.0.0 +1, this version is new of captcha management and nvc analyze + diff --git a/aliyun-python-sdk-afs/MANIFEST.in b/aliyun-python-sdk-afs/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-afs/README.rst b/aliyun-python-sdk-afs/README.rst new file mode 100644 index 0000000000..981c0e4edc --- /dev/null +++ b/aliyun-python-sdk-afs/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-afs +This is the afs module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/__init__.py b/aliyun-python-sdk-afs/aliyunsdkafs/__init__.py new file mode 100644 index 0000000000..0058b93f7d --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/__init__.py @@ -0,0 +1 @@ +__version__ = "1.0.1" \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/__init__.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/AnalyzeNvcRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/AnalyzeNvcRequest.py new file mode 100644 index 0000000000..b7fb22d779 --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/AnalyzeNvcRequest.py @@ -0,0 +1,42 @@ +# 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 +class AnalyzeNvcRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'AnalyzeNvc','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Data(self): + return self.get_query_params().get('Data') + + def set_Data(self,Data): + self.add_query_param('Data',Data) + + def get_ScoreJsonStr(self): + return self.get_query_params().get('ScoreJsonStr') + + def set_ScoreJsonStr(self,ScoreJsonStr): + self.add_query_param('ScoreJsonStr',ScoreJsonStr) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/AuthenticateSigRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/AuthenticateSigRequest.py new file mode 100644 index 0000000000..9bca125478 --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/AuthenticateSigRequest.py @@ -0,0 +1,66 @@ +# 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 +class AuthenticateSigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'AuthenticateSig','afs') + + def get_Sig(self): + return self.get_query_params().get('Sig') + + def set_Sig(self,Sig): + self.add_query_param('Sig',Sig) + + def get_RemoteIp(self): + return self.get_query_params().get('RemoteIp') + + def set_RemoteIp(self,RemoteIp): + self.add_query_param('RemoteIp',RemoteIp) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_AppKey(self): + return self.get_query_params().get('AppKey') + + def set_AppKey(self,AppKey): + self.add_query_param('AppKey',AppKey) + + def get_SessionId(self): + return self.get_query_params().get('SessionId') + + def set_SessionId(self,SessionId): + self.add_query_param('SessionId',SessionId) + + def get_Token(self): + return self.get_query_params().get('Token') + + def set_Token(self,Token): + self.add_query_param('Token',Token) + + def get_Scene(self): + return self.get_query_params().get('Scene') + + def set_Scene(self,Scene): + self.add_query_param('Scene',Scene) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/ConfigurationStyleRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/ConfigurationStyleRequest.py new file mode 100644 index 0000000000..c65c4b391e --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/ConfigurationStyleRequest.py @@ -0,0 +1,54 @@ +# 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 +class ConfigurationStyleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'ConfigurationStyle','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ConfigurationMethod(self): + return self.get_query_params().get('ConfigurationMethod') + + def set_ConfigurationMethod(self,ConfigurationMethod): + self.add_query_param('ConfigurationMethod',ConfigurationMethod) + + def get_RefExtId(self): + return self.get_query_params().get('RefExtId') + + def set_RefExtId(self,RefExtId): + self.add_query_param('RefExtId',RefExtId) + + def get_ApplyType(self): + return self.get_query_params().get('ApplyType') + + def set_ApplyType(self,ApplyType): + self.add_query_param('ApplyType',ApplyType) + + def get_Scene(self): + return self.get_query_params().get('Scene') + + def set_Scene(self,Scene): + self.add_query_param('Scene',Scene) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/CreateConfigurationRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/CreateConfigurationRequest.py new file mode 100644 index 0000000000..fe0f67099d --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/CreateConfigurationRequest.py @@ -0,0 +1,60 @@ +# 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 +class CreateConfigurationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'CreateConfiguration','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ConfigurationName(self): + return self.get_query_params().get('ConfigurationName') + + def set_ConfigurationName(self,ConfigurationName): + self.add_query_param('ConfigurationName',ConfigurationName) + + def get_MaxPV(self): + return self.get_query_params().get('MaxPV') + + def set_MaxPV(self,MaxPV): + self.add_query_param('MaxPV',MaxPV) + + def get_ConfigurationMethod(self): + return self.get_query_params().get('ConfigurationMethod') + + def set_ConfigurationMethod(self,ConfigurationMethod): + self.add_query_param('ConfigurationMethod',ConfigurationMethod) + + def get_ApplyType(self): + return self.get_query_params().get('ApplyType') + + def set_ApplyType(self,ApplyType): + self.add_query_param('ApplyType',ApplyType) + + def get_Scene(self): + return self.get_query_params().get('Scene') + + def set_Scene(self,Scene): + self.add_query_param('Scene',Scene) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaDayRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaDayRequest.py new file mode 100644 index 0000000000..e39832d96e --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaDayRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeCaptchaDayRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'DescribeCaptchaDay','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ConfigName(self): + return self.get_query_params().get('ConfigName') + + def set_ConfigName(self,ConfigName): + self.add_query_param('ConfigName',ConfigName) + + def get_RefExtId(self): + return self.get_query_params().get('RefExtId') + + def set_RefExtId(self,RefExtId): + self.add_query_param('RefExtId',RefExtId) + + def get_Time(self): + return self.get_query_params().get('Time') + + def set_Time(self,Time): + self.add_query_param('Time',Time) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaIpCityRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaIpCityRequest.py new file mode 100644 index 0000000000..48b9944235 --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaIpCityRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeCaptchaIpCityRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'DescribeCaptchaIpCity','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ConfigName(self): + return self.get_query_params().get('ConfigName') + + def set_ConfigName(self,ConfigName): + self.add_query_param('ConfigName',ConfigName) + + def get_RefExtId(self): + return self.get_query_params().get('RefExtId') + + def set_RefExtId(self,RefExtId): + self.add_query_param('RefExtId',RefExtId) + + def get_Time(self): + return self.get_query_params().get('Time') + + def set_Time(self,Time): + self.add_query_param('Time',Time) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaMinRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaMinRequest.py new file mode 100644 index 0000000000..e810e6135e --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaMinRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeCaptchaMinRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'DescribeCaptchaMin','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ConfigName(self): + return self.get_query_params().get('ConfigName') + + def set_ConfigName(self,ConfigName): + self.add_query_param('ConfigName',ConfigName) + + def get_RefExtId(self): + return self.get_query_params().get('RefExtId') + + def set_RefExtId(self,RefExtId): + self.add_query_param('RefExtId',RefExtId) + + def get_Time(self): + return self.get_query_params().get('Time') + + def set_Time(self,Time): + self.add_query_param('Time',Time) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaOrderRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaOrderRequest.py new file mode 100644 index 0000000000..6230ad7194 --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaOrderRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeCaptchaOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'DescribeCaptchaOrder','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaRiskRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaRiskRequest.py new file mode 100644 index 0000000000..a43f60de53 --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeCaptchaRiskRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeCaptchaRiskRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'DescribeCaptchaRisk','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ConfigName(self): + return self.get_query_params().get('ConfigName') + + def set_ConfigName(self,ConfigName): + self.add_query_param('ConfigName',ConfigName) + + def get_RefExtId(self): + return self.get_query_params().get('RefExtId') + + def set_RefExtId(self,RefExtId): + self.add_query_param('RefExtId',RefExtId) + + def get_Time(self): + return self.get_query_params().get('Time') + + def set_Time(self,Time): + self.add_query_param('Time',Time) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeConfigNameRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeConfigNameRequest.py new file mode 100644 index 0000000000..a930f5b0e8 --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeConfigNameRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeConfigNameRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'DescribeConfigName','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeEarlyWarningRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeEarlyWarningRequest.py new file mode 100644 index 0000000000..c5e84a761a --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeEarlyWarningRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeEarlyWarningRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'DescribeEarlyWarning','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeOrderInfoRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeOrderInfoRequest.py new file mode 100644 index 0000000000..774b18bb55 --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribeOrderInfoRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeOrderInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'DescribeOrderInfo','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribePersonMachineListRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribePersonMachineListRequest.py new file mode 100644 index 0000000000..0150ab043f --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/DescribePersonMachineListRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribePersonMachineListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'DescribePersonMachineList','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/SetEarlyWarningRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/SetEarlyWarningRequest.py new file mode 100644 index 0000000000..10991c433d --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/SetEarlyWarningRequest.py @@ -0,0 +1,72 @@ +# 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 +class SetEarlyWarningRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'SetEarlyWarning','afs') + + def get_TimeEnd(self): + return self.get_query_params().get('TimeEnd') + + def set_TimeEnd(self,TimeEnd): + self.add_query_param('TimeEnd',TimeEnd) + + def get_WarnOpen(self): + return self.get_query_params().get('WarnOpen') + + def set_WarnOpen(self,WarnOpen): + self.add_query_param('WarnOpen',WarnOpen) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Channel(self): + return self.get_query_params().get('Channel') + + def set_Channel(self,Channel): + self.add_query_param('Channel',Channel) + + def get_Title(self): + return self.get_query_params().get('Title') + + def set_Title(self,Title): + self.add_query_param('Title',Title) + + def get_TimeOpen(self): + return self.get_query_params().get('TimeOpen') + + def set_TimeOpen(self,TimeOpen): + self.add_query_param('TimeOpen',TimeOpen) + + def get_TimeBegin(self): + return self.get_query_params().get('TimeBegin') + + def set_TimeBegin(self,TimeBegin): + self.add_query_param('TimeBegin',TimeBegin) + + def get_Frequency(self): + return self.get_query_params().get('Frequency') + + def set_Frequency(self,Frequency): + self.add_query_param('Frequency',Frequency) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/UpdateConfigNameRequest.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/UpdateConfigNameRequest.py new file mode 100644 index 0000000000..b0f3a36916 --- /dev/null +++ b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/UpdateConfigNameRequest.py @@ -0,0 +1,48 @@ +# 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 +class UpdateConfigNameRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'afs', '2018-01-12', 'UpdateConfigName','afs') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ConfigName(self): + return self.get_query_params().get('ConfigName') + + def set_ConfigName(self,ConfigName): + self.add_query_param('ConfigName',ConfigName) + + def get_RefExtId(self): + return self.get_query_params().get('RefExtId') + + def set_RefExtId(self,RefExtId): + self.add_query_param('RefExtId',RefExtId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/__init__.py b/aliyun-python-sdk-afs/aliyunsdkafs/request/v20180112/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-afs/setup.py b/aliyun-python-sdk-afs/setup.py new file mode 100644 index 0000000000..bd36b7e08b --- /dev/null +++ b/aliyun-python-sdk-afs/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for afs. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkafs" +NAME = "aliyun-python-sdk-afs" +DESCRIPTION = "The afs module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","afs"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-aligreen-console/ChangeLog.txt b/aliyun-python-sdk-aligreen-console/ChangeLog.txt new file mode 100644 index 0000000000..262e72cdac --- /dev/null +++ b/aliyun-python-sdk-aligreen-console/ChangeLog.txt @@ -0,0 +1,16 @@ +2019-11-26 Version: 1.0.3 +- Add DelFace API. +- Fix API Attribute. + +2019-11-26 Version: 1.0.2 +- Fix Sensitive Face Manager Api Reponse Attribute. + +2019-11-26 Version: 1.0.1 +- Fix Sensitive Face Manager Api Reponse Attribute. + +2019-11-26 Version: 1.0.0 +- Sensitive Face Manager Api. + +2019-11-26 Version: 1.0.0 +- Sensitive Face Manager Api. + diff --git a/aliyun-python-sdk-aligreen-console/MANIFEST.in b/aliyun-python-sdk-aligreen-console/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-aligreen-console/README.rst b/aliyun-python-sdk-aligreen-console/README.rst new file mode 100644 index 0000000000..d4d96a6959 --- /dev/null +++ b/aliyun-python-sdk-aligreen-console/README.rst @@ -0,0 +1,15 @@ +============================================================= +aliyun-python-sdk-aligreen-console +============================================================= + +.. This is the aligreen-console module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater + +**Documentation:** + +Please visit `http://develop.aliyun.com/sdk/python `_ diff --git a/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/__init__.py b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/__init__.py new file mode 100644 index 0000000000..77139f6ade --- /dev/null +++ b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/__init__.py @@ -0,0 +1 @@ +__version__ = '1.0.3' \ No newline at end of file diff --git a/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/endpoint.py b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/endpoint.py new file mode 100644 index 0000000000..b2cd608315 --- /dev/null +++ b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/endpoint.py @@ -0,0 +1,33 @@ +# # 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. + + +class EndpointData(): + def __init__(self): + self.endpoint_map = {} + self.endpoint_regional = "regional" + + def getEndpointMap(self): + return self.endpoint_map + + def getEndpointRegional(self): + return self.endpoint_regional + + +endpoint_data = EndpointData() diff --git a/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/__init__.py b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/AddSfaceFaceRequest.py b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/AddSfaceFaceRequest.py new file mode 100644 index 0000000000..2927d90f0e --- /dev/null +++ b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/AddSfaceFaceRequest.py @@ -0,0 +1,62 @@ +# 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 aliyunsdkaligreen_console.endpoint import endpoint_data + +class AddSfaceFaceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aligreen-console', '2019-11-15', 'AddSfaceFace') + 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_DataId(self): + return self.get_query_params().get('DataId') + + def set_DataId(self,DataId): + self.add_query_param('DataId',DataId) + + def get_FaceUrl(self): + return self.get_query_params().get('FaceUrl') + + def set_FaceUrl(self,FaceUrl): + self.add_query_param('FaceUrl',FaceUrl) + + def get_CallbackSeed(self): + return self.get_query_params().get('CallbackSeed') + + def set_CallbackSeed(self,CallbackSeed): + self.add_query_param('CallbackSeed',CallbackSeed) + + def get_PersonId(self): + return self.get_query_params().get('PersonId') + + def set_PersonId(self,PersonId): + self.add_query_param('PersonId',PersonId) + + def get_CallbackUrl(self): + return self.get_query_params().get('CallbackUrl') + + def set_CallbackUrl(self,CallbackUrl): + self.add_query_param('CallbackUrl',CallbackUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/AddSfacePersonRequest.py b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/AddSfacePersonRequest.py new file mode 100644 index 0000000000..e0b4775583 --- /dev/null +++ b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/AddSfacePersonRequest.py @@ -0,0 +1,74 @@ +# 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 aliyunsdkaligreen_console.endpoint import endpoint_data + +class AddSfacePersonRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aligreen-console', '2019-11-15', 'AddSfacePerson') + 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_PersonGender(self): + return self.get_query_params().get('PersonGender') + + def set_PersonGender(self,PersonGender): + self.add_query_param('PersonGender',PersonGender) + + def get_PersonType(self): + return self.get_query_params().get('PersonType') + + def set_PersonType(self,PersonType): + self.add_query_param('PersonType',PersonType) + + def get_DataId(self): + return self.get_query_params().get('DataId') + + def set_DataId(self,DataId): + self.add_query_param('DataId',DataId) + + def get_FaceUrl(self): + return self.get_query_params().get('FaceUrl') + + def set_FaceUrl(self,FaceUrl): + self.add_query_param('FaceUrl',FaceUrl) + + def get_CallbackSeed(self): + return self.get_query_params().get('CallbackSeed') + + def set_CallbackSeed(self,CallbackSeed): + self.add_query_param('CallbackSeed',CallbackSeed) + + def get_CallbackUrl(self): + return self.get_query_params().get('CallbackUrl') + + def set_CallbackUrl(self,CallbackUrl): + self.add_query_param('CallbackUrl',CallbackUrl) + + def get_PersonName(self): + return self.get_query_params().get('PersonName') + + def set_PersonName(self,PersonName): + self.add_query_param('PersonName',PersonName) \ No newline at end of file diff --git a/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/GetSfacePersonRequest.py b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/GetSfacePersonRequest.py new file mode 100644 index 0000000000..9713ada837 --- /dev/null +++ b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/GetSfacePersonRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkaligreen_console.endpoint import endpoint_data + +class GetSfacePersonRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aligreen-console', '2019-11-15', 'GetSfacePerson') + 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_PersonId(self): + return self.get_query_params().get('PersonId') + + def set_PersonId(self,PersonId): + self.add_query_param('PersonId',PersonId) \ No newline at end of file diff --git a/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/ListSfaceAuditTasksRequest.py b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/ListSfaceAuditTasksRequest.py new file mode 100644 index 0000000000..a7d39a7e8a --- /dev/null +++ b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/ListSfaceAuditTasksRequest.py @@ -0,0 +1,39 @@ +# 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 aliyunsdkaligreen_console.endpoint import endpoint_data + +class ListSfaceAuditTasksRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aligreen-console', '2019-11-15', 'ListSfaceAuditTasks') + 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_DataIds(self): + return self.get_query_params().get('DataIds') + + def set_DataIds(self,DataIds): + for i in range(len(DataIds)): + if DataIds[i] is not None: + self.add_query_param('DataId.' + str(i + 1) , DataIds[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/RemoveSfaceFaceRequest.py b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/RemoveSfaceFaceRequest.py new file mode 100644 index 0000000000..eb5df19f03 --- /dev/null +++ b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/RemoveSfaceFaceRequest.py @@ -0,0 +1,62 @@ +# 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 aliyunsdkaligreen_console.endpoint import endpoint_data + +class RemoveSfaceFaceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'aligreen-console', '2019-11-15', 'RemoveSfaceFace') + 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_FaceId(self): + return self.get_query_params().get('FaceId') + + def set_FaceId(self,FaceId): + self.add_query_param('FaceId',FaceId) + + def get_DataId(self): + return self.get_query_params().get('DataId') + + def set_DataId(self,DataId): + self.add_query_param('DataId',DataId) + + def get_CallbackSeed(self): + return self.get_query_params().get('CallbackSeed') + + def set_CallbackSeed(self,CallbackSeed): + self.add_query_param('CallbackSeed',CallbackSeed) + + def get_PersonId(self): + return self.get_query_params().get('PersonId') + + def set_PersonId(self,PersonId): + self.add_query_param('PersonId',PersonId) + + def get_CallbackUrl(self): + return self.get_query_params().get('CallbackUrl') + + def set_CallbackUrl(self,CallbackUrl): + self.add_query_param('CallbackUrl',CallbackUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/__init__.py b/aliyun-python-sdk-aligreen-console/aliyunsdkaligreen_console/request/v20191115/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-aligreen-console/setup.py b/aliyun-python-sdk-aligreen-console/setup.py new file mode 100644 index 0000000000..4b1c6da1d7 --- /dev/null +++ b/aliyun-python-sdk-aligreen-console/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for aligreen-console. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkaligreen_console" +NAME = "aliyun-python-sdk-aligreen-console" +DESCRIPTION = "The aligreen-console module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","aligreen-console"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/ChangeLog.txt b/aliyun-python-sdk-appmallsservice/ChangeLog.txt new file mode 100644 index 0000000000..c5fb9bdfff --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-08-20 Version: 1.1.1 +- API TaobaoFilmGetSchedules retrun col add hallId. + diff --git a/aliyun-python-sdk-appmallsservice/MANIFEST.in b/aliyun-python-sdk-appmallsservice/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-appmallsservice/README.rst b/aliyun-python-sdk-appmallsservice/README.rst new file mode 100644 index 0000000000..414d0d9856 --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/README.rst @@ -0,0 +1,15 @@ +============================================================= +aliyun-python-sdk-appmallsservice +============================================================= + +.. This is the appmallsservice module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater + +**Documentation:** + +Please visit `http://develop.aliyun.com/sdk/python `_ diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/__init__.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/__init__.py new file mode 100644 index 0000000000..e9e169e2d0 --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/__init__.py @@ -0,0 +1 @@ +__version__ = '1.1.1' \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/endpoint.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/endpoint.py new file mode 100644 index 0000000000..e20e9dcbdd --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/endpoint.py @@ -0,0 +1,54 @@ +# # 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. + + +class EndpointData(): + def __init__(self): + self.endpoint_map = { + "cn-shenzhen": "appms.aliyuncs.com", + "cn-beijing": "appms.aliyuncs.com", + "ap-south-1": "appms.aliyuncs.com", + "eu-west-1": "appms.aliyuncs.com", + "ap-northeast-1": "appms.aliyuncs.com", + "me-east-1": "appms.aliyuncs.com", + "cn-chengdu": "appms.aliyuncs.com", + "cn-qingdao": "appms.aliyuncs.com", + "cn-shanghai": "appms.aliyuncs.com", + "cn-hongkong": "appms.aliyuncs.com", + "ap-southeast-1": "appms.aliyuncs.com", + "ap-southeast-2": "appms.aliyuncs.com", + "ap-southeast-3": "appms.aliyuncs.com", + "eu-central-1": "appms.aliyuncs.com", + "cn-huhehaote": "appms.aliyuncs.com", + "ap-southeast-5": "appms.aliyuncs.com", + "us-east-1": "appms.aliyuncs.com", + "cn-zhangjiakou": "appms.aliyuncs.com", + "us-west-1": "appms.aliyuncs.com", + "cn-hangzhou": "appms.aliyuncs.com", + } + self.endpoint_regional = "regional" + + def getEndpointMap(self): + return self.endpoint_map + + def getEndpointRegional(self): + return self.endpoint_regional + + +endpoint_data = EndpointData() diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/__init__.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/GetMessagesRequest.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/GetMessagesRequest.py new file mode 100644 index 0000000000..e17a07b64e --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/GetMessagesRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkappmallsservice.endpoint import endpoint_data + +class GetMessagesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'AppMallsService', '2018-02-24', 'GetMessages') + 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_Topic(self): + return self.get_query_params().get('Topic') + + def set_Topic(self,Topic): + self.add_query_param('Topic',Topic) + + def get_ParamsJson(self): + return self.get_query_params().get('ParamsJson') + + def set_ParamsJson(self,ParamsJson): + self.add_query_param('ParamsJson',ParamsJson) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/RemoveMessagesRequest.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/RemoveMessagesRequest.py new file mode 100644 index 0000000000..313701be14 --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/RemoveMessagesRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkappmallsservice.endpoint import endpoint_data + +class RemoveMessagesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'AppMallsService', '2018-02-24', 'RemoveMessages') + 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_MsgIds(self): + return self.get_query_params().get('MsgIds') + + def set_MsgIds(self,MsgIds): + self.add_query_param('MsgIds',MsgIds) + + def get_ParamsJson(self): + return self.get_query_params().get('ParamsJson') + + def set_ParamsJson(self,ParamsJson): + self.add_query_param('ParamsJson',ParamsJson) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetCinemasRequest.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetCinemasRequest.py new file mode 100644 index 0000000000..021e199085 --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetCinemasRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkappmallsservice.endpoint import endpoint_data + +class TaobaoFilmGetCinemasRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'AppMallsService', '2018-02-24', 'TaobaoFilmGetCinemas') + 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_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_ParamsJson(self): + return self.get_query_params().get('ParamsJson') + + def set_ParamsJson(self,ParamsJson): + self.add_query_param('ParamsJson',ParamsJson) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetHotShowsRequest.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetHotShowsRequest.py new file mode 100644 index 0000000000..94896da46d --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetHotShowsRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkappmallsservice.endpoint import endpoint_data + +class TaobaoFilmGetHotShowsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'AppMallsService', '2018-02-24', 'TaobaoFilmGetHotShows') + 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_CityCode(self): + return self.get_query_params().get('CityCode') + + def set_CityCode(self,CityCode): + self.add_query_param('CityCode',CityCode) + + def get_ParamsJson(self): + return self.get_query_params().get('ParamsJson') + + def set_ParamsJson(self,ParamsJson): + self.add_query_param('ParamsJson',ParamsJson) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetRegionListRequest.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetRegionListRequest.py new file mode 100644 index 0000000000..736bda0315 --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetRegionListRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkappmallsservice.endpoint import endpoint_data + +class TaobaoFilmGetRegionListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'AppMallsService', '2018-02-24', 'TaobaoFilmGetRegionList') + 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_ParamsJson(self): + return self.get_query_params().get('ParamsJson') + + def set_ParamsJson(self,ParamsJson): + self.add_query_param('ParamsJson',ParamsJson) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetSchedulesRequest.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetSchedulesRequest.py new file mode 100644 index 0000000000..e14c3de1fb --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetSchedulesRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkappmallsservice.endpoint import endpoint_data + +class TaobaoFilmGetSchedulesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'AppMallsService', '2018-02-24', 'TaobaoFilmGetSchedules') + 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_CinemaId(self): + return self.get_query_params().get('CinemaId') + + def set_CinemaId(self,CinemaId): + self.add_query_param('CinemaId',CinemaId) + + def get_ParamsJson(self): + return self.get_query_params().get('ParamsJson') + + def set_ParamsJson(self,ParamsJson): + self.add_query_param('ParamsJson',ParamsJson) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetSeatsRequest.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetSeatsRequest.py new file mode 100644 index 0000000000..1219fd82c7 --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetSeatsRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkappmallsservice.endpoint import endpoint_data + +class TaobaoFilmGetSeatsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'AppMallsService', '2018-02-24', 'TaobaoFilmGetSeats') + 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_ScheduleId(self): + return self.get_query_params().get('ScheduleId') + + def set_ScheduleId(self,ScheduleId): + self.add_query_param('ScheduleId',ScheduleId) + + def get_ParamsJson(self): + return self.get_query_params().get('ParamsJson') + + def set_ParamsJson(self,ParamsJson): + self.add_query_param('ParamsJson',ParamsJson) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetShowCommentsRequest.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetShowCommentsRequest.py new file mode 100644 index 0000000000..7bd9ddc7bf --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetShowCommentsRequest.py @@ -0,0 +1,49 @@ +# 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 aliyunsdkappmallsservice.endpoint import endpoint_data + +class TaobaoFilmGetShowCommentsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'AppMallsService', '2018-02-24', 'TaobaoFilmGetShowComments') + 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_ShowId(self): + return self.get_query_params().get('ShowId') + + def set_ShowId(self,ShowId): + self.add_query_param('ShowId',ShowId) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_ParamsJson(self): + return self.get_query_params().get('ParamsJson') + + def set_ParamsJson(self,ParamsJson): + self.add_query_param('ParamsJson',ParamsJson) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetSoonShowsRequest.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetSoonShowsRequest.py new file mode 100644 index 0000000000..b46c34398d --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmGetSoonShowsRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkappmallsservice.endpoint import endpoint_data + +class TaobaoFilmGetSoonShowsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'AppMallsService', '2018-02-24', 'TaobaoFilmGetSoonShows') + 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_CityCode(self): + return self.get_query_params().get('CityCode') + + def set_CityCode(self,CityCode): + self.add_query_param('CityCode',CityCode) + + def get_ParamsJson(self): + return self.get_query_params().get('ParamsJson') + + def set_ParamsJson(self,ParamsJson): + self.add_query_param('ParamsJson',ParamsJson) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmIssueOrderRequest.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmIssueOrderRequest.py new file mode 100644 index 0000000000..c66e9d3dc0 --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmIssueOrderRequest.py @@ -0,0 +1,61 @@ +# 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 aliyunsdkappmallsservice.endpoint import endpoint_data + +class TaobaoFilmIssueOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'AppMallsService', '2018-02-24', 'TaobaoFilmIssueOrder') + 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_LockSeatApplyKey(self): + return self.get_query_params().get('LockSeatApplyKey') + + def set_LockSeatApplyKey(self,LockSeatApplyKey): + self.add_query_param('LockSeatApplyKey',LockSeatApplyKey) + + def get_ExtUserId(self): + return self.get_query_params().get('ExtUserId') + + def set_ExtUserId(self,ExtUserId): + self.add_query_param('ExtUserId',ExtUserId) + + def get_ExtOrderId(self): + return self.get_query_params().get('ExtOrderId') + + def set_ExtOrderId(self,ExtOrderId): + self.add_query_param('ExtOrderId',ExtOrderId) + + def get_TotalPrice(self): + return self.get_query_params().get('TotalPrice') + + def set_TotalPrice(self,TotalPrice): + self.add_query_param('TotalPrice',TotalPrice) + + def get_ParamsJson(self): + return self.get_query_params().get('ParamsJson') + + def set_ParamsJson(self,ParamsJson): + self.add_query_param('ParamsJson',ParamsJson) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmLockSeatRequest.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmLockSeatRequest.py new file mode 100644 index 0000000000..3e04f8ece1 --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmLockSeatRequest.py @@ -0,0 +1,67 @@ +# 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 aliyunsdkappmallsservice.endpoint import endpoint_data + +class TaobaoFilmLockSeatRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'AppMallsService', '2018-02-24', 'TaobaoFilmLockSeat') + 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_ScheduleId(self): + return self.get_query_params().get('ScheduleId') + + def set_ScheduleId(self,ScheduleId): + self.add_query_param('ScheduleId',ScheduleId) + + def get_SeatIds(self): + return self.get_query_params().get('SeatIds') + + def set_SeatIds(self,SeatIds): + self.add_query_param('SeatIds',SeatIds) + + def get_SeatNames(self): + return self.get_query_params().get('SeatNames') + + def set_SeatNames(self,SeatNames): + self.add_query_param('SeatNames',SeatNames) + + def get_Mobile(self): + return self.get_query_params().get('Mobile') + + def set_Mobile(self,Mobile): + self.add_query_param('Mobile',Mobile) + + def get_ExtUserId(self): + return self.get_query_params().get('ExtUserId') + + def set_ExtUserId(self,ExtUserId): + self.add_query_param('ExtUserId',ExtUserId) + + def get_ParamsJson(self): + return self.get_query_params().get('ParamsJson') + + def set_ParamsJson(self,ParamsJson): + self.add_query_param('ParamsJson',ParamsJson) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmUnLockSeatRequest.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmUnLockSeatRequest.py new file mode 100644 index 0000000000..4457e2f8f7 --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/TaobaoFilmUnLockSeatRequest.py @@ -0,0 +1,49 @@ +# 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 aliyunsdkappmallsservice.endpoint import endpoint_data + +class TaobaoFilmUnLockSeatRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'AppMallsService', '2018-02-24', 'TaobaoFilmUnLockSeat') + 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_LockSeatApplyKey(self): + return self.get_query_params().get('LockSeatApplyKey') + + def set_LockSeatApplyKey(self,LockSeatApplyKey): + self.add_query_param('LockSeatApplyKey',LockSeatApplyKey) + + def get_ExtUserId(self): + return self.get_query_params().get('ExtUserId') + + def set_ExtUserId(self,ExtUserId): + self.add_query_param('ExtUserId',ExtUserId) + + def get_ParamsJson(self): + return self.get_query_params().get('ParamsJson') + + def set_ParamsJson(self,ParamsJson): + self.add_query_param('ParamsJson',ParamsJson) \ No newline at end of file diff --git a/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/__init__.py b/aliyun-python-sdk-appmallsservice/aliyunsdkappmallsservice/request/v20180224/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-appmallsservice/setup.py b/aliyun-python-sdk-appmallsservice/setup.py new file mode 100644 index 0000000000..f6103e0674 --- /dev/null +++ b/aliyun-python-sdk-appmallsservice/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for appmallsservice. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkappmallsservice" +NAME = "aliyun-python-sdk-appmallsservice" +DESCRIPTION = "The appmallsservice module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","appmallsservice"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-bss/ChangeLog.txt b/aliyun-python-sdk-bss/ChangeLog.txt new file mode 100644 index 0000000000..17fcdeb453 --- /dev/null +++ b/aliyun-python-sdk-bss/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-03-20 Version: 0.0.4 +1, Update the Dependency + diff --git a/aliyun-python-sdk-bss/MANIFEST.in b/aliyun-python-sdk-bss/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-bss/README.rst b/aliyun-python-sdk-bss/README.rst new file mode 100644 index 0000000000..11bedd81b4 --- /dev/null +++ b/aliyun-python-sdk-bss/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-bss +This is the bss module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/__init__.py b/aliyun-python-sdk-bss/aliyunsdkbss/__init__.py new file mode 100644 index 0000000000..221ce5dcc2 --- /dev/null +++ b/aliyun-python-sdk-bss/aliyunsdkbss/__init__.py @@ -0,0 +1 @@ +__version__ = "0.0.4" \ No newline at end of file diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/request/__init__.py b/aliyun-python-sdk-bss/aliyunsdkbss/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/CreateOrderRequest.py b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/CreateOrderRequest.py new file mode 100644 index 0000000000..0232435539 --- /dev/null +++ b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/CreateOrderRequest.py @@ -0,0 +1,30 @@ +# 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 +class CreateOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Bss', '2014-07-14', 'CreateOrder','bss') + + def get_paramStr(self): + return self.get_query_params().get('paramStr') + + def set_paramStr(self,paramStr): + self.add_query_param('paramStr',paramStr) \ No newline at end of file diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/DescribeCashDetailRequest.py b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/DescribeCashDetailRequest.py new file mode 100644 index 0000000000..e52074afd5 --- /dev/null +++ b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/DescribeCashDetailRequest.py @@ -0,0 +1,25 @@ +# 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 +class DescribeCashDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Bss', '2014-07-14', 'DescribeCashDetail','bss') + self.set_protocol_type('https'); \ No newline at end of file diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/DescribeCouponDetailRequest.py b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/DescribeCouponDetailRequest.py new file mode 100644 index 0000000000..6c3f5c34fc --- /dev/null +++ b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/DescribeCouponDetailRequest.py @@ -0,0 +1,31 @@ +# 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 +class DescribeCouponDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Bss', '2014-07-14', 'DescribeCouponDetail','bss') + self.set_protocol_type('https'); + + def get_CouponNumber(self): + return self.get_query_params().get('CouponNumber') + + def set_CouponNumber(self,CouponNumber): + self.add_query_param('CouponNumber',CouponNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/DescribeCouponListRequest.py b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/DescribeCouponListRequest.py new file mode 100644 index 0000000000..72a0a11d49 --- /dev/null +++ b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/DescribeCouponListRequest.py @@ -0,0 +1,55 @@ +# 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 +class DescribeCouponListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Bss', '2014-07-14', 'DescribeCouponList','bss') + self.set_protocol_type('https'); + + def get_StartDeliveryTime(self): + return self.get_query_params().get('StartDeliveryTime') + + def set_StartDeliveryTime(self,StartDeliveryTime): + self.add_query_param('StartDeliveryTime',StartDeliveryTime) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_EndDeliveryTime(self): + return self.get_query_params().get('EndDeliveryTime') + + def set_EndDeliveryTime(self,EndDeliveryTime): + self.add_query_param('EndDeliveryTime',EndDeliveryTime) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/OpenCallbackRequest.py b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/OpenCallbackRequest.py new file mode 100644 index 0000000000..d2b096412d --- /dev/null +++ b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/OpenCallbackRequest.py @@ -0,0 +1,30 @@ +# 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 +class OpenCallbackRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Bss', '2014-07-14', 'OpenCallback','bss') + + def get_paramStr(self): + return self.get_query_params().get('paramStr') + + def set_paramStr(self,paramStr): + self.add_query_param('paramStr',paramStr) \ No newline at end of file diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/QueryForCssOrderRequest.py b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/QueryForCssOrderRequest.py new file mode 100644 index 0000000000..d21ec2ed14 --- /dev/null +++ b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/QueryForCssOrderRequest.py @@ -0,0 +1,30 @@ +# 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 +class QueryForCssOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Bss', '2014-07-14', 'QueryForCssOrder','bss') + + def get_paramStr(self): + return self.get_query_params().get('paramStr') + + def set_paramStr(self,paramStr): + self.add_query_param('paramStr',paramStr) \ No newline at end of file diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/SetResourceBusinessStatusRequest.py b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/SetResourceBusinessStatusRequest.py new file mode 100644 index 0000000000..49049d25be --- /dev/null +++ b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/SetResourceBusinessStatusRequest.py @@ -0,0 +1,66 @@ +# 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 +class SetResourceBusinessStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Bss', '2014-07-14', 'SetResourceBusinessStatus','bss') + + def get_BusinessStatus(self): + return self.get_query_params().get('BusinessStatus') + + def set_BusinessStatus(self,BusinessStatus): + self.add_query_param('BusinessStatus',BusinessStatus) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_ResourceId(self): + return self.get_query_params().get('ResourceId') + + def set_ResourceId(self,ResourceId): + self.add_query_param('ResourceId',ResourceId) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) + + def get_ResourceType(self): + return self.get_query_params().get('ResourceType') + + def set_ResourceType(self,ResourceType): + self.add_query_param('ResourceType',ResourceType) \ No newline at end of file diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/SubscriptionCreateOrderApiRequest.py b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/SubscriptionCreateOrderApiRequest.py new file mode 100644 index 0000000000..db0acabe68 --- /dev/null +++ b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/SubscriptionCreateOrderApiRequest.py @@ -0,0 +1,36 @@ +# 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 +class SubscriptionCreateOrderApiRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Bss', '2014-07-14', 'SubscriptionCreateOrderApi','bss') + + def get_productCode(self): + return self.get_query_params().get('productCode') + + def set_productCode(self,productCode): + self.add_query_param('productCode',productCode) + + def get_ownerId(self): + return self.get_query_params().get('ownerId') + + def set_ownerId(self,ownerId): + self.add_query_param('ownerId',ownerId) \ No newline at end of file diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/VnoBatchRefundOrderRequest.py b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/VnoBatchRefundOrderRequest.py new file mode 100644 index 0000000000..30f28bcace --- /dev/null +++ b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/VnoBatchRefundOrderRequest.py @@ -0,0 +1,30 @@ +# 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 +class VnoBatchRefundOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Bss', '2014-07-14', 'VnoBatchRefundOrder','bss') + + def get_paramStr(self): + return self.get_query_params().get('paramStr') + + def set_paramStr(self,paramStr): + self.add_query_param('paramStr',paramStr) \ No newline at end of file diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/VnoPayCallBackNotifyRequest.py b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/VnoPayCallBackNotifyRequest.py new file mode 100644 index 0000000000..487499cb5f --- /dev/null +++ b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/VnoPayCallBackNotifyRequest.py @@ -0,0 +1,30 @@ +# 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 +class VnoPayCallBackNotifyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Bss', '2014-07-14', 'VnoPayCallBackNotify','bss') + + def get_paramStr(self): + return self.get_query_params().get('paramStr') + + def set_paramStr(self,paramStr): + self.add_query_param('paramStr',paramStr) \ No newline at end of file diff --git a/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/__init__.py b/aliyun-python-sdk-bss/aliyunsdkbss/request/v20140714/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-bss/setup.py b/aliyun-python-sdk-bss/setup.py new file mode 100644 index 0000000000..f98b19be81 --- /dev/null +++ b/aliyun-python-sdk-bss/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for bss. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkbss" +NAME = "aliyun-python-sdk-bss" +DESCRIPTION = "The bss module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","bss"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-ccs/ChangeLog.txt b/aliyun-python-sdk-ccs/ChangeLog.txt new file mode 100644 index 0000000000..d55d58e7b5 --- /dev/null +++ b/aliyun-python-sdk-ccs/ChangeLog.txt @@ -0,0 +1,6 @@ +2019-03-18 Version: 1.0.1 +1, Update Dependency + +2018-09-25 Version: 1.0.0 +1, Add GetHotlineRecord and QueryHotlineRecord interface, version 1.0.0 + diff --git a/aliyun-python-sdk-ccs/MANIFEST.in b/aliyun-python-sdk-ccs/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-ccs/README.rst b/aliyun-python-sdk-ccs/README.rst new file mode 100644 index 0000000000..8c46af7a6f --- /dev/null +++ b/aliyun-python-sdk-ccs/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-ccs +This is the ccs module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-ccs/aliyunsdkccs/__init__.py b/aliyun-python-sdk-ccs/aliyunsdkccs/__init__.py new file mode 100644 index 0000000000..0058b93f7d --- /dev/null +++ b/aliyun-python-sdk-ccs/aliyunsdkccs/__init__.py @@ -0,0 +1 @@ +__version__ = "1.0.1" \ No newline at end of file diff --git a/aliyun-python-sdk-ccs/aliyunsdkccs/request/__init__.py b/aliyun-python-sdk-ccs/aliyunsdkccs/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/CreateTicketRequest.py b/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/CreateTicketRequest.py new file mode 100644 index 0000000000..2df664de58 --- /dev/null +++ b/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/CreateTicketRequest.py @@ -0,0 +1,55 @@ +# 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 +class CreateTicketRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ccs', '2017-10-01', 'CreateTicket','ccs') + self.set_method('POST') + + def get_CreatorId(self): + return self.get_query_params().get('CreatorId') + + def set_CreatorId(self,CreatorId): + self.add_query_param('CreatorId',CreatorId) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_CcsInstanceId(self): + return self.get_query_params().get('CcsInstanceId') + + def set_CcsInstanceId(self,CcsInstanceId): + self.add_query_param('CcsInstanceId',CcsInstanceId) + + def get_CustomFields(self): + return self.get_query_params().get('CustomFields') + + def set_CustomFields(self,CustomFields): + self.add_query_param('CustomFields',CustomFields) \ No newline at end of file diff --git a/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/GetHotlineRecordRequest.py b/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/GetHotlineRecordRequest.py new file mode 100644 index 0000000000..7ce8b09b6d --- /dev/null +++ b/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/GetHotlineRecordRequest.py @@ -0,0 +1,36 @@ +# 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 +class GetHotlineRecordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ccs', '2017-10-01', 'GetHotlineRecord','ccs') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_CcsInstanceId(self): + return self.get_query_params().get('CcsInstanceId') + + def set_CcsInstanceId(self,CcsInstanceId): + self.add_query_param('CcsInstanceId',CcsInstanceId) \ No newline at end of file diff --git a/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/ProceedTicketRequest.py b/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/ProceedTicketRequest.py new file mode 100644 index 0000000000..57b4703ead --- /dev/null +++ b/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/ProceedTicketRequest.py @@ -0,0 +1,54 @@ +# 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 +class ProceedTicketRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ccs', '2017-10-01', 'ProceedTicket','ccs') + + def get_Memo(self): + return self.get_query_params().get('Memo') + + def set_Memo(self,Memo): + self.add_query_param('Memo',Memo) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_CcsInstanceId(self): + return self.get_query_params().get('CcsInstanceId') + + def set_CcsInstanceId(self,CcsInstanceId): + self.add_query_param('CcsInstanceId',CcsInstanceId) + + def get_Operation(self): + return self.get_query_params().get('Operation') + + def set_Operation(self,Operation): + self.add_query_param('Operation',Operation) + + def get_OperatorId(self): + return self.get_query_params().get('OperatorId') + + def set_OperatorId(self,OperatorId): + self.add_query_param('OperatorId',OperatorId) \ No newline at end of file diff --git a/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/QueryHotlineRecordRequest.py b/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/QueryHotlineRecordRequest.py new file mode 100644 index 0000000000..4cd6c349d4 --- /dev/null +++ b/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/QueryHotlineRecordRequest.py @@ -0,0 +1,120 @@ +# 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 +class QueryHotlineRecordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ccs', '2017-10-01', 'QueryHotlineRecord','ccs') + + def get_AgentId(self): + return self.get_query_params().get('AgentId') + + def set_AgentId(self,AgentId): + self.add_query_param('AgentId',AgentId) + + def get_MaxTalkDuration(self): + return self.get_query_params().get('MaxTalkDuration') + + def set_MaxTalkDuration(self,MaxTalkDuration): + self.add_query_param('MaxTalkDuration',MaxTalkDuration) + + def get_GroupId(self): + return self.get_query_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_query_param('GroupId',GroupId) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_Satisfaction(self): + return self.get_query_params().get('Satisfaction') + + def set_Satisfaction(self,Satisfaction): + self.add_query_param('Satisfaction',Satisfaction) + + def get_MinTalkDuratoin(self): + return self.get_query_params().get('MinTalkDuratoin') + + def set_MinTalkDuratoin(self,MinTalkDuratoin): + self.add_query_param('MinTalkDuratoin',MinTalkDuratoin) + + def get_CategoryIds(self): + return self.get_query_params().get('CategoryIds') + + def set_CategoryIds(self,CategoryIds): + self.add_query_param('CategoryIds',CategoryIds) + + def get_VisitorProvince(self): + return self.get_query_params().get('VisitorProvince') + + def set_VisitorProvince(self,VisitorProvince): + self.add_query_param('VisitorProvince',VisitorProvince) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CallType(self): + return self.get_query_params().get('CallType') + + def set_CallType(self,CallType): + self.add_query_param('CallType',CallType) + + def get_CcsInstanceId(self): + return self.get_query_params().get('CcsInstanceId') + + def set_CcsInstanceId(self,CcsInstanceId): + self.add_query_param('CcsInstanceId',CcsInstanceId) + + def get_VisitorPhone(self): + return self.get_query_params().get('VisitorPhone') + + def set_VisitorPhone(self,VisitorPhone): + self.add_query_param('VisitorPhone',VisitorPhone) + + def get_VisitorId(self): + return self.get_query_params().get('VisitorId') + + def set_VisitorId(self,VisitorId): + self.add_query_param('VisitorId',VisitorId) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/QueryTicketRequest.py b/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/QueryTicketRequest.py new file mode 100644 index 0000000000..7afe8d37ad --- /dev/null +++ b/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/QueryTicketRequest.py @@ -0,0 +1,72 @@ +# 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 +class QueryTicketRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ccs', '2017-10-01', 'QueryTicket','ccs') + + def get_Stage(self): + return self.get_query_params().get('Stage') + + def set_Stage(self,Stage): + self.add_query_param('Stage',Stage) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CreatorId(self): + return self.get_query_params().get('CreatorId') + + def set_CreatorId(self,CreatorId): + self.add_query_param('CreatorId',CreatorId) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_CcsInstanceId(self): + return self.get_query_params().get('CcsInstanceId') + + def set_CcsInstanceId(self,CcsInstanceId): + self.add_query_param('CcsInstanceId',CcsInstanceId) \ No newline at end of file diff --git a/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/__init__.py b/aliyun-python-sdk-ccs/aliyunsdkccs/request/v20171001/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-ccs/setup.py b/aliyun-python-sdk-ccs/setup.py new file mode 100644 index 0000000000..6890b9b79a --- /dev/null +++ b/aliyun-python-sdk-ccs/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for ccs. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkccs" +NAME = "aliyun-python-sdk-ccs" +DESCRIPTION = "The ccs module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","ccs"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/ChangeLog.txt b/aliyun-python-sdk-chatbot/ChangeLog.txt new file mode 100644 index 0000000000..eb1b31bea4 --- /dev/null +++ b/aliyun-python-sdk-chatbot/ChangeLog.txt @@ -0,0 +1,14 @@ +2019-01-25 Version: 1.2.1 +1, fixed fastjson vulnerabilities: com.alibaba:fastjson@1.2.9 > com.alibaba:fastjson@1.2.48. +2, add "categoryId" to api "QueryKnowledges". + +2018-11-15 Version: 1.2.0 +1, Add new API. + +2018-07-05 Version: 1.1.0 +1, A new optional parameter 'Perspectives' is introduced to the 'Chat' API. By filling this parameter when calling 'Chat', you'll get the knowledge base content within the specified perspectives. + +2017-10-21 Version: 1.0.0 +1, Alibaba Cloud Intelligent Chatbot SDK initial release. +2, Added 'Chat' API. Using this api, you are able make a conversation with you chatbot by programming. + diff --git a/aliyun-python-sdk-chatbot/MANIFEST.in b/aliyun-python-sdk-chatbot/MANIFEST.in new file mode 100755 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-chatbot/README.rst b/aliyun-python-sdk-chatbot/README.rst new file mode 100755 index 0000000000..51fa658499 --- /dev/null +++ b/aliyun-python-sdk-chatbot/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-chatbot +This is the chatbot module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/__init__.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/__init__.py new file mode 100755 index 0000000000..42cf7cd54c --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/__init__.py @@ -0,0 +1 @@ +__version__ = "1.2.1" \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/__init__.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/__init__.py new file mode 100755 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/ActivatePerspectiveRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/ActivatePerspectiveRequest.py new file mode 100755 index 0000000000..1618d6c4e6 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/ActivatePerspectiveRequest.py @@ -0,0 +1,30 @@ +# 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 +class ActivatePerspectiveRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'ActivatePerspective','beebot') + + def get_PerspectiveId(self): + return self.get_query_params().get('PerspectiveId') + + def set_PerspectiveId(self,PerspectiveId): + self.add_query_param('PerspectiveId',PerspectiveId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/AddSynonymRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/AddSynonymRequest.py new file mode 100755 index 0000000000..31fef6d000 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/AddSynonymRequest.py @@ -0,0 +1,36 @@ +# 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 +class AddSynonymRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'AddSynonym','beebot') + + def get_Synonym(self): + return self.get_query_params().get('Synonym') + + def set_Synonym(self,Synonym): + self.add_query_param('Synonym',Synonym) + + def get_CoreWordName(self): + return self.get_query_params().get('CoreWordName') + + def set_CoreWordName(self,CoreWordName): + self.add_query_param('CoreWordName',CoreWordName) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/AppendEntityMemberRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/AppendEntityMemberRequest.py new file mode 100755 index 0000000000..64386cbc24 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/AppendEntityMemberRequest.py @@ -0,0 +1,42 @@ +# 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 +class AppendEntityMemberRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'AppendEntityMember','beebot') + + def get_Member(self): + return self.get_body_params().get('Member') + + def set_Member(self,Member): + self.add_body_params('Member', Member) + + def get_EntityId(self): + return self.get_query_params().get('EntityId') + + def set_EntityId(self,EntityId): + self.add_query_param('EntityId',EntityId) + + def get_ApplyType(self): + return self.get_query_params().get('ApplyType') + + def set_ApplyType(self,ApplyType): + self.add_query_param('ApplyType',ApplyType) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/ChatRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/ChatRequest.py new file mode 100755 index 0000000000..3fce08e0fe --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/ChatRequest.py @@ -0,0 +1,74 @@ +# 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 +class ChatRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'Chat','beebot') + + def get_KnowledgeId(self): + return self.get_query_params().get('KnowledgeId') + + def set_KnowledgeId(self,KnowledgeId): + self.add_query_param('KnowledgeId',KnowledgeId) + + def get_SenderId(self): + return self.get_query_params().get('SenderId') + + def set_SenderId(self,SenderId): + self.add_query_param('SenderId',SenderId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SenderNick(self): + return self.get_query_params().get('SenderNick') + + def set_SenderNick(self,SenderNick): + self.add_query_param('SenderNick',SenderNick) + + def get_Perspectives(self): + return self.get_query_params().get('Perspectives') + + def set_Perspectives(self,Perspectives): + for i in range(len(Perspectives)): + if Perspectives[i] is not None: + self.add_query_param('Perspective.' + str(i + 1) , Perspectives[i]); + + def get_SessionId(self): + return self.get_query_params().get('SessionId') + + def set_SessionId(self,SessionId): + self.add_query_param('SessionId',SessionId) + + def get_Tag(self): + return self.get_query_params().get('Tag') + + def set_Tag(self,Tag): + self.add_query_param('Tag',Tag) + + def get_Utterance(self): + return self.get_query_params().get('Utterance') + + def set_Utterance(self,Utterance): + self.add_query_param('Utterance',Utterance) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateCategoryRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateCategoryRequest.py new file mode 100755 index 0000000000..b23ad61a90 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateCategoryRequest.py @@ -0,0 +1,36 @@ +# 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 +class CreateCategoryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'CreateCategory','beebot') + + def get_ParentCategoryId(self): + return self.get_query_params().get('ParentCategoryId') + + def set_ParentCategoryId(self,ParentCategoryId): + self.add_query_param('ParentCategoryId',ParentCategoryId) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateCoreWordRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateCoreWordRequest.py new file mode 100755 index 0000000000..4ded58cbf1 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateCoreWordRequest.py @@ -0,0 +1,30 @@ +# 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 +class CreateCoreWordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'CreateCoreWord','beebot') + + def get_CoreWordName(self): + return self.get_query_params().get('CoreWordName') + + def set_CoreWordName(self,CoreWordName): + self.add_query_param('CoreWordName',CoreWordName) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateDialogRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateDialogRequest.py new file mode 100755 index 0000000000..2fe49479bc --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateDialogRequest.py @@ -0,0 +1,42 @@ +# 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 +class CreateDialogRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'CreateDialog','beebot') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_DialogName(self): + return self.get_query_params().get('DialogName') + + def set_DialogName(self,DialogName): + self.add_query_param('DialogName',DialogName) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateEntityRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateEntityRequest.py new file mode 100755 index 0000000000..dfb74044ca --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateEntityRequest.py @@ -0,0 +1,54 @@ +# 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 +class CreateEntityRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'CreateEntity','beebot') + + def get_Regex(self): + return self.get_query_params().get('Regex') + + def set_Regex(self,Regex): + self.add_query_param('Regex',Regex) + + def get_EntityType(self): + return self.get_query_params().get('EntityType') + + def set_EntityType(self,EntityType): + self.add_query_param('EntityType',EntityType) + + def get_Members(self): + return self.get_body_params().get('Members') + + def set_Members(self,Members): + self.add_body_params('Members', Members) + + def get_EntityName(self): + return self.get_query_params().get('EntityName') + + def set_EntityName(self,EntityName): + self.add_query_param('EntityName',EntityName) + + def get_DialogId(self): + return self.get_query_params().get('DialogId') + + def set_DialogId(self,DialogId): + self.add_query_param('DialogId',DialogId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateIntentRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateIntentRequest.py new file mode 100755 index 0000000000..eaf5b7a85e --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateIntentRequest.py @@ -0,0 +1,36 @@ +# 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 +class CreateIntentRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'CreateIntent','beebot') + + def get_IntentDefinition(self): + return self.get_body_params().get('IntentDefinition') + + def set_IntentDefinition(self,IntentDefinition): + self.add_body_params('IntentDefinition', IntentDefinition) + + def get_DialogId(self): + return self.get_query_params().get('DialogId') + + def set_DialogId(self,DialogId): + self.add_query_param('DialogId',DialogId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateKnowledgeRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateKnowledgeRequest.py new file mode 100755 index 0000000000..58647bb2f5 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreateKnowledgeRequest.py @@ -0,0 +1,31 @@ +# 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 +class CreateKnowledgeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'CreateKnowledge','beebot') + self.set_method('POST') + + def get_Knowledge(self): + return self.get_body_params().get('Knowledge') + + def set_Knowledge(self,Knowledge): + self.add_body_params('Knowledge', Knowledge) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreatePerspectiveRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreatePerspectiveRequest.py new file mode 100755 index 0000000000..8d3cc13ab2 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/CreatePerspectiveRequest.py @@ -0,0 +1,30 @@ +# 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 +class CreatePerspectiveRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'CreatePerspective','beebot') + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteCategoryRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteCategoryRequest.py new file mode 100755 index 0000000000..3933c42e46 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteCategoryRequest.py @@ -0,0 +1,30 @@ +# 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 +class DeleteCategoryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DeleteCategory','beebot') + + def get_CategoryId(self): + return self.get_query_params().get('CategoryId') + + def set_CategoryId(self,CategoryId): + self.add_query_param('CategoryId',CategoryId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteDialogRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteDialogRequest.py new file mode 100755 index 0000000000..ea4fbd20ea --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteDialogRequest.py @@ -0,0 +1,30 @@ +# 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 +class DeleteDialogRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DeleteDialog','beebot') + + def get_DialogId(self): + return self.get_query_params().get('DialogId') + + def set_DialogId(self,DialogId): + self.add_query_param('DialogId',DialogId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteEntityRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteEntityRequest.py new file mode 100755 index 0000000000..6388501e5c --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteEntityRequest.py @@ -0,0 +1,30 @@ +# 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 +class DeleteEntityRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DeleteEntity','beebot') + + def get_EntityId(self): + return self.get_query_params().get('EntityId') + + def set_EntityId(self,EntityId): + self.add_query_param('EntityId',EntityId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteIntentRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteIntentRequest.py new file mode 100755 index 0000000000..ae6bdab257 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteIntentRequest.py @@ -0,0 +1,30 @@ +# 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 +class DeleteIntentRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DeleteIntent','beebot') + + def get_IntentId(self): + return self.get_query_params().get('IntentId') + + def set_IntentId(self,IntentId): + self.add_query_param('IntentId',IntentId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteKnowledgeRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteKnowledgeRequest.py new file mode 100755 index 0000000000..0637ae3409 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DeleteKnowledgeRequest.py @@ -0,0 +1,30 @@ +# 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 +class DeleteKnowledgeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DeleteKnowledge','beebot') + + def get_KnowledgeId(self): + return self.get_query_params().get('KnowledgeId') + + def set_KnowledgeId(self,KnowledgeId): + self.add_query_param('KnowledgeId',KnowledgeId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeCategoryRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeCategoryRequest.py new file mode 100755 index 0000000000..80cd131101 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeCategoryRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeCategoryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DescribeCategory','beebot') + + def get_CategoryId(self): + return self.get_query_params().get('CategoryId') + + def set_CategoryId(self,CategoryId): + self.add_query_param('CategoryId',CategoryId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeCoreWordRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeCoreWordRequest.py new file mode 100755 index 0000000000..ffaf163795 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeCoreWordRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeCoreWordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DescribeCoreWord','beebot') + + def get_CoreWordName(self): + return self.get_query_params().get('CoreWordName') + + def set_CoreWordName(self,CoreWordName): + self.add_query_param('CoreWordName',CoreWordName) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeDialogFlowRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeDialogFlowRequest.py new file mode 100755 index 0000000000..1aebc2da89 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeDialogFlowRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeDialogFlowRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DescribeDialogFlow','beebot') + + def get_DialogId(self): + return self.get_query_params().get('DialogId') + + def set_DialogId(self,DialogId): + self.add_query_param('DialogId',DialogId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeDialogRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeDialogRequest.py new file mode 100755 index 0000000000..86c79bebde --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeDialogRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeDialogRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DescribeDialog','beebot') + + def get_DialogId(self): + return self.get_query_params().get('DialogId') + + def set_DialogId(self,DialogId): + self.add_query_param('DialogId',DialogId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeEntitiesRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeEntitiesRequest.py new file mode 100755 index 0000000000..249e6c7e56 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeEntitiesRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeEntitiesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DescribeEntities','beebot') + + def get_EntityId(self): + return self.get_query_params().get('EntityId') + + def set_EntityId(self,EntityId): + self.add_query_param('EntityId',EntityId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeIntentRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeIntentRequest.py new file mode 100755 index 0000000000..373653c4b6 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeIntentRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeIntentRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DescribeIntent','beebot') + + def get_IntentId(self): + return self.get_query_params().get('IntentId') + + def set_IntentId(self,IntentId): + self.add_query_param('IntentId',IntentId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeKnowledgeRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeKnowledgeRequest.py new file mode 100755 index 0000000000..4a7dda5f19 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribeKnowledgeRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribeKnowledgeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DescribeKnowledge','beebot') + + def get_KnowledgeId(self): + return self.get_query_params().get('KnowledgeId') + + def set_KnowledgeId(self,KnowledgeId): + self.add_query_param('KnowledgeId',KnowledgeId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribePerspectiveRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribePerspectiveRequest.py new file mode 100755 index 0000000000..c2c934ef50 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DescribePerspectiveRequest.py @@ -0,0 +1,30 @@ +# 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 +class DescribePerspectiveRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DescribePerspective','beebot') + + def get_PerspectiveId(self): + return self.get_query_params().get('PerspectiveId') + + def set_PerspectiveId(self,PerspectiveId): + self.add_query_param('PerspectiveId',PerspectiveId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DisableDialogFlowRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DisableDialogFlowRequest.py new file mode 100755 index 0000000000..d4ee9fe2fe --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DisableDialogFlowRequest.py @@ -0,0 +1,30 @@ +# 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 +class DisableDialogFlowRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DisableDialogFlow','beebot') + + def get_DialogId(self): + return self.get_query_params().get('DialogId') + + def set_DialogId(self,DialogId): + self.add_query_param('DialogId',DialogId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DisableKnowledgeRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DisableKnowledgeRequest.py new file mode 100755 index 0000000000..66eb87ea99 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/DisableKnowledgeRequest.py @@ -0,0 +1,30 @@ +# 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 +class DisableKnowledgeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'DisableKnowledge','beebot') + + def get_KnowledgeId(self): + return self.get_query_params().get('KnowledgeId') + + def set_KnowledgeId(self,KnowledgeId): + self.add_query_param('KnowledgeId',KnowledgeId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/FeedbackRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/FeedbackRequest.py new file mode 100755 index 0000000000..50a10437e0 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/FeedbackRequest.py @@ -0,0 +1,48 @@ +# 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 +class FeedbackRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'Feedback','beebot') + + def get_Feedback(self): + return self.get_query_params().get('Feedback') + + def set_Feedback(self,Feedback): + self.add_query_param('Feedback',Feedback) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_MessageId(self): + return self.get_query_params().get('MessageId') + + def set_MessageId(self,MessageId): + self.add_query_param('MessageId',MessageId) + + def get_SessionId(self): + return self.get_query_params().get('SessionId') + + def set_SessionId(self,SessionId): + self.add_query_param('SessionId',SessionId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/MoveKnowledgeCategoryRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/MoveKnowledgeCategoryRequest.py new file mode 100755 index 0000000000..8a9641ca4f --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/MoveKnowledgeCategoryRequest.py @@ -0,0 +1,36 @@ +# 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 +class MoveKnowledgeCategoryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'MoveKnowledgeCategory','beebot') + + def get_KnowledgeId(self): + return self.get_query_params().get('KnowledgeId') + + def set_KnowledgeId(self,KnowledgeId): + self.add_query_param('KnowledgeId',KnowledgeId) + + def get_CategoryId(self): + return self.get_query_params().get('CategoryId') + + def set_CategoryId(self,CategoryId): + self.add_query_param('CategoryId',CategoryId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/PublishDialogFlowRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/PublishDialogFlowRequest.py new file mode 100755 index 0000000000..8c003dad71 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/PublishDialogFlowRequest.py @@ -0,0 +1,30 @@ +# 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 +class PublishDialogFlowRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'PublishDialogFlow','beebot') + + def get_DialogId(self): + return self.get_query_params().get('DialogId') + + def set_DialogId(self,DialogId): + self.add_query_param('DialogId',DialogId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/PublishKnowledgeRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/PublishKnowledgeRequest.py new file mode 100755 index 0000000000..e0faf8d555 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/PublishKnowledgeRequest.py @@ -0,0 +1,30 @@ +# 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 +class PublishKnowledgeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'PublishKnowledge','beebot') + + def get_KnowledgeId(self): + return self.get_query_params().get('KnowledgeId') + + def set_KnowledgeId(self,KnowledgeId): + self.add_query_param('KnowledgeId',KnowledgeId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryCategoriesRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryCategoriesRequest.py new file mode 100755 index 0000000000..ff78fed23b --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryCategoriesRequest.py @@ -0,0 +1,36 @@ +# 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 +class QueryCategoriesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'QueryCategories','beebot') + + def get_ShowChildrens(self): + return self.get_query_params().get('ShowChildrens') + + def set_ShowChildrens(self,ShowChildrens): + self.add_query_param('ShowChildrens',ShowChildrens) + + def get_ParentCategoryId(self): + return self.get_query_params().get('ParentCategoryId') + + def set_ParentCategoryId(self,ParentCategoryId): + self.add_query_param('ParentCategoryId',ParentCategoryId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryCoreWordsRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryCoreWordsRequest.py new file mode 100755 index 0000000000..61f1fe1481 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryCoreWordsRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryCoreWordsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'QueryCoreWords','beebot') + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CoreWordName(self): + return self.get_query_params().get('CoreWordName') + + def set_CoreWordName(self,CoreWordName): + self.add_query_param('CoreWordName',CoreWordName) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryDialogsRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryDialogsRequest.py new file mode 100755 index 0000000000..8d6fa3c092 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryDialogsRequest.py @@ -0,0 +1,48 @@ +# 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 +class QueryDialogsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'QueryDialogs','beebot') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_DialogName(self): + return self.get_query_params().get('DialogName') + + def set_DialogName(self,DialogName): + self.add_query_param('DialogName',DialogName) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryEntitiesRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryEntitiesRequest.py new file mode 100755 index 0000000000..7372923619 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryEntitiesRequest.py @@ -0,0 +1,48 @@ +# 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 +class QueryEntitiesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'QueryEntities','beebot') + + def get_EntityName(self): + return self.get_query_params().get('EntityName') + + def set_EntityName(self,EntityName): + self.add_query_param('EntityName',EntityName) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_DialogId(self): + return self.get_query_params().get('DialogId') + + def set_DialogId(self,DialogId): + self.add_query_param('DialogId',DialogId) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryIntentsRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryIntentsRequest.py new file mode 100755 index 0000000000..574ecf4795 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryIntentsRequest.py @@ -0,0 +1,48 @@ +# 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 +class QueryIntentsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'QueryIntents','beebot') + + def get_IntentName(self): + return self.get_query_params().get('IntentName') + + def set_IntentName(self,IntentName): + self.add_query_param('IntentName',IntentName) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_DialogId(self): + return self.get_query_params().get('DialogId') + + def set_DialogId(self,DialogId): + self.add_query_param('DialogId',DialogId) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryKnowledgesRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryKnowledgesRequest.py new file mode 100755 index 0000000000..2c7f232beb --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryKnowledgesRequest.py @@ -0,0 +1,54 @@ +# 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 +class QueryKnowledgesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'QueryKnowledges','beebot') + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CoreWordName(self): + return self.get_query_params().get('CoreWordName') + + def set_CoreWordName(self,CoreWordName): + self.add_query_param('CoreWordName',CoreWordName) + + def get_KnowledgeTitle(self): + return self.get_query_params().get('KnowledgeTitle') + + def set_KnowledgeTitle(self,KnowledgeTitle): + self.add_query_param('KnowledgeTitle',KnowledgeTitle) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) + + def get_CategoryId(self): + return self.get_query_params().get('CategoryId') + + def set_CategoryId(self,CategoryId): + self.add_query_param('CategoryId',CategoryId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryPerspectivesRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryPerspectivesRequest.py new file mode 100755 index 0000000000..50ec926837 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QueryPerspectivesRequest.py @@ -0,0 +1,24 @@ +# 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 +class QueryPerspectivesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'QueryPerspectives','beebot') \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QuerySystemEntitiesRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QuerySystemEntitiesRequest.py new file mode 100755 index 0000000000..321f7663c7 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/QuerySystemEntitiesRequest.py @@ -0,0 +1,30 @@ +# 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 +class QuerySystemEntitiesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'QuerySystemEntities','beebot') + + def get_EntityName(self): + return self.get_query_params().get('EntityName') + + def set_EntityName(self,EntityName): + self.add_query_param('EntityName',EntityName) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/RemoveEntityMemberRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/RemoveEntityMemberRequest.py new file mode 100755 index 0000000000..c460b0a3ab --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/RemoveEntityMemberRequest.py @@ -0,0 +1,42 @@ +# 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 +class RemoveEntityMemberRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'RemoveEntityMember','beebot') + + def get_RemoveType(self): + return self.get_query_params().get('RemoveType') + + def set_RemoveType(self,RemoveType): + self.add_query_param('RemoveType',RemoveType) + + def get_Member(self): + return self.get_body_params().get('Member') + + def set_Member(self,Member): + self.add_body_params('Member', Member) + + def get_EntityId(self): + return self.get_query_params().get('EntityId') + + def set_EntityId(self,EntityId): + self.add_query_param('EntityId',EntityId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/RemoveSynonymRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/RemoveSynonymRequest.py new file mode 100755 index 0000000000..5081b40473 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/RemoveSynonymRequest.py @@ -0,0 +1,36 @@ +# 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 +class RemoveSynonymRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'RemoveSynonym','beebot') + + def get_Synonym(self): + return self.get_query_params().get('Synonym') + + def set_Synonym(self,Synonym): + self.add_query_param('Synonym',Synonym) + + def get_CoreWordName(self): + return self.get_query_params().get('CoreWordName') + + def set_CoreWordName(self,CoreWordName): + self.add_query_param('CoreWordName',CoreWordName) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/TestDialogFlowRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/TestDialogFlowRequest.py new file mode 100755 index 0000000000..6b628f2776 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/TestDialogFlowRequest.py @@ -0,0 +1,30 @@ +# 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 +class TestDialogFlowRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'TestDialogFlow','beebot') + + def get_DialogId(self): + return self.get_query_params().get('DialogId') + + def set_DialogId(self,DialogId): + self.add_query_param('DialogId',DialogId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateCategoryRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateCategoryRequest.py new file mode 100755 index 0000000000..43d0e2c057 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateCategoryRequest.py @@ -0,0 +1,36 @@ +# 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 +class UpdateCategoryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'UpdateCategory','beebot') + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_CategoryId(self): + return self.get_query_params().get('CategoryId') + + def set_CategoryId(self,CategoryId): + self.add_query_param('CategoryId',CategoryId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateDialogFlowRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateDialogFlowRequest.py new file mode 100755 index 0000000000..19cc70a9ac --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateDialogFlowRequest.py @@ -0,0 +1,36 @@ +# 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 +class UpdateDialogFlowRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'UpdateDialogFlow','beebot') + + def get_ModuleDefinition(self): + return self.get_body_params().get('ModuleDefinition') + + def set_ModuleDefinition(self,ModuleDefinition): + self.add_body_params('ModuleDefinition', ModuleDefinition) + + def get_DialogId(self): + return self.get_query_params().get('DialogId') + + def set_DialogId(self,DialogId): + self.add_query_param('DialogId',DialogId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateDialogRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateDialogRequest.py new file mode 100755 index 0000000000..dd1d692bf2 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateDialogRequest.py @@ -0,0 +1,42 @@ +# 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 +class UpdateDialogRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'UpdateDialog','beebot') + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_DialogId(self): + return self.get_query_params().get('DialogId') + + def set_DialogId(self,DialogId): + self.add_query_param('DialogId',DialogId) + + def get_DialogName(self): + return self.get_query_params().get('DialogName') + + def set_DialogName(self,DialogName): + self.add_query_param('DialogName',DialogName) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateEntityRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateEntityRequest.py new file mode 100755 index 0000000000..4b563da72b --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateEntityRequest.py @@ -0,0 +1,54 @@ +# 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 +class UpdateEntityRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'UpdateEntity','beebot') + + def get_Regex(self): + return self.get_query_params().get('Regex') + + def set_Regex(self,Regex): + self.add_query_param('Regex',Regex) + + def get_EntityType(self): + return self.get_query_params().get('EntityType') + + def set_EntityType(self,EntityType): + self.add_query_param('EntityType',EntityType) + + def get_Members(self): + return self.get_body_params().get('Members') + + def set_Members(self,Members): + self.add_body_params('Members', Members) + + def get_EntityName(self): + return self.get_query_params().get('EntityName') + + def set_EntityName(self,EntityName): + self.add_query_param('EntityName',EntityName) + + def get_EntityId(self): + return self.get_query_params().get('EntityId') + + def set_EntityId(self,EntityId): + self.add_query_param('EntityId',EntityId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateIntentRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateIntentRequest.py new file mode 100755 index 0000000000..f2e3409d53 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateIntentRequest.py @@ -0,0 +1,36 @@ +# 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 +class UpdateIntentRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'UpdateIntent','beebot') + + def get_IntentDefinition(self): + return self.get_body_params().get('IntentDefinition') + + def set_IntentDefinition(self,IntentDefinition): + self.add_body_params('IntentDefinition', IntentDefinition) + + def get_IntentId(self): + return self.get_query_params().get('IntentId') + + def set_IntentId(self,IntentId): + self.add_query_param('IntentId',IntentId) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateKnowledgeRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateKnowledgeRequest.py new file mode 100755 index 0000000000..ddf9e9f011 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdateKnowledgeRequest.py @@ -0,0 +1,31 @@ +# 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 +class UpdateKnowledgeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'UpdateKnowledge','beebot') + self.set_method('POST') + + def get_Knowledge(self): + return self.get_body_params().get('Knowledge') + + def set_Knowledge(self,Knowledge): + self.add_body_params('Knowledge', Knowledge) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdatePerspectiveRequest.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdatePerspectiveRequest.py new file mode 100755 index 0000000000..722f07bcd8 --- /dev/null +++ b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/UpdatePerspectiveRequest.py @@ -0,0 +1,36 @@ +# 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 +class UpdatePerspectiveRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Chatbot', '2017-10-11', 'UpdatePerspective','beebot') + + def get_PerspectiveId(self): + return self.get_query_params().get('PerspectiveId') + + def set_PerspectiveId(self,PerspectiveId): + self.add_query_param('PerspectiveId',PerspectiveId) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) \ No newline at end of file diff --git a/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/__init__.py b/aliyun-python-sdk-chatbot/aliyunsdkchatbot/request/v20171011/__init__.py new file mode 100755 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-chatbot/setup.py b/aliyun-python-sdk-chatbot/setup.py new file mode 100755 index 0000000000..a624bb737a --- /dev/null +++ b/aliyun-python-sdk-chatbot/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for chatbot. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkchatbot" +NAME = "aliyun-python-sdk-chatbot" +DESCRIPTION = "The chatbot module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","chatbot"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/ChangeLog.txt b/aliyun-python-sdk-cloudphoto/ChangeLog.txt new file mode 100644 index 0000000000..178f9a534b --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/ChangeLog.txt @@ -0,0 +1,85 @@ +2019-03-15 Version: 1.1.19 +1, Update Dependency + +2018-04-24 Version: 1.1.18 +1, add interface FetchPhotos +2, add xflush log param unixTimestamp + +2018-04-17 Version: 1.1.17 +1, EditPhotos add input param TakenAt +2, add FetchMomentPhotos +3, ListAlbums add return param Remark + +2018-04-11 Version: 1.1.16 +1, GetLibrary/FetchLibraries add return ctime +2, Editphotos add input param takenAt + +2018-03-29 Version: 1.1.15 +1, edit FetchLibraries return param format + +2018-03-27 Version: 1.1.14 +1, add interface FetchLibraries + +2018-03-20 Version: 1.1.13 +1, add FetchAlbumTagPhotos +2, CreatePhoto add optional param TakenAt + +2018-03-07 Version: 1.1.11 +1, add GetAlbumsByNames +2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent +3, add return IdStr for string + +2018-03-06 Version: 1.1.10 +1, add GetAlbumsByNames +2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent +3, add return IdStr for string + + +2018-03-06 Version: 1.1.9 +1, add GetAlbumsByNames +2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent +3, add return IdStr for string + +2018-01-12 Version: 1.1.9 +1, fix the TypeError while building the repeat params + +2018-01-11 Version: 1.1.8 +1, replace photo tag 2000 upgrade to 5000 +2, add TrashQuota + +2017-12-19 Version: 1.1.7 +1, InactivatePhotos support customer inactiveTime +2, support customer tags +3, ListPhotoTags、ListTags add param lang + +2017-11-23 Version: 1.1.6 +1, 新增EditPhotoStore、ToggleFeatures +2, 自动清理回收站 +3, 自定义开关 +4, 优化CreatePhoto + +2017-10-26 Version: 1.1.5 +1, 支持照片分享、照片审核和CDN加速 +2, ActivatePhotos,EditPhotos,GetPhotosByMd5s,GetPrivateAccessUrls,GetPublicAccessUrls,ListPhotoFaces,ListPhotoTags +3, Java SDK中之前需要传入boolean类型参数的API对应参数类型改为String,老版本的SDK可以继续使用 + +2017-09-20 Version: 1.1.4 +1, 支持主子AK访问 +2, 读写quota加缓存 + +2017-09-07 Version: 1.1.3 +1, 新增getDownloadUrls +2, 新增getThumbnails +3, CreatePhoto/GetPhotos/ListPhotos/SearchPhotos新增返回字段TakenAt +4, 修正Cover为null时remark为空字符串的bug +5, 物理删除照片接口增加调用文件服务 deleteFiles +6, 修复特殊情况下重复提交创建多个文件的bug + +2017-08-24 Version: 1.1.2 +1, 获取地址给算法打标服务使用时,使用内网或跨域域名 +2, 鉴权相关代码 clients 改为 libraries +3, 修复CreatePhoto超时 +4, 支持返回大类标签 +5, 支持设置Remark +6, GetPhotoStore返回quota单位修正为byte + diff --git a/aliyun-python-sdk-cloudphoto/MANIFEST.in b/aliyun-python-sdk-cloudphoto/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-cloudphoto/README.rst b/aliyun-python-sdk-cloudphoto/README.rst new file mode 100644 index 0000000000..cd85837fe5 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-cloudphoto +This is the cloudphoto module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/__init__.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/__init__.py new file mode 100644 index 0000000000..3c9755c035 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/__init__.py @@ -0,0 +1 @@ +__version__ = "1.1.19" \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/__init__.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ActivatePhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ActivatePhotosRequest.py new file mode 100644 index 0000000000..b3e9d4f11f --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ActivatePhotosRequest.py @@ -0,0 +1,45 @@ +# 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 +class ActivatePhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ActivatePhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/AddAlbumPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/AddAlbumPhotosRequest.py new file mode 100644 index 0000000000..fd64179a6b --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/AddAlbumPhotosRequest.py @@ -0,0 +1,51 @@ +# 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 +class AddAlbumPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'AddAlbumPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_AlbumId(self): + return self.get_query_params().get('AlbumId') + + def set_AlbumId(self,AlbumId): + self.add_query_param('AlbumId',AlbumId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreateAlbumRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreateAlbumRequest.py new file mode 100644 index 0000000000..8c0a6f5bfa --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreateAlbumRequest.py @@ -0,0 +1,49 @@ +# 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 +class CreateAlbumRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'CreateAlbum','cloudphoto') + self.set_protocol_type('https'); + + def get_AlbumName(self): + return self.get_query_params().get('AlbumName') + + def set_AlbumName(self,AlbumName): + self.add_query_param('AlbumName',AlbumName) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreateEventRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreateEventRequest.py new file mode 100644 index 0000000000..de7e86bdaf --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreateEventRequest.py @@ -0,0 +1,91 @@ +# 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 +class CreateEventRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'CreateEvent','cloudphoto') + self.set_protocol_type('https'); + + def get_BannerPhotoId(self): + return self.get_query_params().get('BannerPhotoId') + + def set_BannerPhotoId(self,BannerPhotoId): + self.add_query_param('BannerPhotoId',BannerPhotoId) + + def get_WatermarkPhotoId(self): + return self.get_query_params().get('WatermarkPhotoId') + + def set_WatermarkPhotoId(self,WatermarkPhotoId): + self.add_query_param('WatermarkPhotoId',WatermarkPhotoId) + + def get_Identity(self): + return self.get_query_params().get('Identity') + + def set_Identity(self,Identity): + self.add_query_param('Identity',Identity) + + def get_SplashPhotoId(self): + return self.get_query_params().get('SplashPhotoId') + + def set_SplashPhotoId(self,SplashPhotoId): + self.add_query_param('SplashPhotoId',SplashPhotoId) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_WeixinTitle(self): + return self.get_query_params().get('WeixinTitle') + + def set_WeixinTitle(self,WeixinTitle): + self.add_query_param('WeixinTitle',WeixinTitle) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_Title(self): + return self.get_query_params().get('Title') + + def set_Title(self,Title): + self.add_query_param('Title',Title) + + def get_EndAt(self): + return self.get_query_params().get('EndAt') + + def set_EndAt(self,EndAt): + self.add_query_param('EndAt',EndAt) + + def get_StartAt(self): + return self.get_query_params().get('StartAt') + + def set_StartAt(self,StartAt): + self.add_query_param('StartAt',StartAt) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreatePhotoRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreatePhotoRequest.py new file mode 100644 index 0000000000..720c774040 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreatePhotoRequest.py @@ -0,0 +1,85 @@ +# 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 +class CreatePhotoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'CreatePhoto','cloudphoto') + self.set_protocol_type('https'); + + def get_TakenAt(self): + return self.get_query_params().get('TakenAt') + + def set_TakenAt(self,TakenAt): + self.add_query_param('TakenAt',TakenAt) + + def get_PhotoTitle(self): + return self.get_query_params().get('PhotoTitle') + + def set_PhotoTitle(self,PhotoTitle): + self.add_query_param('PhotoTitle',PhotoTitle) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_ShareExpireTime(self): + return self.get_query_params().get('ShareExpireTime') + + def set_ShareExpireTime(self,ShareExpireTime): + self.add_query_param('ShareExpireTime',ShareExpireTime) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_UploadType(self): + return self.get_query_params().get('UploadType') + + def set_UploadType(self,UploadType): + self.add_query_param('UploadType',UploadType) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_SessionId(self): + return self.get_query_params().get('SessionId') + + def set_SessionId(self,SessionId): + self.add_query_param('SessionId',SessionId) + + def get_Staging(self): + return self.get_query_params().get('Staging') + + def set_Staging(self,Staging): + self.add_query_param('Staging',Staging) + + def get_FileId(self): + return self.get_query_params().get('FileId') + + def set_FileId(self,FileId): + self.add_query_param('FileId',FileId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreatePhotoStoreRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreatePhotoStoreRequest.py new file mode 100644 index 0000000000..10d8d9124a --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreatePhotoStoreRequest.py @@ -0,0 +1,49 @@ +# 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 +class CreatePhotoStoreRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'CreatePhotoStore','cloudphoto') + self.set_protocol_type('https'); + + def get_BucketName(self): + return self.get_query_params().get('BucketName') + + def set_BucketName(self,BucketName): + self.add_query_param('BucketName',BucketName) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_DefaultQuota(self): + return self.get_query_params().get('DefaultQuota') + + def set_DefaultQuota(self,DefaultQuota): + self.add_query_param('DefaultQuota',DefaultQuota) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreateTransactionRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreateTransactionRequest.py new file mode 100644 index 0000000000..d4ec2e994d --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/CreateTransactionRequest.py @@ -0,0 +1,61 @@ +# 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 +class CreateTransactionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'CreateTransaction','cloudphoto') + self.set_protocol_type('https'); + + def get_Ext(self): + return self.get_query_params().get('Ext') + + def set_Ext(self,Ext): + self.add_query_param('Ext',Ext) + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Force(self): + return self.get_query_params().get('Force') + + def set_Force(self,Force): + self.add_query_param('Force',Force) + + def get_Md5(self): + return self.get_query_params().get('Md5') + + def set_Md5(self,Md5): + self.add_query_param('Md5',Md5) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeleteAlbumsRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeleteAlbumsRequest.py new file mode 100644 index 0000000000..339087f25b --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeleteAlbumsRequest.py @@ -0,0 +1,45 @@ +# 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 +class DeleteAlbumsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'DeleteAlbums','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_AlbumIds(self): + return self.get_query_params().get('AlbumIds') + + def set_AlbumIds(self,AlbumIds): + for i in range(len(AlbumIds)): + if AlbumIds[i] is not None: + self.add_query_param('AlbumId.' + str(i + 1) , AlbumIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeleteEventRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeleteEventRequest.py new file mode 100644 index 0000000000..9988bd9ce2 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeleteEventRequest.py @@ -0,0 +1,43 @@ +# 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 +class DeleteEventRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'DeleteEvent','cloudphoto') + self.set_protocol_type('https'); + + def get_EventId(self): + return self.get_query_params().get('EventId') + + def set_EventId(self,EventId): + self.add_query_param('EventId',EventId) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeleteFacesRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeleteFacesRequest.py new file mode 100644 index 0000000000..66392dd294 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeleteFacesRequest.py @@ -0,0 +1,45 @@ +# 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 +class DeleteFacesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'DeleteFaces','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_FaceIds(self): + return self.get_query_params().get('FaceIds') + + def set_FaceIds(self,FaceIds): + for i in range(len(FaceIds)): + if FaceIds[i] is not None: + self.add_query_param('FaceId.' + str(i + 1) , FaceIds[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeletePhotoStoreRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeletePhotoStoreRequest.py new file mode 100644 index 0000000000..79a69c614b --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeletePhotoStoreRequest.py @@ -0,0 +1,31 @@ +# 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 +class DeletePhotoStoreRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'DeletePhotoStore','cloudphoto') + self.set_protocol_type('https'); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeletePhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeletePhotosRequest.py new file mode 100644 index 0000000000..0cd057c47d --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/DeletePhotosRequest.py @@ -0,0 +1,45 @@ +# 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 +class DeletePhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'DeletePhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/EditEventRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/EditEventRequest.py new file mode 100644 index 0000000000..b723de4f0d --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/EditEventRequest.py @@ -0,0 +1,97 @@ +# 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 +class EditEventRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'EditEvent','cloudphoto') + self.set_protocol_type('https'); + + def get_EventId(self): + return self.get_query_params().get('EventId') + + def set_EventId(self,EventId): + self.add_query_param('EventId',EventId) + + def get_BannerPhotoId(self): + return self.get_query_params().get('BannerPhotoId') + + def set_BannerPhotoId(self,BannerPhotoId): + self.add_query_param('BannerPhotoId',BannerPhotoId) + + def get_WatermarkPhotoId(self): + return self.get_query_params().get('WatermarkPhotoId') + + def set_WatermarkPhotoId(self,WatermarkPhotoId): + self.add_query_param('WatermarkPhotoId',WatermarkPhotoId) + + def get_Identity(self): + return self.get_query_params().get('Identity') + + def set_Identity(self,Identity): + self.add_query_param('Identity',Identity) + + def get_SplashPhotoId(self): + return self.get_query_params().get('SplashPhotoId') + + def set_SplashPhotoId(self,SplashPhotoId): + self.add_query_param('SplashPhotoId',SplashPhotoId) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_WeixinTitle(self): + return self.get_query_params().get('WeixinTitle') + + def set_WeixinTitle(self,WeixinTitle): + self.add_query_param('WeixinTitle',WeixinTitle) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_Title(self): + return self.get_query_params().get('Title') + + def set_Title(self,Title): + self.add_query_param('Title',Title) + + def get_EndAt(self): + return self.get_query_params().get('EndAt') + + def set_EndAt(self,EndAt): + self.add_query_param('EndAt',EndAt) + + def get_StartAt(self): + return self.get_query_params().get('StartAt') + + def set_StartAt(self,StartAt): + self.add_query_param('StartAt',StartAt) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/EditPhotoStoreRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/EditPhotoStoreRequest.py new file mode 100644 index 0000000000..eb15660bef --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/EditPhotoStoreRequest.py @@ -0,0 +1,61 @@ +# 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 +class EditPhotoStoreRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'EditPhotoStore','cloudphoto') + self.set_protocol_type('https'); + + def get_AutoCleanEnabled(self): + return self.get_query_params().get('AutoCleanEnabled') + + def set_AutoCleanEnabled(self,AutoCleanEnabled): + self.add_query_param('AutoCleanEnabled',AutoCleanEnabled) + + def get_DefaultTrashQuota(self): + return self.get_query_params().get('DefaultTrashQuota') + + def set_DefaultTrashQuota(self,DefaultTrashQuota): + self.add_query_param('DefaultTrashQuota',DefaultTrashQuota) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_DefaultQuota(self): + return self.get_query_params().get('DefaultQuota') + + def set_DefaultQuota(self,DefaultQuota): + self.add_query_param('DefaultQuota',DefaultQuota) + + def get_AutoCleanDays(self): + return self.get_query_params().get('AutoCleanDays') + + def set_AutoCleanDays(self,AutoCleanDays): + self.add_query_param('AutoCleanDays',AutoCleanDays) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/EditPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/EditPhotosRequest.py new file mode 100644 index 0000000000..0941368c17 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/EditPhotosRequest.py @@ -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 +class EditPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'EditPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_TakenAt(self): + return self.get_query_params().get('TakenAt') + + def set_TakenAt(self,TakenAt): + self.add_query_param('TakenAt',TakenAt) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_ShareExpireTime(self): + return self.get_query_params().get('ShareExpireTime') + + def set_ShareExpireTime(self,ShareExpireTime): + self.add_query_param('ShareExpireTime',ShareExpireTime) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_Title(self): + return self.get_query_params().get('Title') + + def set_Title(self,Title): + self.add_query_param('Title',Title) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/FetchAlbumTagPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/FetchAlbumTagPhotosRequest.py new file mode 100644 index 0000000000..8d6807d270 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/FetchAlbumTagPhotosRequest.py @@ -0,0 +1,61 @@ +# 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 +class FetchAlbumTagPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'FetchAlbumTagPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_TagId(self): + return self.get_query_params().get('TagId') + + def set_TagId(self,TagId): + self.add_query_param('TagId',TagId) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_AlbumId(self): + return self.get_query_params().get('AlbumId') + + def set_AlbumId(self,AlbumId): + self.add_query_param('AlbumId',AlbumId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/FetchLibrariesRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/FetchLibrariesRequest.py new file mode 100644 index 0000000000..9531e9f414 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/FetchLibrariesRequest.py @@ -0,0 +1,43 @@ +# 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 +class FetchLibrariesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'FetchLibraries','cloudphoto') + self.set_protocol_type('https'); + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/FetchMomentPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/FetchMomentPhotosRequest.py new file mode 100644 index 0000000000..d2b24394a6 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/FetchMomentPhotosRequest.py @@ -0,0 +1,67 @@ +# 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 +class FetchMomentPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'FetchMomentPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_OrderBy(self): + return self.get_query_params().get('OrderBy') + + def set_OrderBy(self,OrderBy): + self.add_query_param('OrderBy',OrderBy) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_MomentId(self): + return self.get_query_params().get('MomentId') + + def set_MomentId(self,MomentId): + self.add_query_param('MomentId',MomentId) + + def get_Order(self): + return self.get_query_params().get('Order') + + def set_Order(self,Order): + self.add_query_param('Order',Order) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/FetchPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/FetchPhotosRequest.py new file mode 100644 index 0000000000..fefc5a6363 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/FetchPhotosRequest.py @@ -0,0 +1,67 @@ +# 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 +class FetchPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'FetchPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_OrderBy(self): + return self.get_query_params().get('OrderBy') + + def set_OrderBy(self,OrderBy): + self.add_query_param('OrderBy',OrderBy) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_State(self): + return self.get_query_params().get('State') + + def set_State(self,State): + self.add_query_param('State',State) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_Order(self): + return self.get_query_params().get('Order') + + def set_Order(self,Order): + self.add_query_param('Order',Order) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetAlbumsByNamesRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetAlbumsByNamesRequest.py new file mode 100644 index 0000000000..6d77a9557d --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetAlbumsByNamesRequest.py @@ -0,0 +1,45 @@ +# 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 +class GetAlbumsByNamesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetAlbumsByNames','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_Names(self): + return self.get_query_params().get('Names') + + def set_Names(self,Names): + for i in range(len(Names)): + if Names[i] is not None: + self.add_query_param('Name.' + str(i + 1) , Names[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetDownloadUrlRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetDownloadUrlRequest.py new file mode 100644 index 0000000000..413ce19a38 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetDownloadUrlRequest.py @@ -0,0 +1,43 @@ +# 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 +class GetDownloadUrlRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetDownloadUrl','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoId(self): + return self.get_query_params().get('PhotoId') + + def set_PhotoId(self,PhotoId): + self.add_query_param('PhotoId',PhotoId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetDownloadUrlsRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetDownloadUrlsRequest.py new file mode 100644 index 0000000000..4f5505ae4d --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetDownloadUrlsRequest.py @@ -0,0 +1,45 @@ +# 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 +class GetDownloadUrlsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetDownloadUrls','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetEventRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetEventRequest.py new file mode 100644 index 0000000000..3d7dcc9a92 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetEventRequest.py @@ -0,0 +1,43 @@ +# 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 +class GetEventRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetEvent','cloudphoto') + self.set_protocol_type('https'); + + def get_EventId(self): + return self.get_query_params().get('EventId') + + def set_EventId(self,EventId): + self.add_query_param('EventId',EventId) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetFramedPhotoUrlsRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetFramedPhotoUrlsRequest.py new file mode 100644 index 0000000000..eb10b13142 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetFramedPhotoUrlsRequest.py @@ -0,0 +1,51 @@ +# 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 +class GetFramedPhotoUrlsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetFramedPhotoUrls','cloudphoto') + self.set_protocol_type('https'); + + def get_FrameId(self): + return self.get_query_params().get('FrameId') + + def set_FrameId(self,FrameId): + self.add_query_param('FrameId',FrameId) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetLibraryRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetLibraryRequest.py new file mode 100644 index 0000000000..e73943dae1 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetLibraryRequest.py @@ -0,0 +1,37 @@ +# 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 +class GetLibraryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetLibrary','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPhotoStoreRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPhotoStoreRequest.py new file mode 100644 index 0000000000..bc49f9ca7b --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPhotoStoreRequest.py @@ -0,0 +1,31 @@ +# 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 +class GetPhotoStoreRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetPhotoStore','cloudphoto') + self.set_protocol_type('https'); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPhotosByMd5sRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPhotosByMd5sRequest.py new file mode 100644 index 0000000000..efdcc01c53 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPhotosByMd5sRequest.py @@ -0,0 +1,51 @@ +# 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 +class GetPhotosByMd5sRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetPhotosByMd5s','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_State(self): + return self.get_query_params().get('State') + + def set_State(self,State): + self.add_query_param('State',State) + + def get_Md5s(self): + return self.get_query_params().get('Md5s') + + def set_Md5s(self,Md5s): + for i in range(len(Md5s)): + if Md5s[i] is not None: + self.add_query_param('Md5.' + str(i + 1) , Md5s[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPhotosRequest.py new file mode 100644 index 0000000000..8cfd1ddf7b --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPhotosRequest.py @@ -0,0 +1,45 @@ +# 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 +class GetPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPrivateAccessUrlsRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPrivateAccessUrlsRequest.py new file mode 100644 index 0000000000..e361382573 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPrivateAccessUrlsRequest.py @@ -0,0 +1,51 @@ +# 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 +class GetPrivateAccessUrlsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetPrivateAccessUrls','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_ZoomType(self): + return self.get_query_params().get('ZoomType') + + def set_ZoomType(self,ZoomType): + self.add_query_param('ZoomType',ZoomType) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPublicAccessUrlsRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPublicAccessUrlsRequest.py new file mode 100644 index 0000000000..37abeafecf --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetPublicAccessUrlsRequest.py @@ -0,0 +1,57 @@ +# 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 +class GetPublicAccessUrlsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetPublicAccessUrls','cloudphoto') + self.set_protocol_type('https'); + + def get_DomainType(self): + return self.get_query_params().get('DomainType') + + def set_DomainType(self,DomainType): + self.add_query_param('DomainType',DomainType) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_ZoomType(self): + return self.get_query_params().get('ZoomType') + + def set_ZoomType(self,ZoomType): + self.add_query_param('ZoomType',ZoomType) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetQuotaRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetQuotaRequest.py new file mode 100644 index 0000000000..23dc107a73 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetQuotaRequest.py @@ -0,0 +1,37 @@ +# 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 +class GetQuotaRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetQuota','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetSimilarPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetSimilarPhotosRequest.py new file mode 100644 index 0000000000..cb069b602a --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetSimilarPhotosRequest.py @@ -0,0 +1,43 @@ +# 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 +class GetSimilarPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetSimilarPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoId(self): + return self.get_query_params().get('PhotoId') + + def set_PhotoId(self,PhotoId): + self.add_query_param('PhotoId',PhotoId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetThumbnailRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetThumbnailRequest.py new file mode 100644 index 0000000000..ede9e94b8d --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetThumbnailRequest.py @@ -0,0 +1,49 @@ +# 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 +class GetThumbnailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetThumbnail','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoId(self): + return self.get_query_params().get('PhotoId') + + def set_PhotoId(self,PhotoId): + self.add_query_param('PhotoId',PhotoId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_ZoomType(self): + return self.get_query_params().get('ZoomType') + + def set_ZoomType(self,ZoomType): + self.add_query_param('ZoomType',ZoomType) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetThumbnailsRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetThumbnailsRequest.py new file mode 100644 index 0000000000..ddb49e1579 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetThumbnailsRequest.py @@ -0,0 +1,51 @@ +# 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 +class GetThumbnailsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetThumbnails','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_ZoomType(self): + return self.get_query_params().get('ZoomType') + + def set_ZoomType(self,ZoomType): + self.add_query_param('ZoomType',ZoomType) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetVideoCoverRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetVideoCoverRequest.py new file mode 100644 index 0000000000..48c063b259 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/GetVideoCoverRequest.py @@ -0,0 +1,49 @@ +# 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 +class GetVideoCoverRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'GetVideoCover','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoId(self): + return self.get_query_params().get('PhotoId') + + def set_PhotoId(self,PhotoId): + self.add_query_param('PhotoId',PhotoId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_ZoomType(self): + return self.get_query_params().get('ZoomType') + + def set_ZoomType(self,ZoomType): + self.add_query_param('ZoomType',ZoomType) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/InactivatePhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/InactivatePhotosRequest.py new file mode 100644 index 0000000000..6cb048df42 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/InactivatePhotosRequest.py @@ -0,0 +1,51 @@ +# 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 +class InactivatePhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'InactivatePhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_InactiveTime(self): + return self.get_query_params().get('InactiveTime') + + def set_InactiveTime(self,InactiveTime): + self.add_query_param('InactiveTime',InactiveTime) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/LikePhotoRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/LikePhotoRequest.py new file mode 100644 index 0000000000..ca0afcc5c4 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/LikePhotoRequest.py @@ -0,0 +1,43 @@ +# 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 +class LikePhotoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'LikePhoto','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoId(self): + return self.get_query_params().get('PhotoId') + + def set_PhotoId(self,PhotoId): + self.add_query_param('PhotoId',PhotoId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListAlbumPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListAlbumPhotosRequest.py new file mode 100644 index 0000000000..24c857b7b0 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListAlbumPhotosRequest.py @@ -0,0 +1,67 @@ +# 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 +class ListAlbumPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListAlbumPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_Cursor(self): + return self.get_query_params().get('Cursor') + + def set_Cursor(self,Cursor): + self.add_query_param('Cursor',Cursor) + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_AlbumId(self): + return self.get_query_params().get('AlbumId') + + def set_AlbumId(self,AlbumId): + self.add_query_param('AlbumId',AlbumId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_State(self): + return self.get_query_params().get('State') + + def set_State(self,State): + self.add_query_param('State',State) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListAlbumsRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListAlbumsRequest.py new file mode 100644 index 0000000000..2463ad40b3 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListAlbumsRequest.py @@ -0,0 +1,61 @@ +# 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 +class ListAlbumsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListAlbums','cloudphoto') + self.set_protocol_type('https'); + + def get_Cursor(self): + return self.get_query_params().get('Cursor') + + def set_Cursor(self,Cursor): + self.add_query_param('Cursor',Cursor) + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_State(self): + return self.get_query_params().get('State') + + def set_State(self,State): + self.add_query_param('State',State) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListEventsRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListEventsRequest.py new file mode 100644 index 0000000000..207dd3fc1d --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListEventsRequest.py @@ -0,0 +1,55 @@ +# 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 +class ListEventsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListEvents','cloudphoto') + self.set_protocol_type('https'); + + def get_Cursor(self): + return self.get_query_params().get('Cursor') + + def set_Cursor(self,Cursor): + self.add_query_param('Cursor',Cursor) + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_State(self): + return self.get_query_params().get('State') + + def set_State(self,State): + self.add_query_param('State',State) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListFacePhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListFacePhotosRequest.py new file mode 100644 index 0000000000..4e18dd7f3a --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListFacePhotosRequest.py @@ -0,0 +1,67 @@ +# 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 +class ListFacePhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListFacePhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_Cursor(self): + return self.get_query_params().get('Cursor') + + def set_Cursor(self,Cursor): + self.add_query_param('Cursor',Cursor) + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_FaceId(self): + return self.get_query_params().get('FaceId') + + def set_FaceId(self,FaceId): + self.add_query_param('FaceId',FaceId) + + def get_State(self): + return self.get_query_params().get('State') + + def set_State(self,State): + self.add_query_param('State',State) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListFacesRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListFacesRequest.py new file mode 100644 index 0000000000..809426c3b3 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListFacesRequest.py @@ -0,0 +1,67 @@ +# 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 +class ListFacesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListFaces','cloudphoto') + self.set_protocol_type('https'); + + def get_Cursor(self): + return self.get_query_params().get('Cursor') + + def set_Cursor(self,Cursor): + self.add_query_param('Cursor',Cursor) + + def get_HasFaceName(self): + return self.get_query_params().get('HasFaceName') + + def set_HasFaceName(self,HasFaceName): + self.add_query_param('HasFaceName',HasFaceName) + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_State(self): + return self.get_query_params().get('State') + + def set_State(self,State): + self.add_query_param('State',State) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListMomentPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListMomentPhotosRequest.py new file mode 100644 index 0000000000..1f510e9223 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListMomentPhotosRequest.py @@ -0,0 +1,67 @@ +# 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 +class ListMomentPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListMomentPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_Cursor(self): + return self.get_query_params().get('Cursor') + + def set_Cursor(self,Cursor): + self.add_query_param('Cursor',Cursor) + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_State(self): + return self.get_query_params().get('State') + + def set_State(self,State): + self.add_query_param('State',State) + + def get_MomentId(self): + return self.get_query_params().get('MomentId') + + def set_MomentId(self,MomentId): + self.add_query_param('MomentId',MomentId) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListMomentsRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListMomentsRequest.py new file mode 100644 index 0000000000..8ea6318884 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListMomentsRequest.py @@ -0,0 +1,61 @@ +# 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 +class ListMomentsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListMoments','cloudphoto') + self.set_protocol_type('https'); + + def get_Cursor(self): + return self.get_query_params().get('Cursor') + + def set_Cursor(self,Cursor): + self.add_query_param('Cursor',Cursor) + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_State(self): + return self.get_query_params().get('State') + + def set_State(self,State): + self.add_query_param('State',State) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListPhotoFacesRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListPhotoFacesRequest.py new file mode 100644 index 0000000000..8e9766ee0d --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListPhotoFacesRequest.py @@ -0,0 +1,43 @@ +# 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 +class ListPhotoFacesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListPhotoFaces','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoId(self): + return self.get_query_params().get('PhotoId') + + def set_PhotoId(self,PhotoId): + self.add_query_param('PhotoId',PhotoId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListPhotoStoresRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListPhotoStoresRequest.py new file mode 100644 index 0000000000..baa69495ee --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListPhotoStoresRequest.py @@ -0,0 +1,25 @@ +# 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 +class ListPhotoStoresRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListPhotoStores','cloudphoto') + self.set_protocol_type('https'); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListPhotoTagsRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListPhotoTagsRequest.py new file mode 100644 index 0000000000..ccb05f468d --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListPhotoTagsRequest.py @@ -0,0 +1,49 @@ +# 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 +class ListPhotoTagsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListPhotoTags','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoId(self): + return self.get_query_params().get('PhotoId') + + def set_PhotoId(self,PhotoId): + self.add_query_param('PhotoId',PhotoId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListPhotosRequest.py new file mode 100644 index 0000000000..330d51b485 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListPhotosRequest.py @@ -0,0 +1,61 @@ +# 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 +class ListPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_Cursor(self): + return self.get_query_params().get('Cursor') + + def set_Cursor(self,Cursor): + self.add_query_param('Cursor',Cursor) + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_State(self): + return self.get_query_params().get('State') + + def set_State(self,State): + self.add_query_param('State',State) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListRegisteredTagsRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListRegisteredTagsRequest.py new file mode 100644 index 0000000000..69215b7b61 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListRegisteredTagsRequest.py @@ -0,0 +1,39 @@ +# 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 +class ListRegisteredTagsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListRegisteredTags','cloudphoto') + self.set_protocol_type('https'); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Langs(self): + return self.get_query_params().get('Langs') + + def set_Langs(self,Langs): + for i in range(len(Langs)): + if Langs[i] is not None: + self.add_query_param('Lang.' + str(i + 1) , Langs[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListTagPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListTagPhotosRequest.py new file mode 100644 index 0000000000..851e594709 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListTagPhotosRequest.py @@ -0,0 +1,67 @@ +# 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 +class ListTagPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListTagPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_Cursor(self): + return self.get_query_params().get('Cursor') + + def set_Cursor(self,Cursor): + self.add_query_param('Cursor',Cursor) + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_TagId(self): + return self.get_query_params().get('TagId') + + def set_TagId(self,TagId): + self.add_query_param('TagId',TagId) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_State(self): + return self.get_query_params().get('State') + + def set_State(self,State): + self.add_query_param('State',State) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListTagsRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListTagsRequest.py new file mode 100644 index 0000000000..1606388172 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListTagsRequest.py @@ -0,0 +1,43 @@ +# 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 +class ListTagsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListTags','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListTimeLinePhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListTimeLinePhotosRequest.py new file mode 100644 index 0000000000..6a512776a9 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListTimeLinePhotosRequest.py @@ -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 +class ListTimeLinePhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListTimeLinePhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_FilterBy(self): + return self.get_query_params().get('FilterBy') + + def set_FilterBy(self,FilterBy): + self.add_query_param('FilterBy',FilterBy) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) + + def get_Order(self): + return self.get_query_params().get('Order') + + def set_Order(self,Order): + self.add_query_param('Order',Order) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListTimeLinesRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListTimeLinesRequest.py new file mode 100644 index 0000000000..7d3af7e839 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ListTimeLinesRequest.py @@ -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 +class ListTimeLinesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ListTimeLines','cloudphoto') + self.set_protocol_type('https'); + + def get_Cursor(self): + return self.get_query_params().get('Cursor') + + def set_Cursor(self,Cursor): + self.add_query_param('Cursor',Cursor) + + def get_PhotoSize(self): + return self.get_query_params().get('PhotoSize') + + def set_PhotoSize(self,PhotoSize): + self.add_query_param('PhotoSize',PhotoSize) + + def get_TimeLineCount(self): + return self.get_query_params().get('TimeLineCount') + + def set_TimeLineCount(self,TimeLineCount): + self.add_query_param('TimeLineCount',TimeLineCount) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_TimeLineUnit(self): + return self.get_query_params().get('TimeLineUnit') + + def set_TimeLineUnit(self,TimeLineUnit): + self.add_query_param('TimeLineUnit',TimeLineUnit) + + def get_FilterBy(self): + return self.get_query_params().get('FilterBy') + + def set_FilterBy(self,FilterBy): + self.add_query_param('FilterBy',FilterBy) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) + + def get_Order(self): + return self.get_query_params().get('Order') + + def set_Order(self,Order): + self.add_query_param('Order',Order) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/MergeFacesRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/MergeFacesRequest.py new file mode 100644 index 0000000000..9530bcfa90 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/MergeFacesRequest.py @@ -0,0 +1,51 @@ +# 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 +class MergeFacesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'MergeFaces','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_TargetFaceId(self): + return self.get_query_params().get('TargetFaceId') + + def set_TargetFaceId(self,TargetFaceId): + self.add_query_param('TargetFaceId',TargetFaceId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_FaceIds(self): + return self.get_query_params().get('FaceIds') + + def set_FaceIds(self,FaceIds): + for i in range(len(FaceIds)): + if FaceIds[i] is not None: + self.add_query_param('FaceId.' + str(i + 1) , FaceIds[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/MoveAlbumPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/MoveAlbumPhotosRequest.py new file mode 100644 index 0000000000..5eaaf36d63 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/MoveAlbumPhotosRequest.py @@ -0,0 +1,57 @@ +# 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 +class MoveAlbumPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'MoveAlbumPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_SourceAlbumId(self): + return self.get_query_params().get('SourceAlbumId') + + def set_SourceAlbumId(self,SourceAlbumId): + self.add_query_param('SourceAlbumId',SourceAlbumId) + + def get_TargetAlbumId(self): + return self.get_query_params().get('TargetAlbumId') + + def set_TargetAlbumId(self,TargetAlbumId): + self.add_query_param('TargetAlbumId',TargetAlbumId) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/MoveFacePhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/MoveFacePhotosRequest.py new file mode 100644 index 0000000000..3bea5d99fc --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/MoveFacePhotosRequest.py @@ -0,0 +1,57 @@ +# 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 +class MoveFacePhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'MoveFacePhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_TargetFaceId(self): + return self.get_query_params().get('TargetFaceId') + + def set_TargetFaceId(self,TargetFaceId): + self.add_query_param('TargetFaceId',TargetFaceId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_SourceFaceId(self): + return self.get_query_params().get('SourceFaceId') + + def set_SourceFaceId(self,SourceFaceId): + self.add_query_param('SourceFaceId',SourceFaceId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ReactivatePhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ReactivatePhotosRequest.py new file mode 100644 index 0000000000..a3086c10e0 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ReactivatePhotosRequest.py @@ -0,0 +1,45 @@ +# 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 +class ReactivatePhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ReactivatePhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RegisterPhotoRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RegisterPhotoRequest.py new file mode 100644 index 0000000000..ab51904804 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RegisterPhotoRequest.py @@ -0,0 +1,103 @@ +# 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 +class RegisterPhotoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'RegisterPhoto','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_Latitude(self): + return self.get_query_params().get('Latitude') + + def set_Latitude(self,Latitude): + self.add_query_param('Latitude',Latitude) + + def get_PhotoTitle(self): + return self.get_query_params().get('PhotoTitle') + + def set_PhotoTitle(self,PhotoTitle): + self.add_query_param('PhotoTitle',PhotoTitle) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_IsVideo(self): + return self.get_query_params().get('IsVideo') + + def set_IsVideo(self,IsVideo): + self.add_query_param('IsVideo',IsVideo) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_TakenAt(self): + return self.get_query_params().get('TakenAt') + + def set_TakenAt(self,TakenAt): + self.add_query_param('TakenAt',TakenAt) + + def get_Width(self): + return self.get_query_params().get('Width') + + def set_Width(self,Width): + self.add_query_param('Width',Width) + + def get_Location(self): + return self.get_query_params().get('Location') + + def set_Location(self,Location): + self.add_query_param('Location',Location) + + def get_Longitude(self): + return self.get_query_params().get('Longitude') + + def set_Longitude(self,Longitude): + self.add_query_param('Longitude',Longitude) + + def get_Height(self): + return self.get_query_params().get('Height') + + def set_Height(self,Height): + self.add_query_param('Height',Height) + + def get_Md5(self): + return self.get_query_params().get('Md5') + + def set_Md5(self,Md5): + self.add_query_param('Md5',Md5) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RegisterTagRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RegisterTagRequest.py new file mode 100644 index 0000000000..0dffb6c192 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RegisterTagRequest.py @@ -0,0 +1,49 @@ +# 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 +class RegisterTagRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'RegisterTag','cloudphoto') + self.set_protocol_type('https'); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Text(self): + return self.get_query_params().get('Text') + + def set_Text(self,Text): + self.add_query_param('Text',Text) + + def get_TagKey(self): + return self.get_query_params().get('TagKey') + + def set_TagKey(self,TagKey): + self.add_query_param('TagKey',TagKey) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RemoveAlbumPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RemoveAlbumPhotosRequest.py new file mode 100644 index 0000000000..98cb416cf6 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RemoveAlbumPhotosRequest.py @@ -0,0 +1,51 @@ +# 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 +class RemoveAlbumPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'RemoveAlbumPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_AlbumId(self): + return self.get_query_params().get('AlbumId') + + def set_AlbumId(self,AlbumId): + self.add_query_param('AlbumId',AlbumId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RemoveFacePhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RemoveFacePhotosRequest.py new file mode 100644 index 0000000000..7cfee7e33f --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RemoveFacePhotosRequest.py @@ -0,0 +1,51 @@ +# 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 +class RemoveFacePhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'RemoveFacePhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoIds(self): + return self.get_query_params().get('PhotoIds') + + def set_PhotoIds(self,PhotoIds): + for i in range(len(PhotoIds)): + if PhotoIds[i] is not None: + self.add_query_param('PhotoId.' + str(i + 1) , PhotoIds[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_FaceId(self): + return self.get_query_params().get('FaceId') + + def set_FaceId(self,FaceId): + self.add_query_param('FaceId',FaceId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RenameAlbumRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RenameAlbumRequest.py new file mode 100644 index 0000000000..2d938dc624 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RenameAlbumRequest.py @@ -0,0 +1,49 @@ +# 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 +class RenameAlbumRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'RenameAlbum','cloudphoto') + self.set_protocol_type('https'); + + def get_AlbumName(self): + return self.get_query_params().get('AlbumName') + + def set_AlbumName(self,AlbumName): + self.add_query_param('AlbumName',AlbumName) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_AlbumId(self): + return self.get_query_params().get('AlbumId') + + def set_AlbumId(self,AlbumId): + self.add_query_param('AlbumId',AlbumId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RenameFaceRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RenameFaceRequest.py new file mode 100644 index 0000000000..e670f83ee6 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/RenameFaceRequest.py @@ -0,0 +1,49 @@ +# 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 +class RenameFaceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'RenameFace','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_FaceId(self): + return self.get_query_params().get('FaceId') + + def set_FaceId(self,FaceId): + self.add_query_param('FaceId',FaceId) + + def get_FaceName(self): + return self.get_query_params().get('FaceName') + + def set_FaceName(self,FaceName): + self.add_query_param('FaceName',FaceName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SearchPhotosRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SearchPhotosRequest.py new file mode 100644 index 0000000000..68c89ee8c0 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SearchPhotosRequest.py @@ -0,0 +1,55 @@ +# 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 +class SearchPhotosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'SearchPhotos','cloudphoto') + self.set_protocol_type('https'); + + def get_Size(self): + return self.get_query_params().get('Size') + + def set_Size(self,Size): + self.add_query_param('Size',Size) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_Keyword(self): + return self.get_query_params().get('Keyword') + + def set_Keyword(self,Keyword): + self.add_query_param('Keyword',Keyword) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SetAlbumCoverRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SetAlbumCoverRequest.py new file mode 100644 index 0000000000..0d2a8efbf0 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SetAlbumCoverRequest.py @@ -0,0 +1,49 @@ +# 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 +class SetAlbumCoverRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'SetAlbumCover','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_AlbumId(self): + return self.get_query_params().get('AlbumId') + + def set_AlbumId(self,AlbumId): + self.add_query_param('AlbumId',AlbumId) + + def get_PhotoId(self): + return self.get_query_params().get('PhotoId') + + def set_PhotoId(self,PhotoId): + self.add_query_param('PhotoId',PhotoId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SetFaceCoverRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SetFaceCoverRequest.py new file mode 100644 index 0000000000..9a3c8234c8 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SetFaceCoverRequest.py @@ -0,0 +1,49 @@ +# 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 +class SetFaceCoverRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'SetFaceCover','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_PhotoId(self): + return self.get_query_params().get('PhotoId') + + def set_PhotoId(self,PhotoId): + self.add_query_param('PhotoId',PhotoId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_FaceId(self): + return self.get_query_params().get('FaceId') + + def set_FaceId(self,FaceId): + self.add_query_param('FaceId',FaceId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SetMeRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SetMeRequest.py new file mode 100644 index 0000000000..afb75429c9 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SetMeRequest.py @@ -0,0 +1,43 @@ +# 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 +class SetMeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'SetMe','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_FaceId(self): + return self.get_query_params().get('FaceId') + + def set_FaceId(self,FaceId): + self.add_query_param('FaceId',FaceId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SetQuotaRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SetQuotaRequest.py new file mode 100644 index 0000000000..d3ab84e6cd --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/SetQuotaRequest.py @@ -0,0 +1,43 @@ +# 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 +class SetQuotaRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'SetQuota','cloudphoto') + self.set_protocol_type('https'); + + def get_TotalQuota(self): + return self.get_query_params().get('TotalQuota') + + def set_TotalQuota(self,TotalQuota): + self.add_query_param('TotalQuota',TotalQuota) + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/TagPhotoRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/TagPhotoRequest.py new file mode 100644 index 0000000000..ff77a016e4 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/TagPhotoRequest.py @@ -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 +class TagPhotoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'TagPhoto','cloudphoto') + self.set_protocol_type('https'); + + def get_LibraryId(self): + return self.get_query_params().get('LibraryId') + + def set_LibraryId(self,LibraryId): + self.add_query_param('LibraryId',LibraryId) + + def get_Confidences(self): + return self.get_query_params().get('Confidences') + + def set_Confidences(self,Confidences): + for i in range(len(Confidences)): + if Confidences[i] is not None: + self.add_query_param('Confidence.' + str(i + 1) , Confidences[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_PhotoId(self): + return self.get_query_params().get('PhotoId') + + def set_PhotoId(self,PhotoId): + self.add_query_param('PhotoId',PhotoId) + + def get_TagKeys(self): + return self.get_query_params().get('TagKeys') + + def set_TagKeys(self,TagKeys): + for i in range(len(TagKeys)): + if TagKeys[i] is not None: + self.add_query_param('TagKey.' + str(i + 1) , TagKeys[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ToggleFeaturesRequest.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ToggleFeaturesRequest.py new file mode 100644 index 0000000000..e7ede8b5b5 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/ToggleFeaturesRequest.py @@ -0,0 +1,47 @@ +# 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 +class ToggleFeaturesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'CloudPhoto', '2017-07-11', 'ToggleFeatures','cloudphoto') + self.set_protocol_type('https'); + + def get_DisabledFeaturess(self): + return self.get_query_params().get('DisabledFeaturess') + + def set_DisabledFeaturess(self,DisabledFeaturess): + for i in range(len(DisabledFeaturess)): + if DisabledFeaturess[i] is not None: + self.add_query_param('DisabledFeatures.' + str(i + 1) , DisabledFeaturess[i]); + + def get_StoreName(self): + return self.get_query_params().get('StoreName') + + def set_StoreName(self,StoreName): + self.add_query_param('StoreName',StoreName) + + def get_EnabledFeaturess(self): + return self.get_query_params().get('EnabledFeaturess') + + def set_EnabledFeaturess(self,EnabledFeaturess): + for i in range(len(EnabledFeaturess)): + if EnabledFeaturess[i] is not None: + self.add_query_param('EnabledFeatures.' + str(i + 1) , EnabledFeaturess[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/__init__.py b/aliyun-python-sdk-cloudphoto/aliyunsdkcloudphoto/request/v20170711/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-cloudphoto/setup.py b/aliyun-python-sdk-cloudphoto/setup.py new file mode 100644 index 0000000000..fab3bad6b1 --- /dev/null +++ b/aliyun-python-sdk-cloudphoto/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for cloudphoto. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkcloudphoto" +NAME = "aliyun-python-sdk-cloudphoto" +DESCRIPTION = "The cloudphoto module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","cloudphoto"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/ChangeLog.txt b/aliyun-python-sdk-cloudwf/ChangeLog.txt new file mode 100644 index 0000000000..b61c4a2ac3 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-03-19 Version: 1.0.3 +1, Update Dependency + diff --git a/aliyun-python-sdk-cloudwf/MANIFEST.in b/aliyun-python-sdk-cloudwf/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-cloudwf/README.rst b/aliyun-python-sdk-cloudwf/README.rst new file mode 100644 index 0000000000..b1d58f4d28 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-cloudwf +This is the cloudwf module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/__init__.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/__init__.py new file mode 100644 index 0000000000..679362c4bd --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/__init__.py @@ -0,0 +1 @@ +__version__ = "1.0.3" \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/__init__.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AddApgroupConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AddApgroupConfigRequest.py new file mode 100644 index 0000000000..c965849cca --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AddApgroupConfigRequest.py @@ -0,0 +1,42 @@ +# 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 +class AddApgroupConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'AddApgroupConfig','cloudwf') + + def get_ParentApgroupId(self): + return self.get_query_params().get('ParentApgroupId') + + def set_ParentApgroupId(self,ParentApgroupId): + self.add_query_param('ParentApgroupId',ParentApgroupId) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AliyunRegisterApAssetRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AliyunRegisterApAssetRequest.py new file mode 100644 index 0000000000..b2a6c27406 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AliyunRegisterApAssetRequest.py @@ -0,0 +1,42 @@ +# 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 +class AliyunRegisterApAssetRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'AliyunRegisterApAsset','cloudwf') + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) + + def get_Mac(self): + return self.get_query_params().get('Mac') + + def set_Mac(self,Mac): + self.add_query_param('Mac',Mac) + + def get_SerialNo(self): + return self.get_query_params().get('SerialNo') + + def set_SerialNo(self,SerialNo): + self.add_query_param('SerialNo',SerialNo) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ApgroupBatchAddApRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ApgroupBatchAddApRequest.py new file mode 100644 index 0000000000..71be899b39 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ApgroupBatchAddApRequest.py @@ -0,0 +1,36 @@ +# 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 +class ApgroupBatchAddApRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ApgroupBatchAddAp','cloudwf') + + def get_ApAssetIds(self): + return self.get_query_params().get('ApAssetIds') + + def set_ApAssetIds(self,ApAssetIds): + self.add_query_param('ApAssetIds',ApAssetIds) + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ApgroupBatchDeleteApRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ApgroupBatchDeleteApRequest.py new file mode 100644 index 0000000000..f6fa9f558a --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ApgroupBatchDeleteApRequest.py @@ -0,0 +1,30 @@ +# 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 +class ApgroupBatchDeleteApRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ApgroupBatchDeleteAp','cloudwf') + + def get_ApAssetIds(self): + return self.get_query_params().get('ApAssetIds') + + def set_ApAssetIds(self,ApAssetIds): + self.add_query_param('ApAssetIds',ApAssetIds) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaCreateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaCreateRequest.py new file mode 100644 index 0000000000..359a498ab7 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaCreateRequest.py @@ -0,0 +1,42 @@ +# 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 +class AreaCreateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'AreaCreate','cloudwf') + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Dids(self): + return self.get_query_params().get('Dids') + + def set_Dids(self,Dids): + self.add_query_param('Dids',Dids) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaDeleteRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaDeleteRequest.py new file mode 100644 index 0000000000..e6da1f6f75 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaDeleteRequest.py @@ -0,0 +1,36 @@ +# 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 +class AreaDeleteRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'AreaDelete','cloudwf') + + def get_Aid(self): + return self.get_query_params().get('Aid') + + def set_Aid(self,Aid): + self.add_query_param('Aid',Aid) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaInfoRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaInfoRequest.py new file mode 100644 index 0000000000..92de3ad771 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaInfoRequest.py @@ -0,0 +1,36 @@ +# 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 +class AreaInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'AreaInfo','cloudwf') + + def get_Aid(self): + return self.get_query_params().get('Aid') + + def set_Aid(self,Aid): + self.add_query_param('Aid',Aid) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaShowListRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaShowListRequest.py new file mode 100644 index 0000000000..74c45f264f --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaShowListRequest.py @@ -0,0 +1,42 @@ +# 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 +class AreaShowListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'AreaShowList','cloudwf') + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_Per(self): + return self.get_query_params().get('Per') + + def set_Per(self,Per): + self.add_query_param('Per',Per) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaUpdateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaUpdateRequest.py new file mode 100644 index 0000000000..f668c4bf9f --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/AreaUpdateRequest.py @@ -0,0 +1,48 @@ +# 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 +class AreaUpdateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'AreaUpdate','cloudwf') + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Dids(self): + return self.get_query_params().get('Dids') + + def set_Dids(self,Dids): + self.add_query_param('Dids',Dids) + + def get_Aid(self): + return self.get_query_params().get('Aid') + + def set_Aid(self,Aid): + self.add_query_param('Aid',Aid) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BatchChangeGroupApNameRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BatchChangeGroupApNameRequest.py new file mode 100644 index 0000000000..14a208704e --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BatchChangeGroupApNameRequest.py @@ -0,0 +1,30 @@ +# 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 +class BatchChangeGroupApNameRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'BatchChangeGroupApName','cloudwf') + + def get_JsonData(self): + return self.get_query_params().get('JsonData') + + def set_JsonData(self,JsonData): + self.add_query_param('JsonData',JsonData) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BatchRegisterApAssetRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BatchRegisterApAssetRequest.py new file mode 100644 index 0000000000..38b4a5efeb --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BatchRegisterApAssetRequest.py @@ -0,0 +1,30 @@ +# 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 +class BatchRegisterApAssetRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'BatchRegisterApAsset','cloudwf') + + def get_JsonData(self): + return self.get_query_params().get('JsonData') + + def set_JsonData(self,JsonData): + self.add_query_param('JsonData',JsonData) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BatchSaveApPositionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BatchSaveApPositionRequest.py new file mode 100644 index 0000000000..bae11d89ca --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BatchSaveApPositionRequest.py @@ -0,0 +1,30 @@ +# 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 +class BatchSaveApPositionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'BatchSaveApPosition','cloudwf') + + def get_JsonData(self): + return self.get_query_params().get('JsonData') + + def set_JsonData(self,JsonData): + self.add_query_param('JsonData',JsonData) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BusinessCreateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BusinessCreateRequest.py new file mode 100644 index 0000000000..f60ee1c327 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BusinessCreateRequest.py @@ -0,0 +1,96 @@ +# 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 +class BusinessCreateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'BusinessCreate','cloudwf') + + def get_BusinessCity(self): + return self.get_query_params().get('BusinessCity') + + def set_BusinessCity(self,BusinessCity): + self.add_query_param('BusinessCity',BusinessCity) + + def get_Combo(self): + return self.get_query_params().get('Combo') + + def set_Combo(self,Combo): + self.add_query_param('Combo',Combo) + + def get_WarnEmail(self): + return self.get_query_params().get('WarnEmail') + + def set_WarnEmail(self,WarnEmail): + self.add_query_param('WarnEmail',WarnEmail) + + def get_BusinessManager(self): + return self.get_query_params().get('BusinessManager') + + def set_BusinessManager(self,BusinessManager): + self.add_query_param('BusinessManager',BusinessManager) + + def get_BusinessType(self): + return self.get_query_params().get('BusinessType') + + def set_BusinessType(self,BusinessType): + self.add_query_param('BusinessType',BusinessType) + + def get_Warn(self): + return self.get_query_params().get('Warn') + + def set_Warn(self,Warn): + self.add_query_param('Warn',Warn) + + def get_BusinessName(self): + return self.get_query_params().get('BusinessName') + + def set_BusinessName(self,BusinessName): + self.add_query_param('BusinessName',BusinessName) + + def get_BusinessTopType(self): + return self.get_query_params().get('BusinessTopType') + + def set_BusinessTopType(self,BusinessTopType): + self.add_query_param('BusinessTopType',BusinessTopType) + + def get_BusinessAddress(self): + return self.get_query_params().get('BusinessAddress') + + def set_BusinessAddress(self,BusinessAddress): + self.add_query_param('BusinessAddress',BusinessAddress) + + def get_BusinessTel(self): + return self.get_query_params().get('BusinessTel') + + def set_BusinessTel(self,BusinessTel): + self.add_query_param('BusinessTel',BusinessTel) + + def get_BusinessProvince(self): + return self.get_query_params().get('BusinessProvince') + + def set_BusinessProvince(self,BusinessProvince): + self.add_query_param('BusinessProvince',BusinessProvince) + + def get_BusinessSubtype(self): + return self.get_query_params().get('BusinessSubtype') + + def set_BusinessSubtype(self,BusinessSubtype): + self.add_query_param('BusinessSubtype',BusinessSubtype) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BusinessInfoRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BusinessInfoRequest.py new file mode 100644 index 0000000000..c1a316ad80 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BusinessInfoRequest.py @@ -0,0 +1,30 @@ +# 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 +class BusinessInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'BusinessInfo','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BusinessShowListRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BusinessShowListRequest.py new file mode 100644 index 0000000000..a2eb704b59 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BusinessShowListRequest.py @@ -0,0 +1,36 @@ +# 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 +class BusinessShowListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'BusinessShowList','cloudwf') + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_Per(self): + return self.get_query_params().get('Per') + + def set_Per(self,Per): + self.add_query_param('Per',Per) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BusinessUpdateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BusinessUpdateRequest.py new file mode 100644 index 0000000000..f3c9286f35 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/BusinessUpdateRequest.py @@ -0,0 +1,66 @@ +# 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 +class BusinessUpdateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'BusinessUpdate','cloudwf') + + def get_Warn(self): + return self.get_query_params().get('Warn') + + def set_Warn(self,Warn): + self.add_query_param('Warn',Warn) + + def get_BusinessCity(self): + return self.get_query_params().get('BusinessCity') + + def set_BusinessCity(self,BusinessCity): + self.add_query_param('BusinessCity',BusinessCity) + + def get_WarnEmail(self): + return self.get_query_params().get('WarnEmail') + + def set_WarnEmail(self,WarnEmail): + self.add_query_param('WarnEmail',WarnEmail) + + def get_BusinessAddress(self): + return self.get_query_params().get('BusinessAddress') + + def set_BusinessAddress(self,BusinessAddress): + self.add_query_param('BusinessAddress',BusinessAddress) + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) + + def get_BusinessManager(self): + return self.get_query_params().get('BusinessManager') + + def set_BusinessManager(self,BusinessManager): + self.add_query_param('BusinessManager',BusinessManager) + + def get_BusinessProvince(self): + return self.get_query_params().get('BusinessProvince') + + def set_BusinessProvince(self,BusinessProvince): + self.add_query_param('BusinessProvince',BusinessProvince) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CeaseInstanceRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CeaseInstanceRequest.py new file mode 100644 index 0000000000..4d2ca8129e --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CeaseInstanceRequest.py @@ -0,0 +1,36 @@ +# 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 +class CeaseInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'CeaseInstance','cloudwf') + + def get_TraceId(self): + return self.get_query_params().get('TraceId') + + def set_TraceId(self,TraceId): + self.add_query_param('TraceId',TraceId) + + def get_SpMsg(self): + return self.get_query_params().get('SpMsg') + + def set_SpMsg(self,SpMsg): + self.add_query_param('SpMsg',SpMsg) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CheckRootPermissionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CheckRootPermissionRequest.py new file mode 100644 index 0000000000..47a2cab672 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CheckRootPermissionRequest.py @@ -0,0 +1,24 @@ +# 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 +class CheckRootPermissionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'CheckRootPermission','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CheckUmengDataAnalysisPermissionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CheckUmengDataAnalysisPermissionRequest.py new file mode 100644 index 0000000000..51c9aa1cc9 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CheckUmengDataAnalysisPermissionRequest.py @@ -0,0 +1,24 @@ +# 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 +class CheckUmengDataAnalysisPermissionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'CheckUmengDataAnalysisPermission','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ConfigAutoRenewRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ConfigAutoRenewRequest.py new file mode 100644 index 0000000000..46e34f1210 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ConfigAutoRenewRequest.py @@ -0,0 +1,50 @@ +# 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 +class ConfigAutoRenewRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ConfigAutoRenew','cloudwf') + + def get_OffsetDays(self): + return self.get_query_params().get('OffsetDays') + + def set_OffsetDays(self,OffsetDays): + self.add_query_param('OffsetDays',OffsetDays) + + def get_Months(self): + return self.get_query_params().get('Months') + + def set_Months(self,Months): + self.add_query_param('Months',Months) + + def get_AutoRenew(self): + return self.get_query_params().get('AutoRenew') + + def set_AutoRenew(self,AutoRenew): + self.add_query_param('AutoRenew',AutoRenew) + + def get_ApLists(self): + return self.get_query_params().get('ApLists') + + def set_ApLists(self,ApLists): + for i in range(len(ApLists)): + if ApLists[i] is not None: + self.add_query_param('ApList.' + str(i + 1) , ApLists[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CreateRenewOrderRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CreateRenewOrderRequest.py new file mode 100644 index 0000000000..17fe1346f9 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CreateRenewOrderRequest.py @@ -0,0 +1,38 @@ +# 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 +class CreateRenewOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'CreateRenewOrder','cloudwf') + + def get_TimeCycleNum(self): + return self.get_query_params().get('TimeCycleNum') + + def set_TimeCycleNum(self,TimeCycleNum): + self.add_query_param('TimeCycleNum',TimeCycleNum) + + def get_ApLists(self): + return self.get_query_params().get('ApLists') + + def set_ApLists(self,ApLists): + for i in range(len(ApLists)): + if ApLists[i] is not None: + self.add_query_param('ApList.' + str(i + 1) , ApLists[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CreateSubAccountPermissionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CreateSubAccountPermissionRequest.py new file mode 100644 index 0000000000..8672e4d4fb --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/CreateSubAccountPermissionRequest.py @@ -0,0 +1,66 @@ +# 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 +class CreateSubAccountPermissionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'CreateSubAccountPermission','cloudwf') + + def get_Uid(self): + return self.get_query_params().get('Uid') + + def set_Uid(self,Uid): + self.add_query_param('Uid',Uid) + + def get_ShopGroupIdss(self): + return self.get_query_params().get('ShopGroupIdss') + + def set_ShopGroupIdss(self,ShopGroupIdss): + for i in range(len(ShopGroupIdss)): + if ShopGroupIdss[i] is not None: + self.add_query_param('ShopGroupIds.' + str(i + 1) , ShopGroupIdss[i]); + + def get_ShopIdss(self): + return self.get_query_params().get('ShopIdss') + + def set_ShopIdss(self,ShopIdss): + for i in range(len(ShopIdss)): + if ShopIdss[i] is not None: + self.add_query_param('ShopIds.' + str(i + 1) , ShopIdss[i]); + + def get_PagePermission(self): + return self.get_query_params().get('PagePermission') + + def set_PagePermission(self,PagePermission): + self.add_query_param('PagePermission',PagePermission) + + def get_PermissionType(self): + return self.get_query_params().get('PermissionType') + + def set_PermissionType(self,PermissionType): + self.add_query_param('PermissionType',PermissionType) + + def get_BusinessIdss(self): + return self.get_query_params().get('BusinessIdss') + + def set_BusinessIdss(self,BusinessIdss): + for i in range(len(BusinessIdss)): + if BusinessIdss[i] is not None: + self.add_query_param('BusinessIds.' + str(i + 1) , BusinessIdss[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelApPositionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelApPositionRequest.py new file mode 100644 index 0000000000..3951fe210d --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelApPositionRequest.py @@ -0,0 +1,36 @@ +# 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 +class DelApPositionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DelApPosition','cloudwf') + + def get_ApAssetId(self): + return self.get_query_params().get('ApAssetId') + + def set_ApAssetId(self,ApAssetId): + self.add_query_param('ApAssetId',ApAssetId) + + def get_MapId(self): + return self.get_query_params().get('MapId') + + def set_MapId(self,MapId): + self.add_query_param('MapId',MapId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelPageConfigTemplateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelPageConfigTemplateRequest.py new file mode 100644 index 0000000000..bc62dfb1e1 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelPageConfigTemplateRequest.py @@ -0,0 +1,30 @@ +# 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 +class DelPageConfigTemplateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DelPageConfigTemplate','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelPortalTempRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelPortalTempRequest.py new file mode 100644 index 0000000000..2e16a12e9a --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelPortalTempRequest.py @@ -0,0 +1,30 @@ +# 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 +class DelPortalTempRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DelPortalTemp','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelSubAccountPermissionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelSubAccountPermissionRequest.py new file mode 100644 index 0000000000..58d3e3527d --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelSubAccountPermissionRequest.py @@ -0,0 +1,30 @@ +# 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 +class DelSubAccountPermissionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DelSubAccountPermission','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelUmengPagePermission4RootRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelUmengPagePermission4RootRequest.py new file mode 100644 index 0000000000..6c605fca01 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DelUmengPagePermission4RootRequest.py @@ -0,0 +1,30 @@ +# 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 +class DelUmengPagePermission4RootRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DelUmengPagePermission4Root','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeleteApRadioSsidConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeleteApRadioSsidConfigRequest.py new file mode 100644 index 0000000000..a2c2421e82 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeleteApRadioSsidConfigRequest.py @@ -0,0 +1,36 @@ +# 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 +class DeleteApRadioSsidConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DeleteApRadioSsidConfig','cloudwf') + + def get_InstantlyEffective(self): + return self.get_query_params().get('InstantlyEffective') + + def set_InstantlyEffective(self,InstantlyEffective): + self.add_query_param('InstantlyEffective',InstantlyEffective) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeleteApgroupConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeleteApgroupConfigRequest.py new file mode 100644 index 0000000000..766f419293 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeleteApgroupConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class DeleteApgroupConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DeleteApgroupConfig','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeleteApgroupSsidConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeleteApgroupSsidConfigRequest.py new file mode 100644 index 0000000000..bd5c69f7ca --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeleteApgroupSsidConfigRequest.py @@ -0,0 +1,36 @@ +# 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 +class DeleteApgroupSsidConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DeleteApgroupSsidConfig','cloudwf') + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeletePositionMapRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeletePositionMapRequest.py new file mode 100644 index 0000000000..d5bcd8f2d7 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeletePositionMapRequest.py @@ -0,0 +1,30 @@ +# 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 +class DeletePositionMapRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DeletePositionMap','cloudwf') + + def get_MapId(self): + return self.get_query_params().get('MapId') + + def set_MapId(self,MapId): + self.add_query_param('MapId',MapId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceBatchCreateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceBatchCreateRequest.py new file mode 100644 index 0000000000..2f6c4d62cc --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceBatchCreateRequest.py @@ -0,0 +1,36 @@ +# 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 +class DeviceBatchCreateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DeviceBatchCreate','cloudwf') + + def get_Sn(self): + return self.get_query_params().get('Sn') + + def set_Sn(self,Sn): + self.add_query_param('Sn',Sn) + + def get_DeviceType(self): + return self.get_query_params().get('DeviceType') + + def set_DeviceType(self,DeviceType): + self.add_query_param('DeviceType',DeviceType) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceCreateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceCreateRequest.py new file mode 100644 index 0000000000..fa79776457 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceCreateRequest.py @@ -0,0 +1,54 @@ +# 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 +class DeviceCreateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DeviceCreate','cloudwf') + + def get_DeviceNum(self): + return self.get_query_params().get('DeviceNum') + + def set_DeviceNum(self,DeviceNum): + self.add_query_param('DeviceNum',DeviceNum) + + def get_DevicePosition(self): + return self.get_query_params().get('DevicePosition') + + def set_DevicePosition(self,DevicePosition): + self.add_query_param('DevicePosition',DevicePosition) + + def get_DeviceName(self): + return self.get_query_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_query_param('DeviceName',DeviceName) + + def get_DeviceType(self): + return self.get_query_params().get('DeviceType') + + def set_DeviceType(self,DeviceType): + self.add_query_param('DeviceType',DeviceType) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceDeleteRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceDeleteRequest.py new file mode 100644 index 0000000000..df79ec3025 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceDeleteRequest.py @@ -0,0 +1,36 @@ +# 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 +class DeviceDeleteRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DeviceDelete','cloudwf') + + def get_Did(self): + return self.get_query_params().get('Did') + + def set_Did(self,Did): + self.add_query_param('Did',Did) + + def get_Mac(self): + return self.get_query_params().get('Mac') + + def set_Mac(self,Mac): + self.add_query_param('Mac',Mac) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceShowListRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceShowListRequest.py new file mode 100644 index 0000000000..e3825fa4a1 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceShowListRequest.py @@ -0,0 +1,54 @@ +# 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 +class DeviceShowListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DeviceShowList','cloudwf') + + def get_Dirc(self): + return self.get_query_params().get('Dirc') + + def set_Dirc(self,Dirc): + self.add_query_param('Dirc',Dirc) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_Per(self): + return self.get_query_params().get('Per') + + def set_Per(self,Per): + self.add_query_param('Per',Per) + + def get_DeviceType(self): + return self.get_query_params().get('DeviceType') + + def set_DeviceType(self,DeviceType): + self.add_query_param('DeviceType',DeviceType) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceUpdateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceUpdateRequest.py new file mode 100644 index 0000000000..0d5058e5e1 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/DeviceUpdateRequest.py @@ -0,0 +1,42 @@ +# 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 +class DeviceUpdateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'DeviceUpdate','cloudwf') + + def get_DevicePosition(self): + return self.get_query_params().get('DevicePosition') + + def set_DevicePosition(self,DevicePosition): + self.add_query_param('DevicePosition',DevicePosition) + + def get_DeviceName(self): + return self.get_query_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_query_param('DeviceName',DeviceName) + + def get_Did(self): + return self.get_query_params().get('Did') + + def set_Did(self,Did): + self.add_query_param('Did',Did) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ExcelToJsonRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ExcelToJsonRequest.py new file mode 100644 index 0000000000..91a2c4128c --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ExcelToJsonRequest.py @@ -0,0 +1,30 @@ +# 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 +class ExcelToJsonRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ExcelToJson','cloudwf') + + def get_UploadData(self): + return self.get_query_params().get('UploadData') + + def set_UploadData(self,UploadData): + self.add_query_param('UploadData',UploadData) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/FindApRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/FindApRequest.py new file mode 100644 index 0000000000..eed3e9d46f --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/FindApRequest.py @@ -0,0 +1,30 @@ +# 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 +class FindApRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'FindAp','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/FrequencyAnalyseRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/FrequencyAnalyseRequest.py new file mode 100644 index 0000000000..a7fac30e99 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/FrequencyAnalyseRequest.py @@ -0,0 +1,30 @@ +# 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 +class FrequencyAnalyseRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'FrequencyAnalyse','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetAccountConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetAccountConfigRequest.py new file mode 100644 index 0000000000..c36b19f7a6 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetAccountConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetAccountConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetAccountConfig','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetAddApsProgressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetAddApsProgressRequest.py new file mode 100644 index 0000000000..6b57bcc2d2 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetAddApsProgressRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetAddApsProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetAddApsProgress','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetAllActiveShopByGroupRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetAllActiveShopByGroupRequest.py new file mode 100644 index 0000000000..3b86845382 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetAllActiveShopByGroupRequest.py @@ -0,0 +1,38 @@ +# 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 +class GetAllActiveShopByGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetAllActiveShopByGroup','cloudwf') + + def get_Gidss(self): + return self.get_query_params().get('Gidss') + + def set_Gidss(self,Gidss): + for i in range(len(Gidss)): + if Gidss[i] is not None: + self.add_query_param('Gids.' + str(i + 1) , Gidss[i]); + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetAllApModelRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetAllApModelRequest.py new file mode 100644 index 0000000000..1f5aa0b2a7 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetAllApModelRequest.py @@ -0,0 +1,24 @@ +# 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 +class GetAllApModelRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetAllApModel','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApDetailedConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApDetailedConfigRequest.py new file mode 100644 index 0000000000..2eabb40341 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApDetailedConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetApDetailedConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetApDetailedConfig','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApDetailedStatusRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApDetailedStatusRequest.py new file mode 100644 index 0000000000..9df16ea305 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApDetailedStatusRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetApDetailedStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetApDetailedStatus','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApPortalBindRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApPortalBindRequest.py new file mode 100644 index 0000000000..182d4f9bd4 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApPortalBindRequest.py @@ -0,0 +1,36 @@ +# 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 +class GetApPortalBindRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetApPortalBind','cloudwf') + + def get_ConfigType(self): + return self.get_query_params().get('ConfigType') + + def set_ConfigType(self,ConfigType): + self.add_query_param('ConfigType',ConfigType) + + def get_BindId(self): + return self.get_query_params().get('BindId') + + def set_BindId(self,BindId): + self.add_query_param('BindId',BindId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApRunHistoryTimeSerRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApRunHistoryTimeSerRequest.py new file mode 100644 index 0000000000..7272ca846e --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApRunHistoryTimeSerRequest.py @@ -0,0 +1,42 @@ +# 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 +class GetApRunHistoryTimeSerRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetApRunHistoryTimeSer','cloudwf') + + def get_Start(self): + return self.get_query_params().get('Start') + + def set_Start(self,Start): + self.add_query_param('Start',Start) + + def get_End(self): + return self.get_query_params().get('End') + + def set_End(self,End): + self.add_query_param('End',End) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApStaMiscAggRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApStaMiscAggRequest.py new file mode 100644 index 0000000000..432197e540 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApStaMiscAggRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetApStaMiscAggRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetApStaMiscAgg','cloudwf') + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApTopRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApTopRequest.py new file mode 100644 index 0000000000..2c214b3312 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApTopRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetApTopRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetApTop','cloudwf') + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupConfigProgressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupConfigProgressRequest.py new file mode 100644 index 0000000000..babf0a4d8f --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupConfigProgressRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetApgroupConfigProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetApgroupConfigProgress','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupDetailedConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupDetailedConfigRequest.py new file mode 100644 index 0000000000..83df7fe04d --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupDetailedConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetApgroupDetailedConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetApgroupDetailedConfig','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupPortalConfigProgressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupPortalConfigProgressRequest.py new file mode 100644 index 0000000000..e1fafcb7d8 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupPortalConfigProgressRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetApgroupPortalConfigProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetApgroupPortalConfigProgress','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupScanConfigSaveProgressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupScanConfigSaveProgressRequest.py new file mode 100644 index 0000000000..c9357b8eb6 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupScanConfigSaveProgressRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetApgroupScanConfigSaveProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetApgroupScanConfigSaveProgress','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupSsidConfigProgressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupSsidConfigProgressRequest.py new file mode 100644 index 0000000000..3f154f4a7b --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetApgroupSsidConfigProgressRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetApgroupSsidConfigProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetApgroupSsidConfigProgress','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetBatchSaveApAssetProgressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetBatchSaveApAssetProgressRequest.py new file mode 100644 index 0000000000..7178214ac5 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetBatchSaveApAssetProgressRequest.py @@ -0,0 +1,24 @@ +# 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 +class GetBatchSaveApAssetProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetBatchSaveApAssetProgress','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetBidRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetBidRequest.py new file mode 100644 index 0000000000..273d51871b --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetBidRequest.py @@ -0,0 +1,36 @@ +# 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 +class GetBidRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetBid','cloudwf') + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetBids4Uid4RootRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetBids4Uid4RootRequest.py new file mode 100644 index 0000000000..e7f82c1427 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetBids4Uid4RootRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetBids4Uid4RootRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetBids4Uid4Root','cloudwf') + + def get_Uid(self): + return self.get_query_params().get('Uid') + + def set_Uid(self,Uid): + self.add_query_param('Uid',Uid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetBindAp4UmengRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetBindAp4UmengRequest.py new file mode 100644 index 0000000000..94e5efcc5d --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetBindAp4UmengRequest.py @@ -0,0 +1,24 @@ +# 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 +class GetBindAp4UmengRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetBindAp4Umeng','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetCrowdListRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetCrowdListRequest.py new file mode 100644 index 0000000000..5ba9bed7dc --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetCrowdListRequest.py @@ -0,0 +1,72 @@ +# 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 +class GetCrowdListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetCrowdList','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) + + def get_ClassType(self): + return self.get_query_params().get('ClassType') + + def set_ClassType(self,ClassType): + self.add_query_param('ClassType',ClassType) + + def get_GsType(self): + return self.get_query_params().get('GsType') + + def set_GsType(self,GsType): + self.add_query_param('GsType',GsType) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_Per(self): + return self.get_query_params().get('Per') + + def set_Per(self,Per): + self.add_query_param('Per',Per) + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetDailyStatisticRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetDailyStatisticRequest.py new file mode 100644 index 0000000000..56590fde8b --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetDailyStatisticRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetDailyStatisticRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetDailyStatistic','cloudwf') + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetDeviceInfoByMacRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetDeviceInfoByMacRequest.py new file mode 100644 index 0000000000..1a8673a697 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetDeviceInfoByMacRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetDeviceInfoByMacRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetDeviceInfoByMac','cloudwf') + + def get_Mac(self): + return self.get_query_params().get('Mac') + + def set_Mac(self,Mac): + self.add_query_param('Mac',Mac) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApChangeNameTemplateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApChangeNameTemplateRequest.py new file mode 100644 index 0000000000..5e8352d04e --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApChangeNameTemplateRequest.py @@ -0,0 +1,24 @@ +# 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 +class GetGroupApChangeNameTemplateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetGroupApChangeNameTemplate','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApRadioConfigProgressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApRadioConfigProgressRequest.py new file mode 100644 index 0000000000..ff6152a4dc --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApRadioConfigProgressRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetGroupApRadioConfigProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetGroupApRadioConfigProgress','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApRadioConfigTemplateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApRadioConfigTemplateRequest.py new file mode 100644 index 0000000000..a946852919 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApRadioConfigTemplateRequest.py @@ -0,0 +1,24 @@ +# 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 +class GetGroupApRadioConfigTemplateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetGroupApRadioConfigTemplate','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApRadioOnoffProgressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApRadioOnoffProgressRequest.py new file mode 100644 index 0000000000..179c823449 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApRadioOnoffProgressRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetGroupApRadioOnoffProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetGroupApRadioOnoffProgress','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApRepairProgressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApRepairProgressRequest.py new file mode 100644 index 0000000000..05a953d26a --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetGroupApRepairProgressRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetGroupApRepairProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetGroupApRepairProgress','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetInstanceByShopRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetInstanceByShopRequest.py new file mode 100644 index 0000000000..fe7bc6e821 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetInstanceByShopRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetInstanceByShopRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetInstanceByShop','cloudwf') + + def get_ShopId(self): + return self.get_query_params().get('ShopId') + + def set_ShopId(self,ShopId): + self.add_query_param('ShopId',ShopId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetLatestApStatisticRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetLatestApStatisticRequest.py new file mode 100644 index 0000000000..cdbadabfdf --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetLatestApStatisticRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetLatestApStatisticRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetLatestApStatistic','cloudwf') + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetLatestStaStatisticRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetLatestStaStatisticRequest.py new file mode 100644 index 0000000000..2a76ac5f09 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetLatestStaStatisticRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetLatestStaStatisticRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetLatestStaStatistic','cloudwf') + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetMapUrlRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetMapUrlRequest.py new file mode 100644 index 0000000000..eed9f6ab30 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetMapUrlRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetMapUrlRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetMapUrl','cloudwf') + + def get_MapId(self): + return self.get_query_params().get('MapId') + + def set_MapId(self,MapId): + self.add_query_param('MapId',MapId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetOnlineApTimeSerRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetOnlineApTimeSerRequest.py new file mode 100644 index 0000000000..286c126158 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetOnlineApTimeSerRequest.py @@ -0,0 +1,60 @@ +# 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 +class GetOnlineApTimeSerRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetOnlineApTimeSer','cloudwf') + + def get_ZoomStart(self): + return self.get_query_params().get('ZoomStart') + + def set_ZoomStart(self,ZoomStart): + self.add_query_param('ZoomStart',ZoomStart) + + def get_CompanyId(self): + return self.get_query_params().get('CompanyId') + + def set_CompanyId(self,CompanyId): + self.add_query_param('CompanyId',CompanyId) + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) + + def get_Start(self): + return self.get_query_params().get('Start') + + def set_Start(self,Start): + self.add_query_param('Start',Start) + + def get_ZoomEnd(self): + return self.get_query_params().get('ZoomEnd') + + def set_ZoomEnd(self,ZoomEnd): + self.add_query_param('ZoomEnd',ZoomEnd) + + def get_End(self): + return self.get_query_params().get('End') + + def set_End(self,End): + self.add_query_param('End',End) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetOnlineStaTimeSerRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetOnlineStaTimeSerRequest.py new file mode 100644 index 0000000000..267d5828eb --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetOnlineStaTimeSerRequest.py @@ -0,0 +1,60 @@ +# 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 +class GetOnlineStaTimeSerRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetOnlineStaTimeSer','cloudwf') + + def get_ZoomStart(self): + return self.get_query_params().get('ZoomStart') + + def set_ZoomStart(self,ZoomStart): + self.add_query_param('ZoomStart',ZoomStart) + + def get_CompanyId(self): + return self.get_query_params().get('CompanyId') + + def set_CompanyId(self,CompanyId): + self.add_query_param('CompanyId',CompanyId) + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) + + def get_Start(self): + return self.get_query_params().get('Start') + + def set_Start(self,Start): + self.add_query_param('Start',Start) + + def get_ZoomEnd(self): + return self.get_query_params().get('ZoomEnd') + + def set_ZoomEnd(self,ZoomEnd): + self.add_query_param('ZoomEnd',ZoomEnd) + + def get_End(self): + return self.get_query_params().get('End') + + def set_End(self,End): + self.add_query_param('End',End) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetOssServerSignRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetOssServerSignRequest.py new file mode 100644 index 0000000000..fbd0dfdfd3 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetOssServerSignRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetOssServerSignRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetOssServerSign','cloudwf') + + def get_DirType(self): + return self.get_query_params().get('DirType') + + def set_DirType(self,DirType): + self.add_query_param('DirType',DirType) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetPageConfigTemplateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetPageConfigTemplateRequest.py new file mode 100644 index 0000000000..898ba08e6c --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetPageConfigTemplateRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetPageConfigTemplateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetPageConfigTemplate','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetPagePropertiesRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetPagePropertiesRequest.py new file mode 100644 index 0000000000..16bf19c94f --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetPagePropertiesRequest.py @@ -0,0 +1,24 @@ +# 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 +class GetPagePropertiesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetPageProperties','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetPortalTempDetailRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetPortalTempDetailRequest.py new file mode 100644 index 0000000000..cf2253d604 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetPortalTempDetailRequest.py @@ -0,0 +1,36 @@ +# 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 +class GetPortalTempDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetPortalTempDetail','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_UniqueId(self): + return self.get_query_params().get('UniqueId') + + def set_UniqueId(self,UniqueId): + self.add_query_param('UniqueId',UniqueId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetProbeDataSubscriberConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetProbeDataSubscriberConfigRequest.py new file mode 100644 index 0000000000..4fe3ebc488 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetProbeDataSubscriberConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetProbeDataSubscriberConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetProbeDataSubscriberConfig','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetRadioRunHistoryTimeSerRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetRadioRunHistoryTimeSerRequest.py new file mode 100644 index 0000000000..0d2df10826 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetRadioRunHistoryTimeSerRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetRadioRunHistoryTimeSerRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetRadioRunHistoryTimeSer','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetScanModeRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetScanModeRequest.py new file mode 100644 index 0000000000..dc3e67e296 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetScanModeRequest.py @@ -0,0 +1,32 @@ +# 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 +class GetScanModeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetScanMode','cloudwf') + + def get_MacLists(self): + return self.get_query_params().get('MacLists') + + def set_MacLists(self,MacLists): + for i in range(len(MacLists)): + if MacLists[i] is not None: + self.add_query_param('MacList.' + str(i + 1) , MacLists[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetScanProbeTimeSerRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetScanProbeTimeSerRequest.py new file mode 100644 index 0000000000..a4d40950ed --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetScanProbeTimeSerRequest.py @@ -0,0 +1,60 @@ +# 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 +class GetScanProbeTimeSerRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetScanProbeTimeSer','cloudwf') + + def get_ZoomStart(self): + return self.get_query_params().get('ZoomStart') + + def set_ZoomStart(self,ZoomStart): + self.add_query_param('ZoomStart',ZoomStart) + + def get_CompanyId(self): + return self.get_query_params().get('CompanyId') + + def set_CompanyId(self,CompanyId): + self.add_query_param('CompanyId',CompanyId) + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) + + def get_Start(self): + return self.get_query_params().get('Start') + + def set_Start(self,Start): + self.add_query_param('Start',Start) + + def get_ZoomEnd(self): + return self.get_query_params().get('ZoomEnd') + + def set_ZoomEnd(self,ZoomEnd): + self.add_query_param('ZoomEnd',ZoomEnd) + + def get_End(self): + return self.get_query_params().get('End') + + def set_End(self,End): + self.add_query_param('End',End) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetSendCommandByMacProgressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetSendCommandByMacProgressRequest.py new file mode 100644 index 0000000000..78749df9ee --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetSendCommandByMacProgressRequest.py @@ -0,0 +1,24 @@ +# 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 +class GetSendCommandByMacProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetSendCommandByMacProgress','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetSidsAndGids4BidRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetSidsAndGids4BidRequest.py new file mode 100644 index 0000000000..a00bd761de --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetSidsAndGids4BidRequest.py @@ -0,0 +1,36 @@ +# 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 +class GetSidsAndGids4BidRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetSidsAndGids4Bid','cloudwf') + + def get_QueryType(self): + return self.get_query_params().get('QueryType') + + def set_QueryType(self,QueryType): + self.add_query_param('QueryType',QueryType) + + def get_QueryId(self): + return self.get_query_params().get('QueryId') + + def set_QueryId(self,QueryId): + self.add_query_param('QueryId',QueryId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetStaDetailedStatusRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetStaDetailedStatusRequest.py new file mode 100644 index 0000000000..15e5ead1c6 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetStaDetailedStatusRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetStaDetailedStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetStaDetailedStatus','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetStaRunHistoryTimeSerRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetStaRunHistoryTimeSerRequest.py new file mode 100644 index 0000000000..9a1d7cb1da --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetStaRunHistoryTimeSerRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetStaRunHistoryTimeSerRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetStaRunHistoryTimeSer','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetStaTopRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetStaTopRequest.py new file mode 100644 index 0000000000..410182e46b --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetStaTopRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetStaTopRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetStaTop','cloudwf') + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetSubAccountPermissionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetSubAccountPermissionRequest.py new file mode 100644 index 0000000000..303c2982ed --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetSubAccountPermissionRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetSubAccountPermissionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetSubAccountPermission','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetSubAccountStatusRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetSubAccountStatusRequest.py new file mode 100644 index 0000000000..4121078316 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetSubAccountStatusRequest.py @@ -0,0 +1,24 @@ +# 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 +class GetSubAccountStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetSubAccountStatus','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUmengPagePermission4RootRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUmengPagePermission4RootRequest.py new file mode 100644 index 0000000000..5f95741070 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUmengPagePermission4RootRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetUmengPagePermission4RootRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetUmengPagePermission4Root','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUpgradeAPGroupProgressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUpgradeAPGroupProgressRequest.py new file mode 100644 index 0000000000..aac4e3aa63 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUpgradeAPGroupProgressRequest.py @@ -0,0 +1,24 @@ +# 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 +class GetUpgradeAPGroupProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetUpgradeAPGroupProgress','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUpgradeAPProgressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUpgradeAPProgressRequest.py new file mode 100644 index 0000000000..9b5c7fdc6f --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUpgradeAPProgressRequest.py @@ -0,0 +1,24 @@ +# 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 +class GetUpgradeAPProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetUpgradeAPProgress','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUpgradeImgRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUpgradeImgRequest.py new file mode 100644 index 0000000000..0f7fff3ee4 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUpgradeImgRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetUpgradeImgRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetUpgradeImg','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUserUmengPagePermissionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUserUmengPagePermissionRequest.py new file mode 100644 index 0000000000..278675ab26 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GetUserUmengPagePermissionRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetUserUmengPagePermissionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GetUserUmengPagePermission','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GroupDetailsRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GroupDetailsRequest.py new file mode 100644 index 0000000000..36bafc566d --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GroupDetailsRequest.py @@ -0,0 +1,30 @@ +# 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 +class GroupDetailsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GroupDetails','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GroupIntimeRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GroupIntimeRequest.py new file mode 100644 index 0000000000..881f737e5e --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GroupIntimeRequest.py @@ -0,0 +1,30 @@ +# 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 +class GroupIntimeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GroupIntime','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GroupOverviewRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GroupOverviewRequest.py new file mode 100644 index 0000000000..1e29cc1161 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GroupOverviewRequest.py @@ -0,0 +1,30 @@ +# 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 +class GroupOverviewRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GroupOverview','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GroupTrendRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GroupTrendRequest.py new file mode 100644 index 0000000000..e283e194fb --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/GroupTrendRequest.py @@ -0,0 +1,30 @@ +# 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 +class GroupTrendRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'GroupTrend','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersOverviewRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersOverviewRequest.py new file mode 100644 index 0000000000..a7a9597ae8 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersOverviewRequest.py @@ -0,0 +1,30 @@ +# 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 +class HeadquartersOverviewRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'HeadquartersOverview','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersRankingRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersRankingRequest.py new file mode 100644 index 0000000000..22fc585cab --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersRankingRequest.py @@ -0,0 +1,30 @@ +# 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 +class HeadquartersRankingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'HeadquartersRanking','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersToolsCoincideRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersToolsCoincideRequest.py new file mode 100644 index 0000000000..cc21fd17e7 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersToolsCoincideRequest.py @@ -0,0 +1,30 @@ +# 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 +class HeadquartersToolsCoincideRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'HeadquartersToolsCoincide','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersToolsContrastRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersToolsContrastRequest.py new file mode 100644 index 0000000000..06ef92ded6 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersToolsContrastRequest.py @@ -0,0 +1,30 @@ +# 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 +class HeadquartersToolsContrastRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'HeadquartersToolsContrast','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersToolsO2ORequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersToolsO2ORequest.py new file mode 100644 index 0000000000..d4bcd71e9d --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersToolsO2ORequest.py @@ -0,0 +1,30 @@ +# 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 +class HeadquartersToolsO2ORequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'HeadquartersToolsO2O','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersTrendRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersTrendRequest.py new file mode 100644 index 0000000000..8018b5ad82 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/HeadquartersTrendRequest.py @@ -0,0 +1,30 @@ +# 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 +class HeadquartersTrendRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'HeadquartersTrend','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/InnerCheckOrderRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/InnerCheckOrderRequest.py new file mode 100644 index 0000000000..9b71e05a18 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/InnerCheckOrderRequest.py @@ -0,0 +1,30 @@ +# 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 +class InnerCheckOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'InnerCheckOrder','cloudwf') + + def get_data(self): + return self.get_query_params().get('data') + + def set_data(self,data): + self.add_query_param('data',data) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/InnerProduceCloudWFRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/InnerProduceCloudWFRequest.py new file mode 100644 index 0000000000..9868892e0c --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/InnerProduceCloudWFRequest.py @@ -0,0 +1,30 @@ +# 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 +class InnerProduceCloudWFRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'InnerProduceCloudWF','cloudwf') + + def get_data(self): + return self.get_query_params().get('data') + + def set_data(self,data): + self.add_query_param('data',data) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/InnerRefundRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/InnerRefundRequest.py new file mode 100644 index 0000000000..3bc8cbfef0 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/InnerRefundRequest.py @@ -0,0 +1,30 @@ +# 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 +class InnerRefundRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'InnerRefund','cloudwf') + + def get_data(self): + return self.get_query_params().get('data') + + def set_data(self,data): + self.add_query_param('data',data) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/KickAndClearPMKcacheRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/KickAndClearPMKcacheRequest.py new file mode 100644 index 0000000000..3495b22de6 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/KickAndClearPMKcacheRequest.py @@ -0,0 +1,30 @@ +# 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 +class KickAndClearPMKcacheRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'KickAndClearPMKcache','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/KickStaRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/KickStaRequest.py new file mode 100644 index 0000000000..d10ba0833a --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/KickStaRequest.py @@ -0,0 +1,30 @@ +# 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 +class KickStaRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'KickSta','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListAccountConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListAccountConfigRequest.py new file mode 100644 index 0000000000..57c48aef5f --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListAccountConfigRequest.py @@ -0,0 +1,54 @@ +# 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 +class ListAccountConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListAccountConfig','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_SearchEmail(self): + return self.get_query_params().get('SearchEmail') + + def set_SearchEmail(self,SearchEmail): + self.add_query_param('SearchEmail',SearchEmail) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApAssetCanBeAddedRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApAssetCanBeAddedRequest.py new file mode 100644 index 0000000000..be3cadd164 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApAssetCanBeAddedRequest.py @@ -0,0 +1,60 @@ +# 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 +class ListApAssetCanBeAddedRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListApAssetCanBeAdded','cloudwf') + + def get_SearchName(self): + return self.get_query_params().get('SearchName') + + def set_SearchName(self,SearchName): + self.add_query_param('SearchName',SearchName) + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_SearchMac(self): + return self.get_query_params().get('SearchMac') + + def set_SearchMac(self,SearchMac): + self.add_query_param('SearchMac',SearchMac) + + def get_SearchModel(self): + return self.get_query_params().get('SearchModel') + + def set_SearchModel(self,SearchModel): + self.add_query_param('SearchModel',SearchModel) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApAssetRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApAssetRequest.py new file mode 100644 index 0000000000..b0e37fe68f --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApAssetRequest.py @@ -0,0 +1,72 @@ +# 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 +class ListApAssetRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListApAsset','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchName(self): + return self.get_query_params().get('SearchName') + + def set_SearchName(self,SearchName): + self.add_query_param('SearchName',SearchName) + + def get_SearchSerialNo(self): + return self.get_query_params().get('SearchSerialNo') + + def set_SearchSerialNo(self,SearchSerialNo): + self.add_query_param('SearchSerialNo',SearchSerialNo) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_SearchMac(self): + return self.get_query_params().get('SearchMac') + + def set_SearchMac(self,SearchMac): + self.add_query_param('SearchMac',SearchMac) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) + + def get_SearchModel(self): + return self.get_query_params().get('SearchModel') + + def set_SearchModel(self,SearchModel): + self.add_query_param('SearchModel',SearchModel) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApDetailInfoRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApDetailInfoRequest.py new file mode 100644 index 0000000000..2ae0bcf29a --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApDetailInfoRequest.py @@ -0,0 +1,30 @@ +# 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 +class ListApDetailInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListApDetailInfo','cloudwf') + + def get_ApAssetId(self): + return self.get_query_params().get('ApAssetId') + + def set_ApAssetId(self,ApAssetId): + self.add_query_param('ApAssetId',ApAssetId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApPositionMapRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApPositionMapRequest.py new file mode 100644 index 0000000000..22adb27a74 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApPositionMapRequest.py @@ -0,0 +1,72 @@ +# 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 +class ListApPositionMapRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListApPositionMap','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchName(self): + return self.get_query_params().get('SearchName') + + def set_SearchName(self,SearchName): + self.add_query_param('SearchName',SearchName) + + def get_TotalItem(self): + return self.get_query_params().get('TotalItem') + + def set_TotalItem(self,TotalItem): + self.add_query_param('TotalItem',TotalItem) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_MapType(self): + return self.get_query_params().get('MapType') + + def set_MapType(self,MapType): + self.add_query_param('MapType',MapType) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_SearchApgroupName(self): + return self.get_query_params().get('SearchApgroupName') + + def set_SearchApgroupName(self,SearchApgroupName): + self.add_query_param('SearchApgroupName',SearchApgroupName) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApPositionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApPositionRequest.py new file mode 100644 index 0000000000..d94c7b09fe --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApPositionRequest.py @@ -0,0 +1,30 @@ +# 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 +class ListApPositionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListApPosition','cloudwf') + + def get_MapId(self): + return self.get_query_params().get('MapId') + + def set_MapId(self,MapId): + self.add_query_param('MapId',MapId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApPositionStatusRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApPositionStatusRequest.py new file mode 100644 index 0000000000..5ad52f2700 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApPositionStatusRequest.py @@ -0,0 +1,30 @@ +# 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 +class ListApPositionStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListApPositionStatus','cloudwf') + + def get_JsonData(self): + return self.get_query_params().get('JsonData') + + def set_JsonData(self,JsonData): + self.add_query_param('JsonData',JsonData) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApRadioStatusRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApRadioStatusRequest.py new file mode 100644 index 0000000000..07866f4c25 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApRadioStatusRequest.py @@ -0,0 +1,84 @@ +# 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 +class ListApRadioStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListApRadioStatus','cloudwf') + + def get_SearchDisabled(self): + return self.get_query_params().get('SearchDisabled') + + def set_SearchDisabled(self,SearchDisabled): + self.add_query_param('SearchDisabled',SearchDisabled) + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchName(self): + return self.get_query_params().get('SearchName') + + def set_SearchName(self,SearchName): + self.add_query_param('SearchName',SearchName) + + def get_SearchChannelEquals(self): + return self.get_query_params().get('SearchChannelEquals') + + def set_SearchChannelEquals(self,SearchChannelEquals): + self.add_query_param('SearchChannelEquals',SearchChannelEquals) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_SearchMac(self): + return self.get_query_params().get('SearchMac') + + def set_SearchMac(self,SearchMac): + self.add_query_param('SearchMac',SearchMac) + + def get_SearchApgroupName(self): + return self.get_query_params().get('SearchApgroupName') + + def set_SearchApgroupName(self,SearchApgroupName): + self.add_query_param('SearchApgroupName',SearchApgroupName) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) + + def get_SearchApStatus(self): + return self.get_query_params().get('SearchApStatus') + + def set_SearchApStatus(self,SearchApStatus): + self.add_query_param('SearchApStatus',SearchApStatus) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApStaStatusRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApStaStatusRequest.py new file mode 100644 index 0000000000..63cc614af8 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApStaStatusRequest.py @@ -0,0 +1,84 @@ +# 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 +class ListApStaStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListApStaStatus','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchProtocal(self): + return self.get_query_params().get('SearchProtocal') + + def set_SearchProtocal(self,SearchProtocal): + self.add_query_param('SearchProtocal',SearchProtocal) + + def get_SearchSsid(self): + return self.get_query_params().get('SearchSsid') + + def set_SearchSsid(self,SearchSsid): + self.add_query_param('SearchSsid',SearchSsid) + + def get_SearchIp(self): + return self.get_query_params().get('SearchIp') + + def set_SearchIp(self,SearchIp): + self.add_query_param('SearchIp',SearchIp) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_SearchUsername(self): + return self.get_query_params().get('SearchUsername') + + def set_SearchUsername(self,SearchUsername): + self.add_query_param('SearchUsername',SearchUsername) + + def get_SearchMac(self): + return self.get_query_params().get('SearchMac') + + def set_SearchMac(self,SearchMac): + self.add_query_param('SearchMac',SearchMac) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApStatusRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApStatusRequest.py new file mode 100644 index 0000000000..ad6c75fc7c --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApStatusRequest.py @@ -0,0 +1,102 @@ +# 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 +class ListApStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListApStatus','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchName(self): + return self.get_query_params().get('SearchName') + + def set_SearchName(self,SearchName): + self.add_query_param('SearchName',SearchName) + + def get_SearchGroupName(self): + return self.get_query_params().get('SearchGroupName') + + def set_SearchGroupName(self,SearchGroupName): + self.add_query_param('SearchGroupName',SearchGroupName) + + def get_SearchStatus(self): + return self.get_query_params().get('SearchStatus') + + def set_SearchStatus(self,SearchStatus): + self.add_query_param('SearchStatus',SearchStatus) + + def get_SearchWanIp(self): + return self.get_query_params().get('SearchWanIp') + + def set_SearchWanIp(self,SearchWanIp): + self.add_query_param('SearchWanIp',SearchWanIp) + + def get_SearchApModelName(self): + return self.get_query_params().get('SearchApModelName') + + def set_SearchApModelName(self,SearchApModelName): + self.add_query_param('SearchApModelName',SearchApModelName) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) + + def get_SearchBssEquals(self): + return self.get_query_params().get('SearchBssEquals') + + def set_SearchBssEquals(self,SearchBssEquals): + self.add_query_param('SearchBssEquals',SearchBssEquals) + + def get_SearchSwVersion(self): + return self.get_query_params().get('SearchSwVersion') + + def set_SearchSwVersion(self,SearchSwVersion): + self.add_query_param('SearchSwVersion',SearchSwVersion) + + def get_SearchCompanyName(self): + return self.get_query_params().get('SearchCompanyName') + + def set_SearchCompanyName(self,SearchCompanyName): + self.add_query_param('SearchCompanyName',SearchCompanyName) + + def get_SearchMac(self): + return self.get_query_params().get('SearchMac') + + def set_SearchMac(self,SearchMac): + self.add_query_param('SearchMac',SearchMac) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApUpgradeRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApUpgradeRequest.py new file mode 100644 index 0000000000..325b915e14 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApUpgradeRequest.py @@ -0,0 +1,66 @@ +# 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 +class ListApUpgradeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListApUpgrade','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchName(self): + return self.get_query_params().get('SearchName') + + def set_SearchName(self,SearchName): + self.add_query_param('SearchName',SearchName) + + def get_SearchApModelName(self): + return self.get_query_params().get('SearchApModelName') + + def set_SearchApModelName(self,SearchApModelName): + self.add_query_param('SearchApModelName',SearchApModelName) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_SearchMac(self): + return self.get_query_params().get('SearchMac') + + def set_SearchMac(self,SearchMac): + self.add_query_param('SearchMac',SearchMac) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApgroupConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApgroupConfigRequest.py new file mode 100644 index 0000000000..c38b4bc0a0 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListApgroupConfigRequest.py @@ -0,0 +1,60 @@ +# 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 +class ListApgroupConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListApgroupConfig','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchName(self): + return self.get_query_params().get('SearchName') + + def set_SearchName(self,SearchName): + self.add_query_param('SearchName',SearchName) + + def get_SearchCompany(self): + return self.get_query_params().get('SearchCompany') + + def set_SearchCompany(self,SearchCompany): + self.add_query_param('SearchCompany',SearchCompany) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListBriefApConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListBriefApConfigRequest.py new file mode 100644 index 0000000000..fd46add34c --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListBriefApConfigRequest.py @@ -0,0 +1,72 @@ +# 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 +class ListBriefApConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListBriefApConfig','cloudwf') + + def get_SearchScan(self): + return self.get_query_params().get('SearchScan') + + def set_SearchScan(self,SearchScan): + self.add_query_param('SearchScan',SearchScan) + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchName(self): + return self.get_query_params().get('SearchName') + + def set_SearchName(self,SearchName): + self.add_query_param('SearchName',SearchName) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_SearchMac(self): + return self.get_query_params().get('SearchMac') + + def set_SearchMac(self,SearchMac): + self.add_query_param('SearchMac',SearchMac) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) + + def get_SearchModel(self): + return self.get_query_params().get('SearchModel') + + def set_SearchModel(self,SearchModel): + self.add_query_param('SearchModel',SearchModel) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListBriefConfigByActionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListBriefConfigByActionRequest.py new file mode 100644 index 0000000000..9c40aaabe6 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListBriefConfigByActionRequest.py @@ -0,0 +1,42 @@ +# 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 +class ListBriefConfigByActionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListBriefConfigByAction','cloudwf') + + def get_AncestorApgroupId(self): + return self.get_query_params().get('AncestorApgroupId') + + def set_AncestorApgroupId(self,AncestorApgroupId): + self.add_query_param('AncestorApgroupId',AncestorApgroupId) + + def get_Limit(self): + return self.get_query_params().get('Limit') + + def set_Limit(self,Limit): + self.add_query_param('Limit',Limit) + + def get_FuzzySearch(self): + return self.get_query_params().get('FuzzySearch') + + def set_FuzzySearch(self,FuzzySearch): + self.add_query_param('FuzzySearch',FuzzySearch) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListBusinessDetailsRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListBusinessDetailsRequest.py new file mode 100644 index 0000000000..371707702b --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListBusinessDetailsRequest.py @@ -0,0 +1,54 @@ +# 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 +class ListBusinessDetailsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListBusinessDetails','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchName(self): + return self.get_query_params().get('SearchName') + + def set_SearchName(self,SearchName): + self.add_query_param('SearchName',SearchName) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListBusinessesRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListBusinessesRequest.py new file mode 100644 index 0000000000..f24f38febf --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListBusinessesRequest.py @@ -0,0 +1,24 @@ +# 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 +class ListBusinessesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListBusinesses','cloudwf') \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListConfigByActionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListConfigByActionRequest.py new file mode 100644 index 0000000000..6ccbcf839f --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListConfigByActionRequest.py @@ -0,0 +1,42 @@ +# 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 +class ListConfigByActionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListConfigByAction','cloudwf') + + def get_SearchName(self): + return self.get_query_params().get('SearchName') + + def set_SearchName(self,SearchName): + self.add_query_param('SearchName',SearchName) + + def get_Limit(self): + return self.get_query_params().get('Limit') + + def set_Limit(self,Limit): + self.add_query_param('Limit',Limit) + + def get_ActionName(self): + return self.get_query_params().get('ActionName') + + def set_ActionName(self,ActionName): + self.add_query_param('ActionName',ActionName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListGroupApBriefConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListGroupApBriefConfigRequest.py new file mode 100644 index 0000000000..1cdfaefc8c --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListGroupApBriefConfigRequest.py @@ -0,0 +1,72 @@ +# 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 +class ListGroupApBriefConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListGroupApBriefConfig','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchName(self): + return self.get_query_params().get('SearchName') + + def set_SearchName(self,SearchName): + self.add_query_param('SearchName',SearchName) + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) + + def get_ColCnt(self): + return self.get_query_params().get('ColCnt') + + def set_ColCnt(self,ColCnt): + self.add_query_param('ColCnt',ColCnt) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_SearchMac(self): + return self.get_query_params().get('SearchMac') + + def set_SearchMac(self,SearchMac): + self.add_query_param('SearchMac',SearchMac) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListPageConfigTemplateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListPageConfigTemplateRequest.py new file mode 100644 index 0000000000..8df57a0869 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListPageConfigTemplateRequest.py @@ -0,0 +1,42 @@ +# 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 +class ListPageConfigTemplateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListPageConfigTemplate','cloudwf') + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_SearchTempName(self): + return self.get_query_params().get('SearchTempName') + + def set_SearchTempName(self,SearchTempName): + self.add_query_param('SearchTempName',SearchTempName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListPortalTemplateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListPortalTemplateRequest.py new file mode 100644 index 0000000000..39769e38cb --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListPortalTemplateRequest.py @@ -0,0 +1,54 @@ +# 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 +class ListPortalTemplateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListPortalTemplate','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) + + def get_SearchTempName(self): + return self.get_query_params().get('SearchTempName') + + def set_SearchTempName(self,SearchTempName): + self.add_query_param('SearchTempName',SearchTempName) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListProbeinfoRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListProbeinfoRequest.py new file mode 100644 index 0000000000..673e7bf661 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListProbeinfoRequest.py @@ -0,0 +1,66 @@ +# 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 +class ListProbeinfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListProbeinfo','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchUserMac(self): + return self.get_query_params().get('SearchUserMac') + + def set_SearchUserMac(self,SearchUserMac): + self.add_query_param('SearchUserMac',SearchUserMac) + + def get_SearchSensorMac(self): + return self.get_query_params().get('SearchSensorMac') + + def set_SearchSensorMac(self,SearchSensorMac): + self.add_query_param('SearchSensorMac',SearchSensorMac) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_SearchSensorName(self): + return self.get_query_params().get('SearchSensorName') + + def set_SearchSensorName(self,SearchSensorName): + self.add_query_param('SearchSensorName',SearchSensorName) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListStaOnoffLogRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListStaOnoffLogRequest.py new file mode 100644 index 0000000000..2a9a90bdfc --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListStaOnoffLogRequest.py @@ -0,0 +1,72 @@ +# 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 +class ListStaOnoffLogRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListStaOnoffLog','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchSsid(self): + return self.get_query_params().get('SearchSsid') + + def set_SearchSsid(self,SearchSsid): + self.add_query_param('SearchSsid',SearchSsid) + + def get_SearchApName(self): + return self.get_query_params().get('SearchApName') + + def set_SearchApName(self,SearchApName): + self.add_query_param('SearchApName',SearchApName) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_SearchUsername(self): + return self.get_query_params().get('SearchUsername') + + def set_SearchUsername(self,SearchUsername): + self.add_query_param('SearchUsername',SearchUsername) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListStaStatusRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListStaStatusRequest.py new file mode 100644 index 0000000000..da0bd41602 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListStaStatusRequest.py @@ -0,0 +1,102 @@ +# 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 +class ListStaStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListStaStatus','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_SearchGroupName(self): + return self.get_query_params().get('SearchGroupName') + + def set_SearchGroupName(self,SearchGroupName): + self.add_query_param('SearchGroupName',SearchGroupName) + + def get_SearchStatus(self): + return self.get_query_params().get('SearchStatus') + + def set_SearchStatus(self,SearchStatus): + self.add_query_param('SearchStatus',SearchStatus) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_SearchUsername(self): + return self.get_query_params().get('SearchUsername') + + def set_SearchUsername(self,SearchUsername): + self.add_query_param('SearchUsername',SearchUsername) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) + + def get_SearchProtocal(self): + return self.get_query_params().get('SearchProtocal') + + def set_SearchProtocal(self,SearchProtocal): + self.add_query_param('SearchProtocal',SearchProtocal) + + def get_SearchSsid(self): + return self.get_query_params().get('SearchSsid') + + def set_SearchSsid(self,SearchSsid): + self.add_query_param('SearchSsid',SearchSsid) + + def get_SearchApName(self): + return self.get_query_params().get('SearchApName') + + def set_SearchApName(self,SearchApName): + self.add_query_param('SearchApName',SearchApName) + + def get_SearchIp(self): + return self.get_query_params().get('SearchIp') + + def set_SearchIp(self,SearchIp): + self.add_query_param('SearchIp',SearchIp) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_SearchMac(self): + return self.get_query_params().get('SearchMac') + + def set_SearchMac(self,SearchMac): + self.add_query_param('SearchMac',SearchMac) + + def get_SearchDescription(self): + return self.get_query_params().get('SearchDescription') + + def set_SearchDescription(self,SearchDescription): + self.add_query_param('SearchDescription',SearchDescription) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListSubAccountPermissionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListSubAccountPermissionRequest.py new file mode 100644 index 0000000000..06c8760fa4 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListSubAccountPermissionRequest.py @@ -0,0 +1,42 @@ +# 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 +class ListSubAccountPermissionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListSubAccountPermission','cloudwf') + + def get_SearchUid(self): + return self.get_query_params().get('SearchUid') + + def set_SearchUid(self,SearchUid): + self.add_query_param('SearchUid',SearchUid) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListUmengPagePermission4RootRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListUmengPagePermission4RootRequest.py new file mode 100644 index 0000000000..a77cf48dbc --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListUmengPagePermission4RootRequest.py @@ -0,0 +1,54 @@ +# 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 +class ListUmengPagePermission4RootRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListUmengPagePermission4Root','cloudwf') + + def get_OrderCol(self): + return self.get_query_params().get('OrderCol') + + def set_OrderCol(self,OrderCol): + self.add_query_param('OrderCol',OrderCol) + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_SearchEmail(self): + return self.get_query_params().get('SearchEmail') + + def set_SearchEmail(self,SearchEmail): + self.add_query_param('SearchEmail',SearchEmail) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) + + def get_OrderDir(self): + return self.get_query_params().get('OrderDir') + + def set_OrderDir(self,OrderDir): + self.add_query_param('OrderDir',OrderDir) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListUpgradeImgRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListUpgradeImgRequest.py new file mode 100644 index 0000000000..683d629a94 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ListUpgradeImgRequest.py @@ -0,0 +1,36 @@ +# 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 +class ListUpgradeImgRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ListUpgradeImg','cloudwf') + + def get_Length(self): + return self.get_query_params().get('Length') + + def set_Length(self,Length): + self.add_query_param('Length',Length) + + def get_PageIndex(self): + return self.get_query_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_query_param('PageIndex',PageIndex) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ModifySubAccountPermissionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ModifySubAccountPermissionRequest.py new file mode 100644 index 0000000000..0b719ba55a --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ModifySubAccountPermissionRequest.py @@ -0,0 +1,60 @@ +# 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 +class ModifySubAccountPermissionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ModifySubAccountPermission','cloudwf') + + def get_ShopGroupIdss(self): + return self.get_query_params().get('ShopGroupIdss') + + def set_ShopGroupIdss(self,ShopGroupIdss): + for i in range(len(ShopGroupIdss)): + if ShopGroupIdss[i] is not None: + self.add_query_param('ShopGroupIds.' + str(i + 1) , ShopGroupIdss[i]); + + def get_ShopIdss(self): + return self.get_query_params().get('ShopIdss') + + def set_ShopIdss(self,ShopIdss): + for i in range(len(ShopIdss)): + if ShopIdss[i] is not None: + self.add_query_param('ShopIds.' + str(i + 1) , ShopIdss[i]); + + def get_PagePermission(self): + return self.get_query_params().get('PagePermission') + + def set_PagePermission(self,PagePermission): + self.add_query_param('PagePermission',PagePermission) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_BusinessIdss(self): + return self.get_query_params().get('BusinessIdss') + + def set_BusinessIdss(self,BusinessIdss): + for i in range(len(BusinessIdss)): + if BusinessIdss[i] is not None: + self.add_query_param('BusinessIds.' + str(i + 1) , BusinessIdss[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateAnalyseRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateAnalyseRequest.py new file mode 100644 index 0000000000..1d7d612f66 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateAnalyseRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemFlowrateAnalyseRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemFlowrateAnalyse','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateIntelligentRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateIntelligentRequest.py new file mode 100644 index 0000000000..d8f71626e4 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateIntelligentRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemFlowrateIntelligentRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemFlowrateIntelligent','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateMonitorRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateMonitorRequest.py new file mode 100644 index 0000000000..c7b2a24ae5 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateMonitorRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemFlowrateMonitorRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemFlowrateMonitor','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateOverviewRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateOverviewRequest.py new file mode 100644 index 0000000000..d0599f7d6b --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateOverviewRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemFlowrateOverviewRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemFlowrateOverview','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateRankingRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateRankingRequest.py new file mode 100644 index 0000000000..61e9a2b0e0 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemFlowrateRankingRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemFlowrateRankingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemFlowrateRanking','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemHeatLineRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemHeatLineRequest.py new file mode 100644 index 0000000000..8496551e71 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemHeatLineRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemHeatLineRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemHeatLine','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemHeatMapRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemHeatMapRequest.py new file mode 100644 index 0000000000..904c8b87eb --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemHeatMapRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemHeatMapRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemHeatMap','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemHeatSettingRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemHeatSettingRequest.py new file mode 100644 index 0000000000..bf1c4b3f1d --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemHeatSettingRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemHeatSettingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemHeatSetting','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemMarketingCustomerRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemMarketingCustomerRequest.py new file mode 100644 index 0000000000..9532ab7a3b --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemMarketingCustomerRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemMarketingCustomerRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemMarketingCustomer','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemMarketingPotentialRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemMarketingPotentialRequest.py new file mode 100644 index 0000000000..e48b03968e --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemMarketingPotentialRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemMarketingPotentialRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemMarketingPotential','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemMarketingSettingDataRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemMarketingSettingDataRequest.py new file mode 100644 index 0000000000..06f0bf5999 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemMarketingSettingDataRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemMarketingSettingDataRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemMarketingSettingData','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemSitingContrastRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemSitingContrastRequest.py new file mode 100644 index 0000000000..d5b825b90e --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemSitingContrastRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemSitingContrastRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemSitingContrast','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemSitingSelctionRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemSitingSelctionRequest.py new file mode 100644 index 0000000000..c5bc8cda00 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OemSitingSelctionRequest.py @@ -0,0 +1,30 @@ +# 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 +class OemSitingSelctionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OemSitingSelction','cloudwf') + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OnoffGroupApRadioRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OnoffGroupApRadioRequest.py new file mode 100644 index 0000000000..8a5224012b --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/OnoffGroupApRadioRequest.py @@ -0,0 +1,36 @@ +# 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 +class OnoffGroupApRadioRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'OnoffGroupApRadio','cloudwf') + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) + + def get_Disabled(self): + return self.get_query_params().get('Disabled') + + def set_Disabled(self,Disabled): + self.add_query_param('Disabled',Disabled) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/PeripheryAnalyseRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/PeripheryAnalyseRequest.py new file mode 100644 index 0000000000..447116c109 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/PeripheryAnalyseRequest.py @@ -0,0 +1,30 @@ +# 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 +class PeripheryAnalyseRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'PeripheryAnalyse','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProduceInstanceRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProduceInstanceRequest.py new file mode 100644 index 0000000000..c6539d9e8f --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProduceInstanceRequest.py @@ -0,0 +1,36 @@ +# 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 +class ProduceInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ProduceInstance','cloudwf') + + def get_TraceId(self): + return self.get_query_params().get('TraceId') + + def set_TraceId(self,TraceId): + self.add_query_param('TraceId',TraceId) + + def get_ProduceParameter(self): + return self.get_query_params().get('ProduceParameter') + + def set_ProduceParameter(self,ProduceParameter): + self.add_query_param('ProduceParameter',ProduceParameter) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileBaseRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileBaseRequest.py new file mode 100644 index 0000000000..8234dad656 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileBaseRequest.py @@ -0,0 +1,48 @@ +# 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 +class ProfileBaseRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ProfileBase','cloudwf') + + def get_BeginDate(self): + return self.get_query_params().get('BeginDate') + + def set_BeginDate(self,BeginDate): + self.add_query_param('BeginDate',BeginDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_DataType(self): + return self.get_query_params().get('DataType') + + def set_DataType(self,DataType): + self.add_query_param('DataType',DataType) + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileConsumeRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileConsumeRequest.py new file mode 100644 index 0000000000..2631ae3b01 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileConsumeRequest.py @@ -0,0 +1,48 @@ +# 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 +class ProfileConsumeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ProfileConsume','cloudwf') + + def get_BeginDate(self): + return self.get_query_params().get('BeginDate') + + def set_BeginDate(self,BeginDate): + self.add_query_param('BeginDate',BeginDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_DataType(self): + return self.get_query_params().get('DataType') + + def set_DataType(self,DataType): + self.add_query_param('DataType',DataType) + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileDistrictRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileDistrictRequest.py new file mode 100644 index 0000000000..8609359fff --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileDistrictRequest.py @@ -0,0 +1,48 @@ +# 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 +class ProfileDistrictRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ProfileDistrict','cloudwf') + + def get_BeginDate(self): + return self.get_query_params().get('BeginDate') + + def set_BeginDate(self,BeginDate): + self.add_query_param('BeginDate',BeginDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_DataType(self): + return self.get_query_params().get('DataType') + + def set_DataType(self,DataType): + self.add_query_param('DataType',DataType) + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileHistoryListRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileHistoryListRequest.py new file mode 100644 index 0000000000..60e7ac7d2c --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileHistoryListRequest.py @@ -0,0 +1,48 @@ +# 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 +class ProfileHistoryListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ProfileHistoryList','cloudwf') + + def get_Idtype(self): + return self.get_query_params().get('Idtype') + + def set_Idtype(self,Idtype): + self.add_query_param('Idtype',Idtype) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_Per(self): + return self.get_query_params().get('Per') + + def set_Per(self,Per): + self.add_query_param('Per',Per) + + def get_Agsid(self): + return self.get_query_params().get('Agsid') + + def set_Agsid(self,Agsid): + self.add_query_param('Agsid',Agsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileHistoryRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileHistoryRequest.py new file mode 100644 index 0000000000..e6f7f70401 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileHistoryRequest.py @@ -0,0 +1,48 @@ +# 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 +class ProfileHistoryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ProfileHistory','cloudwf') + + def get_Idtype(self): + return self.get_query_params().get('Idtype') + + def set_Idtype(self,Idtype): + self.add_query_param('Idtype',Idtype) + + def get_EndMonth(self): + return self.get_query_params().get('EndMonth') + + def set_EndMonth(self,EndMonth): + self.add_query_param('EndMonth',EndMonth) + + def get_BeginMonth(self): + return self.get_query_params().get('BeginMonth') + + def set_BeginMonth(self,BeginMonth): + self.add_query_param('BeginMonth',BeginMonth) + + def get_Agsid(self): + return self.get_query_params().get('Agsid') + + def set_Agsid(self,Agsid): + self.add_query_param('Agsid',Agsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileMediaRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileMediaRequest.py new file mode 100644 index 0000000000..cfaa680168 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileMediaRequest.py @@ -0,0 +1,48 @@ +# 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 +class ProfileMediaRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ProfileMedia','cloudwf') + + def get_BeginDate(self): + return self.get_query_params().get('BeginDate') + + def set_BeginDate(self,BeginDate): + self.add_query_param('BeginDate',BeginDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_DataType(self): + return self.get_query_params().get('DataType') + + def set_DataType(self,DataType): + self.add_query_param('DataType',DataType) + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileTagRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileTagRequest.py new file mode 100644 index 0000000000..de8efad4d8 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileTagRequest.py @@ -0,0 +1,66 @@ +# 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 +class ProfileTagRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ProfileTag','cloudwf') + + def get_Idtype(self): + return self.get_query_params().get('Idtype') + + def set_Idtype(self,Idtype): + self.add_query_param('Idtype',Idtype) + + def get_BeginDate(self): + return self.get_query_params().get('BeginDate') + + def set_BeginDate(self,BeginDate): + self.add_query_param('BeginDate',BeginDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_AppType(self): + return self.get_query_params().get('AppType') + + def set_AppType(self,AppType): + self.add_query_param('AppType',AppType) + + def get_Tag(self): + return self.get_query_params().get('Tag') + + def set_Tag(self,Tag): + self.add_query_param('Tag',Tag) + + def get_Agsid(self): + return self.get_query_params().get('Agsid') + + def set_Agsid(self,Agsid): + self.add_query_param('Agsid',Agsid) + + def get_AreaNumber(self): + return self.get_query_params().get('AreaNumber') + + def set_AreaNumber(self,AreaNumber): + self.add_query_param('AreaNumber',AreaNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileTradeRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileTradeRequest.py new file mode 100644 index 0000000000..696c1c5b64 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ProfileTradeRequest.py @@ -0,0 +1,48 @@ +# 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 +class ProfileTradeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ProfileTrade','cloudwf') + + def get_BeginDate(self): + return self.get_query_params().get('BeginDate') + + def set_BeginDate(self,BeginDate): + self.add_query_param('BeginDate',BeginDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_DataType(self): + return self.get_query_params().get('DataType') + + def set_DataType(self,DataType): + self.add_query_param('DataType',DataType) + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/PutOssFileRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/PutOssFileRequest.py new file mode 100644 index 0000000000..7cfb8881ff --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/PutOssFileRequest.py @@ -0,0 +1,30 @@ +# 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 +class PutOssFileRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'PutOssFile','cloudwf') + + def get_JsonData(self): + return self.get_query_params().get('JsonData') + + def set_JsonData(self,JsonData): + self.add_query_param('JsonData',JsonData) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/QueryRenewPriceRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/QueryRenewPriceRequest.py new file mode 100644 index 0000000000..e2dc812c73 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/QueryRenewPriceRequest.py @@ -0,0 +1,38 @@ +# 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 +class QueryRenewPriceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'QueryRenewPrice','cloudwf') + + def get_TimeCycleNum(self): + return self.get_query_params().get('TimeCycleNum') + + def set_TimeCycleNum(self,TimeCycleNum): + self.add_query_param('TimeCycleNum',TimeCycleNum) + + def get_ApLists(self): + return self.get_query_params().get('ApLists') + + def set_ApLists(self,ApLists): + for i in range(len(ApLists)): + if ApLists[i] is not None: + self.add_query_param('ApList.' + str(i + 1) , ApLists[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReleaseInstanceRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReleaseInstanceRequest.py new file mode 100644 index 0000000000..00894d75a7 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReleaseInstanceRequest.py @@ -0,0 +1,36 @@ +# 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 +class ReleaseInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ReleaseInstance','cloudwf') + + def get_TraceId(self): + return self.get_query_params().get('TraceId') + + def set_TraceId(self,TraceId): + self.add_query_param('TraceId',TraceId) + + def get_SpMsg(self): + return self.get_query_params().get('SpMsg') + + def set_SpMsg(self,SpMsg): + self.add_query_param('SpMsg',SpMsg) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/RepairApRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/RepairApRequest.py new file mode 100644 index 0000000000..f05da70ca0 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/RepairApRequest.py @@ -0,0 +1,30 @@ +# 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 +class RepairApRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'RepairAp','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/RepairGroupApRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/RepairGroupApRequest.py new file mode 100644 index 0000000000..cb44837950 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/RepairGroupApRequest.py @@ -0,0 +1,30 @@ +# 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 +class RepairGroupApRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'RepairGroupAp','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportDayRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportDayRequest.py new file mode 100644 index 0000000000..b62ba8e494 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportDayRequest.py @@ -0,0 +1,42 @@ +# 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 +class ReportDayRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ReportDay','cloudwf') + + def get_BeginDate(self): + return self.get_query_params().get('BeginDate') + + def set_BeginDate(self,BeginDate): + self.add_query_param('BeginDate',BeginDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_Agsid(self): + return self.get_query_params().get('Agsid') + + def set_Agsid(self,Agsid): + self.add_query_param('Agsid',Agsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportHourRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportHourRequest.py new file mode 100644 index 0000000000..a61bd0be44 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportHourRequest.py @@ -0,0 +1,42 @@ +# 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 +class ReportHourRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ReportHour','cloudwf') + + def get_BeginDate(self): + return self.get_query_params().get('BeginDate') + + def set_BeginDate(self,BeginDate): + self.add_query_param('BeginDate',BeginDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_Agsid(self): + return self.get_query_params().get('Agsid') + + def set_Agsid(self,Agsid): + self.add_query_param('Agsid',Agsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportMinuteRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportMinuteRequest.py new file mode 100644 index 0000000000..46923668d0 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportMinuteRequest.py @@ -0,0 +1,42 @@ +# 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 +class ReportMinuteRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ReportMinute','cloudwf') + + def get_BeginDate(self): + return self.get_query_params().get('BeginDate') + + def set_BeginDate(self,BeginDate): + self.add_query_param('BeginDate',BeginDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_Agsid(self): + return self.get_query_params().get('Agsid') + + def set_Agsid(self,Agsid): + self.add_query_param('Agsid',Agsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportRealtimeRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportRealtimeRequest.py new file mode 100644 index 0000000000..2adcd36ec2 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportRealtimeRequest.py @@ -0,0 +1,30 @@ +# 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 +class ReportRealtimeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ReportRealtime','cloudwf') + + def get_Agsid(self): + return self.get_query_params().get('Agsid') + + def set_Agsid(self,Agsid): + self.add_query_param('Agsid',Agsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportZoneDayRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportZoneDayRequest.py new file mode 100644 index 0000000000..a8216d7805 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportZoneDayRequest.py @@ -0,0 +1,42 @@ +# 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 +class ReportZoneDayRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ReportZoneDay','cloudwf') + + def get_BeginDate(self): + return self.get_query_params().get('BeginDate') + + def set_BeginDate(self,BeginDate): + self.add_query_param('BeginDate',BeginDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_Agsid(self): + return self.get_query_params().get('Agsid') + + def set_Agsid(self,Agsid): + self.add_query_param('Agsid',Agsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportZoneHourRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportZoneHourRequest.py new file mode 100644 index 0000000000..f431114b6b --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportZoneHourRequest.py @@ -0,0 +1,42 @@ +# 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 +class ReportZoneHourRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ReportZoneHour','cloudwf') + + def get_BeginDate(self): + return self.get_query_params().get('BeginDate') + + def set_BeginDate(self,BeginDate): + self.add_query_param('BeginDate',BeginDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_Agsid(self): + return self.get_query_params().get('Agsid') + + def set_Agsid(self,Agsid): + self.add_query_param('Agsid',Agsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportZoneMinuteRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportZoneMinuteRequest.py new file mode 100644 index 0000000000..d944f2ac21 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportZoneMinuteRequest.py @@ -0,0 +1,42 @@ +# 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 +class ReportZoneMinuteRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ReportZoneMinute','cloudwf') + + def get_BeginDate(self): + return self.get_query_params().get('BeginDate') + + def set_BeginDate(self,BeginDate): + self.add_query_param('BeginDate',BeginDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_Agsid(self): + return self.get_query_params().get('Agsid') + + def set_Agsid(self,Agsid): + self.add_query_param('Agsid',Agsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportZoneRealtimeRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportZoneRealtimeRequest.py new file mode 100644 index 0000000000..86ef738c71 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ReportZoneRealtimeRequest.py @@ -0,0 +1,30 @@ +# 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 +class ReportZoneRealtimeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ReportZoneRealtime','cloudwf') + + def get_Agsid(self): + return self.get_query_params().get('Agsid') + + def set_Agsid(self,Agsid): + self.add_query_param('Agsid',Agsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ResetApConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ResetApConfigRequest.py new file mode 100644 index 0000000000..0dbb18711d --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ResetApConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class ResetApConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ResetApConfig','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ResetApRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ResetApRequest.py new file mode 100644 index 0000000000..4d3bb5c98b --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ResetApRequest.py @@ -0,0 +1,30 @@ +# 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 +class ResetApRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ResetAp','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ResumeInstanceRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ResumeInstanceRequest.py new file mode 100644 index 0000000000..2ce2df365c --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ResumeInstanceRequest.py @@ -0,0 +1,36 @@ +# 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 +class ResumeInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ResumeInstance','cloudwf') + + def get_TraceId(self): + return self.get_query_params().get('TraceId') + + def set_TraceId(self,TraceId): + self.add_query_param('TraceId',TraceId) + + def get_SpMsg(self): + return self.get_query_params().get('SpMsg') + + def set_SpMsg(self,SpMsg): + self.add_query_param('SpMsg',SpMsg) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveAccountConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveAccountConfigRequest.py new file mode 100644 index 0000000000..8bbe2bdc29 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveAccountConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class SaveAccountConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveAccountConfig','cloudwf') + + def get_JsonData(self): + return self.get_query_params().get('JsonData') + + def set_JsonData(self,JsonData): + self.add_query_param('JsonData',JsonData) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApConfigRequest.py new file mode 100644 index 0000000000..75a0976b83 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApConfigRequest.py @@ -0,0 +1,90 @@ +# 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 +class SaveApConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveApConfig','cloudwf') + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_ApAssetId(self): + return self.get_query_params().get('ApAssetId') + + def set_ApAssetId(self,ApAssetId): + self.add_query_param('ApAssetId',ApAssetId) + + def get_LogLevel(self): + return self.get_query_params().get('LogLevel') + + def set_LogLevel(self,LogLevel): + self.add_query_param('LogLevel',LogLevel) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_EchoInt(self): + return self.get_query_params().get('EchoInt') + + def set_EchoInt(self,EchoInt): + self.add_query_param('EchoInt',EchoInt) + + def get_Scan(self): + return self.get_query_params().get('Scan') + + def set_Scan(self,Scan): + self.add_query_param('Scan',Scan) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Dai(self): + return self.get_query_params().get('Dai') + + def set_Dai(self,Dai): + self.add_query_param('Dai',Dai) + + def get_LogIp(self): + return self.get_query_params().get('LogIp') + + def set_LogIp(self,LogIp): + self.add_query_param('LogIp',LogIp) + + def get_Mac(self): + return self.get_query_params().get('Mac') + + def set_Mac(self,Mac): + self.add_query_param('Mac',Mac) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApMapInfoRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApMapInfoRequest.py new file mode 100644 index 0000000000..6adebc614e --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApMapInfoRequest.py @@ -0,0 +1,30 @@ +# 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 +class SaveApMapInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveApMapInfo','cloudwf') + + def get_JsonData(self): + return self.get_query_params().get('JsonData') + + def set_JsonData(self,JsonData): + self.add_query_param('JsonData',JsonData) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApPortalConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApPortalConfigRequest.py new file mode 100644 index 0000000000..76e2fb60be --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApPortalConfigRequest.py @@ -0,0 +1,78 @@ +# 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 +class SaveApPortalConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveApPortalConfig','cloudwf') + + def get_AuthKey(self): + return self.get_query_params().get('AuthKey') + + def set_AuthKey(self,AuthKey): + self.add_query_param('AuthKey',AuthKey) + + def get_PortalUrl(self): + return self.get_query_params().get('PortalUrl') + + def set_PortalUrl(self,PortalUrl): + self.add_query_param('PortalUrl',PortalUrl) + + def get_PortalStatus(self): + return self.get_query_params().get('PortalStatus') + + def set_PortalStatus(self,PortalStatus): + self.add_query_param('PortalStatus',PortalStatus) + + def get_Whitelist(self): + return self.get_query_params().get('Whitelist') + + def set_Whitelist(self,Whitelist): + self.add_query_param('Whitelist',Whitelist) + + def get_CheckUrl(self): + return self.get_query_params().get('CheckUrl') + + def set_CheckUrl(self,CheckUrl): + self.add_query_param('CheckUrl',CheckUrl) + + def get_ApConfigId(self): + return self.get_query_params().get('ApConfigId') + + def set_ApConfigId(self,ApConfigId): + self.add_query_param('ApConfigId',ApConfigId) + + def get_AuthSecret(self): + return self.get_query_params().get('AuthSecret') + + def set_AuthSecret(self,AuthSecret): + self.add_query_param('AuthSecret',AuthSecret) + + def get_WebAuthUrl(self): + return self.get_query_params().get('WebAuthUrl') + + def set_WebAuthUrl(self,WebAuthUrl): + self.add_query_param('WebAuthUrl',WebAuthUrl) + + def get_Network(self): + return self.get_query_params().get('Network') + + def set_Network(self,Network): + self.add_query_param('Network',Network) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApRadioConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApRadioConfigRequest.py new file mode 100644 index 0000000000..e55fdcc4a6 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApRadioConfigRequest.py @@ -0,0 +1,144 @@ +# 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 +class SaveApRadioConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveApRadioConfig','cloudwf') + + def get_RequireMode(self): + return self.get_query_params().get('RequireMode') + + def set_RequireMode(self,RequireMode): + self.add_query_param('RequireMode',RequireMode) + + def get_Htmode(self): + return self.get_query_params().get('Htmode') + + def set_Htmode(self,Htmode): + self.add_query_param('Htmode',Htmode) + + def get_Frag(self): + return self.get_query_params().get('Frag') + + def set_Frag(self,Frag): + self.add_query_param('Frag',Frag) + + def get_Minrate(self): + return self.get_query_params().get('Minrate') + + def set_Minrate(self,Minrate): + self.add_query_param('Minrate',Minrate) + + def get_McastRate(self): + return self.get_query_params().get('McastRate') + + def set_McastRate(self,McastRate): + self.add_query_param('McastRate',McastRate) + + def get_Probereq(self): + return self.get_query_params().get('Probereq') + + def set_Probereq(self,Probereq): + self.add_query_param('Probereq',Probereq) + + def get_Channel(self): + return self.get_query_params().get('Channel') + + def set_Channel(self,Channel): + self.add_query_param('Channel',Channel) + + def get_Shortgi(self): + return self.get_query_params().get('Shortgi') + + def set_Shortgi(self,Shortgi): + self.add_query_param('Shortgi',Shortgi) + + def get_Hwmode(self): + return self.get_query_params().get('Hwmode') + + def set_Hwmode(self,Hwmode): + self.add_query_param('Hwmode',Hwmode) + + def get_Uapsd(self): + return self.get_query_params().get('Uapsd') + + def set_Uapsd(self,Uapsd): + self.add_query_param('Uapsd',Uapsd) + + def get_BeaconInt(self): + return self.get_query_params().get('BeaconInt') + + def set_BeaconInt(self,BeaconInt): + self.add_query_param('BeaconInt',BeaconInt) + + def get_Mac(self): + return self.get_query_params().get('Mac') + + def set_Mac(self,Mac): + self.add_query_param('Mac',Mac) + + def get_Rts(self): + return self.get_query_params().get('Rts') + + def set_Rts(self,Rts): + self.add_query_param('Rts',Rts) + + def get_Txpower(self): + return self.get_query_params().get('Txpower') + + def set_Txpower(self,Txpower): + self.add_query_param('Txpower',Txpower) + + def get_Noscan(self): + return self.get_query_params().get('Noscan') + + def set_Noscan(self,Noscan): + self.add_query_param('Noscan',Noscan) + + def get_BcastRate(self): + return self.get_query_params().get('BcastRate') + + def set_BcastRate(self,BcastRate): + self.add_query_param('BcastRate',BcastRate) + + def get_Disabled(self): + return self.get_query_params().get('Disabled') + + def set_Disabled(self,Disabled): + self.add_query_param('Disabled',Disabled) + + def get_InstantlyEffective(self): + return self.get_query_params().get('InstantlyEffective') + + def set_InstantlyEffective(self,InstantlyEffective): + self.add_query_param('InstantlyEffective',InstantlyEffective) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_RadioIndex(self): + return self.get_query_params().get('RadioIndex') + + def set_RadioIndex(self,RadioIndex): + self.add_query_param('RadioIndex',RadioIndex) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApRadioSsidConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApRadioSsidConfigRequest.py new file mode 100644 index 0000000000..3a56ce97cd --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApRadioSsidConfigRequest.py @@ -0,0 +1,282 @@ +# 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 +class SaveApRadioSsidConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveApRadioSsidConfig','cloudwf') + + def get_Nasid(self): + return self.get_query_params().get('Nasid') + + def set_Nasid(self,Nasid): + self.add_query_param('Nasid',Nasid) + + def get_AuthPort(self): + return self.get_query_params().get('AuthPort') + + def set_AuthPort(self,AuthPort): + self.add_query_param('AuthPort',AuthPort) + + def get_Hidden(self): + return self.get_query_params().get('Hidden') + + def set_Hidden(self,Hidden): + self.add_query_param('Hidden',Hidden) + + def get_DynamicVlan(self): + return self.get_query_params().get('DynamicVlan') + + def set_DynamicVlan(self,DynamicVlan): + self.add_query_param('DynamicVlan',DynamicVlan) + + def get_AuthServer(self): + return self.get_query_params().get('AuthServer') + + def set_AuthServer(self,AuthServer): + self.add_query_param('AuthServer',AuthServer) + + def get_SecondaryAcctServer(self): + return self.get_query_params().get('SecondaryAcctServer') + + def set_SecondaryAcctServer(self,SecondaryAcctServer): + self.add_query_param('SecondaryAcctServer',SecondaryAcctServer) + + def get_Ssid(self): + return self.get_query_params().get('Ssid') + + def set_Ssid(self,Ssid): + self.add_query_param('Ssid',Ssid) + + def get_Cir(self): + return self.get_query_params().get('Cir') + + def set_Cir(self,Cir): + self.add_query_param('Cir',Cir) + + def get_Mac(self): + return self.get_query_params().get('Mac') + + def set_Mac(self,Mac): + self.add_query_param('Mac',Mac) + + def get_SecondaryAcctSecret(self): + return self.get_query_params().get('SecondaryAcctSecret') + + def set_SecondaryAcctSecret(self,SecondaryAcctSecret): + self.add_query_param('SecondaryAcctSecret',SecondaryAcctSecret) + + def get_Ieee80211w(self): + return self.get_query_params().get('Ieee80211w') + + def set_Ieee80211w(self,Ieee80211w): + self.add_query_param('Ieee80211w',Ieee80211w) + + def get_Network(self): + return self.get_query_params().get('Network') + + def set_Network(self,Network): + self.add_query_param('Network',Network) + + def get_Isolate(self): + return self.get_query_params().get('Isolate') + + def set_Isolate(self,Isolate): + self.add_query_param('Isolate',Isolate) + + def get_ApAssetId(self): + return self.get_query_params().get('ApAssetId') + + def set_ApAssetId(self,ApAssetId): + self.add_query_param('ApAssetId',ApAssetId) + + def get_EncKey(self): + return self.get_query_params().get('EncKey') + + def set_EncKey(self,EncKey): + self.add_query_param('EncKey',EncKey) + + def get_MulticastForward(self): + return self.get_query_params().get('MulticastForward') + + def set_MulticastForward(self,MulticastForward): + self.add_query_param('MulticastForward',MulticastForward) + + def get_Encryption(self): + return self.get_query_params().get('Encryption') + + def set_Encryption(self,Encryption): + self.add_query_param('Encryption',Encryption) + + def get_Wmm(self): + return self.get_query_params().get('Wmm') + + def set_Wmm(self,Wmm): + self.add_query_param('Wmm',Wmm) + + def get_AuthCache(self): + return self.get_query_params().get('AuthCache') + + def set_AuthCache(self,AuthCache): + self.add_query_param('AuthCache',AuthCache) + + def get_Disabled(self): + return self.get_query_params().get('Disabled') + + def set_Disabled(self,Disabled): + self.add_query_param('Disabled',Disabled) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_RadioIndex(self): + return self.get_query_params().get('RadioIndex') + + def set_RadioIndex(self,RadioIndex): + self.add_query_param('RadioIndex',RadioIndex) + + def get_IgnoreWeakProbe(self): + return self.get_query_params().get('IgnoreWeakProbe') + + def set_IgnoreWeakProbe(self,IgnoreWeakProbe): + self.add_query_param('IgnoreWeakProbe',IgnoreWeakProbe) + + def get_Maxassoc(self): + return self.get_query_params().get('Maxassoc') + + def set_Maxassoc(self,Maxassoc): + self.add_query_param('Maxassoc',Maxassoc) + + def get_AcctServer(self): + return self.get_query_params().get('AcctServer') + + def set_AcctServer(self,AcctServer): + self.add_query_param('AcctServer',AcctServer) + + def get_SecondaryAuthServer(self): + return self.get_query_params().get('SecondaryAuthServer') + + def set_SecondaryAuthServer(self,SecondaryAuthServer): + self.add_query_param('SecondaryAuthServer',SecondaryAuthServer) + + def get_DaeClient(self): + return self.get_query_params().get('DaeClient') + + def set_DaeClient(self,DaeClient): + self.add_query_param('DaeClient',DaeClient) + + def get_DaeSecret(self): + return self.get_query_params().get('DaeSecret') + + def set_DaeSecret(self,DaeSecret): + self.add_query_param('DaeSecret',DaeSecret) + + def get_DisassocLowAck(self): + return self.get_query_params().get('DisassocLowAck') + + def set_DisassocLowAck(self,DisassocLowAck): + self.add_query_param('DisassocLowAck',DisassocLowAck) + + def get_SecondaryAuthPort(self): + return self.get_query_params().get('SecondaryAuthPort') + + def set_SecondaryAuthPort(self,SecondaryAuthPort): + self.add_query_param('SecondaryAuthPort',SecondaryAuthPort) + + def get_AcctSecret(self): + return self.get_query_params().get('AcctSecret') + + def set_AcctSecret(self,AcctSecret): + self.add_query_param('AcctSecret',AcctSecret) + + def get_DisassocWeakRssi(self): + return self.get_query_params().get('DisassocWeakRssi') + + def set_DisassocWeakRssi(self,DisassocWeakRssi): + self.add_query_param('DisassocWeakRssi',DisassocWeakRssi) + + def get_SecondaryAcctPort(self): + return self.get_query_params().get('SecondaryAcctPort') + + def set_SecondaryAcctPort(self,SecondaryAcctPort): + self.add_query_param('SecondaryAcctPort',SecondaryAcctPort) + + def get_DaePort(self): + return self.get_query_params().get('DaePort') + + def set_DaePort(self,DaePort): + self.add_query_param('DaePort',DaePort) + + def get_SsidLb(self): + return self.get_query_params().get('SsidLb') + + def set_SsidLb(self,SsidLb): + self.add_query_param('SsidLb',SsidLb) + + def get_AcctPort(self): + return self.get_query_params().get('AcctPort') + + def set_AcctPort(self,AcctPort): + self.add_query_param('AcctPort',AcctPort) + + def get_MaxInactivity(self): + return self.get_query_params().get('MaxInactivity') + + def set_MaxInactivity(self,MaxInactivity): + self.add_query_param('MaxInactivity',MaxInactivity) + + def get_VlanDhcp(self): + return self.get_query_params().get('VlanDhcp') + + def set_VlanDhcp(self,VlanDhcp): + self.add_query_param('VlanDhcp',VlanDhcp) + + def get_InstantlyEffective(self): + return self.get_query_params().get('InstantlyEffective') + + def set_InstantlyEffective(self,InstantlyEffective): + self.add_query_param('InstantlyEffective',InstantlyEffective) + + def get_ShortPreamble(self): + return self.get_query_params().get('ShortPreamble') + + def set_ShortPreamble(self,ShortPreamble): + self.add_query_param('ShortPreamble',ShortPreamble) + + def get_AuthSecret(self): + return self.get_query_params().get('AuthSecret') + + def set_AuthSecret(self,AuthSecret): + self.add_query_param('AuthSecret',AuthSecret) + + def get_SecondaryAuthSecret(self): + return self.get_query_params().get('SecondaryAuthSecret') + + def set_SecondaryAuthSecret(self,SecondaryAuthSecret): + self.add_query_param('SecondaryAuthSecret',SecondaryAuthSecret) + + def get_Ownip(self): + return self.get_query_params().get('Ownip') + + def set_Ownip(self,Ownip): + self.add_query_param('Ownip',Ownip) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApScanConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApScanConfigRequest.py new file mode 100644 index 0000000000..f681e2dc17 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApScanConfigRequest.py @@ -0,0 +1,36 @@ +# 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 +class SaveApScanConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveApScanConfig','cloudwf') + + def get_JsonData(self): + return self.get_query_params().get('JsonData') + + def set_JsonData(self,JsonData): + self.add_query_param('JsonData',JsonData) + + def get_ApConfigId(self): + return self.get_query_params().get('ApConfigId') + + def set_ApConfigId(self,ApConfigId): + self.add_query_param('ApConfigId',ApConfigId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApgroupConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApgroupConfigRequest.py new file mode 100644 index 0000000000..988c66080d --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApgroupConfigRequest.py @@ -0,0 +1,78 @@ +# 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 +class SaveApgroupConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveApgroupConfig','cloudwf') + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_LogLevel(self): + return self.get_query_params().get('LogLevel') + + def set_LogLevel(self,LogLevel): + self.add_query_param('LogLevel',LogLevel) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_EchoInt(self): + return self.get_query_params().get('EchoInt') + + def set_EchoInt(self,EchoInt): + self.add_query_param('EchoInt',EchoInt) + + def get_Scan(self): + return self.get_query_params().get('Scan') + + def set_Scan(self,Scan): + self.add_query_param('Scan',Scan) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Dai(self): + return self.get_query_params().get('Dai') + + def set_Dai(self,Dai): + self.add_query_param('Dai',Dai) + + def get_LogIp(self): + return self.get_query_params().get('LogIp') + + def set_LogIp(self,LogIp): + self.add_query_param('LogIp',LogIp) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApgroupScanConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApgroupScanConfigRequest.py new file mode 100644 index 0000000000..deebf60e95 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApgroupScanConfigRequest.py @@ -0,0 +1,36 @@ +# 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 +class SaveApgroupScanConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveApgroupScanConfig','cloudwf') + + def get_JsonData(self): + return self.get_query_params().get('JsonData') + + def set_JsonData(self,JsonData): + self.add_query_param('JsonData',JsonData) + + def get_ApgroupId(self): + return self.get_query_params().get('ApgroupId') + + def set_ApgroupId(self,ApgroupId): + self.add_query_param('ApgroupId',ApgroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApgroupSsidConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApgroupSsidConfigRequest.py new file mode 100644 index 0000000000..b52059b199 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveApgroupSsidConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class SaveApgroupSsidConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveApgroupSsidConfig','cloudwf') + + def get_JsonData(self): + return self.get_query_params().get('JsonData') + + def set_JsonData(self,JsonData): + self.add_query_param('JsonData',JsonData) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveGroupApRadioConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveGroupApRadioConfigRequest.py new file mode 100644 index 0000000000..007d4dcd03 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveGroupApRadioConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class SaveGroupApRadioConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveGroupApRadioConfig','cloudwf') + + def get_JsonData(self): + return self.get_query_params().get('JsonData') + + def set_JsonData(self,JsonData): + self.add_query_param('JsonData',JsonData) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SavePageConfigTemplateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SavePageConfigTemplateRequest.py new file mode 100644 index 0000000000..d699b1e1b4 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SavePageConfigTemplateRequest.py @@ -0,0 +1,54 @@ +# 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 +class SavePageConfigTemplateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SavePageConfigTemplate','cloudwf') + + def get_TempType(self): + return self.get_query_params().get('TempType') + + def set_TempType(self,TempType): + self.add_query_param('TempType',TempType) + + def get_TempDesc(self): + return self.get_query_params().get('TempDesc') + + def set_TempDesc(self,TempDesc): + self.add_query_param('TempDesc',TempDesc) + + def get_TempName(self): + return self.get_query_params().get('TempName') + + def set_TempName(self,TempName): + self.add_query_param('TempName',TempName) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_TempPermission(self): + return self.get_query_params().get('TempPermission') + + def set_TempPermission(self,TempPermission): + self.add_query_param('TempPermission',TempPermission) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SavePortalConfigRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SavePortalConfigRequest.py new file mode 100644 index 0000000000..d0acfa4e33 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SavePortalConfigRequest.py @@ -0,0 +1,30 @@ +# 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 +class SavePortalConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SavePortalConfig','cloudwf') + + def get_JsonData(self): + return self.get_query_params().get('JsonData') + + def set_JsonData(self,JsonData): + self.add_query_param('JsonData',JsonData) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SavePortalTemplateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SavePortalTemplateRequest.py new file mode 100644 index 0000000000..b60f2816c9 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SavePortalTemplateRequest.py @@ -0,0 +1,60 @@ +# 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 +class SavePortalTemplateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SavePortalTemplate','cloudwf') + + def get_TextContent(self): + return self.get_query_params().get('TextContent') + + def set_TextContent(self,TextContent): + self.add_query_param('TextContent',TextContent) + + def get_TempName(self): + return self.get_query_params().get('TempName') + + def set_TempName(self,TempName): + self.add_query_param('TempName',TempName) + + def get_TextAlign(self): + return self.get_query_params().get('TextAlign') + + def set_TextAlign(self,TextAlign): + self.add_query_param('TextAlign',TextAlign) + + def get_TextColor(self): + return self.get_query_params().get('TextColor') + + def set_TextColor(self,TextColor): + self.add_query_param('TextColor',TextColor) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_OssFileId(self): + return self.get_query_params().get('OssFileId') + + def set_OssFileId(self,OssFileId): + self.add_query_param('OssFileId',OssFileId) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveProbeDataSubscriberRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveProbeDataSubscriberRequest.py new file mode 100644 index 0000000000..4d1ca4cf84 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveProbeDataSubscriberRequest.py @@ -0,0 +1,74 @@ +# 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 +class SaveProbeDataSubscriberRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveProbeDataSubscriber','cloudwf') + + def get_ApiUrl(self): + return self.get_query_params().get('ApiUrl') + + def set_ApiUrl(self,ApiUrl): + self.add_query_param('ApiUrl',ApiUrl) + + def get_ParamGenScript(self): + return self.get_query_params().get('ParamGenScript') + + def set_ParamGenScript(self,ParamGenScript): + self.add_query_param('ParamGenScript',ParamGenScript) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_HttpMethod(self): + return self.get_query_params().get('HttpMethod') + + def set_HttpMethod(self,HttpMethod): + self.add_query_param('HttpMethod',HttpMethod) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_ResourceIdss(self): + return self.get_query_params().get('ResourceIdss') + + def set_ResourceIdss(self,ResourceIdss): + for i in range(len(ResourceIdss)): + if ResourceIdss[i] is not None: + self.add_query_param('ResourceIds.' + str(i + 1) , ResourceIdss[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveStaStatusRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveStaStatusRequest.py new file mode 100644 index 0000000000..c7c0c0d8dc --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveStaStatusRequest.py @@ -0,0 +1,36 @@ +# 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 +class SaveStaStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveStaStatus','cloudwf') + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveUmengPagePermission4RootRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveUmengPagePermission4RootRequest.py new file mode 100644 index 0000000000..e2b7a3357d --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SaveUmengPagePermission4RootRequest.py @@ -0,0 +1,54 @@ +# 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 +class SaveUmengPagePermission4RootRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SaveUmengPagePermission4Root','cloudwf') + + def get_GsPermission(self): + return self.get_query_params().get('GsPermission') + + def set_GsPermission(self,GsPermission): + self.add_query_param('GsPermission',GsPermission) + + def get_AliyunPk(self): + return self.get_query_params().get('AliyunPk') + + def set_AliyunPk(self,AliyunPk): + self.add_query_param('AliyunPk',AliyunPk) + + def get_PagePermission(self): + return self.get_query_params().get('PagePermission') + + def set_PagePermission(self,PagePermission): + self.add_query_param('PagePermission',PagePermission) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SendCommandByMacRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SendCommandByMacRequest.py new file mode 100644 index 0000000000..2ae9a207eb --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SendCommandByMacRequest.py @@ -0,0 +1,38 @@ +# 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 +class SendCommandByMacRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SendCommandByMac','cloudwf') + + def get_MacLists(self): + return self.get_query_params().get('MacLists') + + def set_MacLists(self,MacLists): + for i in range(len(MacLists)): + if MacLists[i] is not None: + self.add_query_param('MacList.' + str(i + 1) , MacLists[i]); + + def get_Command(self): + return self.get_query_params().get('Command') + + def set_Command(self,Command): + self.add_query_param('Command',Command) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SetScanModeRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SetScanModeRequest.py new file mode 100644 index 0000000000..49c3f12819 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SetScanModeRequest.py @@ -0,0 +1,38 @@ +# 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 +class SetScanModeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SetScanMode','cloudwf') + + def get_Operation(self): + return self.get_query_params().get('Operation') + + def set_Operation(self,Operation): + self.add_query_param('Operation',Operation) + + def get_MacLists(self): + return self.get_query_params().get('MacLists') + + def set_MacLists(self,MacLists): + for i in range(len(MacLists)): + if MacLists[i] is not None: + self.add_query_param('MacList.' + str(i + 1) , MacLists[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SetUpgradeImgByModelRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SetUpgradeImgByModelRequest.py new file mode 100644 index 0000000000..367f9057af --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/SetUpgradeImgByModelRequest.py @@ -0,0 +1,48 @@ +# 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 +class SetUpgradeImgByModelRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'SetUpgradeImgByModel','cloudwf') + + def get_ImgAddr(self): + return self.get_query_params().get('ImgAddr') + + def set_ImgAddr(self,ImgAddr): + self.add_query_param('ImgAddr',ImgAddr) + + def get_ImgVersion(self): + return self.get_query_params().get('ImgVersion') + + def set_ImgVersion(self,ImgVersion): + self.add_query_param('ImgVersion',ImgVersion) + + def get_ApModelId(self): + return self.get_query_params().get('ApModelId') + + def set_ApModelId(self,ApModelId): + self.add_query_param('ApModelId',ApModelId) + + def get_Comment(self): + return self.get_query_params().get('Comment') + + def set_Comment(self,Comment): + self.add_query_param('Comment',Comment) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopActionCustomeRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopActionCustomeRequest.py new file mode 100644 index 0000000000..f994dbb733 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopActionCustomeRequest.py @@ -0,0 +1,30 @@ +# 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 +class ShopActionCustomeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopActionCustome','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopActionReturningRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopActionReturningRequest.py new file mode 100644 index 0000000000..2cc18c172a --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopActionReturningRequest.py @@ -0,0 +1,30 @@ +# 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 +class ShopActionReturningRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopActionReturning','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopCameraRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopCameraRequest.py new file mode 100644 index 0000000000..fc98a796f9 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopCameraRequest.py @@ -0,0 +1,30 @@ +# 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 +class ShopCameraRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopCamera','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopCreateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopCreateRequest.py new file mode 100644 index 0000000000..ddf3d03ca3 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopCreateRequest.py @@ -0,0 +1,138 @@ +# 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 +class ShopCreateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopCreate','cloudwf') + + def get_ShopCoordinate(self): + return self.get_query_params().get('ShopCoordinate') + + def set_ShopCoordinate(self,ShopCoordinate): + self.add_query_param('ShopCoordinate',ShopCoordinate) + + def get_ShopProvince(self): + return self.get_query_params().get('ShopProvince') + + def set_ShopProvince(self,ShopProvince): + self.add_query_param('ShopProvince',ShopProvince) + + def get_ShopTopType(self): + return self.get_query_params().get('ShopTopType') + + def set_ShopTopType(self,ShopTopType): + self.add_query_param('ShopTopType',ShopTopType) + + def get_ShopAddress(self): + return self.get_query_params().get('ShopAddress') + + def set_ShopAddress(self,ShopAddress): + self.add_query_param('ShopAddress',ShopAddress) + + def get_ShopType(self): + return self.get_query_params().get('ShopType') + + def set_ShopType(self,ShopType): + self.add_query_param('ShopType',ShopType) + + def get_WarnEmail(self): + return self.get_query_params().get('WarnEmail') + + def set_WarnEmail(self,WarnEmail): + self.add_query_param('WarnEmail',WarnEmail) + + def get_ShopTel(self): + return self.get_query_params().get('ShopTel') + + def set_ShopTel(self,ShopTel): + self.add_query_param('ShopTel',ShopTel) + + def get_WarnpHone(self): + return self.get_query_params().get('WarnpHone') + + def set_WarnpHone(self,WarnpHone): + self.add_query_param('WarnpHone',WarnpHone) + + def get_Warn(self): + return self.get_query_params().get('Warn') + + def set_Warn(self,Warn): + self.add_query_param('Warn',Warn) + + def get_ShopArea(self): + return self.get_query_params().get('ShopArea') + + def set_ShopArea(self,ShopArea): + self.add_query_param('ShopArea',ShopArea) + + def get_ShopRemarks(self): + return self.get_query_params().get('ShopRemarks') + + def set_ShopRemarks(self,ShopRemarks): + self.add_query_param('ShopRemarks',ShopRemarks) + + def get_ShopCity(self): + return self.get_query_params().get('ShopCity') + + def set_ShopCity(self,ShopCity): + self.add_query_param('ShopCity',ShopCity) + + def get_ShopSubtype(self): + return self.get_query_params().get('ShopSubtype') + + def set_ShopSubtype(self,ShopSubtype): + self.add_query_param('ShopSubtype',ShopSubtype) + + def get_ShopBrand(self): + return self.get_query_params().get('ShopBrand') + + def set_ShopBrand(self,ShopBrand): + self.add_query_param('ShopBrand',ShopBrand) + + def get_ShopName(self): + return self.get_query_params().get('ShopName') + + def set_ShopName(self,ShopName): + self.add_query_param('ShopName',ShopName) + + def get_ShopCloseWarn(self): + return self.get_query_params().get('ShopCloseWarn') + + def set_ShopCloseWarn(self,ShopCloseWarn): + self.add_query_param('ShopCloseWarn',ShopCloseWarn) + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) + + def get_ShopManager(self): + return self.get_query_params().get('ShopManager') + + def set_ShopManager(self,ShopManager): + self.add_query_param('ShopManager',ShopManager) + + def get_ShopBusinessHours(self): + return self.get_query_params().get('ShopBusinessHours') + + def set_ShopBusinessHours(self,ShopBusinessHours): + self.add_query_param('ShopBusinessHours',ShopBusinessHours) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopCreatemarketingRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopCreatemarketingRequest.py new file mode 100644 index 0000000000..f771a547c1 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopCreatemarketingRequest.py @@ -0,0 +1,48 @@ +# 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 +class ShopCreatemarketingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopCreatemarketing','cloudwf') + + def get_Etime(self): + return self.get_query_params().get('Etime') + + def set_Etime(self,Etime): + self.add_query_param('Etime',Etime) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Stime(self): + return self.get_query_params().get('Stime') + + def set_Stime(self,Stime): + self.add_query_param('Stime',Stime) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopDataAlarmRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopDataAlarmRequest.py new file mode 100644 index 0000000000..503fd8f340 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopDataAlarmRequest.py @@ -0,0 +1,54 @@ +# 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 +class ShopDataAlarmRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopDataAlarm','cloudwf') + + def get_WarnPhone(self): + return self.get_query_params().get('WarnPhone') + + def set_WarnPhone(self,WarnPhone): + self.add_query_param('WarnPhone',WarnPhone) + + def get_Warn(self): + return self.get_query_params().get('Warn') + + def set_Warn(self,Warn): + self.add_query_param('Warn',Warn) + + def get_CloseWarn(self): + return self.get_query_params().get('CloseWarn') + + def set_CloseWarn(self,CloseWarn): + self.add_query_param('CloseWarn',CloseWarn) + + def get_WarnEmail(self): + return self.get_query_params().get('WarnEmail') + + def set_WarnEmail(self,WarnEmail): + self.add_query_param('WarnEmail',WarnEmail) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopDeleteRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopDeleteRequest.py new file mode 100644 index 0000000000..11adf6ceee --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopDeleteRequest.py @@ -0,0 +1,30 @@ +# 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 +class ShopDeleteRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopDelete','cloudwf') + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopDeletemarketingRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopDeletemarketingRequest.py new file mode 100644 index 0000000000..264851cfb2 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopDeletemarketingRequest.py @@ -0,0 +1,36 @@ +# 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 +class ShopDeletemarketingRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopDeletemarketing','cloudwf') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGetfiltermacRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGetfiltermacRequest.py new file mode 100644 index 0000000000..58e716c8ae --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGetfiltermacRequest.py @@ -0,0 +1,30 @@ +# 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 +class ShopGetfiltermacRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopGetfiltermac','cloudwf') + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGetredressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGetredressRequest.py new file mode 100644 index 0000000000..72ba24036b --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGetredressRequest.py @@ -0,0 +1,30 @@ +# 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 +class ShopGetredressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopGetredress','cloudwf') + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupCreateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupCreateRequest.py new file mode 100644 index 0000000000..252ef1ea40 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupCreateRequest.py @@ -0,0 +1,48 @@ +# 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 +class ShopGroupCreateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopGroupCreate','cloudwf') + + def get_ShopIds(self): + return self.get_query_params().get('ShopIds') + + def set_ShopIds(self,ShopIds): + self.add_query_param('ShopIds',ShopIds) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupDeleteRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupDeleteRequest.py new file mode 100644 index 0000000000..51716b881d --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupDeleteRequest.py @@ -0,0 +1,30 @@ +# 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 +class ShopGroupDeleteRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopGroupDelete','cloudwf') + + def get_Gid(self): + return self.get_query_params().get('Gid') + + def set_Gid(self,Gid): + self.add_query_param('Gid',Gid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupInfoRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupInfoRequest.py new file mode 100644 index 0000000000..bf52054336 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupInfoRequest.py @@ -0,0 +1,30 @@ +# 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 +class ShopGroupInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopGroupInfo','cloudwf') + + def get_Gid(self): + return self.get_query_params().get('Gid') + + def set_Gid(self,Gid): + self.add_query_param('Gid',Gid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupShowListRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupShowListRequest.py new file mode 100644 index 0000000000..ab1180f8fe --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupShowListRequest.py @@ -0,0 +1,42 @@ +# 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 +class ShopGroupShowListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopGroupShowList','cloudwf') + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) + + def get_Per(self): + return self.get_query_params().get('Per') + + def set_Per(self,Per): + self.add_query_param('Per',Per) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupUpdateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupUpdateRequest.py new file mode 100644 index 0000000000..91d0add192 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopGroupUpdateRequest.py @@ -0,0 +1,48 @@ +# 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 +class ShopGroupUpdateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopGroupUpdate','cloudwf') + + def get_Gid(self): + return self.get_query_params().get('Gid') + + def set_Gid(self,Gid): + self.add_query_param('Gid',Gid) + + def get_ShopIds(self): + return self.get_query_params().get('ShopIds') + + def set_ShopIds(self,ShopIds): + self.add_query_param('ShopIds',ShopIds) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopInfoRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopInfoRequest.py new file mode 100644 index 0000000000..48d06ad432 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopInfoRequest.py @@ -0,0 +1,30 @@ +# 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 +class ShopInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopInfo','cloudwf') + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopMarketingListRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopMarketingListRequest.py new file mode 100644 index 0000000000..2d95ab9567 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopMarketingListRequest.py @@ -0,0 +1,48 @@ +# 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 +class ShopMarketingListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopMarketingList','cloudwf') + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_Per(self): + return self.get_query_params().get('Per') + + def set_Per(self,Per): + self.add_query_param('Per',Per) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopOverviewRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopOverviewRequest.py new file mode 100644 index 0000000000..9b9832d387 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopOverviewRequest.py @@ -0,0 +1,30 @@ +# 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 +class ShopOverviewRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopOverview','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopSetfiltermacRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopSetfiltermacRequest.py new file mode 100644 index 0000000000..f235f7d4e1 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopSetfiltermacRequest.py @@ -0,0 +1,36 @@ +# 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 +class ShopSetfiltermacRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopSetfiltermac','cloudwf') + + def get_Mac(self): + return self.get_query_params().get('Mac') + + def set_Mac(self,Mac): + self.add_query_param('Mac',Mac) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopSetredressRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopSetredressRequest.py new file mode 100644 index 0000000000..00b7c5111a --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopSetredressRequest.py @@ -0,0 +1,96 @@ +# 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 +class ShopSetredressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopSetredress','cloudwf') + + def get_Workday(self): + return self.get_query_params().get('Workday') + + def set_Workday(self,Workday): + self.add_query_param('Workday',Workday) + + def get_Filterclose(self): + return self.get_query_params().get('Filterclose') + + def set_Filterclose(self,Filterclose): + self.add_query_param('Filterclose',Filterclose) + + def get_Minstoptime(self): + return self.get_query_params().get('Minstoptime') + + def set_Minstoptime(self,Minstoptime): + self.add_query_param('Minstoptime',Minstoptime) + + def get_Holiday(self): + return self.get_query_params().get('Holiday') + + def set_Holiday(self,Holiday): + self.add_query_param('Holiday',Holiday) + + def get_Hnum(self): + return self.get_query_params().get('Hnum') + + def set_Hnum(self,Hnum): + self.add_query_param('Hnum',Hnum) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) + + def get_Clerk(self): + return self.get_query_params().get('Clerk') + + def set_Clerk(self,Clerk): + self.add_query_param('Clerk',Clerk) + + def get_Filterstate(self): + return self.get_query_params().get('Filterstate') + + def set_Filterstate(self,Filterstate): + self.add_query_param('Filterstate',Filterstate) + + def get_Wnum(self): + return self.get_query_params().get('Wnum') + + def set_Wnum(self,Wnum): + self.add_query_param('Wnum',Wnum) + + def get_State(self): + return self.get_query_params().get('State') + + def set_State(self,State): + self.add_query_param('State',State) + + def get_Crowdfixed(self): + return self.get_query_params().get('Crowdfixed') + + def set_Crowdfixed(self,Crowdfixed): + self.add_query_param('Crowdfixed',Crowdfixed) + + def get_Maxstoptime(self): + return self.get_query_params().get('Maxstoptime') + + def set_Maxstoptime(self,Maxstoptime): + self.add_query_param('Maxstoptime',Maxstoptime) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopShowListRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopShowListRequest.py new file mode 100644 index 0000000000..abe68ad95d --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopShowListRequest.py @@ -0,0 +1,72 @@ +# 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 +class ShopShowListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopShowList','cloudwf') + + def get_Gid(self): + return self.get_query_params().get('Gid') + + def set_Gid(self,Gid): + self.add_query_param('Gid',Gid) + + def get_Address(self): + return self.get_query_params().get('Address') + + def set_Address(self,Address): + self.add_query_param('Address',Address) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Dirc(self): + return self.get_query_params().get('Dirc') + + def set_Dirc(self,Dirc): + self.add_query_param('Dirc',Dirc) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) + + def get_Per(self): + return self.get_query_params().get('Per') + + def set_Per(self,Per): + self.add_query_param('Per',Per) + + def get_ShopStatus(self): + return self.get_query_params().get('ShopStatus') + + def set_ShopStatus(self,ShopStatus): + self.add_query_param('ShopStatus',ShopStatus) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopUpdateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopUpdateRequest.py new file mode 100644 index 0000000000..fa5167072a --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/ShopUpdateRequest.py @@ -0,0 +1,138 @@ +# 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 +class ShopUpdateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'ShopUpdate','cloudwf') + + def get_ShopCoordinate(self): + return self.get_query_params().get('ShopCoordinate') + + def set_ShopCoordinate(self,ShopCoordinate): + self.add_query_param('ShopCoordinate',ShopCoordinate) + + def get_ShopProvince(self): + return self.get_query_params().get('ShopProvince') + + def set_ShopProvince(self,ShopProvince): + self.add_query_param('ShopProvince',ShopProvince) + + def get_ShopTopType(self): + return self.get_query_params().get('ShopTopType') + + def set_ShopTopType(self,ShopTopType): + self.add_query_param('ShopTopType',ShopTopType) + + def get_ShopAddress(self): + return self.get_query_params().get('ShopAddress') + + def set_ShopAddress(self,ShopAddress): + self.add_query_param('ShopAddress',ShopAddress) + + def get_ShopType(self): + return self.get_query_params().get('ShopType') + + def set_ShopType(self,ShopType): + self.add_query_param('ShopType',ShopType) + + def get_WarnEmail(self): + return self.get_query_params().get('WarnEmail') + + def set_WarnEmail(self,WarnEmail): + self.add_query_param('WarnEmail',WarnEmail) + + def get_Sid(self): + return self.get_query_params().get('Sid') + + def set_Sid(self,Sid): + self.add_query_param('Sid',Sid) + + def get_ShopTel(self): + return self.get_query_params().get('ShopTel') + + def set_ShopTel(self,ShopTel): + self.add_query_param('ShopTel',ShopTel) + + def get_WarnpHone(self): + return self.get_query_params().get('WarnpHone') + + def set_WarnpHone(self,WarnpHone): + self.add_query_param('WarnpHone',WarnpHone) + + def get_Warn(self): + return self.get_query_params().get('Warn') + + def set_Warn(self,Warn): + self.add_query_param('Warn',Warn) + + def get_ShopArea(self): + return self.get_query_params().get('ShopArea') + + def set_ShopArea(self,ShopArea): + self.add_query_param('ShopArea',ShopArea) + + def get_ShopRemarks(self): + return self.get_query_params().get('ShopRemarks') + + def set_ShopRemarks(self,ShopRemarks): + self.add_query_param('ShopRemarks',ShopRemarks) + + def get_ShopCity(self): + return self.get_query_params().get('ShopCity') + + def set_ShopCity(self,ShopCity): + self.add_query_param('ShopCity',ShopCity) + + def get_ShopSubtype(self): + return self.get_query_params().get('ShopSubtype') + + def set_ShopSubtype(self,ShopSubtype): + self.add_query_param('ShopSubtype',ShopSubtype) + + def get_ShopBrand(self): + return self.get_query_params().get('ShopBrand') + + def set_ShopBrand(self,ShopBrand): + self.add_query_param('ShopBrand',ShopBrand) + + def get_ShopName(self): + return self.get_query_params().get('ShopName') + + def set_ShopName(self,ShopName): + self.add_query_param('ShopName',ShopName) + + def get_ShopCloseWarn(self): + return self.get_query_params().get('ShopCloseWarn') + + def set_ShopCloseWarn(self,ShopCloseWarn): + self.add_query_param('ShopCloseWarn',ShopCloseWarn) + + def get_ShopManager(self): + return self.get_query_params().get('ShopManager') + + def set_ShopManager(self,ShopManager): + self.add_query_param('ShopManager',ShopManager) + + def get_ShopBusinessHours(self): + return self.get_query_params().get('ShopBusinessHours') + + def set_ShopBusinessHours(self,ShopBusinessHours): + self.add_query_param('ShopBusinessHours',ShopBusinessHours) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UpLoadMapRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UpLoadMapRequest.py new file mode 100644 index 0000000000..f019b9a6c1 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UpLoadMapRequest.py @@ -0,0 +1,54 @@ +# 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 +class UpLoadMapRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'UpLoadMap','cloudwf') + + def get_FileName(self): + return self.get_query_params().get('FileName') + + def set_FileName(self,FileName): + self.add_query_param('FileName',FileName) + + def get_UploadId(self): + return self.get_query_params().get('UploadId') + + def set_UploadId(self,UploadId): + self.add_query_param('UploadId',UploadId) + + def get_ObjectName(self): + return self.get_query_params().get('ObjectName') + + def set_ObjectName(self,ObjectName): + self.add_query_param('ObjectName',ObjectName) + + def get_ChunkIndex(self): + return self.get_query_params().get('ChunkIndex') + + def set_ChunkIndex(self,ChunkIndex): + self.add_query_param('ChunkIndex',ChunkIndex) + + def get_ChunkCnt(self): + return self.get_query_params().get('ChunkCnt') + + def set_ChunkCnt(self,ChunkCnt): + self.add_query_param('ChunkCnt',ChunkCnt) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UpgradeAPGroupRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UpgradeAPGroupRequest.py new file mode 100644 index 0000000000..70db5c4c9c --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UpgradeAPGroupRequest.py @@ -0,0 +1,32 @@ +# 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 +class UpgradeAPGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'UpgradeAPGroup','cloudwf') + + def get_Idss(self): + return self.get_query_params().get('Idss') + + def set_Idss(self,Idss): + for i in range(len(Idss)): + if Idss[i] is not None: + self.add_query_param('Ids.' + str(i + 1) , Idss[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UpgradeAPRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UpgradeAPRequest.py new file mode 100644 index 0000000000..e34d033f8c --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UpgradeAPRequest.py @@ -0,0 +1,32 @@ +# 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 +class UpgradeAPRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'UpgradeAP','cloudwf') + + def get_Idss(self): + return self.get_query_params().get('Idss') + + def set_Idss(self,Idss): + for i in range(len(Idss)): + if Idss[i] is not None: + self.add_query_param('Ids.' + str(i + 1) , Idss[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserAnalyseRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserAnalyseRequest.py new file mode 100644 index 0000000000..5436b5d7d1 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserAnalyseRequest.py @@ -0,0 +1,30 @@ +# 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 +class UserAnalyseRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'UserAnalyse','cloudwf') + + def get_Gsid(self): + return self.get_query_params().get('Gsid') + + def set_Gsid(self,Gsid): + self.add_query_param('Gsid',Gsid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserDataCreateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserDataCreateRequest.py new file mode 100644 index 0000000000..de37301e19 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserDataCreateRequest.py @@ -0,0 +1,48 @@ +# 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 +class UserDataCreateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'UserDataCreate','cloudwf') + + def get_UploadFile(self): + return self.get_query_params().get('UploadFile') + + def set_UploadFile(self,UploadFile): + self.add_query_param('UploadFile',UploadFile) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserDataDeleteRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserDataDeleteRequest.py new file mode 100644 index 0000000000..336f083080 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserDataDeleteRequest.py @@ -0,0 +1,36 @@ +# 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 +class UserDataDeleteRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'UserDataDelete','cloudwf') + + def get_Iid(self): + return self.get_query_params().get('Iid') + + def set_Iid(self,Iid): + self.add_query_param('Iid',Iid) + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserDataShowListRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserDataShowListRequest.py new file mode 100644 index 0000000000..6c57ec20e7 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserDataShowListRequest.py @@ -0,0 +1,54 @@ +# 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 +class UserDataShowListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'UserDataShowList','cloudwf') + + def get_Iid(self): + return self.get_query_params().get('Iid') + + def set_Iid(self,Iid): + self.add_query_param('Iid',Iid) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) + + def get_Per(self): + return self.get_query_params().get('Per') + + def set_Per(self,Per): + self.add_query_param('Per',Per) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserDataUpdateRequest.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserDataUpdateRequest.py new file mode 100644 index 0000000000..225aea64be --- /dev/null +++ b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/UserDataUpdateRequest.py @@ -0,0 +1,54 @@ +# 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 +class UserDataUpdateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cloudwf', '2017-03-28', 'UserDataUpdate','cloudwf') + + def get_Iid(self): + return self.get_query_params().get('Iid') + + def set_Iid(self,Iid): + self.add_query_param('Iid',Iid) + + def get_UploadFile(self): + return self.get_query_params().get('UploadFile') + + def set_UploadFile(self,UploadFile): + self.add_query_param('UploadFile',UploadFile) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Bid(self): + return self.get_query_params().get('Bid') + + def set_Bid(self,Bid): + self.add_query_param('Bid',Bid) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/__init__.py b/aliyun-python-sdk-cloudwf/aliyunsdkcloudwf/request/v20170328/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-cloudwf/setup.py b/aliyun-python-sdk-cloudwf/setup.py new file mode 100644 index 0000000000..9699a59fe3 --- /dev/null +++ b/aliyun-python-sdk-cloudwf/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for cloudwf. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkcloudwf" +NAME = "aliyun-python-sdk-cloudwf" +DESCRIPTION = "The cloudwf module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","cloudwf"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-crm/ChangeLog.txt b/aliyun-python-sdk-crm/ChangeLog.txt new file mode 100644 index 0000000000..9cf408f7a8 --- /dev/null +++ b/aliyun-python-sdk-crm/ChangeLog.txt @@ -0,0 +1,6 @@ +2019-03-21 Version: 2.2.1 +1, Update Dependency + +2019-03-15 Version: 2.2.1 +1, Update Dependency + diff --git a/aliyun-python-sdk-crm/MANIFEST.in b/aliyun-python-sdk-crm/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-crm/README.rst b/aliyun-python-sdk-crm/README.rst new file mode 100644 index 0000000000..3b05f16644 --- /dev/null +++ b/aliyun-python-sdk-crm/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-crm +This is the crm module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/__init__.py b/aliyun-python-sdk-crm/aliyunsdkcrm/__init__.py new file mode 100644 index 0000000000..161cd2ebf6 --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/__init__.py @@ -0,0 +1 @@ +__version__ = "2.2.1" \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/__init__.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/AddIdentityCertifiedForBidUserRequest.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/AddIdentityCertifiedForBidUserRequest.py new file mode 100644 index 0000000000..c32011904c --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/AddIdentityCertifiedForBidUserRequest.py @@ -0,0 +1,66 @@ +# 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 +class AddIdentityCertifiedForBidUserRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Crm', '2015-04-08', 'AddIdentityCertifiedForBidUser','crm') + + def get_BidType(self): + return self.get_query_params().get('BidType') + + def set_BidType(self,BidType): + self.add_query_param('BidType',BidType) + + def get_LicenseNumber(self): + return self.get_query_params().get('LicenseNumber') + + def set_LicenseNumber(self,LicenseNumber): + self.add_query_param('LicenseNumber',LicenseNumber) + + def get_LicenseType(self): + return self.get_query_params().get('LicenseType') + + def set_LicenseType(self,LicenseType): + self.add_query_param('LicenseType',LicenseType) + + def get_Phone(self): + return self.get_query_params().get('Phone') + + def set_Phone(self,Phone): + self.add_query_param('Phone',Phone) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) + + def get_IsEnterprise(self): + return self.get_query_params().get('IsEnterprise') + + def set_IsEnterprise(self,IsEnterprise): + self.add_query_param('IsEnterprise',IsEnterprise) \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/AddLabelForBidRequest.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/AddLabelForBidRequest.py new file mode 100644 index 0000000000..bcea079e7e --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/AddLabelForBidRequest.py @@ -0,0 +1,48 @@ +# 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 +class AddLabelForBidRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Crm', '2015-04-08', 'AddLabelForBid','crm') + + def get_LabelSeries(self): + return self.get_query_params().get('LabelSeries') + + def set_LabelSeries(self,LabelSeries): + self.add_query_param('LabelSeries',LabelSeries) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) + + def get_Label(self): + return self.get_query_params().get('Label') + + def set_Label(self,Label): + self.add_query_param('Label',Label) \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/AddLabelRequest.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/AddLabelRequest.py new file mode 100644 index 0000000000..b95539930b --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/AddLabelRequest.py @@ -0,0 +1,60 @@ +# 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 +class AddLabelRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Crm', '2015-04-08', 'AddLabel','crm') + + def get_LabelSeries(self): + return self.get_query_params().get('LabelSeries') + + def set_LabelSeries(self,LabelSeries): + self.add_query_param('LabelSeries',LabelSeries) + + def get_Organization(self): + return self.get_query_params().get('Organization') + + def set_Organization(self,Organization): + self.add_query_param('Organization',Organization) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) + + def get_LabelName(self): + return self.get_query_params().get('LabelName') + + def set_LabelName(self,LabelName): + self.add_query_param('LabelName',LabelName) + + def get_UserName(self): + return self.get_query_params().get('UserName') + + def set_UserName(self,UserName): + self.add_query_param('UserName',UserName) \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/BatchGetAliyunIdByAliyunPkRequest.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/BatchGetAliyunIdByAliyunPkRequest.py new file mode 100644 index 0000000000..63955a8a4a --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/BatchGetAliyunIdByAliyunPkRequest.py @@ -0,0 +1,32 @@ +# 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 +class BatchGetAliyunIdByAliyunPkRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Crm', '2015-04-08', 'BatchGetAliyunIdByAliyunPk','crm') + + def get_PkLists(self): + return self.get_query_params().get('PkLists') + + def set_PkLists(self,PkLists): + for i in range(len(PkLists)): + if PkLists[i] is not None: + self.add_query_param('PkList.' + str(i + 1) , PkLists[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/CheckLabelForBidRequest.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/CheckLabelForBidRequest.py new file mode 100644 index 0000000000..633ab39386 --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/CheckLabelForBidRequest.py @@ -0,0 +1,42 @@ +# 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 +class CheckLabelForBidRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Crm', '2015-04-08', 'CheckLabelForBid','crm') + + def get_LabelSeries(self): + return self.get_query_params().get('LabelSeries') + + def set_LabelSeries(self,LabelSeries): + self.add_query_param('LabelSeries',LabelSeries) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) + + def get_Label(self): + return self.get_query_params().get('Label') + + def set_Label(self,Label): + self.add_query_param('Label',Label) \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/CheckLabelRequest.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/CheckLabelRequest.py new file mode 100644 index 0000000000..889905f5ff --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/CheckLabelRequest.py @@ -0,0 +1,42 @@ +# 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 +class CheckLabelRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Crm', '2015-04-08', 'CheckLabel','crm') + + def get_LabelSeries(self): + return self.get_query_params().get('LabelSeries') + + def set_LabelSeries(self,LabelSeries): + self.add_query_param('LabelSeries',LabelSeries) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) + + def get_LabelName(self): + return self.get_query_params().get('LabelName') + + def set_LabelName(self,LabelName): + self.add_query_param('LabelName',LabelName) \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/DeleteLabelForBidRequest.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/DeleteLabelForBidRequest.py new file mode 100644 index 0000000000..a232a4139b --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/DeleteLabelForBidRequest.py @@ -0,0 +1,42 @@ +# 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 +class DeleteLabelForBidRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Crm', '2015-04-08', 'DeleteLabelForBid','crm') + + def get_LabelSeries(self): + return self.get_query_params().get('LabelSeries') + + def set_LabelSeries(self,LabelSeries): + self.add_query_param('LabelSeries',LabelSeries) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) + + def get_Label(self): + return self.get_query_params().get('Label') + + def set_Label(self,Label): + self.add_query_param('Label',Label) \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/DeleteLabelRequest.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/DeleteLabelRequest.py new file mode 100644 index 0000000000..ec175f7962 --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/DeleteLabelRequest.py @@ -0,0 +1,54 @@ +# 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 +class DeleteLabelRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Crm', '2015-04-08', 'DeleteLabel','crm') + + def get_LabelSeries(self): + return self.get_query_params().get('LabelSeries') + + def set_LabelSeries(self,LabelSeries): + self.add_query_param('LabelSeries',LabelSeries) + + def get_Organization(self): + return self.get_query_params().get('Organization') + + def set_Organization(self,Organization): + self.add_query_param('Organization',Organization) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) + + def get_LabelName(self): + return self.get_query_params().get('LabelName') + + def set_LabelName(self,LabelName): + self.add_query_param('LabelName',LabelName) + + def get_UserName(self): + return self.get_query_params().get('UserName') + + def set_UserName(self,UserName): + self.add_query_param('UserName',UserName) \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/GetAliyunPkByAliyunIdRequest.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/GetAliyunPkByAliyunIdRequest.py new file mode 100644 index 0000000000..a43629868d --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/GetAliyunPkByAliyunIdRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetAliyunPkByAliyunIdRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Crm', '2015-04-08', 'GetAliyunPkByAliyunId','crm') + + def get_AliyunId(self): + return self.get_query_params().get('AliyunId') + + def set_AliyunId(self,AliyunId): + self.add_query_param('AliyunId',AliyunId) \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/QueryBidUserCertifiedInfoRequest.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/QueryBidUserCertifiedInfoRequest.py new file mode 100644 index 0000000000..3a63650d59 --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/QueryBidUserCertifiedInfoRequest.py @@ -0,0 +1,36 @@ +# 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 +class QueryBidUserCertifiedInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Crm', '2015-04-08', 'QueryBidUserCertifiedInfo','crm') + + def get_BidType(self): + return self.get_query_params().get('BidType') + + def set_BidType(self,BidType): + self.add_query_param('BidType',BidType) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/QueryCustomerLabelRequest.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/QueryCustomerLabelRequest.py new file mode 100644 index 0000000000..cc2bbf5fa0 --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/QueryCustomerLabelRequest.py @@ -0,0 +1,30 @@ +# 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 +class QueryCustomerLabelRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Crm', '2015-04-08', 'QueryCustomerLabel','crm') + + def get_LabelSeries(self): + return self.get_query_params().get('LabelSeries') + + def set_LabelSeries(self,LabelSeries): + self.add_query_param('LabelSeries',LabelSeries) \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/RemoveIdentityCertifiedForBidUserRequest.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/RemoveIdentityCertifiedForBidUserRequest.py new file mode 100644 index 0000000000..99e1c97bc5 --- /dev/null +++ b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/RemoveIdentityCertifiedForBidUserRequest.py @@ -0,0 +1,36 @@ +# 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 +class RemoveIdentityCertifiedForBidUserRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Crm', '2015-04-08', 'RemoveIdentityCertifiedForBidUser','crm') + + def get_BidType(self): + return self.get_query_params().get('BidType') + + def set_BidType(self,BidType): + self.add_query_param('BidType',BidType) + + def get_PK(self): + return self.get_query_params().get('PK') + + def set_PK(self,PK): + self.add_query_param('PK',PK) \ No newline at end of file diff --git a/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/__init__.py b/aliyun-python-sdk-crm/aliyunsdkcrm/request/v20150408/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-crm/setup.py b/aliyun-python-sdk-crm/setup.py new file mode 100644 index 0000000000..377c26954a --- /dev/null +++ b/aliyun-python-sdk-crm/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for crm. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkcrm" +NAME = "aliyun-python-sdk-crm" +DESCRIPTION = "The crm module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","crm"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/ChangeLog.txt b/aliyun-python-sdk-cspro/ChangeLog.txt new file mode 100644 index 0000000000..6df5400d10 --- /dev/null +++ b/aliyun-python-sdk-cspro/ChangeLog.txt @@ -0,0 +1,6 @@ +2019-08-23 Version: 1.3.9 +- Generate Python SDK. + +2019-08-05 Version: 1.2.9 +- Supported Access for SYC. + diff --git a/aliyun-python-sdk-cspro/MANIFEST.in b/aliyun-python-sdk-cspro/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-cspro/README.rst b/aliyun-python-sdk-cspro/README.rst new file mode 100644 index 0000000000..ee859896bf --- /dev/null +++ b/aliyun-python-sdk-cspro/README.rst @@ -0,0 +1,15 @@ +============================================================= +aliyun-python-sdk-cspro +============================================================= + +.. This is the cspro module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater + +**Documentation:** + +Please visit `http://develop.aliyun.com/sdk/python `_ diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/__init__.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/__init__.py new file mode 100644 index 0000000000..9dea47f9fe --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/__init__.py @@ -0,0 +1 @@ +__version__ = '1.3.9' \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/endpoint.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/endpoint.py new file mode 100644 index 0000000000..b24446fb52 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/endpoint.py @@ -0,0 +1,33 @@ +# # 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. + + +class EndpointData(): + def __init__(self): + self.endpoint_map = {} + self.endpoint_regional = "central" + + def getEndpointMap(self): + return self.endpoint_map + + def getEndpointRegional(self): + return self.endpoint_regional + + +endpoint_data = EndpointData() diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/__init__.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AddOmniSecCheckConfigRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AddOmniSecCheckConfigRequest.py new file mode 100644 index 0000000000..8d9234d9c7 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AddOmniSecCheckConfigRequest.py @@ -0,0 +1,72 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class AddOmniSecCheckConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'AddOmniSecCheckConfig','cspro') + 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_Name(self): + return self.get_body_params().get('Name') + + def set_Name(self,Name): + self.add_body_params('Name', Name) + + def get_CheckDetailDTOs(self): + return self.get_body_params().get('CheckDetailDTOs') + + def set_CheckDetailDTOs(self,CheckDetailDTOs): + for i in range(len(CheckDetailDTOs)): + if CheckDetailDTOs[i].get('CheckType') is not None: + self.add_body_params('CheckDetailDTO.' + str(i + 1) + '.CheckType' , CheckDetailDTOs[i].get('CheckType')) + if CheckDetailDTOs[i].get('CheckIntervalUnit') is not None: + self.add_body_params('CheckDetailDTO.' + str(i + 1) + '.CheckIntervalUnit' , CheckDetailDTOs[i].get('CheckIntervalUnit')) + if CheckDetailDTOs[i].get('CheckExtras') is not None: + self.add_body_params('CheckDetailDTO.' + str(i + 1) + '.CheckExtras' , CheckDetailDTOs[i].get('CheckExtras')) + if CheckDetailDTOs[i].get('CheckIntervalVal') is not None: + self.add_body_params('CheckDetailDTO.' + str(i + 1) + '.CheckIntervalVal' , CheckDetailDTOs[i].get('CheckIntervalVal')) + + + def get_Extras(self): + return self.get_body_params().get('Extras') + + def set_Extras(self,Extras): + self.add_body_params('Extras', Extras) + + def get_CheckTarget(self): + return self.get_body_params().get('CheckTarget') + + def set_CheckTarget(self,CheckTarget): + self.add_body_params('CheckTarget', CheckTarget) + + def get_ConfType(self): + return self.get_body_params().get('ConfType') + + def set_ConfType(self,ConfType): + self.add_body_params('ConfType', ConfType) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AddSecCheckSampleLibRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AddSecCheckSampleLibRequest.py new file mode 100644 index 0000000000..2aea3ec8e0 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AddSecCheckSampleLibRequest.py @@ -0,0 +1,45 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class AddSecCheckSampleLibRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'AddSecCheckSampleLib','cspro') + 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_Name(self): + return self.get_body_params().get('Name') + + def set_Name(self,Name): + self.add_body_params('Name', Name) + + def get_Type(self): + return self.get_body_params().get('Type') + + def set_Type(self,Type): + self.add_body_params('Type', Type) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AddSecCheckSampleRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AddSecCheckSampleRequest.py new file mode 100644 index 0000000000..dabd41bccf --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AddSecCheckSampleRequest.py @@ -0,0 +1,53 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class AddSecCheckSampleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'AddSecCheckSample','cspro') + 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_LibId(self): + return self.get_body_params().get('LibId') + + def set_LibId(self,LibId): + self.add_body_params('LibId', LibId) + + def get_Type(self): + return self.get_body_params().get('Type') + + def set_Type(self,Type): + self.add_body_params('Type', Type) + + def get_Contents(self): + return self.get_body_params().get('Contents') + + def set_Contents(self,Contents): + for i in range(len(Contents)): + if Contents[i] is not None: + self.add_body_params('Content.' + str(i + 1) , Contents[i]); \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AddSiteCheckConfigRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AddSiteCheckConfigRequest.py new file mode 100644 index 0000000000..f406010840 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AddSiteCheckConfigRequest.py @@ -0,0 +1,68 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class AddSiteCheckConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'AddSiteCheckConfig','cspro') + 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_SetBaseLine(self): + return self.get_body_params().get('SetBaseLine') + + def set_SetBaseLine(self,SetBaseLine): + self.add_body_params('SetBaseLine', SetBaseLine) + + def get_SiteCheckFrequency(self): + return self.get_body_params().get('SiteCheckFrequency') + + def set_SiteCheckFrequency(self,SiteCheckFrequency): + self.add_body_params('SiteCheckFrequency', SiteCheckFrequency) + + def get_SiteProtocol(self): + return self.get_body_params().get('SiteProtocol') + + def set_SiteProtocol(self,SiteProtocol): + self.add_body_params('SiteProtocol', SiteProtocol) + + def get_IndexUrl(self): + return self.get_body_params().get('IndexUrl') + + def set_IndexUrl(self,IndexUrl): + self.add_body_params('IndexUrl', IndexUrl) + + def get_IndexCheckFrequency(self): + return self.get_body_params().get('IndexCheckFrequency') + + def set_IndexCheckFrequency(self,IndexCheckFrequency): + self.add_body_params('IndexCheckFrequency', IndexCheckFrequency) + + def get_SiteDomain(self): + return self.get_body_params().get('SiteDomain') + + def set_SiteDomain(self,SiteDomain): + self.add_body_params('SiteDomain', SiteDomain) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AuthSecCheckSamplePicUploadRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AuthSecCheckSamplePicUploadRequest.py new file mode 100644 index 0000000000..73258c23ac --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/AuthSecCheckSamplePicUploadRequest.py @@ -0,0 +1,32 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class AuthSecCheckSamplePicUploadRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'AuthSecCheckSamplePicUpload','cspro') + 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()) diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/DelOmniSecCheckConfigRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/DelOmniSecCheckConfigRequest.py new file mode 100644 index 0000000000..b977600bef --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/DelOmniSecCheckConfigRequest.py @@ -0,0 +1,39 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class DelOmniSecCheckConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'DelOmniSecCheckConfig','cspro') + 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_ConfId(self): + return self.get_body_params().get('ConfId') + + def set_ConfId(self,ConfId): + self.add_body_params('ConfId', ConfId) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/DelSecCheckSampleLibRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/DelSecCheckSampleLibRequest.py new file mode 100644 index 0000000000..510667b38e --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/DelSecCheckSampleLibRequest.py @@ -0,0 +1,45 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class DelSecCheckSampleLibRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'DelSecCheckSampleLib','cspro') + 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_LibId(self): + return self.get_body_params().get('LibId') + + def set_LibId(self,LibId): + self.add_body_params('LibId', LibId) + + def get_Type(self): + return self.get_body_params().get('Type') + + def set_Type(self,Type): + self.add_body_params('Type', Type) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/DelSecCheckSampleRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/DelSecCheckSampleRequest.py new file mode 100644 index 0000000000..f05def4e1c --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/DelSecCheckSampleRequest.py @@ -0,0 +1,53 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class DelSecCheckSampleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'DelSecCheckSample','cspro') + 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_LibId(self): + return self.get_body_params().get('LibId') + + def set_LibId(self,LibId): + self.add_body_params('LibId', LibId) + + def get_SampleIds(self): + return self.get_body_params().get('SampleIds') + + def set_SampleIds(self,SampleIds): + for i in range(len(SampleIds)): + if SampleIds[i] is not None: + self.add_body_params('SampleId.' + str(i + 1) , SampleIds[i]); + + def get_Type(self): + return self.get_body_params().get('Type') + + def set_Type(self,Type): + self.add_body_params('Type', Type) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/DelSiteCheckConfigRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/DelSiteCheckConfigRequest.py new file mode 100644 index 0000000000..744fa80940 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/DelSiteCheckConfigRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class DelSiteCheckConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'DelSiteCheckConfig','cspro') + 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_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetIndexBaselineRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetIndexBaselineRequest.py new file mode 100644 index 0000000000..fae78a4b02 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetIndexBaselineRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class GetIndexBaselineRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'GetIndexBaseline','cspro') + 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_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetIpProfileRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetIpProfileRequest.py new file mode 100644 index 0000000000..2671a952f8 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetIpProfileRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class GetIpProfileRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'GetIpProfile','cspro') + 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_Ip(self): + return self.get_query_params().get('Ip') + + def set_Ip(self,Ip): + self.add_query_param('Ip',Ip) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetPhoneProfileRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetPhoneProfileRequest.py new file mode 100644 index 0000000000..46c2db21ff --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetPhoneProfileRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class GetPhoneProfileRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'GetPhoneProfile','cspro') + 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_Phone(self): + return self.get_query_params().get('Phone') + + def set_Phone(self,Phone): + self.add_query_param('Phone',Phone) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetSecCheckResultDetailRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetSecCheckResultDetailRequest.py new file mode 100644 index 0000000000..670c1db55b --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetSecCheckResultDetailRequest.py @@ -0,0 +1,63 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class GetSecCheckResultDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'GetSecCheckResultDetail','cspro') + 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_RiskType(self): + return self.get_body_params().get('RiskType') + + def set_RiskType(self,RiskType): + self.add_body_params('RiskType', RiskType) + + def get_RiskSource(self): + return self.get_body_params().get('RiskSource') + + def set_RiskSource(self,RiskSource): + self.add_body_params('RiskSource', RiskSource) + + def get_ResultId(self): + return self.get_body_params().get('ResultId') + + def set_ResultId(self,ResultId): + self.add_body_params('ResultId', ResultId) + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_CurrentPage(self): + return self.get_body_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_body_params('CurrentPage', CurrentPage) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetSiteCheckResultDetailRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetSiteCheckResultDetailRequest.py new file mode 100644 index 0000000000..a535272572 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetSiteCheckResultDetailRequest.py @@ -0,0 +1,49 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class GetSiteCheckResultDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'GetSiteCheckResultDetail','cspro') + 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_ResultId(self): + return self.get_query_params().get('ResultId') + + def set_ResultId(self,ResultId): + self.add_query_param('ResultId',ResultId) + + def get_RiskType(self): + return self.get_query_params().get('RiskType') + + def set_RiskType(self,RiskType): + self.add_query_param('RiskType',RiskType) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetSnapshotInfoRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetSnapshotInfoRequest.py new file mode 100644 index 0000000000..c1390eabdb --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/GetSnapshotInfoRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class GetSnapshotInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'GetSnapshotInfo','cspro') + self.set_protocol_type('https') + 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_SnapshotKey(self): + return self.get_query_params().get('SnapshotKey') + + def set_SnapshotKey(self,SnapshotKey): + self.add_query_param('SnapshotKey',SnapshotKey) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/InvokeOmniSecCheckImmediatelyRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/InvokeOmniSecCheckImmediatelyRequest.py new file mode 100644 index 0000000000..f9a9bbdbf3 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/InvokeOmniSecCheckImmediatelyRequest.py @@ -0,0 +1,51 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class InvokeOmniSecCheckImmediatelyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'InvokeOmniSecCheckImmediately','cspro') + 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_CheckType(self): + return self.get_body_params().get('CheckType') + + def set_CheckType(self,CheckType): + self.add_body_params('CheckType', CheckType) + + def get_CheckTarget(self): + return self.get_body_params().get('CheckTarget') + + def set_CheckTarget(self,CheckTarget): + self.add_body_params('CheckTarget', CheckTarget) + + def get_ConfType(self): + return self.get_body_params().get('ConfType') + + def set_ConfType(self,ConfType): + self.add_body_params('ConfType', ConfType) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/PostPunishOrderRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/PostPunishOrderRequest.py new file mode 100644 index 0000000000..23dcd28cfc --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/PostPunishOrderRequest.py @@ -0,0 +1,39 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class PostPunishOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'PostPunishOrder','cspro') + 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_PunishOrderReq(self): + return self.get_query_params().get('PunishOrderReq') + + def set_PunishOrderReq(self,PunishOrderReq): + self.add_query_param('PunishOrderReq',PunishOrderReq) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QueryPunishOrderListRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QueryPunishOrderListRequest.py new file mode 100644 index 0000000000..4b51ee75c9 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QueryPunishOrderListRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class QueryPunishOrderListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'QueryPunishOrderList','cspro') + self.set_protocol_type('https') + 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_PunishOrderListRequest(self): + return self.get_body_params().get('PunishOrderListRequest') + + def set_PunishOrderListRequest(self,PunishOrderListRequest): + self.add_body_params('PunishOrderListRequest', PunishOrderListRequest) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QueryPunishOrderRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QueryPunishOrderRequest.py new file mode 100644 index 0000000000..0d72a820ff --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QueryPunishOrderRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class QueryPunishOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'QueryPunishOrder','cspro') + self.set_protocol_type('https') + 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_PunishRequestId(self): + return self.get_query_params().get('PunishRequestId') + + def set_PunishRequestId(self,PunishRequestId): + self.add_query_param('PunishRequestId',PunishRequestId) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckConfigsRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckConfigsRequest.py new file mode 100644 index 0000000000..5ead0f3b07 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckConfigsRequest.py @@ -0,0 +1,57 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class QuerySecCheckConfigsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'QuerySecCheckConfigs','cspro') + 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_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_CurrentPage(self): + return self.get_body_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_body_params('CurrentPage', CurrentPage) + + def get_CheckTarget(self): + return self.get_body_params().get('CheckTarget') + + def set_CheckTarget(self,CheckTarget): + self.add_body_params('CheckTarget', CheckTarget) + + def get_ConfType(self): + return self.get_body_params().get('ConfType') + + def set_ConfType(self,ConfType): + self.add_body_params('ConfType', ConfType) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckLatestSummaryRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckLatestSummaryRequest.py new file mode 100644 index 0000000000..73c7e62501 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckLatestSummaryRequest.py @@ -0,0 +1,63 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class QuerySecCheckLatestSummaryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'QuerySecCheckLatestSummary','cspro') + 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_CheckType(self): + return self.get_body_params().get('CheckType') + + def set_CheckType(self,CheckType): + self.add_body_params('CheckType', CheckType) + + def get_CheckTime(self): + return self.get_body_params().get('CheckTime') + + def set_CheckTime(self,CheckTime): + self.add_body_params('CheckTime', CheckTime) + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_CurrentPage(self): + return self.get_body_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_body_params('CurrentPage', CurrentPage) + + def get_ConfType(self): + return self.get_body_params().get('ConfType') + + def set_ConfType(self,ConfType): + self.add_body_params('ConfType', ConfType) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckResultRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckResultRequest.py new file mode 100644 index 0000000000..26adafe39e --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckResultRequest.py @@ -0,0 +1,75 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class QuerySecCheckResultRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'QuerySecCheckResult','cspro') + 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_CheckType(self): + return self.get_body_params().get('CheckType') + + def set_CheckType(self,CheckType): + self.add_body_params('CheckType', CheckType) + + def get_EndDate(self): + return self.get_body_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_body_params('EndDate', EndDate) + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_CurrentPage(self): + return self.get_body_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_body_params('CurrentPage', CurrentPage) + + def get_StartDate(self): + return self.get_body_params().get('StartDate') + + def set_StartDate(self,StartDate): + self.add_body_params('StartDate', StartDate) + + def get_CheckTarget(self): + return self.get_body_params().get('CheckTarget') + + def set_CheckTarget(self,CheckTarget): + self.add_body_params('CheckTarget', CheckTarget) + + def get_ConfType(self): + return self.get_body_params().get('ConfType') + + def set_ConfType(self,ConfType): + self.add_body_params('ConfType', ConfType) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckSampleLibsRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckSampleLibsRequest.py new file mode 100644 index 0000000000..05327cc244 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckSampleLibsRequest.py @@ -0,0 +1,56 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class QuerySecCheckSampleLibsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'QuerySecCheckSampleLibs','cspro') + self.set_protocol_type('https') + 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_LibId(self): + return self.get_query_params().get('LibId') + + def set_LibId(self,LibId): + self.add_query_param('LibId',LibId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckSamplesRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckSamplesRequest.py new file mode 100644 index 0000000000..bc4126a6eb --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySecCheckSamplesRequest.py @@ -0,0 +1,57 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class QuerySecCheckSamplesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'QuerySecCheckSamples','cspro') + 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_LibId(self): + return self.get_body_params().get('LibId') + + def set_LibId(self,LibId): + self.add_body_params('LibId', LibId) + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_CurrentPage(self): + return self.get_body_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_body_params('CurrentPage', CurrentPage) + + def get_Type(self): + return self.get_body_params().get('Type') + + def set_Type(self,Type): + self.add_body_params('Type', Type) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySiteCheckConfigsRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySiteCheckConfigsRequest.py new file mode 100644 index 0000000000..8b4282b4bd --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySiteCheckConfigsRequest.py @@ -0,0 +1,55 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class QuerySiteCheckConfigsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'QuerySiteCheckConfigs','cspro') + 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_SiteDomain(self): + return self.get_query_params().get('SiteDomain') + + def set_SiteDomain(self,SiteDomain): + self.add_query_param('SiteDomain',SiteDomain) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_CheckId(self): + return self.get_query_params().get('CheckId') + + def set_CheckId(self,CheckId): + self.add_query_param('CheckId',CheckId) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySiteCheckProgressRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySiteCheckProgressRequest.py new file mode 100644 index 0000000000..3b30c04343 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySiteCheckProgressRequest.py @@ -0,0 +1,55 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class QuerySiteCheckProgressRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'QuerySiteCheckProgress','cspro') + 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_CheckId(self): + return self.get_query_params().get('CheckId') + + def set_CheckId(self,CheckId): + self.add_query_param('CheckId',CheckId) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySiteCheckResultRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySiteCheckResultRequest.py new file mode 100644 index 0000000000..b94526105d --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/QuerySiteCheckResultRequest.py @@ -0,0 +1,67 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class QuerySiteCheckResultRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'QuerySiteCheckResult','cspro') + 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_SiteDomain(self): + return self.get_query_params().get('SiteDomain') + + def set_SiteDomain(self,SiteDomain): + self.add_query_param('SiteDomain',SiteDomain) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Page(self): + return self.get_query_params().get('Page') + + def set_Page(self,Page): + self.add_query_param('Page',Page) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_StartDate(self): + return self.get_query_params().get('StartDate') + + def set_StartDate(self,StartDate): + self.add_query_param('StartDate',StartDate) + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/RevokePunishOrderRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/RevokePunishOrderRequest.py new file mode 100644 index 0000000000..e918a5c862 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/RevokePunishOrderRequest.py @@ -0,0 +1,39 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class RevokePunishOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'RevokePunishOrder','cspro') + 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_PunishRequestId(self): + return self.get_query_params().get('PunishRequestId') + + def set_PunishRequestId(self,PunishRequestId): + self.add_query_param('PunishRequestId',PunishRequestId) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/SetIndexBaselineRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/SetIndexBaselineRequest.py new file mode 100644 index 0000000000..89f7564626 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/SetIndexBaselineRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class SetIndexBaselineRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'SetIndexBaseline','cspro') + 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_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/UpdateOmniSecCheckConfigRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/UpdateOmniSecCheckConfigRequest.py new file mode 100644 index 0000000000..b3277c580f --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/UpdateOmniSecCheckConfigRequest.py @@ -0,0 +1,78 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class UpdateOmniSecCheckConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'UpdateOmniSecCheckConfig','cspro') + 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_ConfId(self): + return self.get_body_params().get('ConfId') + + def set_ConfId(self,ConfId): + self.add_body_params('ConfId', ConfId) + + def get_Valid(self): + return self.get_body_params().get('Valid') + + def set_Valid(self,Valid): + self.add_body_params('Valid', Valid) + + def get_Accessible(self): + return self.get_body_params().get('Accessible') + + def set_Accessible(self,Accessible): + self.add_body_params('Accessible', Accessible) + + def get_Name(self): + return self.get_body_params().get('Name') + + def set_Name(self,Name): + self.add_body_params('Name', Name) + + def get_CheckDetailDTOs(self): + return self.get_body_params().get('CheckDetailDTOs') + + def set_CheckDetailDTOs(self,CheckDetailDTOs): + for i in range(len(CheckDetailDTOs)): + if CheckDetailDTOs[i].get('CheckType') is not None: + self.add_body_params('CheckDetailDTO.' + str(i + 1) + '.CheckType' , CheckDetailDTOs[i].get('CheckType')) + if CheckDetailDTOs[i].get('CheckIntervalUnit') is not None: + self.add_body_params('CheckDetailDTO.' + str(i + 1) + '.CheckIntervalUnit' , CheckDetailDTOs[i].get('CheckIntervalUnit')) + if CheckDetailDTOs[i].get('CheckExtras') is not None: + self.add_body_params('CheckDetailDTO.' + str(i + 1) + '.CheckExtras' , CheckDetailDTOs[i].get('CheckExtras')) + if CheckDetailDTOs[i].get('CheckIntervalVal') is not None: + self.add_body_params('CheckDetailDTO.' + str(i + 1) + '.CheckIntervalVal' , CheckDetailDTOs[i].get('CheckIntervalVal')) + + + def get_Extras(self): + return self.get_body_params().get('Extras') + + def set_Extras(self,Extras): + self.add_body_params('Extras', Extras) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/UpdateSiteCheckConfigRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/UpdateSiteCheckConfigRequest.py new file mode 100644 index 0000000000..7a14fdfff9 --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/UpdateSiteCheckConfigRequest.py @@ -0,0 +1,74 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class UpdateSiteCheckConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'UpdateSiteCheckConfig','cspro') + 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_SetBaseLine(self): + return self.get_body_params().get('SetBaseLine') + + def set_SetBaseLine(self,SetBaseLine): + self.add_body_params('SetBaseLine', SetBaseLine) + + def get_SiteCheckFrequency(self): + return self.get_body_params().get('SiteCheckFrequency') + + def set_SiteCheckFrequency(self,SiteCheckFrequency): + self.add_body_params('SiteCheckFrequency', SiteCheckFrequency) + + def get_SiteProtocol(self): + return self.get_body_params().get('SiteProtocol') + + def set_SiteProtocol(self,SiteProtocol): + self.add_body_params('SiteProtocol', SiteProtocol) + + def get_IndexUrl(self): + return self.get_body_params().get('IndexUrl') + + def set_IndexUrl(self,IndexUrl): + self.add_body_params('IndexUrl', IndexUrl) + + def get_IndexCheckFrequency(self): + return self.get_body_params().get('IndexCheckFrequency') + + def set_IndexCheckFrequency(self,IndexCheckFrequency): + self.add_body_params('IndexCheckFrequency', IndexCheckFrequency) + + def get_Id(self): + return self.get_body_params().get('Id') + + def set_Id(self,Id): + self.add_body_params('Id', Id) + + def get_SiteDomain(self): + return self.get_body_params().get('SiteDomain') + + def set_SiteDomain(self,SiteDomain): + self.add_body_params('SiteDomain', SiteDomain) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/UploadOwnedDomainsRequest.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/UploadOwnedDomainsRequest.py new file mode 100644 index 0000000000..302e6abaee --- /dev/null +++ b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/UploadOwnedDomainsRequest.py @@ -0,0 +1,45 @@ +# 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 aliyunsdkcspro.endpoint import endpoint_data + +class UploadOwnedDomainsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cspro', '2018-03-15', 'UploadOwnedDomains','cspro') + 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_IsOverWrite(self): + return self.get_body_params().get('IsOverWrite') + + def set_IsOverWrite(self,IsOverWrite): + self.add_body_params('IsOverWrite', IsOverWrite) + + def get_DomainList(self): + return self.get_body_params().get('DomainList') + + def set_DomainList(self,DomainList): + self.add_body_params('DomainList', DomainList) \ No newline at end of file diff --git a/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/__init__.py b/aliyun-python-sdk-cspro/aliyunsdkcspro/request/v20180315/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-cspro/setup.py b/aliyun-python-sdk-cspro/setup.py new file mode 100644 index 0000000000..efd4026aa8 --- /dev/null +++ b/aliyun-python-sdk-cspro/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for cspro. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkcspro" +NAME = "aliyun-python-sdk-cspro" +DESCRIPTION = "The cspro module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","cspro"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/ChangeLog.txt b/aliyun-python-sdk-cusanalytic_sc_online/ChangeLog.txt new file mode 100644 index 0000000000..5779bb20c3 --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/ChangeLog.txt @@ -0,0 +1,9 @@ +2019-09-05 Version: 1.0.2 +- Generated 2019-05-24 for `cusanalytic_sc_online`. + +2019-07-26 Version: 1.0.0 +- Generated 2019-05-24 for `cusanalytic_sc_online`. + +2019-07-26 Version: 1.0.0 +- Generated 2019-05-24 for `cusanalytic_sc_online`. + diff --git a/aliyun-python-sdk-cusanalytic_sc_online/MANIFEST.in b/aliyun-python-sdk-cusanalytic_sc_online/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-cusanalytic_sc_online/README.rst b/aliyun-python-sdk-cusanalytic_sc_online/README.rst new file mode 100644 index 0000000000..8c16b4c014 --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/README.rst @@ -0,0 +1,15 @@ +============================================================= +aliyun-python-sdk-cusanalytic_sc_online +============================================================= + +.. This is the cusanalytic_sc_online module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater + +**Documentation:** + +Please visit `http://develop.aliyun.com/sdk/python `_ diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/__init__.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/__init__.py new file mode 100644 index 0000000000..34c1db36a1 --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/__init__.py @@ -0,0 +1 @@ +__version__ = '1.0.2' \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/endpoint.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/endpoint.py new file mode 100644 index 0000000000..c3259d3ba4 --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/endpoint.py @@ -0,0 +1,58 @@ +# # 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. + + +class EndpointData(): + def __init__(self): + self.endpoint_map = { + "cn-shenzhen": "cusanalytic.aliyuncs.com", + "cn-beijing": "cusanalytic.aliyuncs.com", + "ap-south-1": "cusanalytic.aliyuncs.com", + "eu-west-1": "cusanalytic.aliyuncs.com", + "ap-northeast-1": "cusanalytic.aliyuncs.com", + "cn-shenzhen-finance-1": "cusanalytic.aliyuncs.com", + "me-east-1": "cusanalytic.aliyuncs.com", + "cn-chengdu": "cusanalytic.aliyuncs.com", + "cn-north-2-gov-1": "cusanalytic.aliyuncs.com", + "cn-qingdao": "cusanalytic.aliyuncs.com", + "cn-shanghai": "cusanalytic.aliyuncs.com", + "cn-shanghai-finance-1": "cusanalytic.aliyuncs.com", + "cn-hongkong": "cusanalytic.aliyuncs.com", + "cn-hangzhou-finance": "cusanalytic.aliyuncs.com", + "ap-southeast-1": "cusanalytic.aliyuncs.com", + "ap-southeast-2": "cusanalytic.aliyuncs.com", + "ap-southeast-3": "cusanalytic.aliyuncs.com", + "eu-central-1": "cusanalytic.aliyuncs.com", + "cn-huhehaote": "cusanalytic.aliyuncs.com", + "ap-southeast-5": "cusanalytic.aliyuncs.com", + "us-east-1": "cusanalytic.aliyuncs.com", + "cn-zhangjiakou": "cusanalytic.aliyuncs.com", + "us-west-1": "cusanalytic.aliyuncs.com", + "cn-hangzhou": "cusanalytic.aliyuncs.com", + } + self.endpoint_regional = "central" + + def getEndpointMap(self): + return self.endpoint_map + + def getEndpointRegional(self): + return self.endpoint_regional + + +endpoint_data = EndpointData() diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/__init__.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/DescribeActionDataRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/DescribeActionDataRequest.py new file mode 100644 index 0000000000..7eb4a6ef2a --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/DescribeActionDataRequest.py @@ -0,0 +1,61 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class DescribeActionDataRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'DescribeActionData') + 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_TsEnd(self): + return self.get_body_params().get('TsEnd') + + def set_TsEnd(self,TsEnd): + self.add_body_params('TsEnd', TsEnd) + + def get_StoreId(self): + return self.get_body_params().get('StoreId') + + def set_StoreId(self,StoreId): + self.add_body_params('StoreId', StoreId) + + def get_PageLimit(self): + return self.get_body_params().get('PageLimit') + + def set_PageLimit(self,PageLimit): + self.add_body_params('PageLimit', PageLimit) + + def get_PageNo(self): + return self.get_body_params().get('PageNo') + + def set_PageNo(self,PageNo): + self.add_body_params('PageNo', PageNo) + + def get_TsStart(self): + return self.get_body_params().get('TsStart') + + def set_TsStart(self,TsStart): + self.add_body_params('TsStart', TsStart) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/DescribeLocationsRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/DescribeLocationsRequest.py new file mode 100644 index 0000000000..7fc83c6cf5 --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/DescribeLocationsRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class DescribeLocationsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'DescribeLocations') + 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_StoreId(self): + return self.get_body_params().get('StoreId') + + def set_StoreId(self,StoreId): + self.add_body_params('StoreId', StoreId) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetActionCursorRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetActionCursorRequest.py new file mode 100644 index 0000000000..b31e636a9e --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetActionCursorRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class GetActionCursorRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'GetActionCursor') + 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_StoreId(self): + return self.get_body_params().get('StoreId') + + def set_StoreId(self,StoreId): + self.add_body_params('StoreId', StoreId) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetAnalyzeCommodityDataRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetAnalyzeCommodityDataRequest.py new file mode 100644 index 0000000000..8a7537cbd3 --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetAnalyzeCommodityDataRequest.py @@ -0,0 +1,85 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class GetAnalyzeCommodityDataRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'GetAnalyzeCommodityData') + 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_StoreId(self): + return self.get_body_params().get('StoreId') + + def set_StoreId(self,StoreId): + self.add_body_params('StoreId', StoreId) + + def get_StartDate(self): + return self.get_body_params().get('StartDate') + + def set_StartDate(self,StartDate): + self.add_body_params('StartDate', StartDate) + + def get_EndUserCount(self): + return self.get_body_params().get('EndUserCount') + + def set_EndUserCount(self,EndUserCount): + self.add_body_params('EndUserCount', EndUserCount) + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_PageIndex(self): + return self.get_body_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_body_params('PageIndex', PageIndex) + + def get_StayPeriod(self): + return self.get_body_params().get('StayPeriod') + + def set_StayPeriod(self,StayPeriod): + self.add_body_params('StayPeriod', StayPeriod) + + def get_StartUserCount(self): + return self.get_body_params().get('StartUserCount') + + def set_StartUserCount(self,StartUserCount): + self.add_body_params('StartUserCount', StartUserCount) + + def get_MinSupportCount(self): + return self.get_body_params().get('MinSupportCount') + + def set_MinSupportCount(self,MinSupportCount): + self.add_body_params('MinSupportCount', MinSupportCount) + + def get_EndDate(self): + return self.get_body_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_body_params('EndDate', EndDate) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetAnalyzePlaceDataRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetAnalyzePlaceDataRequest.py new file mode 100644 index 0000000000..70f7afe708 --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetAnalyzePlaceDataRequest.py @@ -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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class GetAnalyzePlaceDataRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'GetAnalyzePlaceData') + 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_EndUVCount(self): + return self.get_body_params().get('EndUVCount') + + def set_EndUVCount(self,EndUVCount): + self.add_body_params('EndUVCount', EndUVCount) + + def get_ParentAmount(self): + return self.get_body_params().get('ParentAmount') + + def set_ParentAmount(self,ParentAmount): + self.add_body_params('ParentAmount', ParentAmount) + + def get_StartDate(self): + return self.get_body_params().get('StartDate') + + def set_StartDate(self,StartDate): + self.add_body_params('StartDate', StartDate) + + def get_StartUVCount(self): + return self.get_body_params().get('StartUVCount') + + def set_StartUVCount(self,StartUVCount): + self.add_body_params('StartUVCount', StartUVCount) + + def get_StoreId(self): + return self.get_body_params().get('StoreId') + + def set_StoreId(self,StoreId): + self.add_body_params('StoreId', StoreId) + + def get_EndDate(self): + return self.get_body_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_body_params('EndDate', EndDate) + + def get_LocationId(self): + return self.get_body_params().get('LocationId') + + def set_LocationId(self,LocationId): + self.add_body_params('LocationId', LocationId) + + def get_ParentLocationIds(self): + return self.get_body_params().get('ParentLocationIds') + + def set_ParentLocationIds(self,ParentLocationIds): + self.add_body_params('ParentLocationIds', ParentLocationIds) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetEMapRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetEMapRequest.py new file mode 100644 index 0000000000..f778357f0b --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetEMapRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class GetEMapRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'GetEMap') + 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_StoreId(self): + return self.get_body_params().get('StoreId') + + def set_StoreId(self,StoreId): + self.add_body_params('StoreId', StoreId) + + def get_LocationId(self): + return self.get_body_params().get('LocationId') + + def set_LocationId(self,LocationId): + self.add_body_params('LocationId', LocationId) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetHeatMapDataRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetHeatMapDataRequest.py new file mode 100644 index 0000000000..06a2e5c05c --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetHeatMapDataRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class GetHeatMapDataRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'GetHeatMapData') + 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_EMapName(self): + return self.get_body_params().get('EMapName') + + def set_EMapName(self,EMapName): + self.add_body_params('EMapName', EMapName) + + def get_StoreId(self): + return self.get_body_params().get('StoreId') + + def set_StoreId(self,StoreId): + self.add_body_params('StoreId', StoreId) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetImageUrlRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetImageUrlRequest.py new file mode 100644 index 0000000000..04148cc866 --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetImageUrlRequest.py @@ -0,0 +1,49 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class GetImageUrlRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'GetImageUrl') + 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_OriginUrls(self): + return self.get_body_params().get('OriginUrls') + + def set_OriginUrls(self,OriginUrls): + self.add_body_params('OriginUrls', OriginUrls) + + def get_StoreId(self): + return self.get_body_params().get('StoreId') + + def set_StoreId(self,StoreId): + self.add_body_params('StoreId', StoreId) + + def get_ObjectKeys(self): + return self.get_body_params().get('ObjectKeys') + + def set_ObjectKeys(self,ObjectKeys): + self.add_body_params('ObjectKeys', ObjectKeys) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetLocationsRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetLocationsRequest.py new file mode 100644 index 0000000000..2644d19528 --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetLocationsRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class GetLocationsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'GetLocations') + 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_StoreId(self): + return self.get_body_params().get('StoreId') + + def set_StoreId(self,StoreId): + self.add_body_params('StoreId', StoreId) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetOverviewDataRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetOverviewDataRequest.py new file mode 100644 index 0000000000..7faaf2c192 --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetOverviewDataRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class GetOverviewDataRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'GetOverviewData') + 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_Date(self): + return self.get_body_params().get('Date') + + def set_Date(self,Date): + self.add_body_params('Date', Date) + + def get_StoreIds(self): + return self.get_body_params().get('StoreIds') + + def set_StoreIds(self,StoreIds): + self.add_body_params('StoreIds', StoreIds) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetPortrayalRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetPortrayalRequest.py new file mode 100644 index 0000000000..f603b5688a --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetPortrayalRequest.py @@ -0,0 +1,49 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class GetPortrayalRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'GetPortrayal') + 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_Date(self): + return self.get_body_params().get('Date') + + def set_Date(self,Date): + self.add_body_params('Date', Date) + + def get_LocationIds(self): + return self.get_body_params().get('LocationIds') + + def set_LocationIds(self,LocationIds): + self.add_body_params('LocationIds', LocationIds) + + def get_StoreIds(self): + return self.get_body_params().get('StoreIds') + + def set_StoreIds(self,StoreIds): + self.add_body_params('StoreIds', StoreIds) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetSupportStoreRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetSupportStoreRequest.py new file mode 100644 index 0000000000..a6b1d6ecb1 --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/GetSupportStoreRequest.py @@ -0,0 +1,30 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class GetSupportStoreRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'GetSupportStore') + if hasattr(self, "endpoint_map"): + setattr(self, "endpoint_map", endpoint_data.getEndpointMap()) + if hasattr(self, "endpoint_regional"): + setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional()) diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/ListVisitorsRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/ListVisitorsRequest.py new file mode 100644 index 0000000000..df127c35a4 --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/ListVisitorsRequest.py @@ -0,0 +1,103 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class ListVisitorsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'ListVisitors') + 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_Gender(self): + return self.get_body_params().get('Gender') + + def set_Gender(self,Gender): + self.add_body_params('Gender', Gender) + + def get_UkId(self): + return self.get_body_params().get('UkId') + + def set_UkId(self,UkId): + self.add_body_params('UkId', UkId) + + def get_LocationIds(self): + return self.get_body_params().get('LocationIds') + + def set_LocationIds(self,LocationIds): + self.add_body_params('LocationIds', LocationIds) + + def get_StartTime(self): + return self.get_body_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_body_params('StartTime', StartTime) + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_EnterCount(self): + return self.get_body_params().get('EnterCount') + + def set_EnterCount(self,EnterCount): + self.add_body_params('EnterCount', EnterCount) + + def get_PageIndex(self): + return self.get_body_params().get('PageIndex') + + def set_PageIndex(self,PageIndex): + self.add_body_params('PageIndex', PageIndex) + + def get_AgeStart(self): + return self.get_body_params().get('AgeStart') + + def set_AgeStart(self,AgeStart): + self.add_body_params('AgeStart', AgeStart) + + def get_AgeEnd(self): + return self.get_body_params().get('AgeEnd') + + def set_AgeEnd(self,AgeEnd): + self.add_body_params('AgeEnd', AgeEnd) + + def get_PkId(self): + return self.get_body_params().get('PkId') + + def set_PkId(self,PkId): + self.add_body_params('PkId', PkId) + + def get_EndTime(self): + return self.get_body_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_body_params('EndTime', EndTime) + + def get_StoreIds(self): + return self.get_body_params().get('StoreIds') + + def set_StoreIds(self,StoreIds): + self.add_body_params('StoreIds', StoreIds) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/SearchPersonByImgRequest.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/SearchPersonByImgRequest.py new file mode 100644 index 0000000000..020585af0f --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/SearchPersonByImgRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkcusanalytic_sc_online.endpoint import endpoint_data + +class SearchPersonByImgRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'cusanalytic_sc_online', '2019-05-24', 'SearchPersonByImg') + 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_StoreId(self): + return self.get_body_params().get('StoreId') + + def set_StoreId(self,StoreId): + self.add_body_params('StoreId', StoreId) + + def get_ImgUrl(self): + return self.get_body_params().get('ImgUrl') + + def set_ImgUrl(self,ImgUrl): + self.add_body_params('ImgUrl', ImgUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/__init__.py b/aliyun-python-sdk-cusanalytic_sc_online/aliyunsdkcusanalytic_sc_online/request/v20190524/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-cusanalytic_sc_online/setup.py b/aliyun-python-sdk-cusanalytic_sc_online/setup.py new file mode 100644 index 0000000000..9b5af7481a --- /dev/null +++ b/aliyun-python-sdk-cusanalytic_sc_online/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for cusanalytic_sc_online. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkcusanalytic_sc_online" +NAME = "aliyun-python-sdk-cusanalytic_sc_online" +DESCRIPTION = "The cusanalytic_sc_online module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","cusanalytic_sc_online"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/ChangeLog.txt b/aliyun-python-sdk-domain-intl/ChangeLog.txt new file mode 100644 index 0000000000..6e775b1066 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/ChangeLog.txt @@ -0,0 +1,46 @@ +2019-05-13 Version: 1.6.0 +1, Add three new apis, SaveSingleTaskForSaveArtExtension, QueryArtExtension and CancelTask. + +2019-04-23 Version: 1.5.0 +1, Add a new api, QueryDomainByDomainName. + +2018-12-20 Version: 1.4.0 +1, Add Dns Sec apis. +2, Add coupon and promotion fields for order apis. + +2018-11-13 Version: 1.3.0 +1, Add FuzzyMatchDomainSensitiveWord interface,Support fuzzy matching sensitive words. +2, Add BatchFuzzyMatchDomainSensitiveWord interface,Support batch fuzzy matching sensitive words. +3, Add DynamicCheck properties for results of CheckDomain interface. + +2018-10-26 Version: 1.2.2 +1, Add apis for trademark domains. +2, Retry publish SDK. + +2018-10-26 Version: 1.2.1 +1, Add apis for trademark domains. + +2018-10-25 Version: 1.2.1 +1, Add apis for trademark domains. + +2018-10-25 Version: 1.2.0 +1, Add apis for trademark domains. + +2018-09-20 Version: 1.2.1 +1, Fix publish failure for Java, Python and C# SDK. + +2018-09-19 Version: 1.2.0 +1, Add ens api, include SaveSingleTaskForDisassociatingEns, SaveSingleTaskForAssociatingEns, QueryLocalEnsAssociation and QueryEnsAssociation. + +2018-04-04 Version: 1.2.0 +1, Add APIs for domain transfer in and transfer out. +2, Add APIs for poll and acknowledge domain task. + +2018-01-23 Version: 1.1.0 +1, Add interface for query domain task history. + + +2017-12-28 Version: 1.0.0 +1, First release for Domain-intl. +2, Add interfaces for domain name registration and management. + diff --git a/aliyun-python-sdk-domain-intl/MANIFEST.in b/aliyun-python-sdk-domain-intl/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-domain-intl/README.rst b/aliyun-python-sdk-domain-intl/README.rst new file mode 100644 index 0000000000..8e85eb93b1 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-domain-intl +This is the domain-intl module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/__init__.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/__init__.py new file mode 100644 index 0000000000..df44d337ff --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/__init__.py @@ -0,0 +1 @@ +__version__ = "1.6.0" \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/__init__.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/AcknowledgeTaskResultRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/AcknowledgeTaskResultRequest.py new file mode 100644 index 0000000000..b076a1cb11 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/AcknowledgeTaskResultRequest.py @@ -0,0 +1,44 @@ +# 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 +class AcknowledgeTaskResultRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'AcknowledgeTaskResult','domain') + + def get_TaskDetailNos(self): + return self.get_query_params().get('TaskDetailNos') + + def set_TaskDetailNos(self,TaskDetailNos): + for i in range(len(TaskDetailNos)): + if TaskDetailNos[i] is not None: + self.add_query_param('TaskDetailNo.' + str(i + 1) , TaskDetailNos[i]); + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/BatchFuzzyMatchDomainSensitiveWordRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/BatchFuzzyMatchDomainSensitiveWordRequest.py new file mode 100644 index 0000000000..933008c19a --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/BatchFuzzyMatchDomainSensitiveWordRequest.py @@ -0,0 +1,42 @@ +# 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 +class BatchFuzzyMatchDomainSensitiveWordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'BatchFuzzyMatchDomainSensitiveWord','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Keyword(self): + return self.get_query_params().get('Keyword') + + def set_Keyword(self,Keyword): + self.add_query_param('Keyword',Keyword) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CancelDomainVerificationRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CancelDomainVerificationRequest.py new file mode 100644 index 0000000000..dc18742ae4 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CancelDomainVerificationRequest.py @@ -0,0 +1,48 @@ +# 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 +class CancelDomainVerificationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'CancelDomainVerification','domain') + + def get_ActionType(self): + return self.get_query_params().get('ActionType') + + def set_ActionType(self,ActionType): + self.add_query_param('ActionType',ActionType) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CancelTaskRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CancelTaskRequest.py new file mode 100644 index 0000000000..b9a42de045 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CancelTaskRequest.py @@ -0,0 +1,42 @@ +# 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 +class CancelTaskRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'CancelTask','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_TaskNo(self): + return self.get_query_params().get('TaskNo') + + def set_TaskNo(self,TaskNo): + self.add_query_param('TaskNo',TaskNo) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CheckDomainRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CheckDomainRequest.py new file mode 100644 index 0000000000..461cdf6fd1 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CheckDomainRequest.py @@ -0,0 +1,60 @@ +# 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 +class CheckDomainRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'CheckDomain','domain') + + def get_FeeCurrency(self): + return self.get_query_params().get('FeeCurrency') + + def set_FeeCurrency(self,FeeCurrency): + self.add_query_param('FeeCurrency',FeeCurrency) + + def get_FeePeriod(self): + return self.get_query_params().get('FeePeriod') + + def set_FeePeriod(self,FeePeriod): + self.add_query_param('FeePeriod',FeePeriod) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_FeeCommand(self): + return self.get_query_params().get('FeeCommand') + + def set_FeeCommand(self,FeeCommand): + self.add_query_param('FeeCommand',FeeCommand) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CheckDomainSunriseClaimRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CheckDomainSunriseClaimRequest.py new file mode 100644 index 0000000000..0db307adb4 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CheckDomainSunriseClaimRequest.py @@ -0,0 +1,42 @@ +# 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 +class CheckDomainSunriseClaimRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'CheckDomainSunriseClaim','domain') + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CheckTransferInFeasibilityRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CheckTransferInFeasibilityRequest.py new file mode 100644 index 0000000000..8bdac5b2ae --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/CheckTransferInFeasibilityRequest.py @@ -0,0 +1,48 @@ +# 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 +class CheckTransferInFeasibilityRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'CheckTransferInFeasibility','domain') + + def get_TransferAuthorizationCode(self): + return self.get_query_params().get('TransferAuthorizationCode') + + def set_TransferAuthorizationCode(self,TransferAuthorizationCode): + self.add_query_param('TransferAuthorizationCode',TransferAuthorizationCode) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/ConfirmTransferInEmailRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/ConfirmTransferInEmailRequest.py new file mode 100644 index 0000000000..32e5a5ddcf --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/ConfirmTransferInEmailRequest.py @@ -0,0 +1,50 @@ +# 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 +class ConfirmTransferInEmailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'ConfirmTransferInEmail','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainNames(self): + return self.get_query_params().get('DomainNames') + + def set_DomainNames(self,DomainNames): + for i in range(len(DomainNames)): + if DomainNames[i] is not None: + self.add_query_param('DomainName.' + str(i + 1) , DomainNames[i]); + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/DeleteEmailVerificationRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/DeleteEmailVerificationRequest.py new file mode 100644 index 0000000000..083a062e3d --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/DeleteEmailVerificationRequest.py @@ -0,0 +1,42 @@ +# 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 +class DeleteEmailVerificationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'DeleteEmailVerification','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/DeleteRegistrantProfileRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/DeleteRegistrantProfileRequest.py new file mode 100644 index 0000000000..3422a530de --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/DeleteRegistrantProfileRequest.py @@ -0,0 +1,42 @@ +# 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 +class DeleteRegistrantProfileRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'DeleteRegistrantProfile','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_RegistrantProfileId(self): + return self.get_query_params().get('RegistrantProfileId') + + def set_RegistrantProfileId(self,RegistrantProfileId): + self.add_query_param('RegistrantProfileId',RegistrantProfileId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/EmailVerifiedRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/EmailVerifiedRequest.py new file mode 100644 index 0000000000..b89a0ebdbc --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/EmailVerifiedRequest.py @@ -0,0 +1,42 @@ +# 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 +class EmailVerifiedRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'EmailVerified','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/FuzzyMatchDomainSensitiveWordRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/FuzzyMatchDomainSensitiveWordRequest.py new file mode 100644 index 0000000000..0e9d35288e --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/FuzzyMatchDomainSensitiveWordRequest.py @@ -0,0 +1,42 @@ +# 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 +class FuzzyMatchDomainSensitiveWordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'FuzzyMatchDomainSensitiveWord','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Keyword(self): + return self.get_query_params().get('Keyword') + + def set_Keyword(self,Keyword): + self.add_query_param('Keyword',Keyword) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/ListEmailVerificationRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/ListEmailVerificationRequest.py new file mode 100644 index 0000000000..60facab770 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/ListEmailVerificationRequest.py @@ -0,0 +1,72 @@ +# 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 +class ListEmailVerificationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'ListEmailVerification','domain') + + def get_BeginCreateTime(self): + return self.get_query_params().get('BeginCreateTime') + + def set_BeginCreateTime(self,BeginCreateTime): + self.add_query_param('BeginCreateTime',BeginCreateTime) + + def get_EndCreateTime(self): + return self.get_query_params().get('EndCreateTime') + + def set_EndCreateTime(self,EndCreateTime): + self.add_query_param('EndCreateTime',EndCreateTime) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) + + def get_VerificationStatus(self): + return self.get_query_params().get('VerificationStatus') + + def set_VerificationStatus(self,VerificationStatus): + self.add_query_param('VerificationStatus',VerificationStatus) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/LookupTmchNoticeRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/LookupTmchNoticeRequest.py new file mode 100644 index 0000000000..d8bedb3cbb --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/LookupTmchNoticeRequest.py @@ -0,0 +1,42 @@ +# 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 +class LookupTmchNoticeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'LookupTmchNotice','domain') + + def get_ClaimKey(self): + return self.get_query_params().get('ClaimKey') + + def set_ClaimKey(self,ClaimKey): + self.add_query_param('ClaimKey',ClaimKey) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/PollTaskResultRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/PollTaskResultRequest.py new file mode 100644 index 0000000000..207596a368 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/PollTaskResultRequest.py @@ -0,0 +1,72 @@ +# 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 +class PollTaskResultRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'PollTaskResult','domain') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_TaskNo(self): + return self.get_query_params().get('TaskNo') + + def set_TaskNo(self,TaskNo): + self.add_query_param('TaskNo',TaskNo) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_TaskResultStatus(self): + return self.get_query_params().get('TaskResultStatus') + + def set_TaskResultStatus(self,TaskResultStatus): + self.add_query_param('TaskResultStatus',TaskResultStatus) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryArtExtensionRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryArtExtensionRequest.py new file mode 100644 index 0000000000..f350ceb2da --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryArtExtensionRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryArtExtensionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryArtExtension','domain') + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryChangeLogListRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryChangeLogListRequest.py new file mode 100644 index 0000000000..9624da9298 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryChangeLogListRequest.py @@ -0,0 +1,66 @@ +# 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 +class QueryChangeLogListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryChangeLogList','domain') + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_StartDate(self): + return self.get_query_params().get('StartDate') + + def set_StartDate(self,StartDate): + self.add_query_param('StartDate',StartDate) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryContactInfoRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryContactInfoRequest.py new file mode 100644 index 0000000000..92a568550a --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryContactInfoRequest.py @@ -0,0 +1,48 @@ +# 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 +class QueryContactInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryContactInfo','domain') + + def get_ContactType(self): + return self.get_query_params().get('ContactType') + + def set_ContactType(self,ContactType): + self.add_query_param('ContactType',ContactType) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDSRecordRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDSRecordRequest.py new file mode 100644 index 0000000000..5f56d562b0 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDSRecordRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryDSRecordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryDSRecord','domain') + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDnsHostRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDnsHostRequest.py new file mode 100644 index 0000000000..fa1ea27f97 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDnsHostRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryDnsHostRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryDnsHost','domain') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDomainByDomainNameRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDomainByDomainNameRequest.py new file mode 100644 index 0000000000..09f91d0bd6 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDomainByDomainNameRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryDomainByDomainNameRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryDomainByDomainName','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDomainByInstanceIdRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDomainByInstanceIdRequest.py new file mode 100644 index 0000000000..fab8950eb5 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDomainByInstanceIdRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryDomainByInstanceIdRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryDomainByInstanceId','domain') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDomainListRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDomainListRequest.py new file mode 100644 index 0000000000..4b8cdbd47a --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDomainListRequest.py @@ -0,0 +1,102 @@ +# 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 +class QueryDomainListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryDomainList','domain') + + def get_EndExpirationDate(self): + return self.get_query_params().get('EndExpirationDate') + + def set_EndExpirationDate(self,EndExpirationDate): + self.add_query_param('EndExpirationDate',EndExpirationDate) + + def get_ProductDomainType(self): + return self.get_query_params().get('ProductDomainType') + + def set_ProductDomainType(self,ProductDomainType): + self.add_query_param('ProductDomainType',ProductDomainType) + + def get_OrderKeyType(self): + return self.get_query_params().get('OrderKeyType') + + def set_OrderKeyType(self,OrderKeyType): + self.add_query_param('OrderKeyType',OrderKeyType) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_StartExpirationDate(self): + return self.get_query_params().get('StartExpirationDate') + + def set_StartExpirationDate(self,StartExpirationDate): + self.add_query_param('StartExpirationDate',StartExpirationDate) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_OrderByType(self): + return self.get_query_params().get('OrderByType') + + def set_OrderByType(self,OrderByType): + self.add_query_param('OrderByType',OrderByType) + + def get_EndRegistrationDate(self): + return self.get_query_params().get('EndRegistrationDate') + + def set_EndRegistrationDate(self,EndRegistrationDate): + self.add_query_param('EndRegistrationDate',EndRegistrationDate) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_QueryType(self): + return self.get_query_params().get('QueryType') + + def set_QueryType(self,QueryType): + self.add_query_param('QueryType',QueryType) + + def get_StartRegistrationDate(self): + return self.get_query_params().get('StartRegistrationDate') + + def set_StartRegistrationDate(self,StartRegistrationDate): + self.add_query_param('StartRegistrationDate',StartRegistrationDate) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDomainRealNameVerificationInfoRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDomainRealNameVerificationInfoRequest.py new file mode 100644 index 0000000000..fb4cbe0124 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryDomainRealNameVerificationInfoRequest.py @@ -0,0 +1,48 @@ +# 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 +class QueryDomainRealNameVerificationInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryDomainRealNameVerificationInfo','domain') + + def get_FetchImage(self): + return self.get_query_params().get('FetchImage') + + def set_FetchImage(self,FetchImage): + self.add_query_param('FetchImage',FetchImage) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryEnsAssociationRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryEnsAssociationRequest.py new file mode 100644 index 0000000000..ba22317f6e --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryEnsAssociationRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryEnsAssociationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryEnsAssociation','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryFailReasonForDomainRealNameVerificationRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryFailReasonForDomainRealNameVerificationRequest.py new file mode 100644 index 0000000000..578150beea --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryFailReasonForDomainRealNameVerificationRequest.py @@ -0,0 +1,48 @@ +# 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 +class QueryFailReasonForDomainRealNameVerificationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryFailReasonForDomainRealNameVerification','domain') + + def get_RealNameVerificationAction(self): + return self.get_query_params().get('RealNameVerificationAction') + + def set_RealNameVerificationAction(self,RealNameVerificationAction): + self.add_query_param('RealNameVerificationAction',RealNameVerificationAction) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryFailReasonForRegistrantProfileRealNameVerificationRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryFailReasonForRegistrantProfileRealNameVerificationRequest.py new file mode 100644 index 0000000000..cf429b948f --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryFailReasonForRegistrantProfileRealNameVerificationRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryFailReasonForRegistrantProfileRealNameVerificationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryFailReasonForRegistrantProfileRealNameVerification','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_RegistrantProfileID(self): + return self.get_query_params().get('RegistrantProfileID') + + def set_RegistrantProfileID(self,RegistrantProfileID): + self.add_query_param('RegistrantProfileID',RegistrantProfileID) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryLocalEnsAssociationRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryLocalEnsAssociationRequest.py new file mode 100644 index 0000000000..2aabea8dc7 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryLocalEnsAssociationRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryLocalEnsAssociationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryLocalEnsAssociation','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryRegistrantProfileRealNameVerificationInfoRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryRegistrantProfileRealNameVerificationInfoRequest.py new file mode 100644 index 0000000000..652ef193ce --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryRegistrantProfileRealNameVerificationInfoRequest.py @@ -0,0 +1,48 @@ +# 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 +class QueryRegistrantProfileRealNameVerificationInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryRegistrantProfileRealNameVerificationInfo','domain') + + def get_FetchImage(self): + return self.get_query_params().get('FetchImage') + + def set_FetchImage(self,FetchImage): + self.add_query_param('FetchImage',FetchImage) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_RegistrantProfileId(self): + return self.get_query_params().get('RegistrantProfileId') + + def set_RegistrantProfileId(self,RegistrantProfileId): + self.add_query_param('RegistrantProfileId',RegistrantProfileId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryRegistrantProfilesRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryRegistrantProfilesRequest.py new file mode 100644 index 0000000000..9b312f89e9 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryRegistrantProfilesRequest.py @@ -0,0 +1,90 @@ +# 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 +class QueryRegistrantProfilesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryRegistrantProfiles','domain') + + def get_RegistrantOrganization(self): + return self.get_query_params().get('RegistrantOrganization') + + def set_RegistrantOrganization(self,RegistrantOrganization): + self.add_query_param('RegistrantOrganization',RegistrantOrganization) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_RegistrantProfileId(self): + return self.get_query_params().get('RegistrantProfileId') + + def set_RegistrantProfileId(self,RegistrantProfileId): + self.add_query_param('RegistrantProfileId',RegistrantProfileId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_RegistrantType(self): + return self.get_query_params().get('RegistrantType') + + def set_RegistrantType(self,RegistrantType): + self.add_query_param('RegistrantType',RegistrantType) + + def get_RegistrantProfileType(self): + return self.get_query_params().get('RegistrantProfileType') + + def set_RegistrantProfileType(self,RegistrantProfileType): + self.add_query_param('RegistrantProfileType',RegistrantProfileType) + + def get_RealNameStatus(self): + return self.get_query_params().get('RealNameStatus') + + def set_RealNameStatus(self,RealNameStatus): + self.add_query_param('RealNameStatus',RealNameStatus) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_DefaultRegistrantProfile(self): + return self.get_query_params().get('DefaultRegistrantProfile') + + def set_DefaultRegistrantProfile(self,DefaultRegistrantProfile): + self.add_query_param('DefaultRegistrantProfile',DefaultRegistrantProfile) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTaskDetailHistoryRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTaskDetailHistoryRequest.py new file mode 100644 index 0000000000..efe95714d7 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTaskDetailHistoryRequest.py @@ -0,0 +1,72 @@ +# 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 +class QueryTaskDetailHistoryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryTaskDetailHistory','domain') + + def get_TaskStatus(self): + return self.get_query_params().get('TaskStatus') + + def set_TaskStatus(self,TaskStatus): + self.add_query_param('TaskStatus',TaskStatus) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_TaskNo(self): + return self.get_query_params().get('TaskNo') + + def set_TaskNo(self,TaskNo): + self.add_query_param('TaskNo',TaskNo) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_TaskDetailNoCursor(self): + return self.get_query_params().get('TaskDetailNoCursor') + + def set_TaskDetailNoCursor(self,TaskDetailNoCursor): + self.add_query_param('TaskDetailNoCursor',TaskDetailNoCursor) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_DomainNameCursor(self): + return self.get_query_params().get('DomainNameCursor') + + def set_DomainNameCursor(self,DomainNameCursor): + self.add_query_param('DomainNameCursor',DomainNameCursor) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTaskDetailListRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTaskDetailListRequest.py new file mode 100644 index 0000000000..f698def81c --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTaskDetailListRequest.py @@ -0,0 +1,72 @@ +# 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 +class QueryTaskDetailListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryTaskDetailList','domain') + + def get_TaskStatus(self): + return self.get_query_params().get('TaskStatus') + + def set_TaskStatus(self,TaskStatus): + self.add_query_param('TaskStatus',TaskStatus) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_TaskNo(self): + return self.get_query_params().get('TaskNo') + + def set_TaskNo(self,TaskNo): + self.add_query_param('TaskNo',TaskNo) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTaskInfoHistoryRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTaskInfoHistoryRequest.py new file mode 100644 index 0000000000..f86f4e957b --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTaskInfoHistoryRequest.py @@ -0,0 +1,66 @@ +# 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 +class QueryTaskInfoHistoryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryTaskInfoHistory','domain') + + def get_BeginCreateTime(self): + return self.get_query_params().get('BeginCreateTime') + + def set_BeginCreateTime(self,BeginCreateTime): + self.add_query_param('BeginCreateTime',BeginCreateTime) + + def get_EndCreateTime(self): + return self.get_query_params().get('EndCreateTime') + + def set_EndCreateTime(self,EndCreateTime): + self.add_query_param('EndCreateTime',EndCreateTime) + + def get_TaskNoCursor(self): + return self.get_query_params().get('TaskNoCursor') + + def set_TaskNoCursor(self,TaskNoCursor): + self.add_query_param('TaskNoCursor',TaskNoCursor) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_CreateTimeCursor(self): + return self.get_query_params().get('CreateTimeCursor') + + def set_CreateTimeCursor(self,CreateTimeCursor): + self.add_query_param('CreateTimeCursor',CreateTimeCursor) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTaskListRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTaskListRequest.py new file mode 100644 index 0000000000..eefd9b3b5b --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTaskListRequest.py @@ -0,0 +1,60 @@ +# 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 +class QueryTaskListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryTaskList','domain') + + def get_BeginCreateTime(self): + return self.get_query_params().get('BeginCreateTime') + + def set_BeginCreateTime(self,BeginCreateTime): + self.add_query_param('BeginCreateTime',BeginCreateTime) + + def get_EndCreateTime(self): + return self.get_query_params().get('EndCreateTime') + + def set_EndCreateTime(self,EndCreateTime): + self.add_query_param('EndCreateTime',EndCreateTime) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTransferInByInstanceIdRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTransferInByInstanceIdRequest.py new file mode 100644 index 0000000000..7831b42f33 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTransferInByInstanceIdRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryTransferInByInstanceIdRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryTransferInByInstanceId','domain') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTransferInListRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTransferInListRequest.py new file mode 100644 index 0000000000..305b057cc3 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTransferInListRequest.py @@ -0,0 +1,72 @@ +# 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 +class QueryTransferInListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryTransferInList','domain') + + def get_SubmissionStartDate(self): + return self.get_query_params().get('SubmissionStartDate') + + def set_SubmissionStartDate(self,SubmissionStartDate): + self.add_query_param('SubmissionStartDate',SubmissionStartDate) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_SubmissionEndDate(self): + return self.get_query_params().get('SubmissionEndDate') + + def set_SubmissionEndDate(self,SubmissionEndDate): + self.add_query_param('SubmissionEndDate',SubmissionEndDate) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_SimpleTransferInStatus(self): + return self.get_query_params().get('SimpleTransferInStatus') + + def set_SimpleTransferInStatus(self,SimpleTransferInStatus): + self.add_query_param('SimpleTransferInStatus',SimpleTransferInStatus) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTransferOutInfoRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTransferOutInfoRequest.py new file mode 100644 index 0000000000..50333db2de --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryTransferOutInfoRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryTransferOutInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryTransferOutInfo','domain') + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/RegistrantProfileRealNameVerificationRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/RegistrantProfileRealNameVerificationRequest.py new file mode 100644 index 0000000000..d3ee426ca9 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/RegistrantProfileRealNameVerificationRequest.py @@ -0,0 +1,61 @@ +# 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 +class RegistrantProfileRealNameVerificationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'RegistrantProfileRealNameVerification','domain') + self.set_method('POST') + + def get_IdentityCredentialType(self): + return self.get_query_params().get('IdentityCredentialType') + + def set_IdentityCredentialType(self,IdentityCredentialType): + self.add_query_param('IdentityCredentialType',IdentityCredentialType) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_RegistrantProfileID(self): + return self.get_query_params().get('RegistrantProfileID') + + def set_RegistrantProfileID(self,RegistrantProfileID): + self.add_query_param('RegistrantProfileID',RegistrantProfileID) + + def get_IdentityCredential(self): + return self.get_body_params().get('IdentityCredential') + + def set_IdentityCredential(self,IdentityCredential): + self.add_body_params('IdentityCredential', IdentityCredential) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_IdentityCredentialNo(self): + return self.get_query_params().get('IdentityCredentialNo') + + def set_IdentityCredentialNo(self,IdentityCredentialNo): + self.add_query_param('IdentityCredentialNo',IdentityCredentialNo) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/ResendEmailVerificationRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/ResendEmailVerificationRequest.py new file mode 100644 index 0000000000..c77ee21cd2 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/ResendEmailVerificationRequest.py @@ -0,0 +1,42 @@ +# 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 +class ResendEmailVerificationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'ResendEmailVerification','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForCreatingOrderActivateRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForCreatingOrderActivateRequest.py new file mode 100644 index 0000000000..e6c46a9d9c --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForCreatingOrderActivateRequest.py @@ -0,0 +1,109 @@ +# 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 +class SaveBatchTaskForCreatingOrderActivateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveBatchTaskForCreatingOrderActivate','domain') + + def get_OrderActivateParams(self): + return self.get_query_params().get('OrderActivateParams') + + def set_OrderActivateParams(self,OrderActivateParams): + for i in range(len(OrderActivateParams)): + if OrderActivateParams[i].get('Country') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.Country' , OrderActivateParams[i].get('Country')) + if OrderActivateParams[i].get('SubscriptionDuration') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.SubscriptionDuration' , OrderActivateParams[i].get('SubscriptionDuration')) + if OrderActivateParams[i].get('Address') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.Address' , OrderActivateParams[i].get('Address')) + if OrderActivateParams[i].get('PermitPremiumActivation') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.PermitPremiumActivation' , OrderActivateParams[i].get('PermitPremiumActivation')) + if OrderActivateParams[i].get('TelArea') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.TelArea' , OrderActivateParams[i].get('TelArea')) + if OrderActivateParams[i].get('City') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.City' , OrderActivateParams[i].get('City')) + if OrderActivateParams[i].get('Dns2') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.Dns2' , OrderActivateParams[i].get('Dns2')) + if OrderActivateParams[i].get('Dns1') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.Dns1' , OrderActivateParams[i].get('Dns1')) + if OrderActivateParams[i].get('DomainName') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.DomainName' , OrderActivateParams[i].get('DomainName')) + if OrderActivateParams[i].get('RegistrantProfileId') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.RegistrantProfileId' , OrderActivateParams[i].get('RegistrantProfileId')) + if OrderActivateParams[i].get('RegistrantType') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.RegistrantType' , OrderActivateParams[i].get('RegistrantType')) + if OrderActivateParams[i].get('Telephone') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.Telephone' , OrderActivateParams[i].get('Telephone')) + if OrderActivateParams[i].get('TrademarkDomainActivation') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.TrademarkDomainActivation' , OrderActivateParams[i].get('TrademarkDomainActivation')) + if OrderActivateParams[i].get('AliyunDns') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.AliyunDns' , OrderActivateParams[i].get('AliyunDns')) + if OrderActivateParams[i].get('RegistrantOrganization') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.RegistrantOrganization' , OrderActivateParams[i].get('RegistrantOrganization')) + if OrderActivateParams[i].get('TelExt') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.TelExt' , OrderActivateParams[i].get('TelExt')) + if OrderActivateParams[i].get('Province') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.Province' , OrderActivateParams[i].get('Province')) + if OrderActivateParams[i].get('PostalCode') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.PostalCode' , OrderActivateParams[i].get('PostalCode')) + if OrderActivateParams[i].get('EnableDomainProxy') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.EnableDomainProxy' , OrderActivateParams[i].get('EnableDomainProxy')) + if OrderActivateParams[i].get('Email') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.Email' , OrderActivateParams[i].get('Email')) + if OrderActivateParams[i].get('RegistrantName') is not None: + self.add_query_param('OrderActivateParam.' + str(i + 1) + '.RegistrantName' , OrderActivateParams[i].get('RegistrantName')) + + + def get_PromotionNo(self): + return self.get_query_params().get('PromotionNo') + + def set_PromotionNo(self,PromotionNo): + self.add_query_param('PromotionNo',PromotionNo) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_CouponNo(self): + return self.get_query_params().get('CouponNo') + + def set_CouponNo(self,CouponNo): + self.add_query_param('CouponNo',CouponNo) + + def get_UseCoupon(self): + return self.get_query_params().get('UseCoupon') + + def set_UseCoupon(self,UseCoupon): + self.add_query_param('UseCoupon',UseCoupon) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_UsePromotion(self): + return self.get_query_params().get('UsePromotion') + + def set_UsePromotion(self,UsePromotion): + self.add_query_param('UsePromotion',UsePromotion) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForCreatingOrderRedeemRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForCreatingOrderRedeemRequest.py new file mode 100644 index 0000000000..4a2ee6c33f --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForCreatingOrderRedeemRequest.py @@ -0,0 +1,71 @@ +# 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 +class SaveBatchTaskForCreatingOrderRedeemRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveBatchTaskForCreatingOrderRedeem','domain') + + def get_PromotionNo(self): + return self.get_query_params().get('PromotionNo') + + def set_PromotionNo(self,PromotionNo): + self.add_query_param('PromotionNo',PromotionNo) + + def get_OrderRedeemParams(self): + return self.get_query_params().get('OrderRedeemParams') + + def set_OrderRedeemParams(self,OrderRedeemParams): + for i in range(len(OrderRedeemParams)): + if OrderRedeemParams[i].get('CurrentExpirationDate') is not None: + self.add_query_param('OrderRedeemParam.' + str(i + 1) + '.CurrentExpirationDate' , OrderRedeemParams[i].get('CurrentExpirationDate')) + if OrderRedeemParams[i].get('DomainName') is not None: + self.add_query_param('OrderRedeemParam.' + str(i + 1) + '.DomainName' , OrderRedeemParams[i].get('DomainName')) + + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_CouponNo(self): + return self.get_query_params().get('CouponNo') + + def set_CouponNo(self,CouponNo): + self.add_query_param('CouponNo',CouponNo) + + def get_UseCoupon(self): + return self.get_query_params().get('UseCoupon') + + def set_UseCoupon(self,UseCoupon): + self.add_query_param('UseCoupon',UseCoupon) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_UsePromotion(self): + return self.get_query_params().get('UsePromotion') + + def set_UsePromotion(self,UsePromotion): + self.add_query_param('UsePromotion',UsePromotion) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForCreatingOrderRenewRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForCreatingOrderRenewRequest.py new file mode 100644 index 0000000000..a6b2a3d7e8 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForCreatingOrderRenewRequest.py @@ -0,0 +1,73 @@ +# 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 +class SaveBatchTaskForCreatingOrderRenewRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveBatchTaskForCreatingOrderRenew','domain') + + def get_PromotionNo(self): + return self.get_query_params().get('PromotionNo') + + def set_PromotionNo(self,PromotionNo): + self.add_query_param('PromotionNo',PromotionNo) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_OrderRenewParams(self): + return self.get_query_params().get('OrderRenewParams') + + def set_OrderRenewParams(self,OrderRenewParams): + for i in range(len(OrderRenewParams)): + if OrderRenewParams[i].get('SubscriptionDuration') is not None: + self.add_query_param('OrderRenewParam.' + str(i + 1) + '.SubscriptionDuration' , OrderRenewParams[i].get('SubscriptionDuration')) + if OrderRenewParams[i].get('CurrentExpirationDate') is not None: + self.add_query_param('OrderRenewParam.' + str(i + 1) + '.CurrentExpirationDate' , OrderRenewParams[i].get('CurrentExpirationDate')) + if OrderRenewParams[i].get('DomainName') is not None: + self.add_query_param('OrderRenewParam.' + str(i + 1) + '.DomainName' , OrderRenewParams[i].get('DomainName')) + + + def get_CouponNo(self): + return self.get_query_params().get('CouponNo') + + def set_CouponNo(self,CouponNo): + self.add_query_param('CouponNo',CouponNo) + + def get_UseCoupon(self): + return self.get_query_params().get('UseCoupon') + + def set_UseCoupon(self,UseCoupon): + self.add_query_param('UseCoupon',UseCoupon) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_UsePromotion(self): + return self.get_query_params().get('UsePromotion') + + def set_UsePromotion(self,UsePromotion): + self.add_query_param('UsePromotion',UsePromotion) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForCreatingOrderTransferRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForCreatingOrderTransferRequest.py new file mode 100644 index 0000000000..16aa5bb137 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForCreatingOrderTransferRequest.py @@ -0,0 +1,75 @@ +# 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 +class SaveBatchTaskForCreatingOrderTransferRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveBatchTaskForCreatingOrderTransfer','domain') + + def get_PromotionNo(self): + return self.get_query_params().get('PromotionNo') + + def set_PromotionNo(self,PromotionNo): + self.add_query_param('PromotionNo',PromotionNo) + + def get_OrderTransferParams(self): + return self.get_query_params().get('OrderTransferParams') + + def set_OrderTransferParams(self,OrderTransferParams): + for i in range(len(OrderTransferParams)): + if OrderTransferParams[i].get('PermitPremiumTransfer') is not None: + self.add_query_param('OrderTransferParam.' + str(i + 1) + '.PermitPremiumTransfer' , OrderTransferParams[i].get('PermitPremiumTransfer')) + if OrderTransferParams[i].get('AuthorizationCode') is not None: + self.add_query_param('OrderTransferParam.' + str(i + 1) + '.AuthorizationCode' , OrderTransferParams[i].get('AuthorizationCode')) + if OrderTransferParams[i].get('DomainName') is not None: + self.add_query_param('OrderTransferParam.' + str(i + 1) + '.DomainName' , OrderTransferParams[i].get('DomainName')) + if OrderTransferParams[i].get('RegistrantProfileId') is not None: + self.add_query_param('OrderTransferParam.' + str(i + 1) + '.RegistrantProfileId' , OrderTransferParams[i].get('RegistrantProfileId')) + + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_CouponNo(self): + return self.get_query_params().get('CouponNo') + + def set_CouponNo(self,CouponNo): + self.add_query_param('CouponNo',CouponNo) + + def get_UseCoupon(self): + return self.get_query_params().get('UseCoupon') + + def set_UseCoupon(self,UseCoupon): + self.add_query_param('UseCoupon',UseCoupon) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_UsePromotion(self): + return self.get_query_params().get('UsePromotion') + + def set_UsePromotion(self,UsePromotion): + self.add_query_param('UsePromotion',UsePromotion) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForDomainNameProxyServiceRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForDomainNameProxyServiceRequest.py new file mode 100644 index 0000000000..46fcb57793 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForDomainNameProxyServiceRequest.py @@ -0,0 +1,50 @@ +# 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 +class SaveBatchTaskForDomainNameProxyServiceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveBatchTaskForDomainNameProxyService','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainNames(self): + return self.get_query_params().get('DomainNames') + + def set_DomainNames(self,DomainNames): + for i in range(len(DomainNames)): + if DomainNames[i] is not None: + self.add_query_param('DomainName.' + str(i + 1) , DomainNames[i]); + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_status(self): + return self.get_query_params().get('status') + + def set_status(self,status): + self.add_query_param('status',status) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForModifyingDomainDnsRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForModifyingDomainDnsRequest.py new file mode 100644 index 0000000000..afe5dda12b --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForModifyingDomainDnsRequest.py @@ -0,0 +1,58 @@ +# 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 +class SaveBatchTaskForModifyingDomainDnsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveBatchTaskForModifyingDomainDns','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainNames(self): + return self.get_query_params().get('DomainNames') + + def set_DomainNames(self,DomainNames): + for i in range(len(DomainNames)): + if DomainNames[i] is not None: + self.add_query_param('DomainName.' + str(i + 1) , DomainNames[i]); + + def get_DomainNameServers(self): + return self.get_query_params().get('DomainNameServers') + + def set_DomainNameServers(self,DomainNameServers): + for i in range(len(DomainNameServers)): + if DomainNameServers[i] is not None: + self.add_query_param('DomainNameServer.' + str(i + 1) , DomainNameServers[i]); + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_AliyunDns(self): + return self.get_query_params().get('AliyunDns') + + def set_AliyunDns(self,AliyunDns): + self.add_query_param('AliyunDns',AliyunDns) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForTransferProhibitionLockRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForTransferProhibitionLockRequest.py new file mode 100644 index 0000000000..de4db2c09b --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForTransferProhibitionLockRequest.py @@ -0,0 +1,50 @@ +# 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 +class SaveBatchTaskForTransferProhibitionLockRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveBatchTaskForTransferProhibitionLock','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainNames(self): + return self.get_query_params().get('DomainNames') + + def set_DomainNames(self,DomainNames): + for i in range(len(DomainNames)): + if DomainNames[i] is not None: + self.add_query_param('DomainName.' + str(i + 1) , DomainNames[i]); + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForUpdateProhibitionLockRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForUpdateProhibitionLockRequest.py new file mode 100644 index 0000000000..6ca8798111 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForUpdateProhibitionLockRequest.py @@ -0,0 +1,50 @@ +# 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 +class SaveBatchTaskForUpdateProhibitionLockRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveBatchTaskForUpdateProhibitionLock','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainNames(self): + return self.get_query_params().get('DomainNames') + + def set_DomainNames(self,DomainNames): + for i in range(len(DomainNames)): + if DomainNames[i] is not None: + self.add_query_param('DomainName.' + str(i + 1) , DomainNames[i]); + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForUpdatingContactInfoByNewContactRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForUpdatingContactInfoByNewContactRequest.py new file mode 100644 index 0000000000..e73c623b03 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForUpdatingContactInfoByNewContactRequest.py @@ -0,0 +1,122 @@ +# 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 +class SaveBatchTaskForUpdatingContactInfoByNewContactRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveBatchTaskForUpdatingContactInfoByNewContact','domain') + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_Address(self): + return self.get_query_params().get('Address') + + def set_Address(self,Address): + self.add_query_param('Address',Address) + + def get_TelArea(self): + return self.get_query_params().get('TelArea') + + def set_TelArea(self,TelArea): + self.add_query_param('TelArea',TelArea) + + def get_ContactType(self): + return self.get_query_params().get('ContactType') + + def set_ContactType(self,ContactType): + self.add_query_param('ContactType',ContactType) + + def get_City(self): + return self.get_query_params().get('City') + + def set_City(self,City): + self.add_query_param('City',City) + + def get_DomainNames(self): + return self.get_query_params().get('DomainNames') + + def set_DomainNames(self,DomainNames): + for i in range(len(DomainNames)): + if DomainNames[i] is not None: + self.add_query_param('DomainName.' + str(i + 1) , DomainNames[i]); + + def get_Telephone(self): + return self.get_query_params().get('Telephone') + + def set_Telephone(self,Telephone): + self.add_query_param('Telephone',Telephone) + + def get_TransferOutProhibited(self): + return self.get_query_params().get('TransferOutProhibited') + + def set_TransferOutProhibited(self,TransferOutProhibited): + self.add_query_param('TransferOutProhibited',TransferOutProhibited) + + def get_RegistrantOrganization(self): + return self.get_query_params().get('RegistrantOrganization') + + def set_RegistrantOrganization(self,RegistrantOrganization): + self.add_query_param('RegistrantOrganization',RegistrantOrganization) + + def get_TelExt(self): + return self.get_query_params().get('TelExt') + + def set_TelExt(self,TelExt): + self.add_query_param('TelExt',TelExt) + + def get_Province(self): + return self.get_query_params().get('Province') + + def set_Province(self,Province): + self.add_query_param('Province',Province) + + def get_PostalCode(self): + return self.get_query_params().get('PostalCode') + + def set_PostalCode(self,PostalCode): + self.add_query_param('PostalCode',PostalCode) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) + + def get_RegistrantName(self): + return self.get_query_params().get('RegistrantName') + + def set_RegistrantName(self,RegistrantName): + self.add_query_param('RegistrantName',RegistrantName) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForUpdatingContactInfoRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForUpdatingContactInfoRequest.py new file mode 100644 index 0000000000..d77de9c5d4 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveBatchTaskForUpdatingContactInfoRequest.py @@ -0,0 +1,62 @@ +# 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 +class SaveBatchTaskForUpdatingContactInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveBatchTaskForUpdatingContactInfo','domain') + + def get_ContactType(self): + return self.get_query_params().get('ContactType') + + def set_ContactType(self,ContactType): + self.add_query_param('ContactType',ContactType) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_RegistrantProfileId(self): + return self.get_query_params().get('RegistrantProfileId') + + def set_RegistrantProfileId(self,RegistrantProfileId): + self.add_query_param('RegistrantProfileId',RegistrantProfileId) + + def get_DomainNames(self): + return self.get_query_params().get('DomainNames') + + def set_DomainNames(self,DomainNames): + for i in range(len(DomainNames)): + if DomainNames[i] is not None: + self.add_query_param('DomainName.' + str(i + 1) , DomainNames[i]); + + def get_AddTransferLock(self): + return self.get_query_params().get('AddTransferLock') + + def set_AddTransferLock(self,AddTransferLock): + self.add_query_param('AddTransferLock',AddTransferLock) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveRegistrantProfileRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveRegistrantProfileRequest.py new file mode 100644 index 0000000000..fc098a7694 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveRegistrantProfileRequest.py @@ -0,0 +1,126 @@ +# 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 +class SaveRegistrantProfileRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveRegistrantProfile','domain') + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_Address(self): + return self.get_query_params().get('Address') + + def set_Address(self,Address): + self.add_query_param('Address',Address) + + def get_TelArea(self): + return self.get_query_params().get('TelArea') + + def set_TelArea(self,TelArea): + self.add_query_param('TelArea',TelArea) + + def get_City(self): + return self.get_query_params().get('City') + + def set_City(self,City): + self.add_query_param('City',City) + + def get_RegistrantProfileId(self): + return self.get_query_params().get('RegistrantProfileId') + + def set_RegistrantProfileId(self,RegistrantProfileId): + self.add_query_param('RegistrantProfileId',RegistrantProfileId) + + def get_RegistrantType(self): + return self.get_query_params().get('RegistrantType') + + def set_RegistrantType(self,RegistrantType): + self.add_query_param('RegistrantType',RegistrantType) + + def get_RegistrantProfileType(self): + return self.get_query_params().get('RegistrantProfileType') + + def set_RegistrantProfileType(self,RegistrantProfileType): + self.add_query_param('RegistrantProfileType',RegistrantProfileType) + + def get_Telephone(self): + return self.get_query_params().get('Telephone') + + def set_Telephone(self,Telephone): + self.add_query_param('Telephone',Telephone) + + def get_DefaultRegistrantProfile(self): + return self.get_query_params().get('DefaultRegistrantProfile') + + def set_DefaultRegistrantProfile(self,DefaultRegistrantProfile): + self.add_query_param('DefaultRegistrantProfile',DefaultRegistrantProfile) + + def get_RegistrantOrganization(self): + return self.get_query_params().get('RegistrantOrganization') + + def set_RegistrantOrganization(self,RegistrantOrganization): + self.add_query_param('RegistrantOrganization',RegistrantOrganization) + + def get_TelExt(self): + return self.get_query_params().get('TelExt') + + def set_TelExt(self,TelExt): + self.add_query_param('TelExt',TelExt) + + def get_Province(self): + return self.get_query_params().get('Province') + + def set_Province(self,Province): + self.add_query_param('Province',Province) + + def get_PostalCode(self): + return self.get_query_params().get('PostalCode') + + def set_PostalCode(self,PostalCode): + self.add_query_param('PostalCode',PostalCode) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) + + def get_RegistrantName(self): + return self.get_query_params().get('RegistrantName') + + def set_RegistrantName(self,RegistrantName): + self.add_query_param('RegistrantName',RegistrantName) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForAddingDSRecordRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForAddingDSRecordRequest.py new file mode 100644 index 0000000000..0015a1c85c --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForAddingDSRecordRequest.py @@ -0,0 +1,66 @@ +# 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 +class SaveSingleTaskForAddingDSRecordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForAddingDSRecord','domain') + + def get_KeyTag(self): + return self.get_query_params().get('KeyTag') + + def set_KeyTag(self,KeyTag): + self.add_query_param('KeyTag',KeyTag) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DigestType(self): + return self.get_query_params().get('DigestType') + + def set_DigestType(self,DigestType): + self.add_query_param('DigestType',DigestType) + + def get_Digest(self): + return self.get_query_params().get('Digest') + + def set_Digest(self,Digest): + self.add_query_param('Digest',Digest) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Algorithm(self): + return self.get_query_params().get('Algorithm') + + def set_Algorithm(self,Algorithm): + self.add_query_param('Algorithm',Algorithm) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForApprovingTransferOutRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForApprovingTransferOutRequest.py new file mode 100644 index 0000000000..5b3e360e83 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForApprovingTransferOutRequest.py @@ -0,0 +1,42 @@ +# 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 +class SaveSingleTaskForApprovingTransferOutRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForApprovingTransferOut','domain') + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForAssociatingEnsRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForAssociatingEnsRequest.py new file mode 100644 index 0000000000..fb66675c7c --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForAssociatingEnsRequest.py @@ -0,0 +1,48 @@ +# 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 +class SaveSingleTaskForAssociatingEnsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForAssociatingEns','domain') + + def get_Address(self): + return self.get_query_params().get('Address') + + def set_Address(self,Address): + self.add_query_param('Address',Address) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCancelingTransferInRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCancelingTransferInRequest.py new file mode 100644 index 0000000000..9af132295e --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCancelingTransferInRequest.py @@ -0,0 +1,42 @@ +# 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 +class SaveSingleTaskForCancelingTransferInRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForCancelingTransferIn','domain') + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCancelingTransferOutRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCancelingTransferOutRequest.py new file mode 100644 index 0000000000..6f6673ca1d --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCancelingTransferOutRequest.py @@ -0,0 +1,42 @@ +# 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 +class SaveSingleTaskForCancelingTransferOutRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForCancelingTransferOut','domain') + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingDnsHostRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingDnsHostRequest.py new file mode 100644 index 0000000000..c6cf88e902 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingDnsHostRequest.py @@ -0,0 +1,56 @@ +# 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 +class SaveSingleTaskForCreatingDnsHostRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForCreatingDnsHost','domain') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_Ips(self): + return self.get_query_params().get('Ips') + + def set_Ips(self,Ips): + for i in range(len(Ips)): + if Ips[i] is not None: + self.add_query_param('Ip.' + str(i + 1) , Ips[i]); + + def get_DnsName(self): + return self.get_query_params().get('DnsName') + + def set_DnsName(self,DnsName): + self.add_query_param('DnsName',DnsName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingOrderActivateRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingOrderActivateRequest.py new file mode 100644 index 0000000000..7ef951c77c --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingOrderActivateRequest.py @@ -0,0 +1,186 @@ +# 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 +class SaveSingleTaskForCreatingOrderActivateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForCreatingOrderActivate','domain') + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_SubscriptionDuration(self): + return self.get_query_params().get('SubscriptionDuration') + + def set_SubscriptionDuration(self,SubscriptionDuration): + self.add_query_param('SubscriptionDuration',SubscriptionDuration) + + def get_PermitPremiumActivation(self): + return self.get_query_params().get('PermitPremiumActivation') + + def set_PermitPremiumActivation(self,PermitPremiumActivation): + self.add_query_param('PermitPremiumActivation',PermitPremiumActivation) + + def get_City(self): + return self.get_query_params().get('City') + + def set_City(self,City): + self.add_query_param('City',City) + + def get_Dns2(self): + return self.get_query_params().get('Dns2') + + def set_Dns2(self,Dns2): + self.add_query_param('Dns2',Dns2) + + def get_Dns1(self): + return self.get_query_params().get('Dns1') + + def set_Dns1(self,Dns1): + self.add_query_param('Dns1',Dns1) + + def get_RegistrantProfileId(self): + return self.get_query_params().get('RegistrantProfileId') + + def set_RegistrantProfileId(self,RegistrantProfileId): + self.add_query_param('RegistrantProfileId',RegistrantProfileId) + + def get_CouponNo(self): + return self.get_query_params().get('CouponNo') + + def set_CouponNo(self,CouponNo): + self.add_query_param('CouponNo',CouponNo) + + def get_AliyunDns(self): + return self.get_query_params().get('AliyunDns') + + def set_AliyunDns(self,AliyunDns): + self.add_query_param('AliyunDns',AliyunDns) + + def get_TelExt(self): + return self.get_query_params().get('TelExt') + + def set_TelExt(self,TelExt): + self.add_query_param('TelExt',TelExt) + + def get_Province(self): + return self.get_query_params().get('Province') + + def set_Province(self,Province): + self.add_query_param('Province',Province) + + def get_PostalCode(self): + return self.get_query_params().get('PostalCode') + + def set_PostalCode(self,PostalCode): + self.add_query_param('PostalCode',PostalCode) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) + + def get_Address(self): + return self.get_query_params().get('Address') + + def set_Address(self,Address): + self.add_query_param('Address',Address) + + def get_TelArea(self): + return self.get_query_params().get('TelArea') + + def set_TelArea(self,TelArea): + self.add_query_param('TelArea',TelArea) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_RegistrantType(self): + return self.get_query_params().get('RegistrantType') + + def set_RegistrantType(self,RegistrantType): + self.add_query_param('RegistrantType',RegistrantType) + + def get_Telephone(self): + return self.get_query_params().get('Telephone') + + def set_Telephone(self,Telephone): + self.add_query_param('Telephone',Telephone) + + def get_TrademarkDomainActivation(self): + return self.get_query_params().get('TrademarkDomainActivation') + + def set_TrademarkDomainActivation(self,TrademarkDomainActivation): + self.add_query_param('TrademarkDomainActivation',TrademarkDomainActivation) + + def get_UseCoupon(self): + return self.get_query_params().get('UseCoupon') + + def set_UseCoupon(self,UseCoupon): + self.add_query_param('UseCoupon',UseCoupon) + + def get_RegistrantOrganization(self): + return self.get_query_params().get('RegistrantOrganization') + + def set_RegistrantOrganization(self,RegistrantOrganization): + self.add_query_param('RegistrantOrganization',RegistrantOrganization) + + def get_PromotionNo(self): + return self.get_query_params().get('PromotionNo') + + def set_PromotionNo(self,PromotionNo): + self.add_query_param('PromotionNo',PromotionNo) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_EnableDomainProxy(self): + return self.get_query_params().get('EnableDomainProxy') + + def set_EnableDomainProxy(self,EnableDomainProxy): + self.add_query_param('EnableDomainProxy',EnableDomainProxy) + + def get_RegistrantName(self): + return self.get_query_params().get('RegistrantName') + + def set_RegistrantName(self,RegistrantName): + self.add_query_param('RegistrantName',RegistrantName) + + def get_UsePromotion(self): + return self.get_query_params().get('UsePromotion') + + def set_UsePromotion(self,UsePromotion): + self.add_query_param('UsePromotion',UsePromotion) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingOrderRedeemRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingOrderRedeemRequest.py new file mode 100644 index 0000000000..3b028de01f --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingOrderRedeemRequest.py @@ -0,0 +1,72 @@ +# 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 +class SaveSingleTaskForCreatingOrderRedeemRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForCreatingOrderRedeem','domain') + + def get_PromotionNo(self): + return self.get_query_params().get('PromotionNo') + + def set_PromotionNo(self,PromotionNo): + self.add_query_param('PromotionNo',PromotionNo) + + def get_CurrentExpirationDate(self): + return self.get_query_params().get('CurrentExpirationDate') + + def set_CurrentExpirationDate(self,CurrentExpirationDate): + self.add_query_param('CurrentExpirationDate',CurrentExpirationDate) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_CouponNo(self): + return self.get_query_params().get('CouponNo') + + def set_CouponNo(self,CouponNo): + self.add_query_param('CouponNo',CouponNo) + + def get_UseCoupon(self): + return self.get_query_params().get('UseCoupon') + + def set_UseCoupon(self,UseCoupon): + self.add_query_param('UseCoupon',UseCoupon) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_UsePromotion(self): + return self.get_query_params().get('UsePromotion') + + def set_UsePromotion(self,UsePromotion): + self.add_query_param('UsePromotion',UsePromotion) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingOrderRenewRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingOrderRenewRequest.py new file mode 100644 index 0000000000..f01dd73641 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingOrderRenewRequest.py @@ -0,0 +1,78 @@ +# 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 +class SaveSingleTaskForCreatingOrderRenewRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForCreatingOrderRenew','domain') + + def get_SubscriptionDuration(self): + return self.get_query_params().get('SubscriptionDuration') + + def set_SubscriptionDuration(self,SubscriptionDuration): + self.add_query_param('SubscriptionDuration',SubscriptionDuration) + + def get_PromotionNo(self): + return self.get_query_params().get('PromotionNo') + + def set_PromotionNo(self,PromotionNo): + self.add_query_param('PromotionNo',PromotionNo) + + def get_CurrentExpirationDate(self): + return self.get_query_params().get('CurrentExpirationDate') + + def set_CurrentExpirationDate(self,CurrentExpirationDate): + self.add_query_param('CurrentExpirationDate',CurrentExpirationDate) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_CouponNo(self): + return self.get_query_params().get('CouponNo') + + def set_CouponNo(self,CouponNo): + self.add_query_param('CouponNo',CouponNo) + + def get_UseCoupon(self): + return self.get_query_params().get('UseCoupon') + + def set_UseCoupon(self,UseCoupon): + self.add_query_param('UseCoupon',UseCoupon) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_UsePromotion(self): + return self.get_query_params().get('UsePromotion') + + def set_UsePromotion(self,UsePromotion): + self.add_query_param('UsePromotion',UsePromotion) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingOrderTransferRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingOrderTransferRequest.py new file mode 100644 index 0000000000..222a3665b5 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForCreatingOrderTransferRequest.py @@ -0,0 +1,84 @@ +# 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 +class SaveSingleTaskForCreatingOrderTransferRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForCreatingOrderTransfer','domain') + + def get_PermitPremiumTransfer(self): + return self.get_query_params().get('PermitPremiumTransfer') + + def set_PermitPremiumTransfer(self,PermitPremiumTransfer): + self.add_query_param('PermitPremiumTransfer',PermitPremiumTransfer) + + def get_PromotionNo(self): + return self.get_query_params().get('PromotionNo') + + def set_PromotionNo(self,PromotionNo): + self.add_query_param('PromotionNo',PromotionNo) + + def get_AuthorizationCode(self): + return self.get_query_params().get('AuthorizationCode') + + def set_AuthorizationCode(self,AuthorizationCode): + self.add_query_param('AuthorizationCode',AuthorizationCode) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_RegistrantProfileId(self): + return self.get_query_params().get('RegistrantProfileId') + + def set_RegistrantProfileId(self,RegistrantProfileId): + self.add_query_param('RegistrantProfileId',RegistrantProfileId) + + def get_CouponNo(self): + return self.get_query_params().get('CouponNo') + + def set_CouponNo(self,CouponNo): + self.add_query_param('CouponNo',CouponNo) + + def get_UseCoupon(self): + return self.get_query_params().get('UseCoupon') + + def set_UseCoupon(self,UseCoupon): + self.add_query_param('UseCoupon',UseCoupon) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_UsePromotion(self): + return self.get_query_params().get('UsePromotion') + + def set_UsePromotion(self,UsePromotion): + self.add_query_param('UsePromotion',UsePromotion) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForDeletingDSRecordRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForDeletingDSRecordRequest.py new file mode 100644 index 0000000000..c21e2b2411 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForDeletingDSRecordRequest.py @@ -0,0 +1,48 @@ +# 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 +class SaveSingleTaskForDeletingDSRecordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForDeletingDSRecord','domain') + + def get_KeyTag(self): + return self.get_query_params().get('KeyTag') + + def set_KeyTag(self,KeyTag): + self.add_query_param('KeyTag',KeyTag) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForDeletingDnsHostRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForDeletingDnsHostRequest.py new file mode 100644 index 0000000000..c50cbed580 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForDeletingDnsHostRequest.py @@ -0,0 +1,56 @@ +# 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 +class SaveSingleTaskForDeletingDnsHostRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForDeletingDnsHost','domain') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_Ips(self): + return self.get_query_params().get('Ips') + + def set_Ips(self,Ips): + for i in range(len(Ips)): + if Ips[i] is not None: + self.add_query_param('Ip.' + str(i + 1) , Ips[i]); + + def get_DnsName(self): + return self.get_query_params().get('DnsName') + + def set_DnsName(self,DnsName): + self.add_query_param('DnsName',DnsName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForDisassociatingEnsRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForDisassociatingEnsRequest.py new file mode 100644 index 0000000000..31112e638a --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForDisassociatingEnsRequest.py @@ -0,0 +1,42 @@ +# 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 +class SaveSingleTaskForDisassociatingEnsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForDisassociatingEns','domain') + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForDomainNameProxyServiceRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForDomainNameProxyServiceRequest.py new file mode 100644 index 0000000000..5bfddc0dd1 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForDomainNameProxyServiceRequest.py @@ -0,0 +1,48 @@ +# 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 +class SaveSingleTaskForDomainNameProxyServiceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForDomainNameProxyService','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForModifyingDSRecordRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForModifyingDSRecordRequest.py new file mode 100644 index 0000000000..0004ff53ec --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForModifyingDSRecordRequest.py @@ -0,0 +1,66 @@ +# 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 +class SaveSingleTaskForModifyingDSRecordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForModifyingDSRecord','domain') + + def get_KeyTag(self): + return self.get_query_params().get('KeyTag') + + def set_KeyTag(self,KeyTag): + self.add_query_param('KeyTag',KeyTag) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DigestType(self): + return self.get_query_params().get('DigestType') + + def set_DigestType(self,DigestType): + self.add_query_param('DigestType',DigestType) + + def get_Digest(self): + return self.get_query_params().get('Digest') + + def set_Digest(self,Digest): + self.add_query_param('Digest',Digest) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Algorithm(self): + return self.get_query_params().get('Algorithm') + + def set_Algorithm(self,Algorithm): + self.add_query_param('Algorithm',Algorithm) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForModifyingDnsHostRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForModifyingDnsHostRequest.py new file mode 100644 index 0000000000..9a92e3dd50 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForModifyingDnsHostRequest.py @@ -0,0 +1,56 @@ +# 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 +class SaveSingleTaskForModifyingDnsHostRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForModifyingDnsHost','domain') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_Ips(self): + return self.get_query_params().get('Ips') + + def set_Ips(self,Ips): + for i in range(len(Ips)): + if Ips[i] is not None: + self.add_query_param('Ip.' + str(i + 1) , Ips[i]); + + def get_DnsName(self): + return self.get_query_params().get('DnsName') + + def set_DnsName(self,DnsName): + self.add_query_param('DnsName',DnsName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForQueryingTransferAuthorizationCodeRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForQueryingTransferAuthorizationCodeRequest.py new file mode 100644 index 0000000000..88efab6234 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForQueryingTransferAuthorizationCodeRequest.py @@ -0,0 +1,42 @@ +# 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 +class SaveSingleTaskForQueryingTransferAuthorizationCodeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForQueryingTransferAuthorizationCode','domain') + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForSaveArtExtensionRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForSaveArtExtensionRequest.py new file mode 100644 index 0000000000..1afd20f96a --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForSaveArtExtensionRequest.py @@ -0,0 +1,96 @@ +# 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 +class SaveSingleTaskForSaveArtExtensionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForSaveArtExtension','domain') + + def get_Reference(self): + return self.get_query_params().get('Reference') + + def set_Reference(self,Reference): + self.add_query_param('Reference',Reference) + + def get_Features(self): + return self.get_query_params().get('Features') + + def set_Features(self,Features): + self.add_query_param('Features',Features) + + def get_InscriptionsAndMarkings(self): + return self.get_query_params().get('InscriptionsAndMarkings') + + def set_InscriptionsAndMarkings(self,InscriptionsAndMarkings): + self.add_query_param('InscriptionsAndMarkings',InscriptionsAndMarkings) + + def get_Subject(self): + return self.get_query_params().get('Subject') + + def set_Subject(self,Subject): + self.add_query_param('Subject',Subject) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_Maker(self): + return self.get_query_params().get('Maker') + + def set_Maker(self,Maker): + self.add_query_param('Maker',Maker) + + def get_ObjectType(self): + return self.get_query_params().get('ObjectType') + + def set_ObjectType(self,ObjectType): + self.add_query_param('ObjectType',ObjectType) + + def get_Title(self): + return self.get_query_params().get('Title') + + def set_Title(self,Title): + self.add_query_param('Title',Title) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_MaterialsAndTechniques(self): + return self.get_query_params().get('MaterialsAndTechniques') + + def set_MaterialsAndTechniques(self,MaterialsAndTechniques): + self.add_query_param('MaterialsAndTechniques',MaterialsAndTechniques) + + def get_DateOrPeriod(self): + return self.get_query_params().get('DateOrPeriod') + + def set_DateOrPeriod(self,DateOrPeriod): + self.add_query_param('DateOrPeriod',DateOrPeriod) + + def get_Dimensions(self): + return self.get_query_params().get('Dimensions') + + def set_Dimensions(self,Dimensions): + self.add_query_param('Dimensions',Dimensions) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForSynchronizingDSRecordRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForSynchronizingDSRecordRequest.py new file mode 100644 index 0000000000..20324d3f32 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForSynchronizingDSRecordRequest.py @@ -0,0 +1,42 @@ +# 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 +class SaveSingleTaskForSynchronizingDSRecordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForSynchronizingDSRecord','domain') + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForSynchronizingDnsHostRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForSynchronizingDnsHostRequest.py new file mode 100644 index 0000000000..dda5cce4f2 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForSynchronizingDnsHostRequest.py @@ -0,0 +1,42 @@ +# 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 +class SaveSingleTaskForSynchronizingDnsHostRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForSynchronizingDnsHost','domain') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForTransferProhibitionLockRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForTransferProhibitionLockRequest.py new file mode 100644 index 0000000000..653425466b --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForTransferProhibitionLockRequest.py @@ -0,0 +1,48 @@ +# 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 +class SaveSingleTaskForTransferProhibitionLockRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForTransferProhibitionLock','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForUpdateProhibitionLockRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForUpdateProhibitionLockRequest.py new file mode 100644 index 0000000000..4b080653ba --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForUpdateProhibitionLockRequest.py @@ -0,0 +1,48 @@ +# 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 +class SaveSingleTaskForUpdateProhibitionLockRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForUpdateProhibitionLock','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForUpdatingContactInfoRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForUpdatingContactInfoRequest.py new file mode 100644 index 0000000000..de45d20c62 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveSingleTaskForUpdatingContactInfoRequest.py @@ -0,0 +1,66 @@ +# 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 +class SaveSingleTaskForUpdatingContactInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveSingleTaskForUpdatingContactInfo','domain') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_ContactType(self): + return self.get_query_params().get('ContactType') + + def set_ContactType(self,ContactType): + self.add_query_param('ContactType',ContactType) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_RegistrantProfileId(self): + return self.get_query_params().get('RegistrantProfileId') + + def set_RegistrantProfileId(self,RegistrantProfileId): + self.add_query_param('RegistrantProfileId',RegistrantProfileId) + + def get_AddTransferLock(self): + return self.get_query_params().get('AddTransferLock') + + def set_AddTransferLock(self,AddTransferLock): + self.add_query_param('AddTransferLock',AddTransferLock) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForSubmittingDomainDeleteRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForSubmittingDomainDeleteRequest.py new file mode 100644 index 0000000000..ddeffa173a --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForSubmittingDomainDeleteRequest.py @@ -0,0 +1,42 @@ +# 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 +class SaveTaskForSubmittingDomainDeleteRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveTaskForSubmittingDomainDelete','domain') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialRequest.py new file mode 100644 index 0000000000..cce6b42af8 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialRequest.py @@ -0,0 +1,63 @@ +# 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 +class SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredential','domain') + self.set_method('POST') + + def get_IdentityCredentialType(self): + return self.get_query_params().get('IdentityCredentialType') + + def set_IdentityCredentialType(self,IdentityCredentialType): + self.add_query_param('IdentityCredentialType',IdentityCredentialType) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_IdentityCredential(self): + return self.get_body_params().get('IdentityCredential') + + def set_IdentityCredential(self,IdentityCredential): + self.add_body_params('IdentityCredential', IdentityCredential) + + def get_DomainNames(self): + return self.get_query_params().get('DomainNames') + + def set_DomainNames(self,DomainNames): + for i in range(len(DomainNames)): + if DomainNames[i] is not None: + self.add_query_param('DomainName.' + str(i + 1) , DomainNames[i]); + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_IdentityCredentialNo(self): + return self.get_query_params().get('IdentityCredentialNo') + + def set_IdentityCredentialNo(self,IdentityCredentialNo): + self.add_query_param('IdentityCredentialNo',IdentityCredentialNo) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDRequest.py new file mode 100644 index 0000000000..2ef897bac2 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDRequest.py @@ -0,0 +1,54 @@ +# 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 +class SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileID','domain') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_RegistrantProfileId(self): + return self.get_query_params().get('RegistrantProfileId') + + def set_RegistrantProfileId(self,RegistrantProfileId): + self.add_query_param('RegistrantProfileId',RegistrantProfileId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForUpdatingRegistrantInfoByIdentityCredentialRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForUpdatingRegistrantInfoByIdentityCredentialRequest.py new file mode 100644 index 0000000000..c313b881f5 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForUpdatingRegistrantInfoByIdentityCredentialRequest.py @@ -0,0 +1,141 @@ +# 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 +class SaveTaskForUpdatingRegistrantInfoByIdentityCredentialRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveTaskForUpdatingRegistrantInfoByIdentityCredential','domain') + self.set_method('POST') + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_IdentityCredentialType(self): + return self.get_query_params().get('IdentityCredentialType') + + def set_IdentityCredentialType(self,IdentityCredentialType): + self.add_query_param('IdentityCredentialType',IdentityCredentialType) + + def get_Address(self): + return self.get_query_params().get('Address') + + def set_Address(self,Address): + self.add_query_param('Address',Address) + + def get_TelArea(self): + return self.get_query_params().get('TelArea') + + def set_TelArea(self,TelArea): + self.add_query_param('TelArea',TelArea) + + def get_City(self): + return self.get_query_params().get('City') + + def set_City(self,City): + self.add_query_param('City',City) + + def get_RegistrantType(self): + return self.get_query_params().get('RegistrantType') + + def set_RegistrantType(self,RegistrantType): + self.add_query_param('RegistrantType',RegistrantType) + + def get_DomainNames(self): + return self.get_query_params().get('DomainNames') + + def set_DomainNames(self,DomainNames): + for i in range(len(DomainNames)): + if DomainNames[i] is not None: + self.add_query_param('DomainName.' + str(i + 1) , DomainNames[i]); + + def get_IdentityCredential(self): + return self.get_body_params().get('IdentityCredential') + + def set_IdentityCredential(self,IdentityCredential): + self.add_body_params('IdentityCredential', IdentityCredential) + + def get_Telephone(self): + return self.get_query_params().get('Telephone') + + def set_Telephone(self,Telephone): + self.add_query_param('Telephone',Telephone) + + def get_TransferOutProhibited(self): + return self.get_query_params().get('TransferOutProhibited') + + def set_TransferOutProhibited(self,TransferOutProhibited): + self.add_query_param('TransferOutProhibited',TransferOutProhibited) + + def get_RegistrantOrganization(self): + return self.get_query_params().get('RegistrantOrganization') + + def set_RegistrantOrganization(self,RegistrantOrganization): + self.add_query_param('RegistrantOrganization',RegistrantOrganization) + + def get_TelExt(self): + return self.get_query_params().get('TelExt') + + def set_TelExt(self,TelExt): + self.add_query_param('TelExt',TelExt) + + def get_Province(self): + return self.get_query_params().get('Province') + + def set_Province(self,Province): + self.add_query_param('Province',Province) + + def get_PostalCode(self): + return self.get_query_params().get('PostalCode') + + def set_PostalCode(self,PostalCode): + self.add_query_param('PostalCode',PostalCode) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_IdentityCredentialNo(self): + return self.get_query_params().get('IdentityCredentialNo') + + def set_IdentityCredentialNo(self,IdentityCredentialNo): + self.add_query_param('IdentityCredentialNo',IdentityCredentialNo) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) + + def get_RegistrantName(self): + return self.get_query_params().get('RegistrantName') + + def set_RegistrantName(self,RegistrantName): + self.add_query_param('RegistrantName',RegistrantName) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDRequest.py new file mode 100644 index 0000000000..e2c066696b --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDRequest.py @@ -0,0 +1,56 @@ +# 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 +class SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SaveTaskForUpdatingRegistrantInfoByRegistrantProfileID','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_RegistrantProfileId(self): + return self.get_query_params().get('RegistrantProfileId') + + def set_RegistrantProfileId(self,RegistrantProfileId): + self.add_query_param('RegistrantProfileId',RegistrantProfileId) + + def get_DomainNames(self): + return self.get_query_params().get('DomainNames') + + def set_DomainNames(self,DomainNames): + for i in range(len(DomainNames)): + if DomainNames[i] is not None: + self.add_query_param('DomainName.' + str(i + 1) , DomainNames[i]); + + def get_TransferOutProhibited(self): + return self.get_query_params().get('TransferOutProhibited') + + def set_TransferOutProhibited(self,TransferOutProhibited): + self.add_query_param('TransferOutProhibited',TransferOutProhibited) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SubmitEmailVerificationRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SubmitEmailVerificationRequest.py new file mode 100644 index 0000000000..42579a2b25 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/SubmitEmailVerificationRequest.py @@ -0,0 +1,48 @@ +# 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 +class SubmitEmailVerificationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'SubmitEmailVerification','domain') + + def get_SendIfExist(self): + return self.get_query_params().get('SendIfExist') + + def set_SendIfExist(self,SendIfExist): + self.add_query_param('SendIfExist',SendIfExist) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/TransferInCheckMailTokenRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/TransferInCheckMailTokenRequest.py new file mode 100644 index 0000000000..e05df72407 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/TransferInCheckMailTokenRequest.py @@ -0,0 +1,42 @@ +# 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 +class TransferInCheckMailTokenRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'TransferInCheckMailToken','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Token(self): + return self.get_query_params().get('Token') + + def set_Token(self,Token): + self.add_query_param('Token',Token) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/TransferInReenterTransferAuthorizationCodeRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/TransferInReenterTransferAuthorizationCodeRequest.py new file mode 100644 index 0000000000..abcf48fba3 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/TransferInReenterTransferAuthorizationCodeRequest.py @@ -0,0 +1,48 @@ +# 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 +class TransferInReenterTransferAuthorizationCodeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'TransferInReenterTransferAuthorizationCode','domain') + + def get_TransferAuthorizationCode(self): + return self.get_query_params().get('TransferAuthorizationCode') + + def set_TransferAuthorizationCode(self,TransferAuthorizationCode): + self.add_query_param('TransferAuthorizationCode',TransferAuthorizationCode) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/TransferInRefetchWhoisEmailRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/TransferInRefetchWhoisEmailRequest.py new file mode 100644 index 0000000000..642231ef5a --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/TransferInRefetchWhoisEmailRequest.py @@ -0,0 +1,42 @@ +# 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 +class TransferInRefetchWhoisEmailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'TransferInRefetchWhoisEmail','domain') + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/TransferInResendMailTokenRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/TransferInResendMailTokenRequest.py new file mode 100644 index 0000000000..33d715fb03 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/TransferInResendMailTokenRequest.py @@ -0,0 +1,42 @@ +# 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 +class TransferInResendMailTokenRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'TransferInResendMailToken','domain') + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/VerifyContactFieldRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/VerifyContactFieldRequest.py new file mode 100644 index 0000000000..8938601b92 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/VerifyContactFieldRequest.py @@ -0,0 +1,114 @@ +# 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 +class VerifyContactFieldRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'VerifyContactField','domain') + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_Address(self): + return self.get_query_params().get('Address') + + def set_Address(self,Address): + self.add_query_param('Address',Address) + + def get_TelArea(self): + return self.get_query_params().get('TelArea') + + def set_TelArea(self,TelArea): + self.add_query_param('TelArea',TelArea) + + def get_City(self): + return self.get_query_params().get('City') + + def set_City(self,City): + self.add_query_param('City',City) + + def get_DomainName(self): + return self.get_query_params().get('DomainName') + + def set_DomainName(self,DomainName): + self.add_query_param('DomainName',DomainName) + + def get_RegistrantType(self): + return self.get_query_params().get('RegistrantType') + + def set_RegistrantType(self,RegistrantType): + self.add_query_param('RegistrantType',RegistrantType) + + def get_Telephone(self): + return self.get_query_params().get('Telephone') + + def set_Telephone(self,Telephone): + self.add_query_param('Telephone',Telephone) + + def get_RegistrantOrganization(self): + return self.get_query_params().get('RegistrantOrganization') + + def set_RegistrantOrganization(self,RegistrantOrganization): + self.add_query_param('RegistrantOrganization',RegistrantOrganization) + + def get_TelExt(self): + return self.get_query_params().get('TelExt') + + def set_TelExt(self,TelExt): + self.add_query_param('TelExt',TelExt) + + def get_Province(self): + return self.get_query_params().get('Province') + + def set_Province(self,Province): + self.add_query_param('Province',Province) + + def get_PostalCode(self): + return self.get_query_params().get('PostalCode') + + def set_PostalCode(self,PostalCode): + self.add_query_param('PostalCode',PostalCode) + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) + + def get_RegistrantName(self): + return self.get_query_params().get('RegistrantName') + + def set_RegistrantName(self,RegistrantName): + self.add_query_param('RegistrantName',RegistrantName) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/VerifyEmailRequest.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/VerifyEmailRequest.py new file mode 100644 index 0000000000..d45b405d4f --- /dev/null +++ b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/VerifyEmailRequest.py @@ -0,0 +1,42 @@ +# 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 +class VerifyEmailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'VerifyEmail','domain') + + def get_UserClientIp(self): + return self.get_query_params().get('UserClientIp') + + def set_UserClientIp(self,UserClientIp): + self.add_query_param('UserClientIp',UserClientIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Token(self): + return self.get_query_params().get('Token') + + def set_Token(self,Token): + self.add_query_param('Token',Token) \ No newline at end of file diff --git a/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/__init__.py b/aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-domain-intl/setup.py b/aliyun-python-sdk-domain-intl/setup.py new file mode 100644 index 0000000000..531593abc6 --- /dev/null +++ b/aliyun-python-sdk-domain-intl/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for domain-intl. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkdomain_intl" +NAME = "aliyun-python-sdk-domain-intl" +DESCRIPTION = "The domain-intl module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","domain-intl"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-hiknoengine/ChangeLog.txt b/aliyun-python-sdk-hiknoengine/ChangeLog.txt new file mode 100644 index 0000000000..069257ad96 --- /dev/null +++ b/aliyun-python-sdk-hiknoengine/ChangeLog.txt @@ -0,0 +1,6 @@ +2020-01-20 Version: 0.0.2 +- Release on full language support. + +2019-08-29 Version: 0.0.1 +- Supported TranslateText. + diff --git a/aliyun-python-sdk-hiknoengine/MANIFEST.in b/aliyun-python-sdk-hiknoengine/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-hiknoengine/README.rst b/aliyun-python-sdk-hiknoengine/README.rst new file mode 100644 index 0000000000..4cffb13419 --- /dev/null +++ b/aliyun-python-sdk-hiknoengine/README.rst @@ -0,0 +1,15 @@ +============================================================= +aliyun-python-sdk-hiknoengine +============================================================= + +.. This is the hiknoengine module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater + +**Documentation:** + +Please visit `http://develop.aliyun.com/sdk/python `_ diff --git a/aliyun-python-sdk-hiknoengine/aliyunsdkhiknoengine/__init__.py b/aliyun-python-sdk-hiknoengine/aliyunsdkhiknoengine/__init__.py new file mode 100644 index 0000000000..210ebb3e8a --- /dev/null +++ b/aliyun-python-sdk-hiknoengine/aliyunsdkhiknoengine/__init__.py @@ -0,0 +1 @@ +__version__ = '0.0.2' \ No newline at end of file diff --git a/aliyun-python-sdk-hiknoengine/aliyunsdkhiknoengine/request/__init__.py b/aliyun-python-sdk-hiknoengine/aliyunsdkhiknoengine/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-hiknoengine/aliyunsdkhiknoengine/request/v20190625/TranslateTextRequest.py b/aliyun-python-sdk-hiknoengine/aliyunsdkhiknoengine/request/v20190625/TranslateTextRequest.py new file mode 100644 index 0000000000..601999cdf4 --- /dev/null +++ b/aliyun-python-sdk-hiknoengine/aliyunsdkhiknoengine/request/v20190625/TranslateTextRequest.py @@ -0,0 +1,44 @@ +# 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 + +class TranslateTextRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'hiknoengine', '2019-06-25', 'TranslateText','hiknoengine') + self.set_method('POST') + + def get_FromLang(self): + return self.get_body_params().get('FromLang') + + def set_FromLang(self,FromLang): + self.add_body_params('FromLang', FromLang) + + def get_ToLang(self): + return self.get_body_params().get('ToLang') + + def set_ToLang(self,ToLang): + self.add_body_params('ToLang', ToLang) + + def get_Text(self): + return self.get_body_params().get('Text') + + def set_Text(self,Text): + self.add_body_params('Text', Text) \ No newline at end of file diff --git a/aliyun-python-sdk-hiknoengine/aliyunsdkhiknoengine/request/v20190625/__init__.py b/aliyun-python-sdk-hiknoengine/aliyunsdkhiknoengine/request/v20190625/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-hiknoengine/setup.py b/aliyun-python-sdk-hiknoengine/setup.py new file mode 100644 index 0000000000..471fe2537e --- /dev/null +++ b/aliyun-python-sdk-hiknoengine/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for hiknoengine. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkhiknoengine" +NAME = "aliyun-python-sdk-hiknoengine" +DESCRIPTION = "The hiknoengine module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","hiknoengine"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-hivisengine/ChangeLog.txt b/aliyun-python-sdk-hivisengine/ChangeLog.txt new file mode 100644 index 0000000000..e7ccb0d9fd --- /dev/null +++ b/aliyun-python-sdk-hivisengine/ChangeLog.txt @@ -0,0 +1,12 @@ +2019-11-19 Version: 0.0.2 +- Support for knee-kl side output. + +2019-09-06 Version: 0.0.1 +- Generated 2019-06-25 for `hivisengine`. + +2019-08-29 Version: 0.0.1 +- Supported TranslateText. + +2019-08-29 Version: 0.0.1 +- Supported TranslateText. + diff --git a/aliyun-python-sdk-hivisengine/MANIFEST.in b/aliyun-python-sdk-hivisengine/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-hivisengine/README.rst b/aliyun-python-sdk-hivisengine/README.rst new file mode 100644 index 0000000000..07ab22c7a9 --- /dev/null +++ b/aliyun-python-sdk-hivisengine/README.rst @@ -0,0 +1,15 @@ +============================================================= +aliyun-python-sdk-hivisengine +============================================================= + +.. This is the hivisengine module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater + +**Documentation:** + +Please visit `http://develop.aliyun.com/sdk/python `_ diff --git a/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/__init__.py b/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/__init__.py new file mode 100644 index 0000000000..210ebb3e8a --- /dev/null +++ b/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/__init__.py @@ -0,0 +1 @@ +__version__ = '0.0.2' \ No newline at end of file diff --git a/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/endpoint.py b/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/endpoint.py new file mode 100644 index 0000000000..5da9b6ca4e --- /dev/null +++ b/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/endpoint.py @@ -0,0 +1,35 @@ +# # 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. + + +class EndpointData(): + def __init__(self): + self.endpoint_map = { + "cn-huhehaote": "hivisengine.aliyuncs.com", + } + self.endpoint_regional = "regional" + + def getEndpointMap(self): + return self.endpoint_map + + def getEndpointRegional(self): + return self.endpoint_regional + + +endpoint_data = EndpointData() diff --git a/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/request/__init__.py b/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/request/v20190625/DiagnosisKneeRequest.py b/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/request/v20190625/DiagnosisKneeRequest.py new file mode 100644 index 0000000000..1f6e3a4d26 --- /dev/null +++ b/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/request/v20190625/DiagnosisKneeRequest.py @@ -0,0 +1,44 @@ +# 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 aliyunsdkhivisengine.endpoint import endpoint_data + +class DiagnosisKneeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'hivisengine', '2019-06-25', 'DiagnosisKnee','hivisengine') + 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_DataFormat(self): + return self.get_body_params().get('DataFormat') + + def set_DataFormat(self,DataFormat): + self.add_body_params('DataFormat', DataFormat) + + def get_Urls(self): + return self.get_body_params().get('Urls') + + def set_Urls(self,Urls): + self.add_body_params('Urls', Urls) \ No newline at end of file diff --git a/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/request/v20190625/GetDiagnosisKneeResultRequest.py b/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/request/v20190625/GetDiagnosisKneeResultRequest.py new file mode 100644 index 0000000000..d53a6b3266 --- /dev/null +++ b/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/request/v20190625/GetDiagnosisKneeResultRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkhivisengine.endpoint import endpoint_data + +class GetDiagnosisKneeResultRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'hivisengine', '2019-06-25', 'GetDiagnosisKneeResult','hivisengine') + 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_TaskId(self): + return self.get_body_params().get('TaskId') + + def set_TaskId(self,TaskId): + self.add_body_params('TaskId', TaskId) \ No newline at end of file diff --git a/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/request/v20190625/__init__.py b/aliyun-python-sdk-hivisengine/aliyunsdkhivisengine/request/v20190625/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-hivisengine/setup.py b/aliyun-python-sdk-hivisengine/setup.py new file mode 100644 index 0000000000..1b26954c3a --- /dev/null +++ b/aliyun-python-sdk-hivisengine/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for hivisengine. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkhivisengine" +NAME = "aliyun-python-sdk-hivisengine" +DESCRIPTION = "The hivisengine module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","hivisengine"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-hpc/ChangeLog.txt b/aliyun-python-sdk-hpc/ChangeLog.txt new file mode 100644 index 0000000000..8eea8b95f1 --- /dev/null +++ b/aliyun-python-sdk-hpc/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-03-20 Version: 2.0.3 +1, Update the Dependency + diff --git a/aliyun-python-sdk-hpc/MANIFEST.in b/aliyun-python-sdk-hpc/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-hpc/README.rst b/aliyun-python-sdk-hpc/README.rst new file mode 100644 index 0000000000..bd2e4a0e49 --- /dev/null +++ b/aliyun-python-sdk-hpc/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-hpc +This is the hpc module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-hpc/aliyunsdkhpc/__init__.py b/aliyun-python-sdk-hpc/aliyunsdkhpc/__init__.py new file mode 100644 index 0000000000..966cd76e5f --- /dev/null +++ b/aliyun-python-sdk-hpc/aliyunsdkhpc/__init__.py @@ -0,0 +1 @@ +__version__ = "2.0.3" \ No newline at end of file diff --git a/aliyun-python-sdk-hpc/aliyunsdkhpc/request/__init__.py b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/CreateInstanceRequest.py b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/CreateInstanceRequest.py new file mode 100644 index 0000000000..8a0d6b9296 --- /dev/null +++ b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/CreateInstanceRequest.py @@ -0,0 +1,37 @@ +# 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 +class CreateInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'HPC', '2016-06-03', 'CreateInstance','hpc') + self.set_method('POST') + + def get_PackageId(self): + return self.get_query_params().get('PackageId') + + def set_PackageId(self,PackageId): + self.add_query_param('PackageId',PackageId) + + def get_TOKEN(self): + return self.get_query_params().get('TOKEN') + + def set_TOKEN(self,TOKEN): + self.add_query_param('TOKEN',TOKEN) \ No newline at end of file diff --git a/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/DeleteInstanceRequest.py b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/DeleteInstanceRequest.py new file mode 100644 index 0000000000..aa89325d63 --- /dev/null +++ b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/DeleteInstanceRequest.py @@ -0,0 +1,37 @@ +# 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 +class DeleteInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'HPC', '2016-06-03', 'DeleteInstance','hpc') + self.set_method('POST') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_TOKEN(self): + return self.get_query_params().get('TOKEN') + + def set_TOKEN(self,TOKEN): + self.add_query_param('TOKEN',TOKEN) \ No newline at end of file diff --git a/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/DescribeInstancesRequest.py b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/DescribeInstancesRequest.py new file mode 100644 index 0000000000..dae6973072 --- /dev/null +++ b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/DescribeInstancesRequest.py @@ -0,0 +1,43 @@ +# 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 +class DescribeInstancesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'HPC', '2016-06-03', 'DescribeInstances','hpc') + self.set_method('POST') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_InstanceType(self): + return self.get_query_params().get('InstanceType') + + def set_InstanceType(self,InstanceType): + self.add_query_param('InstanceType',InstanceType) + + def get_TOKEN(self): + return self.get_query_params().get('TOKEN') + + def set_TOKEN(self,TOKEN): + self.add_query_param('TOKEN',TOKEN) \ No newline at end of file diff --git a/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/ModifyJumpserverPasswordRequest.py b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/ModifyJumpserverPasswordRequest.py new file mode 100644 index 0000000000..06f9b6b5a6 --- /dev/null +++ b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/ModifyJumpserverPasswordRequest.py @@ -0,0 +1,43 @@ +# 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 +class ModifyJumpserverPasswordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'HPC', '2016-06-03', 'ModifyJumpserverPassword','hpc') + self.set_method('POST') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_NewPassword(self): + return self.get_query_params().get('NewPassword') + + def set_NewPassword(self,NewPassword): + self.add_query_param('NewPassword',NewPassword) + + def get_TOKEN(self): + return self.get_query_params().get('TOKEN') + + def set_TOKEN(self,TOKEN): + self.add_query_param('TOKEN',TOKEN) \ No newline at end of file diff --git a/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/RebootInstanceRequest.py b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/RebootInstanceRequest.py new file mode 100644 index 0000000000..46bbb2a94a --- /dev/null +++ b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/RebootInstanceRequest.py @@ -0,0 +1,37 @@ +# 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 +class RebootInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'HPC', '2016-06-03', 'RebootInstance','hpc') + self.set_method('POST') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_TOKEN(self): + return self.get_query_params().get('TOKEN') + + def set_TOKEN(self,TOKEN): + self.add_query_param('TOKEN',TOKEN) \ No newline at end of file diff --git a/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/RebootJumpserverRequest.py b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/RebootJumpserverRequest.py new file mode 100644 index 0000000000..d598176d85 --- /dev/null +++ b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/RebootJumpserverRequest.py @@ -0,0 +1,43 @@ +# 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 +class RebootJumpserverRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'HPC', '2016-06-03', 'RebootJumpserver','hpc') + self.set_method('POST') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_Force(self): + return self.get_query_params().get('Force') + + def set_Force(self,Force): + self.add_query_param('Force',Force) + + def get_TOKEN(self): + return self.get_query_params().get('TOKEN') + + def set_TOKEN(self,TOKEN): + self.add_query_param('TOKEN',TOKEN) \ No newline at end of file diff --git a/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/StartJumpserverRequest.py b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/StartJumpserverRequest.py new file mode 100644 index 0000000000..4f0a7a3336 --- /dev/null +++ b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/StartJumpserverRequest.py @@ -0,0 +1,43 @@ +# 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 +class StartJumpserverRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'HPC', '2016-06-03', 'StartJumpserver','hpc') + self.set_method('POST') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_Force(self): + return self.get_query_params().get('Force') + + def set_Force(self,Force): + self.add_query_param('Force',Force) + + def get_TOKEN(self): + return self.get_query_params().get('TOKEN') + + def set_TOKEN(self,TOKEN): + self.add_query_param('TOKEN',TOKEN) \ No newline at end of file diff --git a/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/StopJumpserverRequest.py b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/StopJumpserverRequest.py new file mode 100644 index 0000000000..8558a06744 --- /dev/null +++ b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/StopJumpserverRequest.py @@ -0,0 +1,43 @@ +# 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 +class StopJumpserverRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'HPC', '2016-06-03', 'StopJumpserver','hpc') + self.set_method('POST') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_Force(self): + return self.get_query_params().get('Force') + + def set_Force(self,Force): + self.add_query_param('Force',Force) + + def get_TOKEN(self): + return self.get_query_params().get('TOKEN') + + def set_TOKEN(self,TOKEN): + self.add_query_param('TOKEN',TOKEN) \ No newline at end of file diff --git a/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/__init__.py b/aliyun-python-sdk-hpc/aliyunsdkhpc/request/v20160603/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-hpc/setup.py b/aliyun-python-sdk-hpc/setup.py new file mode 100644 index 0000000000..5267d58aab --- /dev/null +++ b/aliyun-python-sdk-hpc/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for hpc. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkhpc" +NAME = "aliyun-python-sdk-hpc" +DESCRIPTION = "The hpc module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","hpc"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-hsm/ChangeLog.txt b/aliyun-python-sdk-hsm/ChangeLog.txt new file mode 100644 index 0000000000..d846526c49 --- /dev/null +++ b/aliyun-python-sdk-hsm/ChangeLog.txt @@ -0,0 +1,7 @@ +2019-03-14 Version: 1.0.1 +1, Update Dependency + +2018-04-27 Version: 1.0.0 +1, release hsm open api +2, hsm open api includes DescribeRegions, DescribeInstances, ModityInstance, ConfigNetwork, ConfigWhiteList + diff --git a/aliyun-python-sdk-hsm/MANIFEST.in b/aliyun-python-sdk-hsm/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-hsm/README.rst b/aliyun-python-sdk-hsm/README.rst new file mode 100644 index 0000000000..bb876fff39 --- /dev/null +++ b/aliyun-python-sdk-hsm/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-hsm +This is the hsm module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-hsm/aliyunsdkhsm/__init__.py b/aliyun-python-sdk-hsm/aliyunsdkhsm/__init__.py new file mode 100644 index 0000000000..0058b93f7d --- /dev/null +++ b/aliyun-python-sdk-hsm/aliyunsdkhsm/__init__.py @@ -0,0 +1 @@ +__version__ = "1.0.1" \ No newline at end of file diff --git a/aliyun-python-sdk-hsm/aliyunsdkhsm/request/__init__.py b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/ConfigNetworkRequest.py b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/ConfigNetworkRequest.py new file mode 100644 index 0000000000..c81e842542 --- /dev/null +++ b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/ConfigNetworkRequest.py @@ -0,0 +1,60 @@ +# 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 +class ConfigNetworkRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'hsm', '2018-01-11', 'ConfigNetwork','hsm') + + def get_VSwitchId(self): + return self.get_query_params().get('VSwitchId') + + def set_VSwitchId(self,VSwitchId): + self.add_query_param('VSwitchId',VSwitchId) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_VpcId(self): + return self.get_query_params().get('VpcId') + + def set_VpcId(self,VpcId): + self.add_query_param('VpcId',VpcId) + + def get_Ip(self): + return self.get_query_params().get('Ip') + + def set_Ip(self,Ip): + self.add_query_param('Ip',Ip) \ No newline at end of file diff --git a/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/ConfigWhiteListRequest.py b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/ConfigWhiteListRequest.py new file mode 100644 index 0000000000..b5472a100c --- /dev/null +++ b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/ConfigWhiteListRequest.py @@ -0,0 +1,48 @@ +# 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 +class ConfigWhiteListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'hsm', '2018-01-11', 'ConfigWhiteList','hsm') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_WhiteList(self): + return self.get_query_params().get('WhiteList') + + def set_WhiteList(self,WhiteList): + self.add_query_param('WhiteList',WhiteList) \ No newline at end of file diff --git a/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/CreateInstanceRequest.py b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/CreateInstanceRequest.py new file mode 100644 index 0000000000..7656047398 --- /dev/null +++ b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/CreateInstanceRequest.py @@ -0,0 +1,72 @@ +# 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 +class CreateInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'hsm', '2018-01-11', 'CreateInstance','hsm') + + def get_Period(self): + return self.get_query_params().get('Period') + + def set_Period(self,Period): + self.add_query_param('Period',Period) + + def get_PeriodUnit(self): + return self.get_query_params().get('PeriodUnit') + + def set_PeriodUnit(self,PeriodUnit): + self.add_query_param('PeriodUnit',PeriodUnit) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_Quantity(self): + return self.get_query_params().get('Quantity') + + def set_Quantity(self,Quantity): + self.add_query_param('Quantity',Quantity) + + def get_HsmDeviceType(self): + return self.get_query_params().get('HsmDeviceType') + + def set_HsmDeviceType(self,HsmDeviceType): + self.add_query_param('HsmDeviceType',HsmDeviceType) + + def get_ClientToken(self): + return self.get_query_params().get('ClientToken') + + def set_ClientToken(self,ClientToken): + self.add_query_param('ClientToken',ClientToken) + + def get_ZoneId(self): + return self.get_query_params().get('ZoneId') + + def set_ZoneId(self,ZoneId): + self.add_query_param('ZoneId',ZoneId) + + def get_HsmOem(self): + return self.get_query_params().get('HsmOem') + + def set_HsmOem(self,HsmOem): + self.add_query_param('HsmOem',HsmOem) \ No newline at end of file diff --git a/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/DescribeInstancesRequest.py b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/DescribeInstancesRequest.py new file mode 100644 index 0000000000..9aa9648489 --- /dev/null +++ b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/DescribeInstancesRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeInstancesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'hsm', '2018-01-11', 'DescribeInstances','hsm') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_HsmStatus(self): + return self.get_query_params().get('HsmStatus') + + def set_HsmStatus(self,HsmStatus): + self.add_query_param('HsmStatus',HsmStatus) \ No newline at end of file diff --git a/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/DescribeRegionsRequest.py b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/DescribeRegionsRequest.py new file mode 100644 index 0000000000..83adf6d0c6 --- /dev/null +++ b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/DescribeRegionsRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeRegionsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'hsm', '2018-01-11', 'DescribeRegions','hsm') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) \ No newline at end of file diff --git a/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/ModifyInstanceRequest.py b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/ModifyInstanceRequest.py new file mode 100644 index 0000000000..8af944d552 --- /dev/null +++ b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/ModifyInstanceRequest.py @@ -0,0 +1,48 @@ +# 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 +class ModifyInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'hsm', '2018-01-11', 'ModifyInstance','hsm') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Remark(self): + return self.get_query_params().get('Remark') + + def set_Remark(self,Remark): + self.add_query_param('Remark',Remark) \ No newline at end of file diff --git a/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/ReleaseInstanceRequest.py b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/ReleaseInstanceRequest.py new file mode 100644 index 0000000000..2c90285da4 --- /dev/null +++ b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/ReleaseInstanceRequest.py @@ -0,0 +1,36 @@ +# 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 +class ReleaseInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'hsm', '2018-01-11', 'ReleaseInstance','hsm') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) \ No newline at end of file diff --git a/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/RenewInstanceRequest.py b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/RenewInstanceRequest.py new file mode 100644 index 0000000000..efd0b03ee7 --- /dev/null +++ b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/RenewInstanceRequest.py @@ -0,0 +1,54 @@ +# 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 +class RenewInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'hsm', '2018-01-11', 'RenewInstance','hsm') + + def get_Period(self): + return self.get_query_params().get('Period') + + def set_Period(self,Period): + self.add_query_param('Period',Period) + + def get_PeriodUnit(self): + return self.get_query_params().get('PeriodUnit') + + def set_PeriodUnit(self,PeriodUnit): + self.add_query_param('PeriodUnit',PeriodUnit) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_ClientToken(self): + return self.get_query_params().get('ClientToken') + + def set_ClientToken(self,ClientToken): + self.add_query_param('ClientToken',ClientToken) \ No newline at end of file diff --git a/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/__init__.py b/aliyun-python-sdk-hsm/aliyunsdkhsm/request/v20180111/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-hsm/setup.py b/aliyun-python-sdk-hsm/setup.py new file mode 100644 index 0000000000..ef2d2fee07 --- /dev/null +++ b/aliyun-python-sdk-hsm/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for hsm. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkhsm" +NAME = "aliyun-python-sdk-hsm" +DESCRIPTION = "The hsm module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","hsm"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-imagesearch/ChangeLog.txt b/aliyun-python-sdk-imagesearch/ChangeLog.txt new file mode 100644 index 0000000000..ee645d0f8b --- /dev/null +++ b/aliyun-python-sdk-imagesearch/ChangeLog.txt @@ -0,0 +1,10 @@ +2019-04-11 Version: 2.0.0 +1, Release AddImage/SearchImage/DeleteImage OpenApi. +2, Add 'SearchByName' feature to SearchImage + +2019-03-18 Version: 1.0.1 +1, Update Dependency + +2018-05-04 Version: 1.0.1 +1, Remove some tips + diff --git a/aliyun-python-sdk-imagesearch/MANIFEST.in b/aliyun-python-sdk-imagesearch/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-imagesearch/README.rst b/aliyun-python-sdk-imagesearch/README.rst new file mode 100644 index 0000000000..d05bb5ddc1 --- /dev/null +++ b/aliyun-python-sdk-imagesearch/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-imagesearch +This is the imagesearch module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/__init__.py b/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/__init__.py new file mode 100644 index 0000000000..5a6bc65ed9 --- /dev/null +++ b/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/__init__.py @@ -0,0 +1 @@ +__version__ = "2.0.0" \ No newline at end of file diff --git a/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/__init__.py b/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/v20190325/AddImageRequest.py b/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/v20190325/AddImageRequest.py new file mode 100644 index 0000000000..064e7b1f1b --- /dev/null +++ b/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/v20190325/AddImageRequest.py @@ -0,0 +1,86 @@ +# 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 RoaRequest +class AddImageRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'ImageSearch', '2019-03-25', 'AddImage','imagesearch') + self.set_uri_pattern('/v2/image/add') + self.set_method('POST') + + def get_PicContent(self): + return self.get_body_params().get('PicContent') + + def set_PicContent(self,PicContent): + self.add_body_params('PicContent', PicContent) + + def get_StrAttr(self): + return self.get_body_params().get('StrAttr') + + def set_StrAttr(self,StrAttr): + self.add_body_params('StrAttr', StrAttr) + + def get_InstanceName(self): + return self.get_body_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_body_params('InstanceName', InstanceName) + + def get_IntAttr(self): + return self.get_body_params().get('IntAttr') + + def set_IntAttr(self,IntAttr): + self.add_body_params('IntAttr', IntAttr) + + def get_ProductId(self): + return self.get_body_params().get('ProductId') + + def set_ProductId(self,ProductId): + self.add_body_params('ProductId', ProductId) + + def get_PicName(self): + return self.get_body_params().get('PicName') + + def set_PicName(self,PicName): + self.add_body_params('PicName', PicName) + + def get_CustomContent(self): + return self.get_body_params().get('CustomContent') + + def set_CustomContent(self,CustomContent): + self.add_body_params('CustomContent', CustomContent) + + def get_Region(self): + return self.get_body_params().get('Region') + + def set_Region(self,Region): + self.add_body_params('Region', Region) + + def get_CategoryId(self): + return self.get_body_params().get('CategoryId') + + def set_CategoryId(self,CategoryId): + self.add_body_params('CategoryId', CategoryId) + + def get_Crop(self): + return self.get_body_params().get('Crop') + + def set_Crop(self,Crop): + self.add_body_params('Crop', Crop) \ No newline at end of file diff --git a/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/v20190325/DeleteImageRequest.py b/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/v20190325/DeleteImageRequest.py new file mode 100644 index 0000000000..6d58a1dc46 --- /dev/null +++ b/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/v20190325/DeleteImageRequest.py @@ -0,0 +1,44 @@ +# 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 RoaRequest +class DeleteImageRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'ImageSearch', '2019-03-25', 'DeleteImage','imagesearch') + self.set_uri_pattern('/v2/image/delete') + self.set_method('POST') + + def get_InstanceName(self): + return self.get_body_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_body_params('InstanceName', InstanceName) + + def get_ProductId(self): + return self.get_body_params().get('ProductId') + + def set_ProductId(self,ProductId): + self.add_body_params('ProductId', ProductId) + + def get_PicName(self): + return self.get_body_params().get('PicName') + + def set_PicName(self,PicName): + self.add_body_params('PicName', PicName) \ No newline at end of file diff --git a/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/v20190325/SearchImageRequest.py b/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/v20190325/SearchImageRequest.py new file mode 100644 index 0000000000..469f9b01ee --- /dev/null +++ b/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/v20190325/SearchImageRequest.py @@ -0,0 +1,92 @@ +# 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 RoaRequest +class SearchImageRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'ImageSearch', '2019-03-25', 'SearchImage','imagesearch') + self.set_uri_pattern('/v2/image/search') + self.set_method('POST') + + def get_Filter(self): + return self.get_body_params().get('Filter') + + def set_Filter(self,Filter): + self.add_body_params('Filter', Filter) + + def get_PicContent(self): + return self.get_body_params().get('PicContent') + + def set_PicContent(self,PicContent): + self.add_body_params('PicContent', PicContent) + + def get_InstanceName(self): + return self.get_body_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_body_params('InstanceName', InstanceName) + + def get_ProductId(self): + return self.get_body_params().get('ProductId') + + def set_ProductId(self,ProductId): + self.add_body_params('ProductId', ProductId) + + def get_Num(self): + return self.get_body_params().get('Num') + + def set_Num(self,Num): + self.add_body_params('Num', Num) + + def get_PicName(self): + return self.get_body_params().get('PicName') + + def set_PicName(self,PicName): + self.add_body_params('PicName', PicName) + + def get_Start(self): + return self.get_body_params().get('Start') + + def set_Start(self,Start): + self.add_body_params('Start', Start) + + def get_Region(self): + return self.get_body_params().get('Region') + + def set_Region(self,Region): + self.add_body_params('Region', Region) + + def get_Type(self): + return self.get_body_params().get('Type') + + def set_Type(self,Type): + self.add_body_params('Type', Type) + + def get_CategoryId(self): + return self.get_body_params().get('CategoryId') + + def set_CategoryId(self,CategoryId): + self.add_body_params('CategoryId', CategoryId) + + def get_Crop(self): + return self.get_body_params().get('Crop') + + def set_Crop(self,Crop): + self.add_body_params('Crop', Crop) \ No newline at end of file diff --git a/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/v20190325/__init__.py b/aliyun-python-sdk-imagesearch/aliyunsdkimagesearch/request/v20190325/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-imagesearch/setup.py b/aliyun-python-sdk-imagesearch/setup.py new file mode 100644 index 0000000000..c0e327b085 --- /dev/null +++ b/aliyun-python-sdk-imagesearch/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for imagesearch. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkimagesearch" +NAME = "aliyun-python-sdk-imagesearch" +DESCRIPTION = "The imagesearch module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","imagesearch"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-iqa/ChangeLog.txt b/aliyun-python-sdk-iqa/ChangeLog.txt new file mode 100644 index 0000000000..785a050c21 --- /dev/null +++ b/aliyun-python-sdk-iqa/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-10-21 Version: 1.0.0 +- Release first version. + diff --git a/aliyun-python-sdk-iqa/MANIFEST.in b/aliyun-python-sdk-iqa/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-iqa/README.rst b/aliyun-python-sdk-iqa/README.rst new file mode 100644 index 0000000000..d703550877 --- /dev/null +++ b/aliyun-python-sdk-iqa/README.rst @@ -0,0 +1,15 @@ +============================================================= +aliyun-python-sdk-iqa +============================================================= + +.. This is the iqa module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater + +**Documentation:** + +Please visit `http://develop.aliyun.com/sdk/python `_ diff --git a/aliyun-python-sdk-iqa/aliyunsdkiqa/__init__.py b/aliyun-python-sdk-iqa/aliyunsdkiqa/__init__.py new file mode 100644 index 0000000000..75977e6f41 --- /dev/null +++ b/aliyun-python-sdk-iqa/aliyunsdkiqa/__init__.py @@ -0,0 +1 @@ +__version__ = '1.0.0' \ No newline at end of file diff --git a/aliyun-python-sdk-iqa/aliyunsdkiqa/request/__init__.py b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/CreateProjectRequest.py b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/CreateProjectRequest.py new file mode 100644 index 0000000000..10017e23c9 --- /dev/null +++ b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/CreateProjectRequest.py @@ -0,0 +1,43 @@ +# 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 + +class CreateProjectRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'iqa', '2019-08-13', 'CreateProject','iqa') + + def get_ProjectName(self): + return self.get_body_params().get('ProjectName') + + def set_ProjectName(self,ProjectName): + self.add_body_params('ProjectName', ProjectName) + + def get_ModelId(self): + return self.get_body_params().get('ModelId') + + def set_ModelId(self,ModelId): + self.add_body_params('ModelId', ModelId) + + def get_ProjectType(self): + return self.get_body_params().get('ProjectType') + + def set_ProjectType(self,ProjectType): + self.add_body_params('ProjectType', ProjectType) \ No newline at end of file diff --git a/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/DeleteProjectRequest.py b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/DeleteProjectRequest.py new file mode 100644 index 0000000000..0ddfafed03 --- /dev/null +++ b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/DeleteProjectRequest.py @@ -0,0 +1,31 @@ +# 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 + +class DeleteProjectRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'iqa', '2019-08-13', 'DeleteProject','iqa') + + def get_ProjectId(self): + return self.get_query_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_query_param('ProjectId',ProjectId) \ No newline at end of file diff --git a/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/DeployServiceRequest.py b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/DeployServiceRequest.py new file mode 100644 index 0000000000..8aee148605 --- /dev/null +++ b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/DeployServiceRequest.py @@ -0,0 +1,31 @@ +# 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 + +class DeployServiceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'iqa', '2019-08-13', 'DeployService','iqa') + + def get_ProjectId(self): + return self.get_query_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_query_param('ProjectId',ProjectId) \ No newline at end of file diff --git a/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/DescribeProjectRequest.py b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/DescribeProjectRequest.py new file mode 100644 index 0000000000..055883ce78 --- /dev/null +++ b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/DescribeProjectRequest.py @@ -0,0 +1,31 @@ +# 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 + +class DescribeProjectRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'iqa', '2019-08-13', 'DescribeProject','iqa') + + def get_ProjectId(self): + return self.get_query_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_query_param('ProjectId',ProjectId) \ No newline at end of file diff --git a/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/GetPredictResultRequest.py b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/GetPredictResultRequest.py new file mode 100644 index 0000000000..fd018dca6d --- /dev/null +++ b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/GetPredictResultRequest.py @@ -0,0 +1,49 @@ +# 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 + +class GetPredictResultRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'iqa', '2019-08-13', 'GetPredictResult','iqa') + + def get_TopK(self): + return self.get_query_params().get('TopK') + + def set_TopK(self,TopK): + self.add_query_param('TopK',TopK) + + def get_TraceTag(self): + return self.get_query_params().get('TraceTag') + + def set_TraceTag(self,TraceTag): + self.add_query_param('TraceTag',TraceTag) + + def get_Question(self): + return self.get_body_params().get('Question') + + def set_Question(self,Question): + self.add_body_params('Question', Question) + + def get_ProjectId(self): + return self.get_query_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_query_param('ProjectId',ProjectId) \ No newline at end of file diff --git a/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/ListProjectsRequest.py b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/ListProjectsRequest.py new file mode 100644 index 0000000000..d248298445 --- /dev/null +++ b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/ListProjectsRequest.py @@ -0,0 +1,49 @@ +# 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 + +class ListProjectsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'iqa', '2019-08-13', 'ListProjects','iqa') + + def get_FilterParam(self): + return self.get_query_params().get('FilterParam') + + def set_FilterParam(self,FilterParam): + self.add_query_param('FilterParam',FilterParam) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_ProjectType(self): + return self.get_query_params().get('ProjectType') + + def set_ProjectType(self,ProjectType): + self.add_query_param('ProjectType',ProjectType) \ No newline at end of file diff --git a/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/ModifiyProjectRequest.py b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/ModifiyProjectRequest.py new file mode 100644 index 0000000000..023ef8d043 --- /dev/null +++ b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/ModifiyProjectRequest.py @@ -0,0 +1,43 @@ +# 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 + +class ModifiyProjectRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'iqa', '2019-08-13', 'ModifiyProject','iqa') + + def get_ProjectName(self): + return self.get_body_params().get('ProjectName') + + def set_ProjectName(self,ProjectName): + self.add_body_params('ProjectName', ProjectName) + + def get_ModelId(self): + return self.get_body_params().get('ModelId') + + def set_ModelId(self,ModelId): + self.add_body_params('ModelId', ModelId) + + def get_ProjectId(self): + return self.get_body_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_body_params('ProjectId', ProjectId) \ No newline at end of file diff --git a/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/UploadDictionaryRequest.py b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/UploadDictionaryRequest.py new file mode 100644 index 0000000000..4200496c9e --- /dev/null +++ b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/UploadDictionaryRequest.py @@ -0,0 +1,43 @@ +# 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 + +class UploadDictionaryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'iqa', '2019-08-13', 'UploadDictionary','iqa') + + def get_DictionaryFileUrl(self): + return self.get_body_params().get('DictionaryFileUrl') + + def set_DictionaryFileUrl(self,DictionaryFileUrl): + self.add_body_params('DictionaryFileUrl', DictionaryFileUrl) + + def get_ProjectId(self): + return self.get_body_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_body_params('ProjectId', ProjectId) + + def get_DictionaryData(self): + return self.get_body_params().get('DictionaryData') + + def set_DictionaryData(self,DictionaryData): + self.add_body_params('DictionaryData', DictionaryData) \ No newline at end of file diff --git a/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/UploadDocumentRequest.py b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/UploadDocumentRequest.py new file mode 100644 index 0000000000..2fd499f637 --- /dev/null +++ b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/UploadDocumentRequest.py @@ -0,0 +1,43 @@ +# 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 + +class UploadDocumentRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'iqa', '2019-08-13', 'UploadDocument','iqa') + + def get_DocumentData(self): + return self.get_body_params().get('DocumentData') + + def set_DocumentData(self,DocumentData): + self.add_body_params('DocumentData', DocumentData) + + def get_DocumentFileUrl(self): + return self.get_body_params().get('DocumentFileUrl') + + def set_DocumentFileUrl(self,DocumentFileUrl): + self.add_body_params('DocumentFileUrl', DocumentFileUrl) + + def get_ProjectId(self): + return self.get_body_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_body_params('ProjectId', ProjectId) \ No newline at end of file diff --git a/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/__init__.py b/aliyun-python-sdk-iqa/aliyunsdkiqa/request/v20190813/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-iqa/setup.py b/aliyun-python-sdk-iqa/setup.py new file mode 100644 index 0000000000..abe413b2fd --- /dev/null +++ b/aliyun-python-sdk-iqa/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for iqa. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkiqa" +NAME = "aliyun-python-sdk-iqa" +DESCRIPTION = "The iqa module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","iqa"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/ChangeLog.txt b/aliyun-python-sdk-itaas/ChangeLog.txt new file mode 100644 index 0000000000..cd44aea65d --- /dev/null +++ b/aliyun-python-sdk-itaas/ChangeLog.txt @@ -0,0 +1,6 @@ +2019-03-20 Version: 1.0.1 +1, Update the Dependency + +2019-03-20 Version: 1.0.1 +1, Update the Dependency + diff --git a/aliyun-python-sdk-itaas/MANIFEST.in b/aliyun-python-sdk-itaas/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-itaas/README.rst b/aliyun-python-sdk-itaas/README.rst new file mode 100644 index 0000000000..205bb50012 --- /dev/null +++ b/aliyun-python-sdk-itaas/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-itaas +This is the itaas module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/__init__.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/__init__.py new file mode 100644 index 0000000000..0058b93f7d --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/__init__.py @@ -0,0 +1 @@ +__version__ = "1.0.1" \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/__init__.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/AddIPSegmentRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/AddIPSegmentRequest.py new file mode 100644 index 0000000000..1b03a4b02d --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/AddIPSegmentRequest.py @@ -0,0 +1,54 @@ +# 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 +class AddIPSegmentRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'AddIPSegment','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Ipsegment(self): + return self.get_query_params().get('Ipsegment') + + def set_Ipsegment(self,Ipsegment): + self.add_query_param('Ipsegment',Ipsegment) + + def get_Memo(self): + return self.get_query_params().get('Memo') + + def set_Memo(self,Memo): + self.add_query_param('Memo',Memo) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/CreateBoxCodeRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/CreateBoxCodeRequest.py new file mode 100644 index 0000000000..b3fa64a3c7 --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/CreateBoxCodeRequest.py @@ -0,0 +1,42 @@ +# 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 +class CreateBoxCodeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'CreateBoxCode','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/CreateEnterpriseRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/CreateEnterpriseRequest.py new file mode 100644 index 0000000000..59ada25329 --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/CreateEnterpriseRequest.py @@ -0,0 +1,54 @@ +# 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 +class CreateEnterpriseRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'CreateEnterprise','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_ServiceFlag(self): + return self.get_query_params().get('ServiceFlag') + + def set_ServiceFlag(self,ServiceFlag): + self.add_query_param('ServiceFlag',ServiceFlag) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_BoxNumber(self): + return self.get_query_params().get('BoxNumber') + + def set_BoxNumber(self,BoxNumber): + self.add_query_param('BoxNumber',BoxNumber) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetBoxCodeListRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetBoxCodeListRequest.py new file mode 100644 index 0000000000..68258e97f3 --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetBoxCodeListRequest.py @@ -0,0 +1,42 @@ +# 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 +class GetBoxCodeListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'GetBoxCodeList','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetEnterpriseConfigRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetEnterpriseConfigRequest.py new file mode 100644 index 0000000000..3c671a14bc --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetEnterpriseConfigRequest.py @@ -0,0 +1,42 @@ +# 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 +class GetEnterpriseConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'GetEnterpriseConfig','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetIPSegmentsListRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetIPSegmentsListRequest.py new file mode 100644 index 0000000000..f69cbf33fc --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetIPSegmentsListRequest.py @@ -0,0 +1,42 @@ +# 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 +class GetIPSegmentsListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'GetIPSegmentsList','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetRegisterBoxListRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetRegisterBoxListRequest.py new file mode 100644 index 0000000000..bf6f1df360 --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetRegisterBoxListRequest.py @@ -0,0 +1,42 @@ +# 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 +class GetRegisterBoxListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'GetRegisterBoxList','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetRegisterBoxNumberRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetRegisterBoxNumberRequest.py new file mode 100644 index 0000000000..37341111d6 --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetRegisterBoxNumberRequest.py @@ -0,0 +1,42 @@ +# 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 +class GetRegisterBoxNumberRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'GetRegisterBoxNumber','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetRegisterHistoryListRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetRegisterHistoryListRequest.py new file mode 100644 index 0000000000..6f6411b564 --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetRegisterHistoryListRequest.py @@ -0,0 +1,42 @@ +# 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 +class GetRegisterHistoryListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'GetRegisterHistoryList','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetWelcomePageURIRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetWelcomePageURIRequest.py new file mode 100644 index 0000000000..1983dee3cc --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/GetWelcomePageURIRequest.py @@ -0,0 +1,42 @@ +# 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 +class GetWelcomePageURIRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'GetWelcomePageURI','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/RemoveBoxCodeRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/RemoveBoxCodeRequest.py new file mode 100644 index 0000000000..edba51602e --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/RemoveBoxCodeRequest.py @@ -0,0 +1,48 @@ +# 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 +class RemoveBoxCodeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'RemoveBoxCode','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Code(self): + return self.get_query_params().get('Code') + + def set_Code(self,Code): + self.add_query_param('Code',Code) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/RemoveIPSegmentRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/RemoveIPSegmentRequest.py new file mode 100644 index 0000000000..75b43c2b61 --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/RemoveIPSegmentRequest.py @@ -0,0 +1,48 @@ +# 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 +class RemoveIPSegmentRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'RemoveIPSegment','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/RemoveRegisterBoxRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/RemoveRegisterBoxRequest.py new file mode 100644 index 0000000000..a52b428742 --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/RemoveRegisterBoxRequest.py @@ -0,0 +1,48 @@ +# 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 +class RemoveRegisterBoxRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'RemoveRegisterBox','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Drsessionid(self): + return self.get_query_params().get('Drsessionid') + + def set_Drsessionid(self,Drsessionid): + self.add_query_param('Drsessionid',Drsessionid) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/SetWelcomePageURIRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/SetWelcomePageURIRequest.py new file mode 100644 index 0000000000..9cd3e713d1 --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/SetWelcomePageURIRequest.py @@ -0,0 +1,48 @@ +# 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 +class SetWelcomePageURIRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'SetWelcomePageURI','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) + + def get_Welcomeuri(self): + return self.get_query_params().get('Welcomeuri') + + def set_Welcomeuri(self,Welcomeuri): + self.add_query_param('Welcomeuri',Welcomeuri) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/UpdateEnterpriseConfigRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/UpdateEnterpriseConfigRequest.py new file mode 100644 index 0000000000..890c09b13f --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/UpdateEnterpriseConfigRequest.py @@ -0,0 +1,60 @@ +# 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 +class UpdateEnterpriseConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'UpdateEnterpriseConfig','itaas') + + def get_ConfigKey(self): + return self.get_query_params().get('ConfigKey') + + def set_ConfigKey(self,ConfigKey): + self.add_query_param('ConfigKey',ConfigKey) + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_ConfigValue(self): + return self.get_query_params().get('ConfigValue') + + def set_ConfigValue(self,ConfigValue): + self.add_query_param('ConfigValue',ConfigValue) + + def get_Memo(self): + return self.get_query_params().get('Memo') + + def set_Memo(self,Memo): + self.add_query_param('Memo',Memo) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/UpdateIPSegmentRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/UpdateIPSegmentRequest.py new file mode 100644 index 0000000000..f2a19bb137 --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/UpdateIPSegmentRequest.py @@ -0,0 +1,60 @@ +# 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 +class UpdateIPSegmentRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'UpdateIPSegment','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Ipsegment(self): + return self.get_query_params().get('Ipsegment') + + def set_Ipsegment(self,Ipsegment): + self.add_query_param('Ipsegment',Ipsegment) + + def get_Memo(self): + return self.get_query_params().get('Memo') + + def set_Memo(self,Memo): + self.add_query_param('Memo',Memo) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/UpdateRoomNameRequest.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/UpdateRoomNameRequest.py new file mode 100644 index 0000000000..46d9ac8ef3 --- /dev/null +++ b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/UpdateRoomNameRequest.py @@ -0,0 +1,54 @@ +# 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 +class UpdateRoomNameRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'ITaaS', '2017-05-05', 'UpdateRoomName','itaas') + + def get_Clientappid(self): + return self.get_query_params().get('Clientappid') + + def set_Clientappid(self,Clientappid): + self.add_query_param('Clientappid',Clientappid) + + def get_Drname(self): + return self.get_query_params().get('Drname') + + def set_Drname(self,Drname): + self.add_query_param('Drname',Drname) + + def get_Sysfrom(self): + return self.get_query_params().get('Sysfrom') + + def set_Sysfrom(self,Sysfrom): + self.add_query_param('Sysfrom',Sysfrom) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) + + def get_Screencode(self): + return self.get_query_params().get('Screencode') + + def set_Screencode(self,Screencode): + self.add_query_param('Screencode',Screencode) \ No newline at end of file diff --git a/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/__init__.py b/aliyun-python-sdk-itaas/aliyunsdkitaas/request/v20170505/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-itaas/setup.py b/aliyun-python-sdk-itaas/setup.py new file mode 100644 index 0000000000..3b0e7fa9f1 --- /dev/null +++ b/aliyun-python-sdk-itaas/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for itaas. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkitaas" +NAME = "aliyun-python-sdk-itaas" +DESCRIPTION = "The itaas module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","itaas"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis-public/ChangeLog.txt b/aliyun-python-sdk-jarvis-public/ChangeLog.txt new file mode 100644 index 0000000000..525feda127 --- /dev/null +++ b/aliyun-python-sdk-jarvis-public/ChangeLog.txt @@ -0,0 +1,6 @@ +2019-03-13 Version: 1.0.1 +1, Update Dependency + +2018-06-20 Version: 1.0.0 +1, This is the first version of jarvis-public. + diff --git a/aliyun-python-sdk-jarvis-public/MANIFEST.in b/aliyun-python-sdk-jarvis-public/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-jarvis-public/README.rst b/aliyun-python-sdk-jarvis-public/README.rst new file mode 100644 index 0000000000..4df4d3c025 --- /dev/null +++ b/aliyun-python-sdk-jarvis-public/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-jarvis-public +This is the jarvis-public module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/__init__.py b/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/__init__.py new file mode 100644 index 0000000000..0058b93f7d --- /dev/null +++ b/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/__init__.py @@ -0,0 +1 @@ +__version__ = "1.0.1" \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/__init__.py b/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/DescribeAttackEventRequest.py b/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/DescribeAttackEventRequest.py new file mode 100644 index 0000000000..489aae4726 --- /dev/null +++ b/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/DescribeAttackEventRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeAttackEventRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis-public', '2018-06-21', 'DescribeAttackEvent','jarvis-public') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ServerIpList(self): + return self.get_query_params().get('ServerIpList') + + def set_ServerIpList(self,ServerIpList): + self.add_query_param('ServerIpList',ServerIpList) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_ProductType(self): + return self.get_query_params().get('ProductType') + + def set_ProductType(self,ProductType): + self.add_query_param('ProductType',ProductType) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/DescribeAttackedIpRequest.py b/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/DescribeAttackedIpRequest.py new file mode 100644 index 0000000000..d4b0471344 --- /dev/null +++ b/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/DescribeAttackedIpRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeAttackedIpRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis-public', '2018-06-21', 'DescribeAttackedIp','jarvis-public') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ServerIpList(self): + return self.get_query_params().get('ServerIpList') + + def set_ServerIpList(self,ServerIpList): + self.add_query_param('ServerIpList',ServerIpList) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_ProductType(self): + return self.get_query_params().get('ProductType') + + def set_ProductType(self,ProductType): + self.add_query_param('ProductType',ProductType) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/DescribeCountAttackEventRequest.py b/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/DescribeCountAttackEventRequest.py new file mode 100644 index 0000000000..dc6d36ed7a --- /dev/null +++ b/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/DescribeCountAttackEventRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeCountAttackEventRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis-public', '2018-06-21', 'DescribeCountAttackEvent','jarvis-public') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ServerIpList(self): + return self.get_query_params().get('ServerIpList') + + def set_ServerIpList(self,ServerIpList): + self.add_query_param('ServerIpList',ServerIpList) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_ProductType(self): + return self.get_query_params().get('ProductType') + + def set_ProductType(self,ProductType): + self.add_query_param('ProductType',ProductType) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/DescribePhoneInfoRequest.py b/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/DescribePhoneInfoRequest.py new file mode 100644 index 0000000000..d7f3cc835c --- /dev/null +++ b/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/DescribePhoneInfoRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribePhoneInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis-public', '2018-06-21', 'DescribePhoneInfo','jarvis-public') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_phoneNum(self): + return self.get_query_params().get('phoneNum') + + def set_phoneNum(self,phoneNum): + self.add_query_param('phoneNum',phoneNum) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_sourceCode(self): + return self.get_query_params().get('sourceCode') + + def set_sourceCode(self,sourceCode): + self.add_query_param('sourceCode',sourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/__init__.py b/aliyun-python-sdk-jarvis-public/aliyunsdkjarvis_public/request/v20180621/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-jarvis-public/setup.py b/aliyun-python-sdk-jarvis-public/setup.py new file mode 100644 index 0000000000..28ca5d6198 --- /dev/null +++ b/aliyun-python-sdk-jarvis-public/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for jarvis-public. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkjarvis_public" +NAME = "aliyun-python-sdk-jarvis-public" +DESCRIPTION = "The jarvis-public module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","jarvis-public"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/ChangeLog.txt b/aliyun-python-sdk-jarvis/ChangeLog.txt new file mode 100644 index 0000000000..5682bf6a82 --- /dev/null +++ b/aliyun-python-sdk-jarvis/ChangeLog.txt @@ -0,0 +1,29 @@ +2019-03-13 Version: 1.2.4 +1, Update Dependency + +2018-06-21 Version: 1.2.3 +1, This is add InstanceList. + +2018-06-21 Version: 1.2.2 +1, This is add InstanceList. + +2018-06-20 Version: 1.2.2 +1, Add InstanceList in product security information query. + +2018-06-20 Version: 1.2.2 +1, Add InstanceList in product security information query. + +2018-06-06 Version: 1.2.1 +1, Change the type of srcUid to int. + +2018-06-06 Version: 1.2.0 +1, Add interface DescribePhoneInfo, DescribeDdosDefenseInfo, DescribeRiskListDetail, DescribePunishList. + +2018-05-29 Version: 1.1.0 +1, Add new interface DescribePhoneInfo to SDK. + +2018-05-28 Version: 1.0.0 +1, This is an example of release-log. +2, Please strictly follow this format to edit in English. +3, Format:Number + , + Space + Description + diff --git a/aliyun-python-sdk-jarvis/MANIFEST.in b/aliyun-python-sdk-jarvis/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-jarvis/README.rst b/aliyun-python-sdk-jarvis/README.rst new file mode 100644 index 0000000000..e5b0685c9f --- /dev/null +++ b/aliyun-python-sdk-jarvis/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-jarvis +This is the jarvis module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/__init__.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/__init__.py new file mode 100644 index 0000000000..fecd8c08b1 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/__init__.py @@ -0,0 +1 @@ +__version__ = "1.2.4" \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/__init__.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateAccessWhiteListGroupRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateAccessWhiteListGroupRequest.py new file mode 100644 index 0000000000..5a6e6a15af --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateAccessWhiteListGroupRequest.py @@ -0,0 +1,96 @@ +# 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 +class CreateAccessWhiteListGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateAccessWhiteListGroup','jarvis') + + def get_Note(self): + return self.get_query_params().get('Note') + + def set_Note(self,Note): + self.add_query_param('Note',Note) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SrcIP(self): + return self.get_query_params().get('SrcIP') + + def set_SrcIP(self,SrcIP): + self.add_query_param('SrcIP',SrcIP) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_DstPort(self): + return self.get_query_params().get('DstPort') + + def set_DstPort(self,DstPort): + self.add_query_param('DstPort',DstPort) + + def get_InstanceIdList(self): + return self.get_query_params().get('InstanceIdList') + + def set_InstanceIdList(self,InstanceIdList): + self.add_query_param('InstanceIdList',InstanceIdList) + + def get_LiveTime(self): + return self.get_query_params().get('LiveTime') + + def set_LiveTime(self,LiveTime): + self.add_query_param('LiveTime',LiveTime) + + def get_ProductName(self): + return self.get_query_params().get('ProductName') + + def set_ProductName(self,ProductName): + self.add_query_param('ProductName',ProductName) + + def get_WhiteListType(self): + return self.get_query_params().get('WhiteListType') + + def set_WhiteListType(self,WhiteListType): + self.add_query_param('WhiteListType',WhiteListType) + + def get_InstanceInfoList(self): + return self.get_query_params().get('InstanceInfoList') + + def set_InstanceInfoList(self,InstanceInfoList): + self.add_query_param('InstanceInfoList',InstanceInfoList) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateAllEcsWhiteListRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateAllEcsWhiteListRequest.py new file mode 100644 index 0000000000..4979a5af4a --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateAllEcsWhiteListRequest.py @@ -0,0 +1,48 @@ +# 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 +class CreateAllEcsWhiteListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateAllEcsWhiteList','jarvis') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SrcIP(self): + return self.get_query_params().get('SrcIP') + + def set_SrcIP(self,SrcIP): + self.add_query_param('SrcIP',SrcIP) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateCdnIpRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateCdnIpRequest.py new file mode 100644 index 0000000000..df6c9fdb74 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateCdnIpRequest.py @@ -0,0 +1,54 @@ +# 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 +class CreateCdnIpRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateCdnIp','jarvis') + + def get_CdnIpList(self): + return self.get_query_params().get('CdnIpList') + + def set_CdnIpList(self,CdnIpList): + self.add_query_param('CdnIpList',CdnIpList) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateCdnSubscriptionRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateCdnSubscriptionRequest.py new file mode 100644 index 0000000000..4ee9ef42e9 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateCdnSubscriptionRequest.py @@ -0,0 +1,54 @@ +# 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 +class CreateCdnSubscriptionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateCdnSubscription','jarvis') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_CdnUidList(self): + return self.get_query_params().get('CdnUidList') + + def set_CdnUidList(self,CdnUidList): + self.add_query_param('CdnUidList',CdnUidList) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateConsoleAccessWhiteListRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateConsoleAccessWhiteListRequest.py new file mode 100644 index 0000000000..7337bc5025 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateConsoleAccessWhiteListRequest.py @@ -0,0 +1,96 @@ +# 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 +class CreateConsoleAccessWhiteListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateConsoleAccessWhiteList','jarvis') + + def get_Note(self): + return self.get_query_params().get('Note') + + def set_Note(self,Note): + self.add_query_param('Note',Note) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SrcIP(self): + return self.get_query_params().get('SrcIP') + + def set_SrcIP(self,SrcIP): + self.add_query_param('SrcIP',SrcIP) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_DstPort(self): + return self.get_query_params().get('DstPort') + + def set_DstPort(self,DstPort): + self.add_query_param('DstPort',DstPort) + + def get_InstanceIdList(self): + return self.get_query_params().get('InstanceIdList') + + def set_InstanceIdList(self,InstanceIdList): + self.add_query_param('InstanceIdList',InstanceIdList) + + def get_LiveTime(self): + return self.get_query_params().get('LiveTime') + + def set_LiveTime(self,LiveTime): + self.add_query_param('LiveTime',LiveTime) + + def get_ProductName(self): + return self.get_query_params().get('ProductName') + + def set_ProductName(self,ProductName): + self.add_query_param('ProductName',ProductName) + + def get_WhiteListType(self): + return self.get_query_params().get('WhiteListType') + + def set_WhiteListType(self,WhiteListType): + self.add_query_param('WhiteListType',WhiteListType) + + def get_InstanceInfoList(self): + return self.get_query_params().get('InstanceInfoList') + + def set_InstanceInfoList(self,InstanceInfoList): + self.add_query_param('InstanceInfoList',InstanceInfoList) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateCpmcPunishFeedBackRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateCpmcPunishFeedBackRequest.py new file mode 100644 index 0000000000..0e313cf6b1 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateCpmcPunishFeedBackRequest.py @@ -0,0 +1,90 @@ +# 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 +class CreateCpmcPunishFeedBackRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateCpmcPunishFeedBack','jarvis') + + def get_FeedBack(self): + return self.get_query_params().get('FeedBack') + + def set_FeedBack(self,FeedBack): + self.add_query_param('FeedBack',FeedBack) + + def get_SrcIP(self): + return self.get_query_params().get('SrcIP') + + def set_SrcIP(self,SrcIP): + self.add_query_param('SrcIP',SrcIP) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_DstPort(self): + return self.get_query_params().get('DstPort') + + def set_DstPort(self,DstPort): + self.add_query_param('DstPort',DstPort) + + def get_ProtocolName(self): + return self.get_query_params().get('ProtocolName') + + def set_ProtocolName(self,ProtocolName): + self.add_query_param('ProtocolName',ProtocolName) + + def get_SrcPort(self): + return self.get_query_params().get('SrcPort') + + def set_SrcPort(self,SrcPort): + self.add_query_param('SrcPort',SrcPort) + + def get_PunishType(self): + return self.get_query_params().get('PunishType') + + def set_PunishType(self,PunishType): + self.add_query_param('PunishType',PunishType) + + def get_GmtCreate(self): + return self.get_query_params().get('GmtCreate') + + def set_GmtCreate(self,GmtCreate): + self.add_query_param('GmtCreate',GmtCreate) + + def get_DstIP(self): + return self.get_query_params().get('DstIP') + + def set_DstIP(self,DstIP): + self.add_query_param('DstIP',DstIP) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateUidWhiteListGroupRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateUidWhiteListGroupRequest.py new file mode 100644 index 0000000000..8e4e125cf2 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateUidWhiteListGroupRequest.py @@ -0,0 +1,90 @@ +# 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 +class CreateUidWhiteListGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateUidWhiteListGroup','jarvis') + + def get_Note(self): + return self.get_query_params().get('Note') + + def set_Note(self,Note): + self.add_query_param('Note',Note) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_DstPort(self): + return self.get_query_params().get('DstPort') + + def set_DstPort(self,DstPort): + self.add_query_param('DstPort',DstPort) + + def get_InstanceIdList(self): + return self.get_query_params().get('InstanceIdList') + + def set_InstanceIdList(self,InstanceIdList): + self.add_query_param('InstanceIdList',InstanceIdList) + + def get_LiveTime(self): + return self.get_query_params().get('LiveTime') + + def set_LiveTime(self,LiveTime): + self.add_query_param('LiveTime',LiveTime) + + def get_ProductName(self): + return self.get_query_params().get('ProductName') + + def set_ProductName(self,ProductName): + self.add_query_param('ProductName',ProductName) + + def get_WhiteListType(self): + return self.get_query_params().get('WhiteListType') + + def set_WhiteListType(self,WhiteListType): + self.add_query_param('WhiteListType',WhiteListType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SrcUid(self): + return self.get_query_params().get('SrcUid') + + def set_SrcUid(self,SrcUid): + self.add_query_param('SrcUid',SrcUid) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteAccessWhiteListGroupRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteAccessWhiteListGroupRequest.py new file mode 100644 index 0000000000..1134c24c3f --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteAccessWhiteListGroupRequest.py @@ -0,0 +1,48 @@ +# 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 +class DeleteAccessWhiteListGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DeleteAccessWhiteListGroup','jarvis') + + def get_GroupIdList(self): + return self.get_query_params().get('GroupIdList') + + def set_GroupIdList(self,GroupIdList): + self.add_query_param('GroupIdList',GroupIdList) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteCdnIpRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteCdnIpRequest.py new file mode 100644 index 0000000000..c283966606 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteCdnIpRequest.py @@ -0,0 +1,60 @@ +# 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 +class DeleteCdnIpRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DeleteCdnIp','jarvis') + + def get_ItemId(self): + return self.get_query_params().get('ItemId') + + def set_ItemId(self,ItemId): + self.add_query_param('ItemId',ItemId) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_CdnIp(self): + return self.get_query_params().get('CdnIp') + + def set_CdnIp(self,CdnIp): + self.add_query_param('CdnIp',CdnIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteCdnSubscriptionRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteCdnSubscriptionRequest.py new file mode 100644 index 0000000000..dcde2d3242 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteCdnSubscriptionRequest.py @@ -0,0 +1,48 @@ +# 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 +class DeleteCdnSubscriptionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DeleteCdnSubscription','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_CdnUidList(self): + return self.get_query_params().get('CdnUidList') + + def set_CdnUidList(self,CdnUidList): + self.add_query_param('CdnUidList',CdnUidList) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteConsoleAccessWhiteListRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteConsoleAccessWhiteListRequest.py new file mode 100644 index 0000000000..166b46060e --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteConsoleAccessWhiteListRequest.py @@ -0,0 +1,48 @@ +# 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 +class DeleteConsoleAccessWhiteListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DeleteConsoleAccessWhiteList','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_DisableWhitelist(self): + return self.get_query_params().get('DisableWhitelist') + + def set_DisableWhitelist(self,DisableWhitelist): + self.add_query_param('DisableWhitelist',DisableWhitelist) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteUidWhiteListGroupRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteUidWhiteListGroupRequest.py new file mode 100644 index 0000000000..48dfc2a412 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteUidWhiteListGroupRequest.py @@ -0,0 +1,48 @@ +# 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 +class DeleteUidWhiteListGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DeleteUidWhiteListGroup','jarvis') + + def get_GroupIdList(self): + return self.get_query_params().get('GroupIdList') + + def set_GroupIdList(self,GroupIdList): + self.add_query_param('GroupIdList',GroupIdList) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeAccessWhiteListEipListRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeAccessWhiteListEipListRequest.py new file mode 100644 index 0000000000..939a946840 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeAccessWhiteListEipListRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeAccessWhiteListEipListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeAccessWhiteListEipList','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeAccessWhiteListGroupRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeAccessWhiteListGroupRequest.py new file mode 100644 index 0000000000..4f86c8a979 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeAccessWhiteListGroupRequest.py @@ -0,0 +1,84 @@ +# 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 +class DescribeAccessWhiteListGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeAccessWhiteListGroup','jarvis') + + def get_SrcIP(self): + return self.get_query_params().get('SrcIP') + + def set_SrcIP(self,SrcIP): + self.add_query_param('SrcIP',SrcIP) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_queryProduct(self): + return self.get_query_params().get('queryProduct') + + def set_queryProduct(self,queryProduct): + self.add_query_param('queryProduct',queryProduct) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_WhiteListType(self): + return self.get_query_params().get('WhiteListType') + + def set_WhiteListType(self,WhiteListType): + self.add_query_param('WhiteListType',WhiteListType) + + def get_DstIP(self): + return self.get_query_params().get('DstIP') + + def set_DstIP(self,DstIP): + self.add_query_param('DstIP',DstIP) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeAccessWhiteListSlbListRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeAccessWhiteListSlbListRequest.py new file mode 100644 index 0000000000..868f87ab69 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeAccessWhiteListSlbListRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeAccessWhiteListSlbListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeAccessWhiteListSlbList','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeAccessWhitelistEcsListRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeAccessWhitelistEcsListRequest.py new file mode 100644 index 0000000000..e4491b8c83 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeAccessWhitelistEcsListRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeAccessWhitelistEcsListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeAccessWhitelistEcsList','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCdnCertifyRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCdnCertifyRequest.py new file mode 100644 index 0000000000..aa2c801208 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCdnCertifyRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeCdnCertifyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeCdnCertify','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCdnIpListRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCdnIpListRequest.py new file mode 100644 index 0000000000..b9142193d6 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCdnIpListRequest.py @@ -0,0 +1,66 @@ +# 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 +class DescribeCdnIpListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeCdnIpList','jarvis') + + def get_SrcIP(self): + return self.get_query_params().get('SrcIP') + + def set_SrcIP(self,SrcIP): + self.add_query_param('SrcIP',SrcIP) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_WlState(self): + return self.get_query_params().get('WlState') + + def set_WlState(self,WlState): + self.add_query_param('WlState',WlState) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCdnSubscriptionRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCdnSubscriptionRequest.py new file mode 100644 index 0000000000..22839623e1 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCdnSubscriptionRequest.py @@ -0,0 +1,66 @@ +# 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 +class DescribeCdnSubscriptionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeCdnSubscription','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_SubscriptionState(self): + return self.get_query_params().get('SubscriptionState') + + def set_SubscriptionState(self,SubscriptionState): + self.add_query_param('SubscriptionState',SubscriptionState) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_VendorName(self): + return self.get_query_params().get('VendorName') + + def set_VendorName(self,VendorName): + self.add_query_param('VendorName',VendorName) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCdnVendorRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCdnVendorRequest.py new file mode 100644 index 0000000000..f57afb9ba4 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCdnVendorRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeCdnVendorRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeCdnVendor','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeConsoleAccessWhiteListRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeConsoleAccessWhiteListRequest.py new file mode 100644 index 0000000000..540675dc09 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeConsoleAccessWhiteListRequest.py @@ -0,0 +1,84 @@ +# 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 +class DescribeConsoleAccessWhiteListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeConsoleAccessWhiteList','jarvis') + + def get_SrcIP(self): + return self.get_query_params().get('SrcIP') + + def set_SrcIP(self,SrcIP): + self.add_query_param('SrcIP',SrcIP) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_queryProduct(self): + return self.get_query_params().get('queryProduct') + + def set_queryProduct(self,queryProduct): + self.add_query_param('queryProduct',queryProduct) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_WhiteListType(self): + return self.get_query_params().get('WhiteListType') + + def set_WhiteListType(self,WhiteListType): + self.add_query_param('WhiteListType',WhiteListType) + + def get_DstIP(self): + return self.get_query_params().get('DstIP') + + def set_DstIP(self,DstIP): + self.add_query_param('DstIP',DstIP) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCpmcPunishListRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCpmcPunishListRequest.py new file mode 100644 index 0000000000..a05bd0bff9 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeCpmcPunishListRequest.py @@ -0,0 +1,66 @@ +# 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 +class DescribeCpmcPunishListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeCpmcPunishList','jarvis') + + def get_SrcIP(self): + return self.get_query_params().get('SrcIP') + + def set_SrcIP(self,SrcIP): + self.add_query_param('SrcIP',SrcIP) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_pageSize(self): + return self.get_query_params().get('pageSize') + + def set_pageSize(self,pageSize): + self.add_query_param('pageSize',pageSize) + + def get_currentPage(self): + return self.get_query_params().get('currentPage') + + def set_currentPage(self,currentPage): + self.add_query_param('currentPage',currentPage) + + def get_PunishStatus(self): + return self.get_query_params().get('PunishStatus') + + def set_PunishStatus(self,PunishStatus): + self.add_query_param('PunishStatus',PunishStatus) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeDdosDefenseInfoRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeDdosDefenseInfoRequest.py new file mode 100644 index 0000000000..e446e611b1 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeDdosDefenseInfoRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeDdosDefenseInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeDdosDefenseInfo','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_srcUid(self): + return self.get_query_params().get('srcUid') + + def set_srcUid(self,srcUid): + self.add_query_param('srcUid',srcUid) + + def get_sourceCode(self): + return self.get_query_params().get('sourceCode') + + def set_sourceCode(self,sourceCode): + self.add_query_param('sourceCode',sourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeEcsListPageRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeEcsListPageRequest.py new file mode 100644 index 0000000000..9e79f43905 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeEcsListPageRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeEcsListPageRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeEcsListPage','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribePhoneInfoRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribePhoneInfoRequest.py new file mode 100644 index 0000000000..1c6a8e6280 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribePhoneInfoRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribePhoneInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribePhoneInfo','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_phoneNum(self): + return self.get_query_params().get('phoneNum') + + def set_phoneNum(self,phoneNum): + self.add_query_param('phoneNum',phoneNum) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_sourceCode(self): + return self.get_query_params().get('sourceCode') + + def set_sourceCode(self,sourceCode): + self.add_query_param('sourceCode',sourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribePunishListRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribePunishListRequest.py new file mode 100644 index 0000000000..b7e410d574 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribePunishListRequest.py @@ -0,0 +1,72 @@ +# 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 +class DescribePunishListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribePunishList','jarvis') + + def get_SrcIP(self): + return self.get_query_params().get('SrcIP') + + def set_SrcIP(self,SrcIP): + self.add_query_param('SrcIP',SrcIP) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_pageSize(self): + return self.get_query_params().get('pageSize') + + def set_pageSize(self,pageSize): + self.add_query_param('pageSize',pageSize) + + def get_currentPage(self): + return self.get_query_params().get('currentPage') + + def set_currentPage(self,currentPage): + self.add_query_param('currentPage',currentPage) + + def get_PunishStatus(self): + return self.get_query_params().get('PunishStatus') + + def set_PunishStatus(self,PunishStatus): + self.add_query_param('PunishStatus',PunishStatus) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_srcUid(self): + return self.get_query_params().get('srcUid') + + def set_srcUid(self,srcUid): + self.add_query_param('srcUid',srcUid) + + def get_sourceCode(self): + return self.get_query_params().get('sourceCode') + + def set_sourceCode(self,sourceCode): + self.add_query_param('sourceCode',sourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeResetRecordListRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeResetRecordListRequest.py new file mode 100644 index 0000000000..3084e410bd --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeResetRecordListRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeResetRecordListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeResetRecordList','jarvis') + + def get_SrcIP(self): + return self.get_query_params().get('SrcIP') + + def set_SrcIP(self,SrcIP): + self.add_query_param('SrcIP',SrcIP) + + def get_Period(self): + return self.get_query_params().get('Period') + + def set_Period(self,Period): + self.add_query_param('Period',Period) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_pageSize(self): + return self.get_query_params().get('pageSize') + + def set_pageSize(self,pageSize): + self.add_query_param('pageSize',pageSize) + + def get_currentPage(self): + return self.get_query_params().get('currentPage') + + def set_currentPage(self,currentPage): + self.add_query_param('currentPage',currentPage) + + def get_DstIP(self): + return self.get_query_params().get('DstIP') + + def set_DstIP(self,DstIP): + self.add_query_param('DstIP',DstIP) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeResetRecordQueryCountRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeResetRecordQueryCountRequest.py new file mode 100644 index 0000000000..90b52e114e --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeResetRecordQueryCountRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeResetRecordQueryCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeResetRecordQueryCount','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeRiskListDetailRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeRiskListDetailRequest.py new file mode 100644 index 0000000000..160d150f0f --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeRiskListDetailRequest.py @@ -0,0 +1,90 @@ +# 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 +class DescribeRiskListDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeRiskListDetail','jarvis') + + def get_riskType(self): + return self.get_query_params().get('riskType') + + def set_riskType(self,riskType): + self.add_query_param('riskType',riskType) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_pageSize(self): + return self.get_query_params().get('pageSize') + + def set_pageSize(self,pageSize): + self.add_query_param('pageSize',pageSize) + + def get_queryProduct(self): + return self.get_query_params().get('queryProduct') + + def set_queryProduct(self,queryProduct): + self.add_query_param('queryProduct',queryProduct) + + def get_currentPage(self): + return self.get_query_params().get('currentPage') + + def set_currentPage(self,currentPage): + self.add_query_param('currentPage',currentPage) + + def get_riskDescribe(self): + return self.get_query_params().get('riskDescribe') + + def set_riskDescribe(self,riskDescribe): + self.add_query_param('riskDescribe',riskDescribe) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_srcUid(self): + return self.get_query_params().get('srcUid') + + def set_srcUid(self,srcUid): + self.add_query_param('srcUid',srcUid) + + def get_sourceCode(self): + return self.get_query_params().get('sourceCode') + + def set_sourceCode(self,sourceCode): + self.add_query_param('sourceCode',sourceCode) + + def get_queryRegionId(self): + return self.get_query_params().get('queryRegionId') + + def set_queryRegionId(self,queryRegionId): + self.add_query_param('queryRegionId',queryRegionId) + + def get_status(self): + return self.get_query_params().get('status') + + def set_status(self,status): + self.add_query_param('status',status) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeRiskTrendRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeRiskTrendRequest.py new file mode 100644 index 0000000000..eb9ed76024 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeRiskTrendRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeRiskTrendRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeRiskTrend','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_QueryProduct(self): + return self.get_query_params().get('QueryProduct') + + def set_QueryProduct(self,QueryProduct): + self.add_query_param('QueryProduct',QueryProduct) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Peroid(self): + return self.get_query_params().get('Peroid') + + def set_Peroid(self,Peroid): + self.add_query_param('Peroid',Peroid) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) + + def get_QueryRegionId(self): + return self.get_query_params().get('QueryRegionId') + + def set_QueryRegionId(self,QueryRegionId): + self.add_query_param('QueryRegionId',QueryRegionId) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeSpecialEcsRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeSpecialEcsRequest.py new file mode 100644 index 0000000000..46d8f9204b --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeSpecialEcsRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeSpecialEcsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeSpecialEcs','jarvis') + + def get_TargetIp(self): + return self.get_query_params().get('TargetIp') + + def set_TargetIp(self,TargetIp): + self.add_query_param('TargetIp',TargetIp) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeUidGcLevelRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeUidGcLevelRequest.py new file mode 100644 index 0000000000..38f855d0cc --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeUidGcLevelRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeUidGcLevelRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeUidGcLevel','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeUidWhiteListGroupRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeUidWhiteListGroupRequest.py new file mode 100644 index 0000000000..bd12ef7f9d --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DescribeUidWhiteListGroupRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeUidWhiteListGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DescribeUidWhiteListGroup','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_WhiteListType(self): + return self.get_query_params().get('WhiteListType') + + def set_WhiteListType(self,WhiteListType): + self.add_query_param('WhiteListType',WhiteListType) + + def get_DstIP(self): + return self.get_query_params().get('DstIP') + + def set_DstIP(self,DstIP): + self.add_query_param('DstIP',DstIP) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SrcUid(self): + return self.get_query_params().get('SrcUid') + + def set_SrcUid(self,SrcUid): + self.add_query_param('SrcUid',SrcUid) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/ModifyAccessWhiteListAutoShareRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/ModifyAccessWhiteListAutoShareRequest.py new file mode 100644 index 0000000000..77d2e53e28 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/ModifyAccessWhiteListAutoShareRequest.py @@ -0,0 +1,66 @@ +# 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 +class ModifyAccessWhiteListAutoShareRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'ModifyAccessWhiteListAutoShare','jarvis') + + def get_SrcIP(self): + return self.get_query_params().get('SrcIP') + + def set_SrcIP(self,SrcIP): + self.add_query_param('SrcIP',SrcIP) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_AutoConfig(self): + return self.get_query_params().get('AutoConfig') + + def set_AutoConfig(self,AutoConfig): + self.add_query_param('AutoConfig',AutoConfig) + + def get_ProductName(self): + return self.get_query_params().get('ProductName') + + def set_ProductName(self,ProductName): + self.add_query_param('ProductName',ProductName) + + def get_WhiteListType(self): + return self.get_query_params().get('WhiteListType') + + def set_WhiteListType(self,WhiteListType): + self.add_query_param('WhiteListType',WhiteListType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/ModifyUidWhiteListAutoShareRequest.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/ModifyUidWhiteListAutoShareRequest.py new file mode 100644 index 0000000000..d2ae8fdde8 --- /dev/null +++ b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/ModifyUidWhiteListAutoShareRequest.py @@ -0,0 +1,66 @@ +# 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 +class ModifyUidWhiteListAutoShareRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'ModifyUidWhiteListAutoShare','jarvis') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_AutoConfig(self): + return self.get_query_params().get('AutoConfig') + + def set_AutoConfig(self,AutoConfig): + self.add_query_param('AutoConfig',AutoConfig) + + def get_ProductName(self): + return self.get_query_params().get('ProductName') + + def set_ProductName(self,ProductName): + self.add_query_param('ProductName',ProductName) + + def get_WhiteListType(self): + return self.get_query_params().get('WhiteListType') + + def set_WhiteListType(self,WhiteListType): + self.add_query_param('WhiteListType',WhiteListType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SrcUid(self): + return self.get_query_params().get('SrcUid') + + def set_SrcUid(self,SrcUid): + self.add_query_param('SrcUid',SrcUid) + + def get_SourceCode(self): + return self.get_query_params().get('SourceCode') + + def set_SourceCode(self,SourceCode): + self.add_query_param('SourceCode',SourceCode) \ No newline at end of file diff --git a/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/__init__.py b/aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-jarvis/setup.py b/aliyun-python-sdk-jarvis/setup.py new file mode 100644 index 0000000000..2eda2d86b8 --- /dev/null +++ b/aliyun-python-sdk-jarvis/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for jarvis. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkjarvis" +NAME = "aliyun-python-sdk-jarvis" +DESCRIPTION = "The jarvis module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","jarvis"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/ChangeLog.txt b/aliyun-python-sdk-linkface/ChangeLog.txt new file mode 100644 index 0000000000..bbf4e9b97f --- /dev/null +++ b/aliyun-python-sdk-linkface/ChangeLog.txt @@ -0,0 +1,24 @@ +2019-02-21 Version: 1.2.0 +1, New DeleteDeviceGroup interface. +2, New DeleteDeviceAllGroup interface. +3, New GroupId fields for QuerySyncPicSchedule input parameter. +4, New GroupId fields for QueryAddUserInfo input parameter. + +2018-11-02 Version: 1.1.2 +1, deviceName and productKey can be used instead of iotId. +2, New productKey fields for queryauthentication output parameter. +3, New deviceName fields for queryauthentication output parameter. + +2018-08-17 Version: 1.1.1 +1, New apkpubkey fields for queryauthentication output parameter. +2, New packagename fields for queryauthentication output parameter. +3, New clientId fields for queryauthentication output parameter. + +2018-08-13 Version: 1.1.0 +1, New userinfo fields for registerface input parameter. +2, New userinfo fields for updateface input parameter. +3, New userinfo fields for queryface output parameter. + +2018-08-08 Version: 1.0.0 +1, First release. + diff --git a/aliyun-python-sdk-linkface/MANIFEST.in b/aliyun-python-sdk-linkface/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-linkface/README.rst b/aliyun-python-sdk-linkface/README.rst new file mode 100644 index 0000000000..c6f0be5ff0 --- /dev/null +++ b/aliyun-python-sdk-linkface/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-linkface +This is the linkface module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/__init__.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/__init__.py new file mode 100644 index 0000000000..4a2bfa871a --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/__init__.py @@ -0,0 +1 @@ +__version__ = "1.2.0" \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/__init__.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/CreateGroupRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/CreateGroupRequest.py new file mode 100644 index 0000000000..c4d73a975b --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/CreateGroupRequest.py @@ -0,0 +1,32 @@ +# 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 +class CreateGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'CreateGroup') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/DeleteDeviceAllGroupRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/DeleteDeviceAllGroupRequest.py new file mode 100644 index 0000000000..6409e73442 --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/DeleteDeviceAllGroupRequest.py @@ -0,0 +1,44 @@ +# 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 +class DeleteDeviceAllGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'DeleteDeviceAllGroup') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_IotId(self): + return self.get_body_params().get('IotId') + + def set_IotId(self,IotId): + self.add_body_params('IotId', IotId) + + def get_DeviceName(self): + return self.get_body_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_body_params('DeviceName', DeviceName) + + def get_ProductKey(self): + return self.get_body_params().get('ProductKey') + + def set_ProductKey(self,ProductKey): + self.add_body_params('ProductKey', ProductKey) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/DeleteDeviceGroupRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/DeleteDeviceGroupRequest.py new file mode 100644 index 0000000000..fc4ef81746 --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/DeleteDeviceGroupRequest.py @@ -0,0 +1,50 @@ +# 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 +class DeleteDeviceGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'DeleteDeviceGroup') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_IotId(self): + return self.get_body_params().get('IotId') + + def set_IotId(self,IotId): + self.add_body_params('IotId', IotId) + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) + + def get_DeviceName(self): + return self.get_body_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_body_params('DeviceName', DeviceName) + + def get_ProductKey(self): + return self.get_body_params().get('ProductKey') + + def set_ProductKey(self,ProductKey): + self.add_body_params('ProductKey', ProductKey) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/DeleteFaceRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/DeleteFaceRequest.py new file mode 100644 index 0000000000..04ff4231c0 --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/DeleteFaceRequest.py @@ -0,0 +1,38 @@ +# 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 +class DeleteFaceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'DeleteFace') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) + + def get_UserId(self): + return self.get_body_params().get('UserId') + + def set_UserId(self,UserId): + self.add_body_params('UserId', UserId) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/DeleteGroupRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/DeleteGroupRequest.py new file mode 100644 index 0000000000..36c24ea69d --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/DeleteGroupRequest.py @@ -0,0 +1,32 @@ +# 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 +class DeleteGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'DeleteGroup') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/LinkFaceRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/LinkFaceRequest.py new file mode 100644 index 0000000000..c3f24673d7 --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/LinkFaceRequest.py @@ -0,0 +1,38 @@ +# 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 +class LinkFaceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'LinkFace') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) + + def get_UserId(self): + return self.get_body_params().get('UserId') + + def set_UserId(self,UserId): + self.add_body_params('UserId', UserId) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryAddUserInfoRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryAddUserInfoRequest.py new file mode 100644 index 0000000000..b608960b4a --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryAddUserInfoRequest.py @@ -0,0 +1,50 @@ +# 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 +class QueryAddUserInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'QueryAddUserInfo') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_IotId(self): + return self.get_body_params().get('IotId') + + def set_IotId(self,IotId): + self.add_body_params('IotId', IotId) + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) + + def get_DeviceName(self): + return self.get_body_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_body_params('DeviceName', DeviceName) + + def get_ProductKey(self): + return self.get_body_params().get('ProductKey') + + def set_ProductKey(self,ProductKey): + self.add_body_params('ProductKey', ProductKey) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryAllGroupsRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryAllGroupsRequest.py new file mode 100644 index 0000000000..d7949c64fd --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryAllGroupsRequest.py @@ -0,0 +1,38 @@ +# 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 +class QueryAllGroupsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'QueryAllGroups') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_CurrentPage(self): + return self.get_body_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_body_params('CurrentPage', CurrentPage) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryAuthenticationRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryAuthenticationRequest.py new file mode 100644 index 0000000000..b5edef35d1 --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryAuthenticationRequest.py @@ -0,0 +1,62 @@ +# 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 +class QueryAuthenticationRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'QueryAuthentication') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_LicenseType(self): + return self.get_body_params().get('LicenseType') + + def set_LicenseType(self,LicenseType): + self.add_body_params('LicenseType', LicenseType) + + def get_IotId(self): + return self.get_body_params().get('IotId') + + def set_IotId(self,IotId): + self.add_body_params('IotId', IotId) + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_CurrentPage(self): + return self.get_body_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_body_params('CurrentPage', CurrentPage) + + def get_DeviceName(self): + return self.get_body_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_body_params('DeviceName', DeviceName) + + def get_ProductKey(self): + return self.get_body_params().get('ProductKey') + + def set_ProductKey(self,ProductKey): + self.add_body_params('ProductKey', ProductKey) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryFaceRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryFaceRequest.py new file mode 100644 index 0000000000..b2c56af54b --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryFaceRequest.py @@ -0,0 +1,32 @@ +# 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 +class QueryFaceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'QueryFace') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_UserId(self): + return self.get_body_params().get('UserId') + + def set_UserId(self,UserId): + self.add_body_params('UserId', UserId) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryGroupUsersRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryGroupUsersRequest.py new file mode 100644 index 0000000000..991dc85c3f --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryGroupUsersRequest.py @@ -0,0 +1,44 @@ +# 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 +class QueryGroupUsersRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'QueryGroupUsers') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_CurrentPage(self): + return self.get_body_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_body_params('CurrentPage', CurrentPage) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryLicensesRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryLicensesRequest.py new file mode 100644 index 0000000000..2cf64d27b1 --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QueryLicensesRequest.py @@ -0,0 +1,44 @@ +# 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 +class QueryLicensesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'QueryLicenses') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_LicenseType(self): + return self.get_body_params().get('LicenseType') + + def set_LicenseType(self,LicenseType): + self.add_body_params('LicenseType', LicenseType) + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_CurrentPage(self): + return self.get_body_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_body_params('CurrentPage', CurrentPage) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QuerySyncPicScheduleRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QuerySyncPicScheduleRequest.py new file mode 100644 index 0000000000..b0094e3e1e --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/QuerySyncPicScheduleRequest.py @@ -0,0 +1,50 @@ +# 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 +class QuerySyncPicScheduleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'QuerySyncPicSchedule') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_IotId(self): + return self.get_body_params().get('IotId') + + def set_IotId(self,IotId): + self.add_body_params('IotId', IotId) + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) + + def get_DeviceName(self): + return self.get_body_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_body_params('DeviceName', DeviceName) + + def get_ProductKey(self): + return self.get_body_params().get('ProductKey') + + def set_ProductKey(self,ProductKey): + self.add_body_params('ProductKey', ProductKey) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/RegisterFaceRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/RegisterFaceRequest.py new file mode 100644 index 0000000000..c2190c702c --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/RegisterFaceRequest.py @@ -0,0 +1,50 @@ +# 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 +class RegisterFaceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'RegisterFace') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_Image(self): + return self.get_body_params().get('Image') + + def set_Image(self,Image): + self.add_body_params('Image', Image) + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) + + def get_UserId(self): + return self.get_body_params().get('UserId') + + def set_UserId(self,UserId): + self.add_body_params('UserId', UserId) + + def get_UserInfo(self): + return self.get_body_params().get('UserInfo') + + def set_UserInfo(self,UserInfo): + self.add_body_params('UserInfo', UserInfo) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/SearchFaceRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/SearchFaceRequest.py new file mode 100644 index 0000000000..6c2133e4b5 --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/SearchFaceRequest.py @@ -0,0 +1,38 @@ +# 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 +class SearchFaceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'SearchFace') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_Image(self): + return self.get_body_params().get('Image') + + def set_Image(self,Image): + self.add_body_params('Image', Image) + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/SyncFacePicturesRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/SyncFacePicturesRequest.py new file mode 100644 index 0000000000..29bacd2379 --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/SyncFacePicturesRequest.py @@ -0,0 +1,50 @@ +# 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 +class SyncFacePicturesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'SyncFacePictures') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_IotId(self): + return self.get_body_params().get('IotId') + + def set_IotId(self,IotId): + self.add_body_params('IotId', IotId) + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) + + def get_DeviceName(self): + return self.get_body_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_body_params('DeviceName', DeviceName) + + def get_ProductKey(self): + return self.get_body_params().get('ProductKey') + + def set_ProductKey(self,ProductKey): + self.add_body_params('ProductKey', ProductKey) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/UnlinkFaceRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/UnlinkFaceRequest.py new file mode 100644 index 0000000000..10efd9da7b --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/UnlinkFaceRequest.py @@ -0,0 +1,38 @@ +# 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 +class UnlinkFaceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'UnlinkFace') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) + + def get_UserId(self): + return self.get_body_params().get('UserId') + + def set_UserId(self,UserId): + self.add_body_params('UserId', UserId) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/UpdateFaceRequest.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/UpdateFaceRequest.py new file mode 100644 index 0000000000..f1f9e66b86 --- /dev/null +++ b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/UpdateFaceRequest.py @@ -0,0 +1,44 @@ +# 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 +class UpdateFaceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'LinkFace', '2018-07-20', 'UpdateFace') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_Image(self): + return self.get_body_params().get('Image') + + def set_Image(self,Image): + self.add_body_params('Image', Image) + + def get_UserId(self): + return self.get_body_params().get('UserId') + + def set_UserId(self,UserId): + self.add_body_params('UserId', UserId) + + def get_UserInfo(self): + return self.get_body_params().get('UserInfo') + + def set_UserInfo(self,UserInfo): + self.add_body_params('UserInfo', UserInfo) \ No newline at end of file diff --git a/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/__init__.py b/aliyun-python-sdk-linkface/aliyunsdklinkface/request/v20180720/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-linkface/setup.py b/aliyun-python-sdk-linkface/setup.py new file mode 100644 index 0000000000..6154b923ac --- /dev/null +++ b/aliyun-python-sdk-linkface/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for linkface. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdklinkface" +NAME = "aliyun-python-sdk-linkface" +DESCRIPTION = "The linkface module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","linkface"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/ChangeLog.txt b/aliyun-python-sdk-mopen/ChangeLog.txt new file mode 100644 index 0000000000..4346d055dc --- /dev/null +++ b/aliyun-python-sdk-mopen/ChangeLog.txt @@ -0,0 +1,6 @@ +2019-03-14 Version: 1.1.1 +1, Update Dependency + +2018-08-01 Version: 1.1.0 +1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup + diff --git a/aliyun-python-sdk-mopen/MANIFEST.in b/aliyun-python-sdk-mopen/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-mopen/README.rst b/aliyun-python-sdk-mopen/README.rst new file mode 100644 index 0000000000..aff40d1fa9 --- /dev/null +++ b/aliyun-python-sdk-mopen/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-mopen +This is the mopen module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/__init__.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/__init__.py new file mode 100644 index 0000000000..545d07d07e --- /dev/null +++ b/aliyun-python-sdk-mopen/aliyunsdkmopen/__init__.py @@ -0,0 +1 @@ +__version__ = "1.1.1" \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/request/__init__.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenAddGroupMemberRequest.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenAddGroupMemberRequest.py new file mode 100644 index 0000000000..5ce4f4db9f --- /dev/null +++ b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenAddGroupMemberRequest.py @@ -0,0 +1,38 @@ +# 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 +class MoPenAddGroupMemberRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'MoPen', '2018-02-11', 'MoPenAddGroupMember','mopen') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) + + def get_DeviceName(self): + return self.get_body_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_body_params('DeviceName', DeviceName) \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenBindIsvRequest.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenBindIsvRequest.py new file mode 100644 index 0000000000..87778272ca --- /dev/null +++ b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenBindIsvRequest.py @@ -0,0 +1,38 @@ +# 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 +class MoPenBindIsvRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'MoPen', '2018-02-11', 'MoPenBindIsv','mopen') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_OrderKey(self): + return self.get_body_params().get('OrderKey') + + def set_OrderKey(self,OrderKey): + self.add_body_params('OrderKey', OrderKey) + + def get_DeviceName(self): + return self.get_body_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_body_params('DeviceName', DeviceName) \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenCreateDeviceRequest.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenCreateDeviceRequest.py new file mode 100644 index 0000000000..b3b3a734ce --- /dev/null +++ b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenCreateDeviceRequest.py @@ -0,0 +1,38 @@ +# 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 +class MoPenCreateDeviceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'MoPen', '2018-02-11', 'MoPenCreateDevice','mopen') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_DeviceName(self): + return self.get_body_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_body_params('DeviceName', DeviceName) + + def get_DeviceType(self): + return self.get_body_params().get('DeviceType') + + def set_DeviceType(self,DeviceType): + self.add_body_params('DeviceType', DeviceType) \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenDeleteGroupMemberRequest.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenDeleteGroupMemberRequest.py new file mode 100644 index 0000000000..a497e16f11 --- /dev/null +++ b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenDeleteGroupMemberRequest.py @@ -0,0 +1,38 @@ +# 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 +class MoPenDeleteGroupMemberRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'MoPen', '2018-02-11', 'MoPenDeleteGroupMember','mopen') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) + + def get_DeviceName(self): + return self.get_body_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_body_params('DeviceName', DeviceName) \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenDeleteGroupRequest.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenDeleteGroupRequest.py new file mode 100644 index 0000000000..f063adef94 --- /dev/null +++ b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenDeleteGroupRequest.py @@ -0,0 +1,32 @@ +# 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 +class MoPenDeleteGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'MoPen', '2018-02-11', 'MoPenDeleteGroup','mopen') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_GroupId(self): + return self.get_body_params().get('GroupId') + + def set_GroupId(self,GroupId): + self.add_body_params('GroupId', GroupId) \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenDoRecognizeRequest.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenDoRecognizeRequest.py new file mode 100644 index 0000000000..a79b988e8a --- /dev/null +++ b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenDoRecognizeRequest.py @@ -0,0 +1,68 @@ +# 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 +class MoPenDoRecognizeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'MoPen', '2018-02-11', 'MoPenDoRecognize','mopen') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_CanvasId(self): + return self.get_body_params().get('CanvasId') + + def set_CanvasId(self,CanvasId): + self.add_body_params('CanvasId', CanvasId) + + def get_EndY(self): + return self.get_body_params().get('EndY') + + def set_EndY(self,EndY): + self.add_body_params('EndY', EndY) + + def get_EndX(self): + return self.get_body_params().get('EndX') + + def set_EndX(self,EndX): + self.add_body_params('EndX', EndX) + + def get_JsonConf(self): + return self.get_body_params().get('JsonConf') + + def set_JsonConf(self,JsonConf): + self.add_body_params('JsonConf', JsonConf) + + def get_ExportType(self): + return self.get_body_params().get('ExportType') + + def set_ExportType(self,ExportType): + self.add_body_params('ExportType', ExportType) + + def get_StartY(self): + return self.get_body_params().get('StartY') + + def set_StartY(self,StartY): + self.add_body_params('StartY', StartY) + + def get_StartX(self): + return self.get_body_params().get('StartX') + + def set_StartX(self,StartX): + self.add_body_params('StartX', StartX) \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenFindGroupRequest.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenFindGroupRequest.py new file mode 100644 index 0000000000..b8d02ef103 --- /dev/null +++ b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenFindGroupRequest.py @@ -0,0 +1,32 @@ +# 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 +class MoPenFindGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'MoPen', '2018-02-11', 'MoPenFindGroup','mopen') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_Creator(self): + return self.get_body_params().get('Creator') + + def set_Creator(self,Creator): + self.add_body_params('Creator', Creator) \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenQueryCanvasRequest.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenQueryCanvasRequest.py new file mode 100644 index 0000000000..df53bf4daa --- /dev/null +++ b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenQueryCanvasRequest.py @@ -0,0 +1,50 @@ +# 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 +class MoPenQueryCanvasRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'MoPen', '2018-02-11', 'MoPenQueryCanvas','mopen') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_DeviceName(self): + return self.get_body_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_body_params('DeviceName', DeviceName) + + def get_SessionId(self): + return self.get_body_params().get('SessionId') + + def set_SessionId(self,SessionId): + self.add_body_params('SessionId', SessionId) + + def get_PageId(self): + return self.get_body_params().get('PageId') + + def set_PageId(self,PageId): + self.add_body_params('PageId', PageId) + + def get_Status(self): + return self.get_body_params().get('Status') + + def set_Status(self,Status): + self.add_body_params('Status', Status) \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenSendMqttMessageRequest.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenSendMqttMessageRequest.py new file mode 100644 index 0000000000..dcff68aef5 --- /dev/null +++ b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MoPenSendMqttMessageRequest.py @@ -0,0 +1,38 @@ +# 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 +class MoPenSendMqttMessageRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'MoPen', '2018-02-11', 'MoPenSendMqttMessage','mopen') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_Payload(self): + return self.get_body_params().get('Payload') + + def set_Payload(self,Payload): + self.add_body_params('Payload', Payload) + + def get_DeviceName(self): + return self.get_body_params().get('DeviceName') + + def set_DeviceName(self,DeviceName): + self.add_body_params('DeviceName', DeviceName) \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MopenCreateGroupRequest.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MopenCreateGroupRequest.py new file mode 100644 index 0000000000..85a0450c37 --- /dev/null +++ b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/MopenCreateGroupRequest.py @@ -0,0 +1,32 @@ +# 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 +class MopenCreateGroupRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'MoPen', '2018-02-11', 'MopenCreateGroup','mopen') + self.set_protocol_type('https'); + self.set_method('POST') + + def get_Creator(self): + return self.get_body_params().get('Creator') + + def set_Creator(self,Creator): + self.add_body_params('Creator', Creator) \ No newline at end of file diff --git a/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/__init__.py b/aliyun-python-sdk-mopen/aliyunsdkmopen/request/v20180211/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-mopen/setup.py b/aliyun-python-sdk-mopen/setup.py new file mode 100644 index 0000000000..e4971eb728 --- /dev/null +++ b/aliyun-python-sdk-mopen/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for mopen. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkmopen" +NAME = "aliyun-python-sdk-mopen" +DESCRIPTION = "The mopen module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","mopen"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-netana/ChangeLog.txt b/aliyun-python-sdk-netana/ChangeLog.txt new file mode 100644 index 0000000000..7739a34fc0 --- /dev/null +++ b/aliyun-python-sdk-netana/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-06-13 Version: 1.0.0 +Add Network Assistant openapi sdk + diff --git a/aliyun-python-sdk-netana/MANIFEST.in b/aliyun-python-sdk-netana/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-netana/README.rst b/aliyun-python-sdk-netana/README.rst new file mode 100644 index 0000000000..bd8387306b --- /dev/null +++ b/aliyun-python-sdk-netana/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-netana +This is the netana module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/__init__.py b/aliyun-python-sdk-netana/aliyunsdknetana/__init__.py new file mode 100644 index 0000000000..75977e6f41 --- /dev/null +++ b/aliyun-python-sdk-netana/aliyunsdknetana/__init__.py @@ -0,0 +1 @@ +__version__ = '1.0.0' \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/__init__.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/CreateNetworkDiagnosticRequest.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/CreateNetworkDiagnosticRequest.py new file mode 100644 index 0000000000..a753f3263e --- /dev/null +++ b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/CreateNetworkDiagnosticRequest.py @@ -0,0 +1,84 @@ +# 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 +class CreateNetworkDiagnosticRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Netana', '2018-10-18', 'CreateNetworkDiagnostic','Netana') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_RequestParams(self): + return self.get_query_params().get('RequestParams') + + def set_RequestParams(self,RequestParams): + self.add_query_param('RequestParams',RequestParams) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_UserRequestId(self): + return self.get_query_params().get('UserRequestId') + + def set_UserRequestId(self,UserRequestId): + self.add_query_param('UserRequestId',UserRequestId) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_RequestApiName(self): + return self.get_query_params().get('RequestApiName') + + def set_RequestApiName(self,RequestApiName): + self.add_query_param('RequestApiName',RequestApiName) + + def get_ErrorCode(self): + return self.get_query_params().get('ErrorCode') + + def set_ErrorCode(self,ErrorCode): + self.add_query_param('ErrorCode',ErrorCode) + + def get_ProductType(self): + return self.get_query_params().get('ProductType') + + def set_ProductType(self,ProductType): + self.add_query_param('ProductType',ProductType) + + def get_ResponseParams(self): + return self.get_query_params().get('ResponseParams') + + def set_ResponseParams(self,ResponseParams): + self.add_query_param('ResponseParams',ResponseParams) \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/CreateNetworkQuotaRequestRequest.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/CreateNetworkQuotaRequestRequest.py new file mode 100644 index 0000000000..cf1993dc7b --- /dev/null +++ b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/CreateNetworkQuotaRequestRequest.py @@ -0,0 +1,78 @@ +# 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 +class CreateNetworkQuotaRequestRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Netana', '2018-10-18', 'CreateNetworkQuotaRequest','Netana') + + def get_RequestReason(self): + return self.get_query_params().get('RequestReason') + + def set_RequestReason(self,RequestReason): + self.add_query_param('RequestReason',RequestReason) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_Product(self): + return self.get_query_params().get('Product') + + def set_Product(self,Product): + self.add_query_param('Product',Product) + + def get_QuotaPublicityName(self): + return self.get_query_params().get('QuotaPublicityName') + + def set_QuotaPublicityName(self,QuotaPublicityName): + self.add_query_param('QuotaPublicityName',QuotaPublicityName) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_RequestQuantity(self): + return self.get_query_params().get('RequestQuantity') + + def set_RequestQuantity(self,RequestQuantity): + self.add_query_param('RequestQuantity',RequestQuantity) + + def get_MobilePhone(self): + return self.get_query_params().get('MobilePhone') + + def set_MobilePhone(self,MobilePhone): + self.add_query_param('MobilePhone',MobilePhone) + + def get_ResourceType(self): + return self.get_query_params().get('ResourceType') + + def set_ResourceType(self,ResourceType): + self.add_query_param('ResourceType',ResourceType) + + def get_Email(self): + return self.get_query_params().get('Email') + + def set_Email(self,Email): + self.add_query_param('Email',Email) \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeDiagnosticConfigRequest.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeDiagnosticConfigRequest.py new file mode 100644 index 0000000000..4385199480 --- /dev/null +++ b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeDiagnosticConfigRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeDiagnosticConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Netana', '2018-10-18', 'DescribeDiagnosticConfig','Netana') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_ProductType(self): + return self.get_query_params().get('ProductType') + + def set_ProductType(self,ProductType): + self.add_query_param('ProductType',ProductType) \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeIpLocationAndIspRequest.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeIpLocationAndIspRequest.py new file mode 100644 index 0000000000..1a130c628c --- /dev/null +++ b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeIpLocationAndIspRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeIpLocationAndIspRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Netana', '2018-10-18', 'DescribeIpLocationAndIsp','Netana') + + def get_IpAddress(self): + return self.get_query_params().get('IpAddress') + + def set_IpAddress(self,IpAddress): + self.add_query_param('IpAddress',IpAddress) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeIpv6LocationAndIspRequest.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeIpv6LocationAndIspRequest.py new file mode 100644 index 0000000000..b4b96c28f9 --- /dev/null +++ b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeIpv6LocationAndIspRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeIpv6LocationAndIspRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Netana', '2018-10-18', 'DescribeIpv6LocationAndIsp','Netana') + + def get_IpAddress(self): + return self.get_query_params().get('IpAddress') + + def set_IpAddress(self,IpAddress): + self.add_query_param('IpAddress',IpAddress) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkAnalyticsDataTransferRequest.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkAnalyticsDataTransferRequest.py new file mode 100644 index 0000000000..4c2f235904 --- /dev/null +++ b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkAnalyticsDataTransferRequest.py @@ -0,0 +1,120 @@ +# 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 +class DescribeNetworkAnalyticsDataTransferRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Netana', '2018-10-18', 'DescribeNetworkAnalyticsDataTransfer','Netana') + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_Product(self): + return self.get_query_params().get('Product') + + def set_Product(self,Product): + self.add_query_param('Product',Product) + + def get_Period(self): + return self.get_query_params().get('Period') + + def set_Period(self,Period): + self.add_query_param('Period',Period) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_Ip(self): + return self.get_query_params().get('Ip') + + def set_Ip(self,Ip): + self.add_query_param('Ip',Ip) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) + + def get_Carrier(self): + return self.get_query_params().get('Carrier') + + def set_Carrier(self,Carrier): + self.add_query_param('Carrier',Carrier) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_Province(self): + return self.get_query_params().get('Province') + + def set_Province(self,Province): + self.add_query_param('Province',Province) + + def get_InternetChargeType(self): + return self.get_query_params().get('InternetChargeType') + + def set_InternetChargeType(self,InternetChargeType): + self.add_query_param('InternetChargeType',InternetChargeType) + + def get_Grade(self): + return self.get_query_params().get('Grade') + + def set_Grade(self,Grade): + self.add_query_param('Grade',Grade) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkAnalyticsLatencyRequest.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkAnalyticsLatencyRequest.py new file mode 100644 index 0000000000..813e8b1b98 --- /dev/null +++ b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkAnalyticsLatencyRequest.py @@ -0,0 +1,114 @@ +# 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 +class DescribeNetworkAnalyticsLatencyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Netana', '2018-10-18', 'DescribeNetworkAnalyticsLatency','Netana') + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_Product(self): + return self.get_query_params().get('Product') + + def set_Product(self,Product): + self.add_query_param('Product',Product) + + def get_Period(self): + return self.get_query_params().get('Period') + + def set_Period(self,Period): + self.add_query_param('Period',Period) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_Ip(self): + return self.get_query_params().get('Ip') + + def set_Ip(self,Ip): + self.add_query_param('Ip',Ip) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) + + def get_Carrier(self): + return self.get_query_params().get('Carrier') + + def set_Carrier(self,Carrier): + self.add_query_param('Carrier',Carrier) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_Province(self): + return self.get_query_params().get('Province') + + def set_Province(self,Province): + self.add_query_param('Province',Province) + + def get_InternetChargeType(self): + return self.get_query_params().get('InternetChargeType') + + def set_InternetChargeType(self,InternetChargeType): + self.add_query_param('InternetChargeType',InternetChargeType) + + def get_Grade(self): + return self.get_query_params().get('Grade') + + def set_Grade(self,Grade): + self.add_query_param('Grade',Grade) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkAnalyticsNetQualityRequest.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkAnalyticsNetQualityRequest.py new file mode 100644 index 0000000000..422debe54c --- /dev/null +++ b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkAnalyticsNetQualityRequest.py @@ -0,0 +1,90 @@ +# 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 +class DescribeNetworkAnalyticsNetQualityRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Netana', '2018-10-18', 'DescribeNetworkAnalyticsNetQuality','Netana') + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_Period(self): + return self.get_query_params().get('Period') + + def set_Period(self,Period): + self.add_query_param('Period',Period) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) + + def get_Carrier(self): + return self.get_query_params().get('Carrier') + + def set_Carrier(self,Carrier): + self.add_query_param('Carrier',Carrier) + + def get_Province(self): + return self.get_query_params().get('Province') + + def set_Province(self,Province): + self.add_query_param('Province',Province) + + def get_Grade(self): + return self.get_query_params().get('Grade') + + def set_Grade(self,Grade): + self.add_query_param('Grade',Grade) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkAnalyticsPacketLossRequest.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkAnalyticsPacketLossRequest.py new file mode 100644 index 0000000000..5b98c9d48b --- /dev/null +++ b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkAnalyticsPacketLossRequest.py @@ -0,0 +1,120 @@ +# 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 +class DescribeNetworkAnalyticsPacketLossRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Netana', '2018-10-18', 'DescribeNetworkAnalyticsPacketLoss','Netana') + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_Product(self): + return self.get_query_params().get('Product') + + def set_Product(self,Product): + self.add_query_param('Product',Product) + + def get_Period(self): + return self.get_query_params().get('Period') + + def set_Period(self,Period): + self.add_query_param('Period',Period) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_Ip(self): + return self.get_query_params().get('Ip') + + def set_Ip(self,Ip): + self.add_query_param('Ip',Ip) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) + + def get_Carrier(self): + return self.get_query_params().get('Carrier') + + def set_Carrier(self,Carrier): + self.add_query_param('Carrier',Carrier) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_Province(self): + return self.get_query_params().get('Province') + + def set_Province(self,Province): + self.add_query_param('Province',Province) + + def get_InternetChargeType(self): + return self.get_query_params().get('InternetChargeType') + + def set_InternetChargeType(self,InternetChargeType): + self.add_query_param('InternetChargeType',InternetChargeType) + + def get_Grade(self): + return self.get_query_params().get('Grade') + + def set_Grade(self,Grade): + self.add_query_param('Grade',Grade) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Direction(self): + return self.get_query_params().get('Direction') + + def set_Direction(self,Direction): + self.add_query_param('Direction',Direction) \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkQuotaRequestResultRequest.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkQuotaRequestResultRequest.py new file mode 100644 index 0000000000..36cf996aa1 --- /dev/null +++ b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkQuotaRequestResultRequest.py @@ -0,0 +1,72 @@ +# 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 +class DescribeNetworkQuotaRequestResultRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Netana', '2018-10-18', 'DescribeNetworkQuotaRequestResult','Netana') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_Product(self): + return self.get_query_params().get('Product') + + def set_Product(self,Product): + self.add_query_param('Product',Product) + + def get_QuotaPublicityName(self): + return self.get_query_params().get('QuotaPublicityName') + + def set_QuotaPublicityName(self,QuotaPublicityName): + self.add_query_param('QuotaPublicityName',QuotaPublicityName) + + def get_QuotaRequestId(self): + return self.get_query_params().get('QuotaRequestId') + + def set_QuotaRequestId(self,QuotaRequestId): + self.add_query_param('QuotaRequestId',QuotaRequestId) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_PageNo(self): + return self.get_query_params().get('PageNo') + + def set_PageNo(self,PageNo): + self.add_query_param('PageNo',PageNo) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_ResourceType(self): + return self.get_query_params().get('ResourceType') + + def set_ResourceType(self,ResourceType): + self.add_query_param('ResourceType',ResourceType) \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkQuotasRequest.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkQuotasRequest.py new file mode 100644 index 0000000000..30f1012506 --- /dev/null +++ b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/DescribeNetworkQuotasRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeNetworkQuotasRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Netana', '2018-10-18', 'DescribeNetworkQuotas','Netana') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_Product(self): + return self.get_query_params().get('Product') + + def set_Product(self,Product): + self.add_query_param('Product',Product) + + def get_QuotaPublicityName(self): + return self.get_query_params().get('QuotaPublicityName') + + def set_QuotaPublicityName(self,QuotaPublicityName): + self.add_query_param('QuotaPublicityName',QuotaPublicityName) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_ResourceType(self): + return self.get_query_params().get('ResourceType') + + def set_ResourceType(self,ResourceType): + self.add_query_param('ResourceType',ResourceType) \ No newline at end of file diff --git a/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/__init__.py b/aliyun-python-sdk-netana/aliyunsdknetana/request/v20181018/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-netana/setup.py b/aliyun-python-sdk-netana/setup.py new file mode 100644 index 0000000000..034e416d7e --- /dev/null +++ b/aliyun-python-sdk-netana/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for netana. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdknetana" +NAME = "aliyun-python-sdk-netana" +DESCRIPTION = "The netana module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","netana"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/ChangeLog.txt b/aliyun-python-sdk-ocs/ChangeLog.txt new file mode 100644 index 0000000000..17fcdeb453 --- /dev/null +++ b/aliyun-python-sdk-ocs/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-03-20 Version: 0.0.4 +1, Update the Dependency + diff --git a/aliyun-python-sdk-ocs/MANIFEST.in b/aliyun-python-sdk-ocs/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-ocs/README.rst b/aliyun-python-sdk-ocs/README.rst new file mode 100644 index 0000000000..48ac7f7a1e --- /dev/null +++ b/aliyun-python-sdk-ocs/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-ocs +This is the ocs module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/__init__.py b/aliyun-python-sdk-ocs/aliyunsdkocs/__init__.py new file mode 100644 index 0000000000..221ce5dcc2 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/__init__.py @@ -0,0 +1 @@ +__version__ = "0.0.4" \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/__init__.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ActivateInstanceRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ActivateInstanceRequest.py new file mode 100644 index 0000000000..13b8ab62e5 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ActivateInstanceRequest.py @@ -0,0 +1,60 @@ +# 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 +class ActivateInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'ActivateInstance','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/AddAuthenticIPRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/AddAuthenticIPRequest.py new file mode 100644 index 0000000000..b637dec47f --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/AddAuthenticIPRequest.py @@ -0,0 +1,66 @@ +# 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 +class AddAuthenticIPRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'AddAuthenticIP','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_AuthenticIP(self): + return self.get_query_params().get('AuthenticIP') + + def set_AuthenticIP(self,AuthenticIP): + self.add_query_param('AuthenticIP',AuthenticIP) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/CreateInstanceRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/CreateInstanceRequest.py new file mode 100644 index 0000000000..42b71f92a9 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/CreateInstanceRequest.py @@ -0,0 +1,108 @@ +# 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 +class CreateInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'CreateInstance','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_NetworkType(self): + return self.get_query_params().get('NetworkType') + + def set_NetworkType(self,NetworkType): + self.add_query_param('NetworkType',NetworkType) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) + + def get_Capacity(self): + return self.get_query_params().get('Capacity') + + def set_Capacity(self,Capacity): + self.add_query_param('Capacity',Capacity) + + def get_Token(self): + return self.get_query_params().get('Token') + + def set_Token(self,Token): + self.add_query_param('Token',Token) + + def get_VSwitchId(self): + return self.get_query_params().get('VSwitchId') + + def set_VSwitchId(self,VSwitchId): + self.add_query_param('VSwitchId',VSwitchId) + + def get_PrivateIpAddress(self): + return self.get_query_params().get('PrivateIpAddress') + + def set_PrivateIpAddress(self,PrivateIpAddress): + self.add_query_param('PrivateIpAddress',PrivateIpAddress) + + def get_Password(self): + return self.get_query_params().get('Password') + + def set_Password(self,Password): + self.add_query_param('Password',Password) + + def get_InstanceName(self): + return self.get_query_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_query_param('InstanceName',InstanceName) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_VpcId(self): + return self.get_query_params().get('VpcId') + + def set_VpcId(self,VpcId): + self.add_query_param('VpcId',VpcId) + + def get_ZoneId(self): + return self.get_query_params().get('ZoneId') + + def set_ZoneId(self,ZoneId): + self.add_query_param('ZoneId',ZoneId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DataOperateRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DataOperateRequest.py new file mode 100644 index 0000000000..ddeda72ebd --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DataOperateRequest.py @@ -0,0 +1,66 @@ +# 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 +class DataOperateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'DataOperate','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) + + def get_Command(self): + return self.get_query_params().get('Command') + + def set_Command(self,Command): + self.add_query_param('Command',Command) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DeactivateInstanceRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DeactivateInstanceRequest.py new file mode 100644 index 0000000000..a4f3ab7bdf --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DeactivateInstanceRequest.py @@ -0,0 +1,60 @@ +# 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 +class DeactivateInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'DeactivateInstance','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DeleteInstanceRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DeleteInstanceRequest.py new file mode 100644 index 0000000000..4eb22a1ef4 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DeleteInstanceRequest.py @@ -0,0 +1,60 @@ +# 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 +class DeleteInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'DeleteInstance','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeAuthenticIPRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeAuthenticIPRequest.py new file mode 100644 index 0000000000..f476a03aad --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeAuthenticIPRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeAuthenticIPRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'DescribeAuthenticIP','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeHistoryMonitorValuesRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeHistoryMonitorValuesRequest.py new file mode 100644 index 0000000000..c44528e354 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeHistoryMonitorValuesRequest.py @@ -0,0 +1,84 @@ +# 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 +class DescribeHistoryMonitorValuesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'DescribeHistoryMonitorValues','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_IntervalForHistory(self): + return self.get_query_params().get('IntervalForHistory') + + def set_IntervalForHistory(self,IntervalForHistory): + self.add_query_param('IntervalForHistory',IntervalForHistory) + + def get_MonitorKeys(self): + return self.get_query_params().get('MonitorKeys') + + def set_MonitorKeys(self,MonitorKeys): + self.add_query_param('MonitorKeys',MonitorKeys) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeInstancesRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeInstancesRequest.py new file mode 100644 index 0000000000..8e330b0d80 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeInstancesRequest.py @@ -0,0 +1,102 @@ +# 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 +class DescribeInstancesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'DescribeInstances','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceStatus(self): + return self.get_query_params().get('InstanceStatus') + + def set_InstanceStatus(self,InstanceStatus): + self.add_query_param('InstanceStatus',InstanceStatus) + + def get_PrivateIpAddresses(self): + return self.get_query_params().get('PrivateIpAddresses') + + def set_PrivateIpAddresses(self,PrivateIpAddresses): + self.add_query_param('PrivateIpAddresses',PrivateIpAddresses) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_NetworkType(self): + return self.get_query_params().get('NetworkType') + + def set_NetworkType(self,NetworkType): + self.add_query_param('NetworkType',NetworkType) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) + + def get_VSwitchId(self): + return self.get_query_params().get('VSwitchId') + + def set_VSwitchId(self,VSwitchId): + self.add_query_param('VSwitchId',VSwitchId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_InstanceIds(self): + return self.get_query_params().get('InstanceIds') + + def set_InstanceIds(self,InstanceIds): + self.add_query_param('InstanceIds',InstanceIds) + + def get_VpcId(self): + return self.get_query_params().get('VpcId') + + def set_VpcId(self,VpcId): + self.add_query_param('VpcId',VpcId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeMonitorItemsRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeMonitorItemsRequest.py new file mode 100644 index 0000000000..7a38a80fe6 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeMonitorItemsRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeMonitorItemsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'DescribeMonitorItems','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeMonitorValuesRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeMonitorValuesRequest.py new file mode 100644 index 0000000000..f16dc580ee --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeMonitorValuesRequest.py @@ -0,0 +1,66 @@ +# 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 +class DescribeMonitorValuesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'DescribeMonitorValues','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_InstanceIds(self): + return self.get_query_params().get('InstanceIds') + + def set_InstanceIds(self,InstanceIds): + self.add_query_param('InstanceIds',InstanceIds) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) + + def get_MonitorKeys(self): + return self.get_query_params().get('MonitorKeys') + + def set_MonitorKeys(self,MonitorKeys): + self.add_query_param('MonitorKeys',MonitorKeys) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeRegionsRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeRegionsRequest.py new file mode 100644 index 0000000000..1e9b289a34 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeRegionsRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeRegionsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'DescribeRegions','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeSecurityIpsRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeSecurityIpsRequest.py new file mode 100644 index 0000000000..43da132b65 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeSecurityIpsRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeSecurityIpsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'DescribeSecurityIps','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeZonesRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeZonesRequest.py new file mode 100644 index 0000000000..f7d6297c43 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/DescribeZonesRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeZonesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'DescribeZones','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_ZoneId(self): + return self.get_query_params().get('ZoneId') + + def set_ZoneId(self,ZoneId): + self.add_query_param('ZoneId',ZoneId) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/FlushInstanceRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/FlushInstanceRequest.py new file mode 100644 index 0000000000..513c3675ad --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/FlushInstanceRequest.py @@ -0,0 +1,60 @@ +# 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 +class FlushInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'FlushInstance','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifyHotKeySwitchModeRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifyHotKeySwitchModeRequest.py new file mode 100644 index 0000000000..79efae5920 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifyHotKeySwitchModeRequest.py @@ -0,0 +1,78 @@ +# 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 +class ModifyHotKeySwitchModeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'ModifyHotKeySwitchMode','ocs') + + def get_ExpireTime(self): + return self.get_query_params().get('ExpireTime') + + def set_ExpireTime(self,ExpireTime): + self.add_query_param('ExpireTime',ExpireTime) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_KeyNumber(self): + return self.get_query_params().get('KeyNumber') + + def set_KeyNumber(self,KeyNumber): + self.add_query_param('KeyNumber',KeyNumber) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) + + def get_SwitchMode(self): + return self.get_query_params().get('SwitchMode') + + def set_SwitchMode(self,SwitchMode): + self.add_query_param('SwitchMode',SwitchMode) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifyInstanceAttributeRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifyInstanceAttributeRequest.py new file mode 100644 index 0000000000..272ef09b85 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifyInstanceAttributeRequest.py @@ -0,0 +1,72 @@ +# 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 +class ModifyInstanceAttributeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'ModifyInstanceAttribute','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_InstanceName(self): + return self.get_query_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_query_param('InstanceName',InstanceName) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) + + def get_NewPassword(self): + return self.get_query_params().get('NewPassword') + + def set_NewPassword(self,NewPassword): + self.add_query_param('NewPassword',NewPassword) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifyInstanceCapacityRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifyInstanceCapacityRequest.py new file mode 100644 index 0000000000..ef55f93a6f --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifyInstanceCapacityRequest.py @@ -0,0 +1,66 @@ +# 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 +class ModifyInstanceCapacityRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'ModifyInstanceCapacity','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) + + def get_Capacity(self): + return self.get_query_params().get('Capacity') + + def set_Capacity(self,Capacity): + self.add_query_param('Capacity',Capacity) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifyNetworkTypeRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifyNetworkTypeRequest.py new file mode 100644 index 0000000000..7dee8dd857 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifyNetworkTypeRequest.py @@ -0,0 +1,72 @@ +# 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 +class ModifyNetworkTypeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'ModifyNetworkType','ocs') + + def get_VSwitchId(self): + return self.get_query_params().get('VSwitchId') + + def set_VSwitchId(self,VSwitchId): + self.add_query_param('VSwitchId',VSwitchId) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_VpcId(self): + return self.get_query_params().get('VpcId') + + def set_VpcId(self,VpcId): + self.add_query_param('VpcId',VpcId) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifySecurityIpsRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifySecurityIpsRequest.py new file mode 100644 index 0000000000..47aa235809 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ModifySecurityIpsRequest.py @@ -0,0 +1,66 @@ +# 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 +class ModifySecurityIpsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'ModifySecurityIps','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_SecurityIps(self): + return self.get_query_params().get('SecurityIps') + + def set_SecurityIps(self,SecurityIps): + self.add_query_param('SecurityIps',SecurityIps) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/RemoveAuthenticIPRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/RemoveAuthenticIPRequest.py new file mode 100644 index 0000000000..165b7ad727 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/RemoveAuthenticIPRequest.py @@ -0,0 +1,66 @@ +# 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 +class RemoveAuthenticIPRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'RemoveAuthenticIP','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_AuthenticIP(self): + return self.get_query_params().get('AuthenticIP') + + def set_AuthenticIP(self,AuthenticIP): + self.add_query_param('AuthenticIP',AuthenticIP) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ReplaceAuthenticIPRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ReplaceAuthenticIPRequest.py new file mode 100644 index 0000000000..b217e7a124 --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/ReplaceAuthenticIPRequest.py @@ -0,0 +1,72 @@ +# 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 +class ReplaceAuthenticIPRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'ReplaceAuthenticIP','ocs') + + def get_NewAuthenticIP(self): + return self.get_query_params().get('NewAuthenticIP') + + def set_NewAuthenticIP(self,NewAuthenticIP): + self.add_query_param('NewAuthenticIP',NewAuthenticIP) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_OldAuthenticIP(self): + return self.get_query_params().get('OldAuthenticIP') + + def set_OldAuthenticIP(self,OldAuthenticIP): + self.add_query_param('OldAuthenticIP',OldAuthenticIP) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/VerifyPasswordRequest.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/VerifyPasswordRequest.py new file mode 100644 index 0000000000..a3944132bf --- /dev/null +++ b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/VerifyPasswordRequest.py @@ -0,0 +1,66 @@ +# 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 +class VerifyPasswordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ocs', '2015-03-01', 'VerifyPassword','ocs') + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_Password(self): + return self.get_query_params().get('Password') + + def set_Password(self,Password): + self.add_query_param('Password',Password) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SecurityToken(self): + return self.get_query_params().get('SecurityToken') + + def set_SecurityToken(self,SecurityToken): + self.add_query_param('SecurityToken',SecurityToken) + + def get_ResourceOwnerAccount(self): + return self.get_query_params().get('ResourceOwnerAccount') + + def set_ResourceOwnerAccount(self,ResourceOwnerAccount): + self.add_query_param('ResourceOwnerAccount',ResourceOwnerAccount) + + def get_OwnerAccount(self): + return self.get_query_params().get('OwnerAccount') + + def set_OwnerAccount(self,OwnerAccount): + self.add_query_param('OwnerAccount',OwnerAccount) + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/__init__.py b/aliyun-python-sdk-ocs/aliyunsdkocs/request/v20150301/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-ocs/setup.py b/aliyun-python-sdk-ocs/setup.py new file mode 100644 index 0000000000..2328610589 --- /dev/null +++ b/aliyun-python-sdk-ocs/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for ocs. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkocs" +NAME = "aliyun-python-sdk-ocs" +DESCRIPTION = "The ocs module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","ocs"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-openanalytics/ChangeLog.txt b/aliyun-python-sdk-openanalytics/ChangeLog.txt new file mode 100644 index 0000000000..bf6d5de010 --- /dev/null +++ b/aliyun-python-sdk-openanalytics/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-03-15 Version: 1.0.1 +1, Update Dependency + diff --git a/aliyun-python-sdk-openanalytics/MANIFEST.in b/aliyun-python-sdk-openanalytics/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-openanalytics/README.rst b/aliyun-python-sdk-openanalytics/README.rst new file mode 100644 index 0000000000..1b9805b3ae --- /dev/null +++ b/aliyun-python-sdk-openanalytics/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-openanalytics +This is the openanalytics module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/__init__.py b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/__init__.py new file mode 100644 index 0000000000..0058b93f7d --- /dev/null +++ b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/__init__.py @@ -0,0 +1 @@ +__version__ = "1.0.1" \ No newline at end of file diff --git a/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/__init__.py b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/CloseProductAccountRequest.py b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/CloseProductAccountRequest.py new file mode 100644 index 0000000000..8b66ddf3f2 --- /dev/null +++ b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/CloseProductAccountRequest.py @@ -0,0 +1,48 @@ +# 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 +class CloseProductAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'openanalytics', '2018-03-01', 'CloseProductAccount','openanalytics') + + def get_ProductCode(self): + return self.get_body_params().get('ProductCode') + + def set_ProductCode(self,ProductCode): + self.add_body_params('ProductCode', ProductCode) + + def get_ProductAccessKey(self): + return self.get_body_params().get('ProductAccessKey') + + def set_ProductAccessKey(self,ProductAccessKey): + self.add_body_params('ProductAccessKey', ProductAccessKey) + + def get_TargetUid(self): + return self.get_body_params().get('TargetUid') + + def set_TargetUid(self,TargetUid): + self.add_body_params('TargetUid', TargetUid) + + def get_TargetArnRole(self): + return self.get_body_params().get('TargetArnRole') + + def set_TargetArnRole(self,TargetArnRole): + self.add_body_params('TargetArnRole', TargetArnRole) \ No newline at end of file diff --git a/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/DescribeRegionListRequest.py b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/DescribeRegionListRequest.py new file mode 100644 index 0000000000..3a3f1e9c48 --- /dev/null +++ b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/DescribeRegionListRequest.py @@ -0,0 +1,24 @@ +# 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 +class DescribeRegionListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'openanalytics', '2018-03-01', 'DescribeRegionList','openanalytics') \ No newline at end of file diff --git a/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/GetAllowIPRequest.py b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/GetAllowIPRequest.py new file mode 100644 index 0000000000..da3a3b8955 --- /dev/null +++ b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/GetAllowIPRequest.py @@ -0,0 +1,36 @@ +# 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 +class GetAllowIPRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'openanalytics', '2018-03-01', 'GetAllowIP','openanalytics') + + def get_UserID(self): + return self.get_body_params().get('UserID') + + def set_UserID(self,UserID): + self.add_body_params('UserID', UserID) + + def get_NetworkType(self): + return self.get_body_params().get('NetworkType') + + def set_NetworkType(self,NetworkType): + self.add_body_params('NetworkType', NetworkType) \ No newline at end of file diff --git a/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/GetEndPointByDomainRequest.py b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/GetEndPointByDomainRequest.py new file mode 100644 index 0000000000..a9ab4547cb --- /dev/null +++ b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/GetEndPointByDomainRequest.py @@ -0,0 +1,36 @@ +# 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 +class GetEndPointByDomainRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'openanalytics', '2018-03-01', 'GetEndPointByDomain','openanalytics') + + def get_UserID(self): + return self.get_body_params().get('UserID') + + def set_UserID(self,UserID): + self.add_body_params('UserID', UserID) + + def get_DomainURL(self): + return self.get_body_params().get('DomainURL') + + def set_DomainURL(self,DomainURL): + self.add_body_params('DomainURL', DomainURL) \ No newline at end of file diff --git a/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/GetProductStatusRequest.py b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/GetProductStatusRequest.py new file mode 100644 index 0000000000..d2bc084317 --- /dev/null +++ b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/GetProductStatusRequest.py @@ -0,0 +1,48 @@ +# 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 +class GetProductStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'openanalytics', '2018-03-01', 'GetProductStatus','openanalytics') + + def get_ProductCode(self): + return self.get_body_params().get('ProductCode') + + def set_ProductCode(self,ProductCode): + self.add_body_params('ProductCode', ProductCode) + + def get_ProductAccessKey(self): + return self.get_body_params().get('ProductAccessKey') + + def set_ProductAccessKey(self,ProductAccessKey): + self.add_body_params('ProductAccessKey', ProductAccessKey) + + def get_TargetUid(self): + return self.get_body_params().get('TargetUid') + + def set_TargetUid(self,TargetUid): + self.add_body_params('TargetUid', TargetUid) + + def get_TargetArnRole(self): + return self.get_body_params().get('TargetArnRole') + + def set_TargetArnRole(self,TargetArnRole): + self.add_body_params('TargetArnRole', TargetArnRole) \ No newline at end of file diff --git a/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/GetRegionStatusRequest.py b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/GetRegionStatusRequest.py new file mode 100644 index 0000000000..a377a4559e --- /dev/null +++ b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/GetRegionStatusRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetRegionStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'openanalytics', '2018-03-01', 'GetRegionStatus','openanalytics') + + def get_TargetUid(self): + return self.get_body_params().get('TargetUid') + + def set_TargetUid(self,TargetUid): + self.add_body_params('TargetUid', TargetUid) \ No newline at end of file diff --git a/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/OpenProductAccountRequest.py b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/OpenProductAccountRequest.py new file mode 100644 index 0000000000..ae7e047e18 --- /dev/null +++ b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/OpenProductAccountRequest.py @@ -0,0 +1,48 @@ +# 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 +class OpenProductAccountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'openanalytics', '2018-03-01', 'OpenProductAccount','openanalytics') + + def get_ProductCode(self): + return self.get_body_params().get('ProductCode') + + def set_ProductCode(self,ProductCode): + self.add_body_params('ProductCode', ProductCode) + + def get_ProductAccessKey(self): + return self.get_body_params().get('ProductAccessKey') + + def set_ProductAccessKey(self,ProductAccessKey): + self.add_body_params('ProductAccessKey', ProductAccessKey) + + def get_TargetUid(self): + return self.get_body_params().get('TargetUid') + + def set_TargetUid(self,TargetUid): + self.add_body_params('TargetUid', TargetUid) + + def get_TargetArnRole(self): + return self.get_body_params().get('TargetArnRole') + + def set_TargetArnRole(self,TargetArnRole): + self.add_body_params('TargetArnRole', TargetArnRole) \ No newline at end of file diff --git a/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/QueryEndPointListRequest.py b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/QueryEndPointListRequest.py new file mode 100644 index 0000000000..9fb9a2685b --- /dev/null +++ b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/QueryEndPointListRequest.py @@ -0,0 +1,30 @@ +# 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 +class QueryEndPointListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'openanalytics', '2018-03-01', 'QueryEndPointList','openanalytics') + + def get_UserID(self): + return self.get_body_params().get('UserID') + + def set_UserID(self,UserID): + self.add_body_params('UserID', UserID) \ No newline at end of file diff --git a/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/SetAllowIPRequest.py b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/SetAllowIPRequest.py new file mode 100644 index 0000000000..7339314a7b --- /dev/null +++ b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/SetAllowIPRequest.py @@ -0,0 +1,48 @@ +# 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 +class SetAllowIPRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'openanalytics', '2018-03-01', 'SetAllowIP','openanalytics') + + def get_UserID(self): + return self.get_body_params().get('UserID') + + def set_UserID(self,UserID): + self.add_body_params('UserID', UserID) + + def get_NetworkType(self): + return self.get_body_params().get('NetworkType') + + def set_NetworkType(self,NetworkType): + self.add_body_params('NetworkType', NetworkType) + + def get_AllowIP(self): + return self.get_body_params().get('AllowIP') + + def set_AllowIP(self,AllowIP): + self.add_body_params('AllowIP', AllowIP) + + def get_Append(self): + return self.get_body_params().get('Append') + + def set_Append(self,Append): + self.add_body_params('Append', Append) \ No newline at end of file diff --git a/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/__init__.py b/aliyun-python-sdk-openanalytics/aliyunsdkopenanalytics/request/v20180301/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-openanalytics/setup.py b/aliyun-python-sdk-openanalytics/setup.py new file mode 100644 index 0000000000..3c626cc215 --- /dev/null +++ b/aliyun-python-sdk-openanalytics/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for openanalytics. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkopenanalytics" +NAME = "aliyun-python-sdk-openanalytics" +DESCRIPTION = "The openanalytics module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","openanalytics"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-ots/ChangeLog.txt b/aliyun-python-sdk-ots/ChangeLog.txt new file mode 100644 index 0000000000..d6f18825a9 --- /dev/null +++ b/aliyun-python-sdk-ots/ChangeLog.txt @@ -0,0 +1,6 @@ +2019-03-18 Version: 4.0.1 +1, Update Dependency + +2018-08-08 Version: 4.0.0 +1, The official release 4.0.0 + diff --git a/aliyun-python-sdk-ots/MANIFEST.in b/aliyun-python-sdk-ots/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-ots/README.rst b/aliyun-python-sdk-ots/README.rst new file mode 100644 index 0000000000..6489f16c11 --- /dev/null +++ b/aliyun-python-sdk-ots/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-ots +This is the ots module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-ots/aliyunsdkots/__init__.py b/aliyun-python-sdk-ots/aliyunsdkots/__init__.py new file mode 100644 index 0000000000..4425ec3dda --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/__init__.py @@ -0,0 +1 @@ +__version__ = "4.0.1" \ No newline at end of file diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/__init__.py b/aliyun-python-sdk-ots/aliyunsdkots/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/BindInstance2VpcRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/BindInstance2VpcRequest.py new file mode 100644 index 0000000000..750276c4b2 --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/BindInstance2VpcRequest.py @@ -0,0 +1,73 @@ +# 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 +class BindInstance2VpcRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'BindInstance2Vpc','ots') + self.set_method('POST') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_InstanceVpcName(self): + return self.get_query_params().get('InstanceVpcName') + + def set_InstanceVpcName(self,InstanceVpcName): + self.add_query_param('InstanceVpcName',InstanceVpcName) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceName(self): + return self.get_query_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_query_param('InstanceName',InstanceName) + + def get_VpcId(self): + return self.get_query_params().get('VpcId') + + def set_VpcId(self,VpcId): + self.add_query_param('VpcId',VpcId) + + def get_VirtualSwitchId(self): + return self.get_query_params().get('VirtualSwitchId') + + def set_VirtualSwitchId(self,VirtualSwitchId): + self.add_query_param('VirtualSwitchId',VirtualSwitchId) + + def get_RegionNo(self): + return self.get_query_params().get('RegionNo') + + def set_RegionNo(self,RegionNo): + self.add_query_param('RegionNo',RegionNo) + + def get_Network(self): + return self.get_query_params().get('Network') + + def set_Network(self,Network): + self.add_query_param('Network',Network) \ No newline at end of file diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/DeleteInstanceRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/DeleteInstanceRequest.py new file mode 100644 index 0000000000..a5f009e8c6 --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/DeleteInstanceRequest.py @@ -0,0 +1,43 @@ +# 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 +class DeleteInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'DeleteInstance','ots') + self.set_method('POST') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceName(self): + return self.get_query_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_query_param('InstanceName',InstanceName) \ No newline at end of file diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/DeleteTagsRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/DeleteTagsRequest.py new file mode 100644 index 0000000000..50cb5059b3 --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/DeleteTagsRequest.py @@ -0,0 +1,53 @@ +# 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 +class DeleteTagsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'DeleteTags','ots') + self.set_method('POST') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceName(self): + return self.get_query_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_query_param('InstanceName',InstanceName) + + def get_TagInfos(self): + return self.get_query_params().get('TagInfos') + + def set_TagInfos(self,TagInfos): + for i in range(len(TagInfos)): + if TagInfos[i].get('TagValue') is not None: + self.add_query_param('TagInfo.' + str(i + 1) + '.TagValue' , TagInfos[i].get('TagValue')) + if TagInfos[i].get('TagKey') is not None: + self.add_query_param('TagInfo.' + str(i + 1) + '.TagKey' , TagInfos[i].get('TagKey')) diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/GetInstanceRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/GetInstanceRequest.py new file mode 100644 index 0000000000..e39b4f5c4a --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/GetInstanceRequest.py @@ -0,0 +1,42 @@ +# 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 +class GetInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'GetInstance','ots') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceName(self): + return self.get_query_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_query_param('InstanceName',InstanceName) \ No newline at end of file diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/InsertInstanceRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/InsertInstanceRequest.py new file mode 100644 index 0000000000..91786d3636 --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/InsertInstanceRequest.py @@ -0,0 +1,72 @@ +# 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 +class InsertInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'InsertInstance','ots') + self.set_method('POST') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_ClusterType(self): + return self.get_query_params().get('ClusterType') + + def set_ClusterType(self,ClusterType): + self.add_query_param('ClusterType',ClusterType) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceName(self): + return self.get_query_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_query_param('InstanceName',InstanceName) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_TagInfos(self): + return self.get_query_params().get('TagInfos') + + def set_TagInfos(self,TagInfos): + for i in range(len(TagInfos)): + if TagInfos[i].get('TagValue') is not None: + self.add_query_param('TagInfo.' + str(i + 1) + '.TagValue' , TagInfos[i].get('TagValue')) + if TagInfos[i].get('TagKey') is not None: + self.add_query_param('TagInfo.' + str(i + 1) + '.TagKey' , TagInfos[i].get('TagKey')) + + + def get_Network(self): + return self.get_query_params().get('Network') + + def set_Network(self,Network): + self.add_query_param('Network',Network) \ No newline at end of file diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/InsertTagsRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/InsertTagsRequest.py new file mode 100644 index 0000000000..4e2af3ff7e --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/InsertTagsRequest.py @@ -0,0 +1,53 @@ +# 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 +class InsertTagsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'InsertTags','ots') + self.set_method('POST') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceName(self): + return self.get_query_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_query_param('InstanceName',InstanceName) + + def get_TagInfos(self): + return self.get_query_params().get('TagInfos') + + def set_TagInfos(self,TagInfos): + for i in range(len(TagInfos)): + if TagInfos[i].get('TagValue') is not None: + self.add_query_param('TagInfo.' + str(i + 1) + '.TagValue' , TagInfos[i].get('TagValue')) + if TagInfos[i].get('TagKey') is not None: + self.add_query_param('TagInfo.' + str(i + 1) + '.TagKey' , TagInfos[i].get('TagKey')) diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListClusterTypeRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListClusterTypeRequest.py new file mode 100644 index 0000000000..309799a2c0 --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListClusterTypeRequest.py @@ -0,0 +1,36 @@ +# 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 +class ListClusterTypeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'ListClusterType','ots') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListInstanceRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListInstanceRequest.py new file mode 100644 index 0000000000..c13da683f7 --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListInstanceRequest.py @@ -0,0 +1,58 @@ +# 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 +class ListInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'ListInstance','ots') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_TagInfos(self): + return self.get_query_params().get('TagInfos') + + def set_TagInfos(self,TagInfos): + for i in range(len(TagInfos)): + if TagInfos[i].get('TagValue') is not None: + self.add_query_param('TagInfo.' + str(i + 1) + '.TagValue' , TagInfos[i].get('TagValue')) + if TagInfos[i].get('TagKey') is not None: + self.add_query_param('TagInfo.' + str(i + 1) + '.TagKey' , TagInfos[i].get('TagKey')) diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListTagsRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListTagsRequest.py new file mode 100644 index 0000000000..330f20e1a1 --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListTagsRequest.py @@ -0,0 +1,65 @@ +# 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 +class ListTagsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'ListTags','ots') + self.set_method('POST') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceName(self): + return self.get_query_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_query_param('InstanceName',InstanceName) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_TagInfos(self): + return self.get_query_params().get('TagInfos') + + def set_TagInfos(self,TagInfos): + for i in range(len(TagInfos)): + if TagInfos[i].get('TagValue') is not None: + self.add_query_param('TagInfo.' + str(i + 1) + '.TagValue' , TagInfos[i].get('TagValue')) + if TagInfos[i].get('TagKey') is not None: + self.add_query_param('TagInfo.' + str(i + 1) + '.TagKey' , TagInfos[i].get('TagKey')) diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListVpcInfoByInstanceRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListVpcInfoByInstanceRequest.py new file mode 100644 index 0000000000..a4c75beef6 --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListVpcInfoByInstanceRequest.py @@ -0,0 +1,54 @@ +# 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 +class ListVpcInfoByInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'ListVpcInfoByInstance','ots') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceName(self): + return self.get_query_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_query_param('InstanceName',InstanceName) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) \ No newline at end of file diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListVpcInfoByVpcRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListVpcInfoByVpcRequest.py new file mode 100644 index 0000000000..4b651d83a9 --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/ListVpcInfoByVpcRequest.py @@ -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 +class ListVpcInfoByVpcRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'ListVpcInfoByVpc','ots') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_VpcId(self): + return self.get_query_params().get('VpcId') + + def set_VpcId(self,VpcId): + self.add_query_param('VpcId',VpcId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_TagInfos(self): + return self.get_query_params().get('TagInfos') + + def set_TagInfos(self,TagInfos): + for i in range(len(TagInfos)): + if TagInfos[i].get('TagValue') is not None: + self.add_query_param('TagInfo.' + str(i + 1) + '.TagValue' , TagInfos[i].get('TagValue')) + if TagInfos[i].get('TagKey') is not None: + self.add_query_param('TagInfo.' + str(i + 1) + '.TagKey' , TagInfos[i].get('TagKey')) diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/UnbindInstance2VpcRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/UnbindInstance2VpcRequest.py new file mode 100644 index 0000000000..1baa2c1a9c --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/UnbindInstance2VpcRequest.py @@ -0,0 +1,55 @@ +# 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 +class UnbindInstance2VpcRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'UnbindInstance2Vpc','ots') + self.set_method('POST') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_InstanceVpcName(self): + return self.get_query_params().get('InstanceVpcName') + + def set_InstanceVpcName(self,InstanceVpcName): + self.add_query_param('InstanceVpcName',InstanceVpcName) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceName(self): + return self.get_query_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_query_param('InstanceName',InstanceName) + + def get_RegionNo(self): + return self.get_query_params().get('RegionNo') + + def set_RegionNo(self,RegionNo): + self.add_query_param('RegionNo',RegionNo) \ No newline at end of file diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/UpdateInstanceRequest.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/UpdateInstanceRequest.py new file mode 100644 index 0000000000..684aefc715 --- /dev/null +++ b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/UpdateInstanceRequest.py @@ -0,0 +1,49 @@ +# 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 +class UpdateInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ots', '2016-06-20', 'UpdateInstance','ots') + self.set_method('POST') + + def get_access_key_id(self): + return self.get_query_params().get('access_key_id') + + def set_access_key_id(self,access_key_id): + self.add_query_param('access_key_id',access_key_id) + + def get_ResourceOwnerId(self): + return self.get_query_params().get('ResourceOwnerId') + + def set_ResourceOwnerId(self,ResourceOwnerId): + self.add_query_param('ResourceOwnerId',ResourceOwnerId) + + def get_InstanceName(self): + return self.get_query_params().get('InstanceName') + + def set_InstanceName(self,InstanceName): + self.add_query_param('InstanceName',InstanceName) + + def get_Network(self): + return self.get_query_params().get('Network') + + def set_Network(self,Network): + self.add_query_param('Network',Network) \ No newline at end of file diff --git a/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/__init__.py b/aliyun-python-sdk-ots/aliyunsdkots/request/v20160620/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-ots/setup.py b/aliyun-python-sdk-ots/setup.py new file mode 100644 index 0000000000..3adb2d2647 --- /dev/null +++ b/aliyun-python-sdk-ots/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for ots. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkots" +NAME = "aliyun-python-sdk-ots" +DESCRIPTION = "The ots module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","ots"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/ChangeLog.txt b/aliyun-python-sdk-rdc/ChangeLog.txt new file mode 100644 index 0000000000..6ada9938e0 --- /dev/null +++ b/aliyun-python-sdk-rdc/ChangeLog.txt @@ -0,0 +1,6 @@ +2019-11-12 Version: 1.1 +- Generated 2018-08-21, 2018-08-16 for `Rdc`. + +2019-11-12 Version: 1.0 +- Generated 2018-08-21 for `Rdc`. + diff --git a/aliyun-python-sdk-rdc/MANIFEST.in b/aliyun-python-sdk-rdc/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-rdc/README.rst b/aliyun-python-sdk-rdc/README.rst new file mode 100644 index 0000000000..9f27269c92 --- /dev/null +++ b/aliyun-python-sdk-rdc/README.rst @@ -0,0 +1,15 @@ +============================================================= +aliyun-python-sdk-rdc +============================================================= + +.. This is the rdc module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater + +**Documentation:** + +Please visit `http://develop.aliyun.com/sdk/python `_ diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/__init__.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/__init__.py new file mode 100644 index 0000000000..21569bfb3e --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/__init__.py @@ -0,0 +1 @@ +__version__ = '1.1' \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/endpoint.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/endpoint.py new file mode 100644 index 0000000000..b2cd608315 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/endpoint.py @@ -0,0 +1,33 @@ +# # 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. + + +class EndpointData(): + def __init__(self): + self.endpoint_map = {} + self.endpoint_regional = "regional" + + def getEndpointMap(self): + return self.endpoint_map + + def getEndpointRegional(self): + return self.endpoint_regional + + +endpoint_data = EndpointData() diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/__init__.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/AddProjectMembersRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/AddProjectMembersRequest.py new file mode 100644 index 0000000000..541f3a7a35 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/AddProjectMembersRequest.py @@ -0,0 +1,62 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class AddProjectMembersRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-16', 'AddProjectMembers','rdc') + 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_MemberStaffIds(self): + return self.get_body_params().get('MemberStaffIds') + + def set_MemberStaffIds(self,MemberStaffIds): + self.add_body_params('MemberStaffIds', MemberStaffIds) + + def get_Role(self): + return self.get_body_params().get('Role') + + def set_Role(self,Role): + self.add_body_params('Role', Role) + + def get_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_ProjectId(self): + return self.get_body_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_body_params('ProjectId', ProjectId) + + def get_StaffId(self): + return self.get_body_params().get('StaffId') + + def set_StaffId(self,StaffId): + self.add_body_params('StaffId', StaffId) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/CreateProjectRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/CreateProjectRequest.py new file mode 100644 index 0000000000..4142cf5793 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/CreateProjectRequest.py @@ -0,0 +1,56 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class CreateProjectRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-16', 'CreateProject','rdc') + 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_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_ParamJson(self): + return self.get_body_params().get('ParamJson') + + def set_ParamJson(self,ParamJson): + self.add_body_params('ParamJson', ParamJson) + + def get_Region(self): + return self.get_body_params().get('Region') + + def set_Region(self,Region): + self.add_body_params('Region', Region) + + def get_StaffId(self): + return self.get_body_params().get('StaffId') + + def set_StaffId(self,StaffId): + self.add_body_params('StaffId', StaffId) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/DeleteProjectMembersRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/DeleteProjectMembersRequest.py new file mode 100644 index 0000000000..d845eb8659 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/DeleteProjectMembersRequest.py @@ -0,0 +1,62 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class DeleteProjectMembersRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-16', 'DeleteProjectMembers','rdc') + 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_MemberStaffIds(self): + return self.get_body_params().get('MemberStaffIds') + + def set_MemberStaffIds(self,MemberStaffIds): + self.add_body_params('MemberStaffIds', MemberStaffIds) + + def get_Role(self): + return self.get_body_params().get('Role') + + def set_Role(self,Role): + self.add_body_params('Role', Role) + + def get_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_ProjectId(self): + return self.get_body_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_body_params('ProjectId', ProjectId) + + def get_StaffId(self): + return self.get_body_params().get('StaffId') + + def set_StaffId(self,StaffId): + self.add_body_params('StaffId', StaffId) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/GetProjectInfoRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/GetProjectInfoRequest.py new file mode 100644 index 0000000000..19936f6619 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/GetProjectInfoRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class GetProjectInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-16', 'GetProjectInfo','rdc') + 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_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_ProjectId(self): + return self.get_query_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_query_param('ProjectId',ProjectId) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/UpdateProjectRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/UpdateProjectRequest.py new file mode 100644 index 0000000000..e49e603c34 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/UpdateProjectRequest.py @@ -0,0 +1,50 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class UpdateProjectRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-16', 'UpdateProject','rdc') + 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_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_ParamJson(self): + return self.get_body_params().get('ParamJson') + + def set_ParamJson(self,ParamJson): + self.add_body_params('ParamJson', ParamJson) + + def get_StaffId(self): + return self.get_body_params().get('StaffId') + + def set_StaffId(self,StaffId): + self.add_body_params('StaffId', StaffId) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/__init__.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180816/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/AddEnterpriseMemberRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/AddEnterpriseMemberRequest.py new file mode 100644 index 0000000000..fc9d9a4354 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/AddEnterpriseMemberRequest.py @@ -0,0 +1,50 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class AddEnterpriseMemberRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'AddEnterpriseMember','rdc') + 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_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_StaffId(self): + return self.get_query_params().get('StaffId') + + def set_StaffId(self,StaffId): + self.add_query_param('StaffId',StaffId) + + def get_Operator(self): + return self.get_query_params().get('Operator') + + def set_Operator(self,Operator): + self.add_query_param('Operator',Operator) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/AddRamMemberRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/AddRamMemberRequest.py new file mode 100644 index 0000000000..289913c771 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/AddRamMemberRequest.py @@ -0,0 +1,44 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class AddRamMemberRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'AddRamMember','rdc') + 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_CorpIdentifier(self): + return self.get_body_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_body_params('CorpIdentifier', CorpIdentifier) + + def get_StaffIdentifier(self): + return self.get_body_params().get('StaffIdentifier') + + def set_StaffIdentifier(self,StaffIdentifier): + self.add_body_params('StaffIdentifier', StaffIdentifier) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/ApproveJoinCompanyRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/ApproveJoinCompanyRequest.py new file mode 100644 index 0000000000..9f00f2a7e6 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/ApproveJoinCompanyRequest.py @@ -0,0 +1,44 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class ApproveJoinCompanyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'ApproveJoinCompany','rdc') + 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_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_ApplicationIds(self): + return self.get_body_params().get('ApplicationIds') + + def set_ApplicationIds(self,ApplicationIds): + self.add_body_params('ApplicationIds', ApplicationIds) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/CreateEnterpriseRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/CreateEnterpriseRequest.py new file mode 100644 index 0000000000..aa09b01690 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/CreateEnterpriseRequest.py @@ -0,0 +1,62 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class CreateEnterpriseRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'CreateEnterprise','rdc') + 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_Emails(self): + return self.get_query_params().get('Emails') + + def set_Emails(self,Emails): + self.add_query_param('Emails',Emails) + + def get_CreatorStaffId(self): + return self.get_query_params().get('CreatorStaffId') + + def set_CreatorStaffId(self,CreatorStaffId): + self.add_query_param('CreatorStaffId',CreatorStaffId) + + def get_Domain(self): + return self.get_query_params().get('Domain') + + def set_Domain(self,Domain): + self.add_query_param('Domain',Domain) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/CreateWorkitemRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/CreateWorkitemRequest.py new file mode 100644 index 0000000000..b9dfd54125 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/CreateWorkitemRequest.py @@ -0,0 +1,116 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class CreateWorkitemRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'CreateWorkitem','rdc') + 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_Author(self): + return self.get_body_params().get('Author') + + def set_Author(self,Author): + self.add_body_params('Author', Author) + + def get_Subject(self): + return self.get_body_params().get('Subject') + + def set_Subject(self,Subject): + self.add_body_params('Subject', Subject) + + def get_Description(self): + return self.get_body_params().get('Description') + + def set_Description(self,Description): + self.add_body_params('Description', Description) + + def get_Stamp(self): + return self.get_body_params().get('Stamp') + + def set_Stamp(self,Stamp): + self.add_body_params('Stamp', Stamp) + + def get_AKProjectId(self): + return self.get_body_params().get('AKProjectId') + + def set_AKProjectId(self,AKProjectId): + self.add_body_params('AKProjectId', AKProjectId) + + def get_TemplateId(self): + return self.get_body_params().get('TemplateId') + + def set_TemplateId(self,TemplateId): + self.add_body_params('TemplateId', TemplateId) + + def get_AssignedTo(self): + return self.get_body_params().get('AssignedTo') + + def set_AssignedTo(self,AssignedTo): + self.add_body_params('AssignedTo', AssignedTo) + + def get_PriorityId(self): + return self.get_body_params().get('PriorityId') + + def set_PriorityId(self,PriorityId): + self.add_body_params('PriorityId', PriorityId) + + def get_SeriousLevelId(self): + return self.get_body_params().get('SeriousLevelId') + + def set_SeriousLevelId(self,SeriousLevelId): + self.add_body_params('SeriousLevelId', SeriousLevelId) + + def get_ModuleIds(self): + return self.get_body_params().get('ModuleIds') + + def set_ModuleIds(self,ModuleIds): + self.add_body_params('ModuleIds', ModuleIds) + + def get_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_WatcherUsers(self): + return self.get_body_params().get('WatcherUsers') + + def set_WatcherUsers(self,WatcherUsers): + self.add_body_params('WatcherUsers', WatcherUsers) + + def get_Verifier(self): + return self.get_body_params().get('Verifier') + + def set_Verifier(self,Verifier): + self.add_body_params('Verifier', Verifier) + + def get_CfList(self): + return self.get_body_params().get('CfList') + + def set_CfList(self,CfList): + self.add_body_params('CfList', CfList) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetBindedUserByDingIdRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetBindedUserByDingIdRequest.py new file mode 100644 index 0000000000..22827b6322 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetBindedUserByDingIdRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class GetBindedUserByDingIdRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'GetBindedUserByDingId','rdc') + 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_DingId(self): + return self.get_query_params().get('DingId') + + def set_DingId(self,DingId): + self.add_query_param('DingId',DingId) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetChangeLogRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetChangeLogRequest.py new file mode 100644 index 0000000000..e22a381a8b --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetChangeLogRequest.py @@ -0,0 +1,49 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class GetChangeLogRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'GetChangeLog','rdc') + 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_TargetType(self): + return self.get_body_params().get('TargetType') + + def set_TargetType(self,TargetType): + self.add_body_params('TargetType', TargetType) + + def get_TargetIds(self): + return self.get_body_params().get('TargetIds') + + def set_TargetIds(self,TargetIds): + self.add_body_params('TargetIds', TargetIds) + + def get_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetCustomFieldsByTemplateIdRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetCustomFieldsByTemplateIdRequest.py new file mode 100644 index 0000000000..b358f8ca96 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetCustomFieldsByTemplateIdRequest.py @@ -0,0 +1,49 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class GetCustomFieldsByTemplateIdRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'GetCustomFieldsByTemplateId','rdc') + 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_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_AKProjectId(self): + return self.get_body_params().get('AKProjectId') + + def set_AKProjectId(self,AKProjectId): + self.add_body_params('AKProjectId', AKProjectId) + + def get_TemplateId(self): + return self.get_body_params().get('TemplateId') + + def set_TemplateId(self,TemplateId): + self.add_body_params('TemplateId', TemplateId) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetIssueByIdRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetIssueByIdRequest.py new file mode 100644 index 0000000000..8071c729ee --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetIssueByIdRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class GetIssueByIdRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'GetIssueById','rdc') + 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_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_Id(self): + return self.get_body_params().get('Id') + + def set_Id(self,Id): + self.add_body_params('Id', Id) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetJoinCodeRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetJoinCodeRequest.py new file mode 100644 index 0000000000..3390d0b71f --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetJoinCodeRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class GetJoinCodeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'GetJoinCode','rdc') + 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_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetProjectMembersRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetProjectMembersRequest.py new file mode 100644 index 0000000000..1ed8a38e9d --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetProjectMembersRequest.py @@ -0,0 +1,49 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class GetProjectMembersRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'GetProjectMembers','rdc') + 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_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_ProjectId(self): + return self.get_query_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_query_param('ProjectId',ProjectId) + + def get_StaffId(self): + return self.get_query_params().get('StaffId') + + def set_StaffId(self,StaffId): + self.add_query_param('StaffId',StaffId) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetUserByAliyunPkRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetUserByAliyunPkRequest.py new file mode 100644 index 0000000000..d56f2d8421 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetUserByAliyunPkRequest.py @@ -0,0 +1,37 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class GetUserByAliyunPkRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'GetUserByAliyunPk','rdc') + 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_Pk(self): + return self.get_query_params().get('Pk') + + def set_Pk(self,Pk): + self.add_query_param('Pk',Pk) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetWorkitemByIdRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetWorkitemByIdRequest.py new file mode 100644 index 0000000000..207cda3de9 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/GetWorkitemByIdRequest.py @@ -0,0 +1,43 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class GetWorkitemByIdRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'GetWorkitemById','rdc') + 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_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_Id(self): + return self.get_body_params().get('Id') + + def set_Id(self,Id): + self.add_body_params('Id', Id) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/JoinCompanyRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/JoinCompanyRequest.py new file mode 100644 index 0000000000..01259b0dbf --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/JoinCompanyRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class JoinCompanyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'JoinCompany','rdc') + 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_Code(self): + return self.get_body_params().get('Code') + + def set_Code(self,Code): + self.add_body_params('Code', Code) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SearchProjectsByRegionRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SearchProjectsByRegionRequest.py new file mode 100644 index 0000000000..be5efe30fa --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SearchProjectsByRegionRequest.py @@ -0,0 +1,61 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class SearchProjectsByRegionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'SearchProjectsByRegion','rdc') + 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_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_ToPage(self): + return self.get_query_params().get('ToPage') + + def set_ToPage(self,ToPage): + self.add_query_param('ToPage',ToPage) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SearchTestCaseRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SearchTestCaseRequest.py new file mode 100644 index 0000000000..e0a4f51c0b --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SearchTestCaseRequest.py @@ -0,0 +1,86 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class SearchTestCaseRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'SearchTestCase','rdc') + 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_UpdateDateEnd(self): + return self.get_body_params().get('UpdateDateEnd') + + def set_UpdateDateEnd(self,UpdateDateEnd): + self.add_body_params('UpdateDateEnd', UpdateDateEnd) + + def get_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_CreateDateEnd(self): + return self.get_body_params().get('CreateDateEnd') + + def set_CreateDateEnd(self,CreateDateEnd): + self.add_body_params('CreateDateEnd', CreateDateEnd) + + def get_CreateDateStart(self): + return self.get_body_params().get('CreateDateStart') + + def set_CreateDateStart(self,CreateDateStart): + self.add_body_params('CreateDateStart', CreateDateStart) + + def get_UpdateDateStart(self): + return self.get_body_params().get('UpdateDateStart') + + def set_UpdateDateStart(self,UpdateDateStart): + self.add_body_params('UpdateDateStart', UpdateDateStart) + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_AkProjectId(self): + return self.get_body_params().get('AkProjectId') + + def set_AkProjectId(self,AkProjectId): + self.add_body_params('AkProjectId', AkProjectId) + + def get_CaseTag(self): + return self.get_body_params().get('CaseTag') + + def set_CaseTag(self,CaseTag): + self.add_body_params('CaseTag', CaseTag) + + def get_PageNum(self): + return self.get_body_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_body_params('PageNum', PageNum) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SearchWorkitemRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SearchWorkitemRequest.py new file mode 100644 index 0000000000..685173d331 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SearchWorkitemRequest.py @@ -0,0 +1,67 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class SearchWorkitemRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'SearchWorkitem','rdc') + 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_SprintId(self): + return self.get_body_params().get('SprintId') + + def set_SprintId(self,SprintId): + self.add_body_params('SprintId', SprintId) + + def get_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_ToPage(self): + return self.get_body_params().get('ToPage') + + def set_ToPage(self,ToPage): + self.add_body_params('ToPage', ToPage) + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_Stamp(self): + return self.get_body_params().get('Stamp') + + def set_Stamp(self,Stamp): + self.add_body_params('Stamp', Stamp) + + def get_AKProjectId(self): + return self.get_body_params().get('AKProjectId') + + def set_AKProjectId(self,AKProjectId): + self.add_body_params('AKProjectId', AKProjectId) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SearchWorkitemWithTotalCountRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SearchWorkitemWithTotalCountRequest.py new file mode 100644 index 0000000000..7fab51b95e --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SearchWorkitemWithTotalCountRequest.py @@ -0,0 +1,67 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class SearchWorkitemWithTotalCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'SearchWorkitemWithTotalCount','rdc') + 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_SprintId(self): + return self.get_body_params().get('SprintId') + + def set_SprintId(self,SprintId): + self.add_body_params('SprintId', SprintId) + + def get_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_ToPage(self): + return self.get_body_params().get('ToPage') + + def set_ToPage(self,ToPage): + self.add_body_params('ToPage', ToPage) + + def get_PageSize(self): + return self.get_body_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_body_params('PageSize', PageSize) + + def get_Stamp(self): + return self.get_body_params().get('Stamp') + + def set_Stamp(self,Stamp): + self.add_body_params('Stamp', Stamp) + + def get_AKProjectId(self): + return self.get_body_params().get('AKProjectId') + + def set_AKProjectId(self,AKProjectId): + self.add_body_params('AKProjectId', AKProjectId) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SyncUserToRdcRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SyncUserToRdcRequest.py new file mode 100644 index 0000000000..64c23e38a5 --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/SyncUserToRdcRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class SyncUserToRdcRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'SyncUserToRdc','rdc') + 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_LoginTicket(self): + return self.get_body_params().get('LoginTicket') + + def set_LoginTicket(self,LoginTicket): + self.add_body_params('LoginTicket', LoginTicket) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/UpdateWorkitemRequest.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/UpdateWorkitemRequest.py new file mode 100644 index 0000000000..f036b6e97a --- /dev/null +++ b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/UpdateWorkitemRequest.py @@ -0,0 +1,134 @@ +# 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 aliyunsdkrdc.endpoint import endpoint_data + +class UpdateWorkitemRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Rdc', '2018-08-21', 'UpdateWorkitem','rdc') + 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_IssueId(self): + return self.get_body_params().get('IssueId') + + def set_IssueId(self,IssueId): + self.add_body_params('IssueId', IssueId) + + def get_Subject(self): + return self.get_body_params().get('Subject') + + def set_Subject(self,Subject): + self.add_body_params('Subject', Subject) + + def get_Modifier(self): + return self.get_body_params().get('Modifier') + + def set_Modifier(self,Modifier): + self.add_body_params('Modifier', Modifier) + + def get_SeriousLevel(self): + return self.get_body_params().get('SeriousLevel') + + def set_SeriousLevel(self,SeriousLevel): + self.add_body_params('SeriousLevel', SeriousLevel) + + def get_AKProjectId(self): + return self.get_body_params().get('AKProjectId') + + def set_AKProjectId(self,AKProjectId): + self.add_body_params('AKProjectId', AKProjectId) + + def get_Description(self): + return self.get_body_params().get('Description') + + def set_Description(self,Description): + self.add_body_params('Description', Description) + + def get_Stamp(self): + return self.get_body_params().get('Stamp') + + def set_Stamp(self,Stamp): + self.add_body_params('Stamp', Stamp) + + def get_TemplateId(self): + return self.get_body_params().get('TemplateId') + + def set_TemplateId(self,TemplateId): + self.add_body_params('TemplateId', TemplateId) + + def get_Priority(self): + return self.get_body_params().get('Priority') + + def set_Priority(self,Priority): + self.add_body_params('Priority', Priority) + + def get_AssignedTo(self): + return self.get_body_params().get('AssignedTo') + + def set_AssignedTo(self,AssignedTo): + self.add_body_params('AssignedTo', AssignedTo) + + def get_SprintId(self): + return self.get_body_params().get('SprintId') + + def set_SprintId(self,SprintId): + self.add_body_params('SprintId', SprintId) + + def get_IgnoreCheck(self): + return self.get_body_params().get('IgnoreCheck') + + def set_IgnoreCheck(self,IgnoreCheck): + self.add_body_params('IgnoreCheck', IgnoreCheck) + + def get_Cfs(self): + return self.get_body_params().get('Cfs') + + def set_Cfs(self,Cfs): + self.add_body_params('Cfs', Cfs) + + def get_CorpIdentifier(self): + return self.get_query_params().get('CorpIdentifier') + + def set_CorpIdentifier(self,CorpIdentifier): + self.add_query_param('CorpIdentifier',CorpIdentifier) + + def get_Verifier(self): + return self.get_body_params().get('Verifier') + + def set_Verifier(self,Verifier): + self.add_body_params('Verifier', Verifier) + + def get_CfList(self): + return self.get_body_params().get('CfList') + + def set_CfList(self,CfList): + self.add_body_params('CfList', CfList) + + def get_Status(self): + return self.get_body_params().get('Status') + + def set_Status(self,Status): + self.add_body_params('Status', Status) \ No newline at end of file diff --git a/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/__init__.py b/aliyun-python-sdk-rdc/aliyunsdkrdc/request/v20180821/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-rdc/setup.py b/aliyun-python-sdk-rdc/setup.py new file mode 100644 index 0000000000..22a8437725 --- /dev/null +++ b/aliyun-python-sdk-rdc/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for rdc. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkrdc" +NAME = "aliyun-python-sdk-rdc" +DESCRIPTION = "The rdc module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","rdc"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/ChangeLog.txt b/aliyun-python-sdk-sas-api/ChangeLog.txt new file mode 100644 index 0000000000..b46eac4b44 --- /dev/null +++ b/aliyun-python-sdk-sas-api/ChangeLog.txt @@ -0,0 +1,14 @@ +2019-03-14 Version: 2.1.1 +1, Update Dependency + +2018-01-15 Version: 2.1.0 +1, Add four new apis: GetApplicationAttackList/GetCrackList/GetSecurityEventList/GetThreatAnalyseList + +2017-09-21 Version: 2.0.2 +1, 新增查询业务安全情报接口 + +2017-08-17 Version: 2.0.1 +1, 首次发布态势感知对外sdk +2, 包含情报api两个接口(查询ip情报,查询手机号情报),和售卖的5个接口(查询实例数,新购,续费,升级,退款) +3, 由于之前已把jar包线下提供给客户,为了与当前保持一致,版本号从2.0.1开始 + diff --git a/aliyun-python-sdk-sas-api/MANIFEST.in b/aliyun-python-sdk-sas-api/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-sas-api/README.rst b/aliyun-python-sdk-sas-api/README.rst new file mode 100644 index 0000000000..079a41933d --- /dev/null +++ b/aliyun-python-sdk-sas-api/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-sas-api +This is the sas-api module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/__init__.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/__init__.py new file mode 100644 index 0000000000..b842790079 --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/__init__.py @@ -0,0 +1 @@ +__version__ = "2.1.1" \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/__init__.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeAccountProfileByKeyRequest.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeAccountProfileByKeyRequest.py new file mode 100644 index 0000000000..e688e7b824 --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeAccountProfileByKeyRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeAccountProfileByKeyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Sas-api', '2017-07-05', 'DescribeAccountProfileByKey','sas-api') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Keyword(self): + return self.get_query_params().get('Keyword') + + def set_Keyword(self,Keyword): + self.add_query_param('Keyword',Keyword) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeAccountProfileByKeyWordRequest.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeAccountProfileByKeyWordRequest.py new file mode 100644 index 0000000000..88eb526dfe --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeAccountProfileByKeyWordRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeAccountProfileByKeyWordRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Sas-api', '2017-07-05', 'DescribeAccountProfileByKeyWord','sas-api') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Keyword(self): + return self.get_query_params().get('Keyword') + + def set_Keyword(self,Keyword): + self.add_query_param('Keyword',Keyword) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeHitRateColumnRequest.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeHitRateColumnRequest.py new file mode 100644 index 0000000000..df25801f80 --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeHitRateColumnRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeHitRateColumnRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Sas-api', '2017-07-05', 'DescribeHitRateColumn','sas-api') + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_HitDay(self): + return self.get_query_params().get('HitDay') + + def set_HitDay(self,HitDay): + self.add_query_param('HitDay',HitDay) + + def get_StartDate(self): + return self.get_query_params().get('StartDate') + + def set_StartDate(self,StartDate): + self.add_query_param('StartDate',StartDate) + + def get_ApiType(self): + return self.get_query_params().get('ApiType') + + def set_ApiType(self,ApiType): + self.add_query_param('ApiType',ApiType) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeHitRatePieRequest.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeHitRatePieRequest.py new file mode 100644 index 0000000000..b2b4ceede9 --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeHitRatePieRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeHitRatePieRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Sas-api', '2017-07-05', 'DescribeHitRatePie','sas-api') + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_StartDate(self): + return self.get_query_params().get('StartDate') + + def set_StartDate(self,StartDate): + self.add_query_param('StartDate',StartDate) + + def get_HitDay(self): + return self.get_query_params().get('HitDay') + + def set_HitDay(self,HitDay): + self.add_query_param('HitDay',HitDay) + + def get_ApiType(self): + return self.get_query_params().get('ApiType') + + def set_ApiType(self,ApiType): + self.add_query_param('ApiType',ApiType) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribePerDateDataRequest.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribePerDateDataRequest.py new file mode 100644 index 0000000000..419dde26b7 --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribePerDateDataRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribePerDateDataRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Sas-api', '2017-07-05', 'DescribePerDateData','sas-api') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ApiType(self): + return self.get_query_params().get('ApiType') + + def set_ApiType(self,ApiType): + self.add_query_param('ApiType',ApiType) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeThreatDistributeRequest.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeThreatDistributeRequest.py new file mode 100644 index 0000000000..9acecf5b2f --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeThreatDistributeRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeThreatDistributeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Sas-api', '2017-07-05', 'DescribeThreatDistribute','sas-api') + + def get_EndDate(self): + return self.get_query_params().get('EndDate') + + def set_EndDate(self,EndDate): + self.add_query_param('EndDate',EndDate) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_HitDay(self): + return self.get_query_params().get('HitDay') + + def set_HitDay(self,HitDay): + self.add_query_param('HitDay',HitDay) + + def get_StartDate(self): + return self.get_query_params().get('StartDate') + + def set_StartDate(self,StartDate): + self.add_query_param('StartDate',StartDate) + + def get_ApiType(self): + return self.get_query_params().get('ApiType') + + def set_ApiType(self,ApiType): + self.add_query_param('ApiType',ApiType) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeThreatTypeLinesRequest.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeThreatTypeLinesRequest.py new file mode 100644 index 0000000000..e420594aa9 --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeThreatTypeLinesRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeThreatTypeLinesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Sas-api', '2017-07-05', 'DescribeThreatTypeLines','sas-api') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ApiType(self): + return self.get_query_params().get('ApiType') + + def set_ApiType(self,ApiType): + self.add_query_param('ApiType',ApiType) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeTotalAndRateLineRequest.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeTotalAndRateLineRequest.py new file mode 100644 index 0000000000..f1245aae9a --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/DescribeTotalAndRateLineRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeTotalAndRateLineRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Sas-api', '2017-07-05', 'DescribeTotalAndRateLine','sas-api') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ApiType(self): + return self.get_query_params().get('ApiType') + + def set_ApiType(self,ApiType): + self.add_query_param('ApiType',ApiType) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/GetAccountProfileRequest.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/GetAccountProfileRequest.py new file mode 100644 index 0000000000..2dd7a35c1d --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/GetAccountProfileRequest.py @@ -0,0 +1,96 @@ +# 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 +class GetAccountProfileRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Sas-api', '2017-07-05', 'GetAccountProfile','sas-api') + + def get_DeviceIdMd5(self): + return self.get_query_params().get('DeviceIdMd5') + + def set_DeviceIdMd5(self,DeviceIdMd5): + self.add_query_param('DeviceIdMd5',DeviceIdMd5) + + def get_Carrier(self): + return self.get_query_params().get('Carrier') + + def set_Carrier(self,Carrier): + self.add_query_param('Carrier',Carrier) + + def get_Os(self): + return self.get_query_params().get('Os') + + def set_Os(self,Os): + self.add_query_param('Os',Os) + + def get_Phone(self): + return self.get_query_params().get('Phone') + + def set_Phone(self,Phone): + self.add_query_param('Phone',Phone) + + def get_RequestUrl(self): + return self.get_query_params().get('RequestUrl') + + def set_RequestUrl(self,RequestUrl): + self.add_query_param('RequestUrl',RequestUrl) + + def get_Ip(self): + return self.get_query_params().get('Ip') + + def set_Ip(self,Ip): + self.add_query_param('Ip',Ip) + + def get_UserAgent(self): + return self.get_query_params().get('UserAgent') + + def set_UserAgent(self,UserAgent): + self.add_query_param('UserAgent',UserAgent) + + def get_ConnectionType(self): + return self.get_query_params().get('ConnectionType') + + def set_ConnectionType(self,ConnectionType): + self.add_query_param('ConnectionType',ConnectionType) + + def get_SensType(self): + return self.get_query_params().get('SensType') + + def set_SensType(self,SensType): + self.add_query_param('SensType',SensType) + + def get_DeviceType(self): + return self.get_query_params().get('DeviceType') + + def set_DeviceType(self,DeviceType): + self.add_query_param('DeviceType',DeviceType) + + def get_AccessTimestamp(self): + return self.get_query_params().get('AccessTimestamp') + + def set_AccessTimestamp(self,AccessTimestamp): + self.add_query_param('AccessTimestamp',AccessTimestamp) + + def get_BusinessType(self): + return self.get_query_params().get('BusinessType') + + def set_BusinessType(self,BusinessType): + self.add_query_param('BusinessType',BusinessType) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/GetInstanceCountRequest.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/GetInstanceCountRequest.py new file mode 100644 index 0000000000..f13e291e7a --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/GetInstanceCountRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetInstanceCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Sas-api', '2017-07-05', 'GetInstanceCount','sas-api') + + def get_OwnerId(self): + return self.get_query_params().get('OwnerId') + + def set_OwnerId(self,OwnerId): + self.add_query_param('OwnerId',OwnerId) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/GetIpProfileRequest.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/GetIpProfileRequest.py new file mode 100644 index 0000000000..d44f5857e7 --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/GetIpProfileRequest.py @@ -0,0 +1,84 @@ +# 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 +class GetIpProfileRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Sas-api', '2017-07-05', 'GetIpProfile','sas-api') + + def get_DeviceIdMd5(self): + return self.get_query_params().get('DeviceIdMd5') + + def set_DeviceIdMd5(self,DeviceIdMd5): + self.add_query_param('DeviceIdMd5',DeviceIdMd5) + + def get_Carrier(self): + return self.get_query_params().get('Carrier') + + def set_Carrier(self,Carrier): + self.add_query_param('Carrier',Carrier) + + def get_Os(self): + return self.get_query_params().get('Os') + + def set_Os(self,Os): + self.add_query_param('Os',Os) + + def get_RequestUrl(self): + return self.get_query_params().get('RequestUrl') + + def set_RequestUrl(self,RequestUrl): + self.add_query_param('RequestUrl',RequestUrl) + + def get_Ip(self): + return self.get_query_params().get('Ip') + + def set_Ip(self,Ip): + self.add_query_param('Ip',Ip) + + def get_UserAgent(self): + return self.get_query_params().get('UserAgent') + + def set_UserAgent(self,UserAgent): + self.add_query_param('UserAgent',UserAgent) + + def get_ConnectionType(self): + return self.get_query_params().get('ConnectionType') + + def set_ConnectionType(self,ConnectionType): + self.add_query_param('ConnectionType',ConnectionType) + + def get_SensType(self): + return self.get_query_params().get('SensType') + + def set_SensType(self,SensType): + self.add_query_param('SensType',SensType) + + def get_DeviceType(self): + return self.get_query_params().get('DeviceType') + + def set_DeviceType(self,DeviceType): + self.add_query_param('DeviceType',DeviceType) + + def get_BusinessType(self): + return self.get_query_params().get('BusinessType') + + def set_BusinessType(self,BusinessType): + self.add_query_param('BusinessType',BusinessType) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/GetPhoneProfileRequest.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/GetPhoneProfileRequest.py new file mode 100644 index 0000000000..7c73f7f18d --- /dev/null +++ b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/GetPhoneProfileRequest.py @@ -0,0 +1,48 @@ +# 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 +class GetPhoneProfileRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Sas-api', '2017-07-05', 'GetPhoneProfile','sas-api') + + def get_Phone(self): + return self.get_query_params().get('Phone') + + def set_Phone(self,Phone): + self.add_query_param('Phone',Phone) + + def get_SensType(self): + return self.get_query_params().get('SensType') + + def set_SensType(self,SensType): + self.add_query_param('SensType',SensType) + + def get_DataVersion(self): + return self.get_query_params().get('DataVersion') + + def set_DataVersion(self,DataVersion): + self.add_query_param('DataVersion',DataVersion) + + def get_BusinessType(self): + return self.get_query_params().get('BusinessType') + + def set_BusinessType(self,BusinessType): + self.add_query_param('BusinessType',BusinessType) \ No newline at end of file diff --git a/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/__init__.py b/aliyun-python-sdk-sas-api/aliyunsdksas_api/request/v20170705/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-sas-api/setup.py b/aliyun-python-sdk-sas-api/setup.py new file mode 100644 index 0000000000..d61d697910 --- /dev/null +++ b/aliyun-python-sdk-sas-api/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for sas-api. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdksas_api" +NAME = "aliyun-python-sdk-sas-api" +DESCRIPTION = "The sas-api module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","sas-api"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-tesladam/ChangeLog.txt b/aliyun-python-sdk-tesladam/ChangeLog.txt new file mode 100644 index 0000000000..4f7625c746 --- /dev/null +++ b/aliyun-python-sdk-tesladam/ChangeLog.txt @@ -0,0 +1,10 @@ +2019-03-13 Version: 1.0.2 +1, Distinguish between system and service parameters + +2018-02-27 Version: 1.0.1 +1, Add Action API. + +2018-01-23 Version: 1.0.0 +1, Tesla Dam API release. +2, Add ActionDiskCheck, ActionDiskMask, ActionDiskRma, HostGets. + diff --git a/aliyun-python-sdk-tesladam/MANIFEST.in b/aliyun-python-sdk-tesladam/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-tesladam/README.rst b/aliyun-python-sdk-tesladam/README.rst new file mode 100644 index 0000000000..8fc9d8e1e1 --- /dev/null +++ b/aliyun-python-sdk-tesladam/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-tesladam +This is the tesladam module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-tesladam/aliyunsdktesladam/__init__.py b/aliyun-python-sdk-tesladam/aliyunsdktesladam/__init__.py new file mode 100644 index 0000000000..bb35ee1578 --- /dev/null +++ b/aliyun-python-sdk-tesladam/aliyunsdktesladam/__init__.py @@ -0,0 +1 @@ +__version__ = "1.0.2" \ No newline at end of file diff --git a/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/__init__.py b/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/ActionDiskCheckRequest.py b/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/ActionDiskCheckRequest.py new file mode 100644 index 0000000000..0f27df5594 --- /dev/null +++ b/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/ActionDiskCheckRequest.py @@ -0,0 +1,36 @@ +# 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 +class ActionDiskCheckRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaDam', '2018-01-18', 'ActionDiskCheck','tesladam') + + def get_DiskMount(self): + return self.get_query_params().get('DiskMount') + + def set_DiskMount(self,DiskMount): + self.add_query_param('DiskMount',DiskMount) + + def get_Ip(self): + return self.get_query_params().get('Ip') + + def set_Ip(self,Ip): + self.add_query_param('Ip',Ip) \ No newline at end of file diff --git a/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/ActionDiskMaskRequest.py b/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/ActionDiskMaskRequest.py new file mode 100644 index 0000000000..506e774f6b --- /dev/null +++ b/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/ActionDiskMaskRequest.py @@ -0,0 +1,42 @@ +# 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 +class ActionDiskMaskRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaDam', '2018-01-18', 'ActionDiskMask','tesladam') + + def get_Op(self): + return self.get_query_params().get('Op') + + def set_Op(self,Op): + self.add_query_param('Op',Op) + + def get_DiskMount(self): + return self.get_query_params().get('DiskMount') + + def set_DiskMount(self,DiskMount): + self.add_query_param('DiskMount',DiskMount) + + def get_Ip(self): + return self.get_query_params().get('Ip') + + def set_Ip(self,Ip): + self.add_query_param('Ip',Ip) \ No newline at end of file diff --git a/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/ActionDiskRmaRequest.py b/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/ActionDiskRmaRequest.py new file mode 100644 index 0000000000..824be867e5 --- /dev/null +++ b/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/ActionDiskRmaRequest.py @@ -0,0 +1,66 @@ +# 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 +class ActionDiskRmaRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaDam', '2018-01-18', 'ActionDiskRma','tesladam') + + def get_DiskName(self): + return self.get_query_params().get('DiskName') + + def set_DiskName(self,DiskName): + self.add_query_param('DiskName',DiskName) + + def get_ExecutionId(self): + return self.get_query_params().get('ExecutionId') + + def set_ExecutionId(self,ExecutionId): + self.add_query_param('ExecutionId',ExecutionId) + + def get_DiskSlot(self): + return self.get_query_params().get('DiskSlot') + + def set_DiskSlot(self,DiskSlot): + self.add_query_param('DiskSlot',DiskSlot) + + def get_Hostname(self): + return self.get_query_params().get('Hostname') + + def set_Hostname(self,Hostname): + self.add_query_param('Hostname',Hostname) + + def get_DiskMount(self): + return self.get_query_params().get('DiskMount') + + def set_DiskMount(self,DiskMount): + self.add_query_param('DiskMount',DiskMount) + + def get_DiskReason(self): + return self.get_query_params().get('DiskReason') + + def set_DiskReason(self,DiskReason): + self.add_query_param('DiskReason',DiskReason) + + def get_DiskSn(self): + return self.get_query_params().get('DiskSn') + + def set_DiskSn(self,DiskSn): + self.add_query_param('DiskSn',DiskSn) \ No newline at end of file diff --git a/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/ActionRequest.py b/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/ActionRequest.py new file mode 100644 index 0000000000..3dd12ad65e --- /dev/null +++ b/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/ActionRequest.py @@ -0,0 +1,36 @@ +# 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 +class ActionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaDam', '2018-01-18', 'Action','tesladam') + + def get_OrderId(self): + return self.get_query_params().get('OrderId') + + def set_OrderId(self,OrderId): + self.add_query_param('OrderId',OrderId) + + def get_StepCode(self): + return self.get_query_params().get('StepCode') + + def set_StepCode(self,StepCode): + self.add_query_param('StepCode',StepCode) \ No newline at end of file diff --git a/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/HostGetsRequest.py b/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/HostGetsRequest.py new file mode 100644 index 0000000000..3871447806 --- /dev/null +++ b/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/HostGetsRequest.py @@ -0,0 +1,48 @@ +# 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 +class HostGetsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaDam', '2018-01-18', 'HostGets','tesladam') + + def get_Query(self): + return self.get_query_params().get('Query') + + def set_Query(self,Query): + self.add_query_param('Query',Query) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_QueryType(self): + return self.get_query_params().get('QueryType') + + def set_QueryType(self,QueryType): + self.add_query_param('QueryType',QueryType) \ No newline at end of file diff --git a/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/__init__.py b/aliyun-python-sdk-tesladam/aliyunsdktesladam/request/v20180118/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-tesladam/setup.py b/aliyun-python-sdk-tesladam/setup.py new file mode 100644 index 0000000000..8ac4efa5d8 --- /dev/null +++ b/aliyun-python-sdk-tesladam/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for tesladam. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdktesladam" +NAME = "aliyun-python-sdk-tesladam" +DESCRIPTION = "The tesladam module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","tesladam"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/ChangeLog.txt b/aliyun-python-sdk-teslamaxcompute/ChangeLog.txt new file mode 100644 index 0000000000..7133c09305 --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/ChangeLog.txt @@ -0,0 +1,49 @@ +2019-03-13 Version: 1.5.5 +1, Distinguish between system and service parameters + +2018-05-08 Version: 1.5.4 +1, Add instance params. + +2018-03-30 Version: 1.5.3 +1, API QueryCustomerSaleInfo arguments update. + +2018-03-27 Version: 1.5.2 +1, Rename QueryCustomerSaleInfo to RegionName. + +2018-03-16 Version: 1.5.1 +1, Update GetQuotaInstance API. + +2018-03-15 Version: 1.5.0 +1, Add QueryCustomerSaleInfo API. + +2018-03-13 Version: 1.4.0 +1, API GetQuotaHistoryInfo fix field error. + +2018-02-28 Version: 1.3.0 +1, Add query resource inventory API. +2, Add query topology API. + +2018-02-27 Version: 1.2.0 +1, Add query topology API. + +2018-01-04 Version: 1.1.0 +1, Remove get entity info API, replaced by get entity instance. + +2017-12-26 Version: 1.0.4 +1, Fix response field type. + +2017-12-24 Version: 1.0.3 +1, Add get instance by cluster, project and user. + +2017-12-22 Version: 1.0.2 +1, Add GetInstance API, support get instance. + +2017-12-19 Version: 1.0.1 +1, Add Status argument, support get cluster info by status. + +2017-12-11 Version: 1.0.0 +1, Add GetClusterInfo interface,Support fetch cluster instance info by cluster name. +2, Add GetProjectInfo interface,Support fetch cluster instance info by project. +3, Add GetQuotaInfo interface,Support fetch cluster instance info by quota ID and cluster name. +4, Add GetUserInfo interface,Support fetch cluster instance info by user. + diff --git a/aliyun-python-sdk-teslamaxcompute/MANIFEST.in b/aliyun-python-sdk-teslamaxcompute/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-teslamaxcompute/README.rst b/aliyun-python-sdk-teslamaxcompute/README.rst new file mode 100644 index 0000000000..a41595719f --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-teslamaxcompute +This is the teslamaxcompute module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/__init__.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/__init__.py new file mode 100644 index 0000000000..7ddc25386e --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/__init__.py @@ -0,0 +1 @@ +__version__ = "1.5.5" \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/__init__.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetClusterInstanceRequest.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetClusterInstanceRequest.py new file mode 100644 index 0000000000..d20ba849a7 --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetClusterInstanceRequest.py @@ -0,0 +1,54 @@ +# 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 +class GetClusterInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaMaxCompute', '2018-01-04', 'GetClusterInstance','teslamaxcompute') + + def get_Cluster(self): + return self.get_query_params().get('Cluster') + + def set_Cluster(self,Cluster): + self.add_query_param('Cluster',Cluster) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetInstancesStatusCountRequest.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetInstancesStatusCountRequest.py new file mode 100644 index 0000000000..7b9b57ebea --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetInstancesStatusCountRequest.py @@ -0,0 +1,48 @@ +# 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 +class GetInstancesStatusCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaMaxCompute', '2018-01-04', 'GetInstancesStatusCount','teslamaxcompute') + + def get_Cluster(self): + return self.get_query_params().get('Cluster') + + def set_Cluster(self,Cluster): + self.add_query_param('Cluster',Cluster) + + def get_QuotaId(self): + return self.get_query_params().get('QuotaId') + + def set_QuotaId(self,QuotaId): + self.add_query_param('QuotaId',QuotaId) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_QuotaName(self): + return self.get_query_params().get('QuotaName') + + def set_QuotaName(self,QuotaName): + self.add_query_param('QuotaName',QuotaName) \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetProjectInstanceRequest.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetProjectInstanceRequest.py new file mode 100644 index 0000000000..9a9b6ba9c1 --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetProjectInstanceRequest.py @@ -0,0 +1,54 @@ +# 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 +class GetProjectInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaMaxCompute', '2018-01-04', 'GetProjectInstance','teslamaxcompute') + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Project(self): + return self.get_query_params().get('Project') + + def set_Project(self,Project): + self.add_query_param('Project',Project) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetQuotaHistoryInfoRequest.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetQuotaHistoryInfoRequest.py new file mode 100644 index 0000000000..adc7a7e93a --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetQuotaHistoryInfoRequest.py @@ -0,0 +1,54 @@ +# 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 +class GetQuotaHistoryInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaMaxCompute', '2018-01-04', 'GetQuotaHistoryInfo','teslamaxcompute') + + def get_Cluster(self): + return self.get_query_params().get('Cluster') + + def set_Cluster(self,Cluster): + self.add_query_param('Cluster',Cluster) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_QuotaName(self): + return self.get_query_params().get('QuotaName') + + def set_QuotaName(self,QuotaName): + self.add_query_param('QuotaName',QuotaName) \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetQuotaInstanceRequest.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetQuotaInstanceRequest.py new file mode 100644 index 0000000000..81e42c5b68 --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetQuotaInstanceRequest.py @@ -0,0 +1,66 @@ +# 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 +class GetQuotaInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaMaxCompute', '2018-01-04', 'GetQuotaInstance','teslamaxcompute') + + def get_Cluster(self): + return self.get_query_params().get('Cluster') + + def set_Cluster(self,Cluster): + self.add_query_param('Cluster',Cluster) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_QuotaId(self): + return self.get_query_params().get('QuotaId') + + def set_QuotaId(self,QuotaId): + self.add_query_param('QuotaId',QuotaId) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_QuotaName(self): + return self.get_query_params().get('QuotaName') + + def set_QuotaName(self,QuotaName): + self.add_query_param('QuotaName',QuotaName) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetUserInstanceRequest.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetUserInstanceRequest.py new file mode 100644 index 0000000000..567a452152 --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/GetUserInstanceRequest.py @@ -0,0 +1,54 @@ +# 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 +class GetUserInstanceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaMaxCompute', '2018-01-04', 'GetUserInstance','teslamaxcompute') + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_User(self): + return self.get_query_params().get('User') + + def set_User(self,User): + self.add_query_param('User',User) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/ListUserQuotasRequest.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/ListUserQuotasRequest.py new file mode 100644 index 0000000000..0ccbbf7869 --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/ListUserQuotasRequest.py @@ -0,0 +1,24 @@ +# 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 +class ListUserQuotasRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaMaxCompute', '2018-01-04', 'ListUserQuotas','teslamaxcompute') \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/QueryCustomerSaleInfoRequest.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/QueryCustomerSaleInfoRequest.py new file mode 100644 index 0000000000..c578ac4708 --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/QueryCustomerSaleInfoRequest.py @@ -0,0 +1,30 @@ +# 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 +class QueryCustomerSaleInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaMaxCompute', '2018-01-04', 'QueryCustomerSaleInfo','teslamaxcompute') + + def get_RegionName(self): + return self.get_query_params().get('RegionName') + + def set_RegionName(self,RegionName): + self.add_query_param('RegionName',RegionName) \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/QueryResourceInventoryRequest.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/QueryResourceInventoryRequest.py new file mode 100644 index 0000000000..4e31d7ca7c --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/QueryResourceInventoryRequest.py @@ -0,0 +1,24 @@ +# 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 +class QueryResourceInventoryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaMaxCompute', '2018-01-04', 'QueryResourceInventory','teslamaxcompute') \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/QueryTopologyRequest.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/QueryTopologyRequest.py new file mode 100644 index 0000000000..3f6302f7cc --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/QueryTopologyRequest.py @@ -0,0 +1,24 @@ +# 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 +class QueryTopologyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaMaxCompute', '2018-01-04', 'QueryTopology','teslamaxcompute') \ No newline at end of file diff --git a/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/__init__.py b/aliyun-python-sdk-teslamaxcompute/aliyunsdkteslamaxcompute/request/v20180104/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-teslamaxcompute/setup.py b/aliyun-python-sdk-teslamaxcompute/setup.py new file mode 100644 index 0000000000..f2de706bef --- /dev/null +++ b/aliyun-python-sdk-teslamaxcompute/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for teslamaxcompute. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkteslamaxcompute" +NAME = "aliyun-python-sdk-teslamaxcompute" +DESCRIPTION = "The teslamaxcompute module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","teslamaxcompute"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-teslastream/ChangeLog.txt b/aliyun-python-sdk-teslastream/ChangeLog.txt new file mode 100644 index 0000000000..07f7553212 --- /dev/null +++ b/aliyun-python-sdk-teslastream/ChangeLog.txt @@ -0,0 +1,8 @@ +2019-03-13 Version: 1.0.1 +1, Distinguish between system and service parameters + +2018-07-26 Version: 1.0.0 +1, Add BatchGetJobMetricInfo API. +2, Add BatchGetPluginConfigInfo API. +3, Add GetJobTopology API. + diff --git a/aliyun-python-sdk-teslastream/MANIFEST.in b/aliyun-python-sdk-teslastream/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-teslastream/README.rst b/aliyun-python-sdk-teslastream/README.rst new file mode 100644 index 0000000000..16460013cc --- /dev/null +++ b/aliyun-python-sdk-teslastream/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-teslastream +This is the teslastream module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-teslastream/aliyunsdkteslastream/__init__.py b/aliyun-python-sdk-teslastream/aliyunsdkteslastream/__init__.py new file mode 100644 index 0000000000..0058b93f7d --- /dev/null +++ b/aliyun-python-sdk-teslastream/aliyunsdkteslastream/__init__.py @@ -0,0 +1 @@ +__version__ = "1.0.1" \ No newline at end of file diff --git a/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/__init__.py b/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/v20180115/BatchGetJobMetricInfoRequest.py b/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/v20180115/BatchGetJobMetricInfoRequest.py new file mode 100644 index 0000000000..ad86b6785c --- /dev/null +++ b/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/v20180115/BatchGetJobMetricInfoRequest.py @@ -0,0 +1,30 @@ +# 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 +class BatchGetJobMetricInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaStream', '2018-01-15', 'BatchGetJobMetricInfo','teslastream') + + def get_JobInfos(self): + return self.get_query_params().get('JobInfos') + + def set_JobInfos(self,JobInfos): + self.add_query_param('JobInfos',JobInfos) \ No newline at end of file diff --git a/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/v20180115/BatchGetPluginConfigInfoRequest.py b/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/v20180115/BatchGetPluginConfigInfoRequest.py new file mode 100644 index 0000000000..b2d053e7db --- /dev/null +++ b/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/v20180115/BatchGetPluginConfigInfoRequest.py @@ -0,0 +1,30 @@ +# 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 +class BatchGetPluginConfigInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaStream', '2018-01-15', 'BatchGetPluginConfigInfo','teslastream') + + def get_PluginInfos(self): + return self.get_query_params().get('PluginInfos') + + def set_PluginInfos(self,PluginInfos): + self.add_query_param('PluginInfos',PluginInfos) \ No newline at end of file diff --git a/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/v20180115/GetJobTopologyRequest.py b/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/v20180115/GetJobTopologyRequest.py new file mode 100644 index 0000000000..a11de28637 --- /dev/null +++ b/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/v20180115/GetJobTopologyRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetJobTopologyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'TeslaStream', '2018-01-15', 'GetJobTopology','teslastream') + + def get_JobName(self): + return self.get_query_params().get('JobName') + + def set_JobName(self,JobName): + self.add_query_param('JobName',JobName) \ No newline at end of file diff --git a/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/v20180115/__init__.py b/aliyun-python-sdk-teslastream/aliyunsdkteslastream/request/v20180115/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-teslastream/setup.py b/aliyun-python-sdk-teslastream/setup.py new file mode 100644 index 0000000000..650713fa0b --- /dev/null +++ b/aliyun-python-sdk-teslastream/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for teslastream. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkteslastream" +NAME = "aliyun-python-sdk-teslastream" +DESCRIPTION = "The teslastream module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","teslastream"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/ChangeLog.txt b/aliyun-python-sdk-trademark/ChangeLog.txt new file mode 100644 index 0000000000..3202aa5fc5 --- /dev/null +++ b/aliyun-python-sdk-trademark/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-05-20 Version: 1.2.1 +1, Add both api, ListNotaryInfos + diff --git a/aliyun-python-sdk-trademark/MANIFEST.in b/aliyun-python-sdk-trademark/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-trademark/README.rst b/aliyun-python-sdk-trademark/README.rst new file mode 100644 index 0000000000..8cabd68655 --- /dev/null +++ b/aliyun-python-sdk-trademark/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-trademark +This is the trademark module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/__init__.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/__init__.py new file mode 100644 index 0000000000..42cf7cd54c --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/__init__.py @@ -0,0 +1 @@ +__version__ = "1.2.1" \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/__init__.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/ApplyNotaryPostRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/ApplyNotaryPostRequest.py new file mode 100644 index 0000000000..03650031d8 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/ApplyNotaryPostRequest.py @@ -0,0 +1,48 @@ +# 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 +class ApplyNotaryPostRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'ApplyNotaryPost','trademark') + + def get_ReceiverName(self): + return self.get_query_params().get('ReceiverName') + + def set_ReceiverName(self,ReceiverName): + self.add_query_param('ReceiverName',ReceiverName) + + def get_ReceiverPhone(self): + return self.get_query_params().get('ReceiverPhone') + + def set_ReceiverPhone(self,ReceiverPhone): + self.add_query_param('ReceiverPhone',ReceiverPhone) + + def get_NotaryOrderId(self): + return self.get_query_params().get('NotaryOrderId') + + def set_NotaryOrderId(self,NotaryOrderId): + self.add_query_param('NotaryOrderId',NotaryOrderId) + + def get_ReceiverAddress(self): + return self.get_query_params().get('ReceiverAddress') + + def set_ReceiverAddress(self,ReceiverAddress): + self.add_query_param('ReceiverAddress',ReceiverAddress) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/BindMaterialRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/BindMaterialRequest.py new file mode 100644 index 0000000000..6ad899d428 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/BindMaterialRequest.py @@ -0,0 +1,42 @@ +# 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 +class BindMaterialRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'BindMaterial','trademark') + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) + + def get_MaterialId(self): + return self.get_query_params().get('MaterialId') + + def set_MaterialId(self,MaterialId): + self.add_query_param('MaterialId',MaterialId) + + def get_LoaOssKey(self): + return self.get_query_params().get('LoaOssKey') + + def set_LoaOssKey(self,LoaOssKey): + self.add_query_param('LoaOssKey',LoaOssKey) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/CancelTradeOrderRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/CancelTradeOrderRequest.py new file mode 100644 index 0000000000..c06f9e283d --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/CancelTradeOrderRequest.py @@ -0,0 +1,30 @@ +# 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 +class CancelTradeOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'CancelTradeOrder','trademark') + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/CheckLoaFillRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/CheckLoaFillRequest.py new file mode 100644 index 0000000000..765132a9c2 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/CheckLoaFillRequest.py @@ -0,0 +1,36 @@ +# 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 +class CheckLoaFillRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'CheckLoaFill','trademark') + + def get_OssKey(self): + return self.get_query_params().get('OssKey') + + def set_OssKey(self,OssKey): + self.add_query_param('OssKey',OssKey) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/CombineLoaRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/CombineLoaRequest.py new file mode 100644 index 0000000000..cdd4578c6c --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/CombineLoaRequest.py @@ -0,0 +1,60 @@ +# 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 +class CombineLoaRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'CombineLoa','trademark') + + def get_TrademarkName(self): + return self.get_query_params().get('TrademarkName') + + def set_TrademarkName(self,TrademarkName): + self.add_query_param('TrademarkName',TrademarkName) + + def get_MaterialName(self): + return self.get_query_params().get('MaterialName') + + def set_MaterialName(self,MaterialName): + self.add_query_param('MaterialName',MaterialName) + + def get_Address(self): + return self.get_query_params().get('Address') + + def set_Address(self,Address): + self.add_query_param('Address',Address) + + def get_Nationality(self): + return self.get_query_params().get('Nationality') + + def set_Nationality(self,Nationality): + self.add_query_param('Nationality',Nationality) + + def get_TmProduceType(self): + return self.get_query_params().get('TmProduceType') + + def set_TmProduceType(self,TmProduceType): + self.add_query_param('TmProduceType',TmProduceType) + + def get_MaterialId(self): + return self.get_query_params().get('MaterialId') + + def set_MaterialId(self,MaterialId): + self.add_query_param('MaterialId',MaterialId) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/ConvertImageToGrayRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/ConvertImageToGrayRequest.py new file mode 100644 index 0000000000..867810b537 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/ConvertImageToGrayRequest.py @@ -0,0 +1,30 @@ +# 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 +class ConvertImageToGrayRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'ConvertImageToGray','trademark') + + def get_OssKey(self): + return self.get_query_params().get('OssKey') + + def set_OssKey(self,OssKey): + self.add_query_param('OssKey',OssKey) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/CreateTrademarkOrderRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/CreateTrademarkOrderRequest.py new file mode 100644 index 0000000000..61c8930ebe --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/CreateTrademarkOrderRequest.py @@ -0,0 +1,144 @@ +# 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 +class CreateTrademarkOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'CreateTrademarkOrder','trademark') + + def get_TmName(self): + return self.get_query_params().get('TmName') + + def set_TmName(self,TmName): + self.add_query_param('TmName',TmName) + + def get_RealUserName(self): + return self.get_query_params().get('RealUserName') + + def set_RealUserName(self,RealUserName): + self.add_query_param('RealUserName',RealUserName) + + def get_OrderData(self): + return self.get_query_params().get('OrderData') + + def set_OrderData(self,OrderData): + self.add_query_param('OrderData',OrderData) + + def get_Channel(self): + return self.get_query_params().get('Channel') + + def set_Channel(self,Channel): + self.add_query_param('Channel',Channel) + + def get_PartnerCode(self): + return self.get_query_params().get('PartnerCode') + + def set_PartnerCode(self,PartnerCode): + self.add_query_param('PartnerCode',PartnerCode) + + def get_PhoneNum(self): + return self.get_query_params().get('PhoneNum') + + def set_PhoneNum(self,PhoneNum): + self.add_query_param('PhoneNum',PhoneNum) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_MaterialId(self): + return self.get_query_params().get('MaterialId') + + def set_MaterialId(self,MaterialId): + self.add_query_param('MaterialId',MaterialId) + + def get_UserId(self): + return self.get_query_params().get('UserId') + + def set_UserId(self,UserId): + self.add_query_param('UserId',UserId) + + def get_TmComment(self): + return self.get_query_params().get('TmComment') + + def set_TmComment(self,TmComment): + self.add_query_param('TmComment',TmComment) + + def get_RegisterName(self): + return self.get_query_params().get('RegisterName') + + def set_RegisterName(self,RegisterName): + self.add_query_param('RegisterName',RegisterName) + + def get_TmNameType(self): + return self.get_query_params().get('TmNameType') + + def set_TmNameType(self,TmNameType): + self.add_query_param('TmNameType',TmNameType) + + def get_TmIcon(self): + return self.get_query_params().get('TmIcon') + + def set_TmIcon(self,TmIcon): + self.add_query_param('TmIcon',TmIcon) + + def get_Uid(self): + return self.get_query_params().get('Uid') + + def set_Uid(self,Uid): + self.add_query_param('Uid',Uid) + + def get_IsBlackIcon(self): + return self.get_query_params().get('IsBlackIcon') + + def set_IsBlackIcon(self,IsBlackIcon): + self.add_query_param('IsBlackIcon',IsBlackIcon) + + def get_RenewInfoId(self): + return self.get_query_params().get('RenewInfoId') + + def set_RenewInfoId(self,RenewInfoId): + self.add_query_param('RenewInfoId',RenewInfoId) + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) + + def get_RootCode(self): + return self.get_query_params().get('RootCode') + + def set_RootCode(self,RootCode): + self.add_query_param('RootCode',RootCode) + + def get_LoaOssKey(self): + return self.get_query_params().get('LoaOssKey') + + def set_LoaOssKey(self,LoaOssKey): + self.add_query_param('LoaOssKey',LoaOssKey) + + def get_RegisterNumber(self): + return self.get_query_params().get('RegisterNumber') + + def set_RegisterNumber(self,RegisterNumber): + self.add_query_param('RegisterNumber',RegisterNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/DeleteMaterialRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/DeleteMaterialRequest.py new file mode 100644 index 0000000000..61a38adf29 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/DeleteMaterialRequest.py @@ -0,0 +1,30 @@ +# 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 +class DeleteMaterialRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'DeleteMaterial','trademark') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/DeleteTmMonitorRuleRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/DeleteTmMonitorRuleRequest.py new file mode 100644 index 0000000000..4f8fc7bf99 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/DeleteTmMonitorRuleRequest.py @@ -0,0 +1,30 @@ +# 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 +class DeleteTmMonitorRuleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'DeleteTmMonitorRule','trademark') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/DenySupplementRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/DenySupplementRequest.py new file mode 100644 index 0000000000..27020a441e --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/DenySupplementRequest.py @@ -0,0 +1,30 @@ +# 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 +class DenySupplementRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'DenySupplement','trademark') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/FillLogisticsRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/FillLogisticsRequest.py new file mode 100644 index 0000000000..f3a1c71240 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/FillLogisticsRequest.py @@ -0,0 +1,36 @@ +# 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 +class FillLogisticsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'FillLogistics','trademark') + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) + + def get_Logistics(self): + return self.get_query_params().get('Logistics') + + def set_Logistics(self,Logistics): + self.add_query_param('Logistics',Logistics) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/FilterUnavailableCodesRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/FilterUnavailableCodesRequest.py new file mode 100644 index 0000000000..3308ee79f4 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/FilterUnavailableCodesRequest.py @@ -0,0 +1,30 @@ +# 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 +class FilterUnavailableCodesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'FilterUnavailableCodes','trademark') + + def get_Codes(self): + return self.get_query_params().get('Codes') + + def set_Codes(self,Codes): + self.add_query_param('Codes',Codes) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/GenerateQrCodeRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/GenerateQrCodeRequest.py new file mode 100644 index 0000000000..73200bc6c0 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/GenerateQrCodeRequest.py @@ -0,0 +1,42 @@ +# 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 +class GenerateQrCodeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'GenerateQrCode','trademark') + + def get_OssKey(self): + return self.get_query_params().get('OssKey') + + def set_OssKey(self,OssKey): + self.add_query_param('OssKey',OssKey) + + def get_FieldKey(self): + return self.get_query_params().get('FieldKey') + + def set_FieldKey(self,FieldKey): + self.add_query_param('FieldKey',FieldKey) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/GenerateUploadFilePolicyRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/GenerateUploadFilePolicyRequest.py new file mode 100644 index 0000000000..2bf46f64a1 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/GenerateUploadFilePolicyRequest.py @@ -0,0 +1,36 @@ +# 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 +class GenerateUploadFilePolicyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'GenerateUploadFilePolicy','trademark') + + def get_FileType(self): + return self.get_query_params().get('FileType') + + def set_FileType(self,FileType): + self.add_query_param('FileType',FileType) + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/GetNotaryOrderRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/GetNotaryOrderRequest.py new file mode 100644 index 0000000000..d46ccc1aa4 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/GetNotaryOrderRequest.py @@ -0,0 +1,30 @@ +# 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 +class GetNotaryOrderRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'GetNotaryOrder','trademark') + + def get_NotaryOrderId(self): + return self.get_query_params().get('NotaryOrderId') + + def set_NotaryOrderId(self,NotaryOrderId): + self.add_query_param('NotaryOrderId',NotaryOrderId) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/InsertMaterialRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/InsertMaterialRequest.py new file mode 100644 index 0000000000..75bc2609ca --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/InsertMaterialRequest.py @@ -0,0 +1,150 @@ +# 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 +class InsertMaterialRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'InsertMaterial','trademark') + + def get_ContactEmail(self): + return self.get_query_params().get('ContactEmail') + + def set_ContactEmail(self,ContactEmail): + self.add_query_param('ContactEmail',ContactEmail) + + def get_ContactAddress(self): + return self.get_query_params().get('ContactAddress') + + def set_ContactAddress(self,ContactAddress): + self.add_query_param('ContactAddress',ContactAddress) + + def get_EAddress(self): + return self.get_query_params().get('EAddress') + + def set_EAddress(self,EAddress): + self.add_query_param('EAddress',EAddress) + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_LegalNoticeOssKey(self): + return self.get_query_params().get('LegalNoticeOssKey') + + def set_LegalNoticeOssKey(self,LegalNoticeOssKey): + self.add_query_param('LegalNoticeOssKey',LegalNoticeOssKey) + + def get_Address(self): + return self.get_query_params().get('Address') + + def set_Address(self,Address): + self.add_query_param('Address',Address) + + def get_Town(self): + return self.get_query_params().get('Town') + + def set_Town(self,Town): + self.add_query_param('Town',Town) + + def get_ContactNumber(self): + return self.get_query_params().get('ContactNumber') + + def set_ContactNumber(self,ContactNumber): + self.add_query_param('ContactNumber',ContactNumber) + + def get_City(self): + return self.get_query_params().get('City') + + def set_City(self,City): + self.add_query_param('City',City) + + def get_IdCardOssKey(self): + return self.get_query_params().get('IdCardOssKey') + + def set_IdCardOssKey(self,IdCardOssKey): + self.add_query_param('IdCardOssKey',IdCardOssKey) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_ContactName(self): + return self.get_query_params().get('ContactName') + + def set_ContactName(self,ContactName): + self.add_query_param('ContactName',ContactName) + + def get_PassportOssKey(self): + return self.get_query_params().get('PassportOssKey') + + def set_PassportOssKey(self,PassportOssKey): + self.add_query_param('PassportOssKey',PassportOssKey) + + def get_ContactZipcode(self): + return self.get_query_params().get('ContactZipcode') + + def set_ContactZipcode(self,ContactZipcode): + self.add_query_param('ContactZipcode',ContactZipcode) + + def get_EName(self): + return self.get_query_params().get('EName') + + def set_EName(self,EName): + self.add_query_param('EName',EName) + + def get_Province(self): + return self.get_query_params().get('Province') + + def set_Province(self,Province): + self.add_query_param('Province',Province) + + def get_BusinessLicenceOssKey(self): + return self.get_query_params().get('BusinessLicenceOssKey') + + def set_BusinessLicenceOssKey(self,BusinessLicenceOssKey): + self.add_query_param('BusinessLicenceOssKey',BusinessLicenceOssKey) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_CardNumber(self): + return self.get_query_params().get('CardNumber') + + def set_CardNumber(self,CardNumber): + self.add_query_param('CardNumber',CardNumber) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_LoaOssKey(self): + return self.get_query_params().get('LoaOssKey') + + def set_LoaOssKey(self,LoaOssKey): + self.add_query_param('LoaOssKey',LoaOssKey) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/InsertRenewInfoRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/InsertRenewInfoRequest.py new file mode 100644 index 0000000000..2e32a2fd12 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/InsertRenewInfoRequest.py @@ -0,0 +1,54 @@ +# 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 +class InsertRenewInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'InsertRenewInfo','trademark') + + def get_EngName(self): + return self.get_query_params().get('EngName') + + def set_EngName(self,EngName): + self.add_query_param('EngName',EngName) + + def get_Address(self): + return self.get_query_params().get('Address') + + def set_Address(self,Address): + self.add_query_param('Address',Address) + + def get_RegisterTime(self): + return self.get_query_params().get('RegisterTime') + + def set_RegisterTime(self,RegisterTime): + self.add_query_param('RegisterTime',RegisterTime) + + def get_EngAddress(self): + return self.get_query_params().get('EngAddress') + + def set_EngAddress(self,EngAddress): + self.add_query_param('EngAddress',EngAddress) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/InsertTmMonitorRuleRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/InsertTmMonitorRuleRequest.py new file mode 100644 index 0000000000..749daf42dd --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/InsertTmMonitorRuleRequest.py @@ -0,0 +1,72 @@ +# 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 +class InsertTmMonitorRuleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'InsertTmMonitorRule','trademark') + + def get_StartApplyDate(self): + return self.get_query_params().get('StartApplyDate') + + def set_StartApplyDate(self,StartApplyDate): + self.add_query_param('StartApplyDate',StartApplyDate) + + def get_NotifyStatus(self): + return self.get_query_params().get('NotifyStatus') + + def set_NotifyStatus(self,NotifyStatus): + self.add_query_param('NotifyStatus',NotifyStatus) + + def get_RuleType(self): + return self.get_query_params().get('RuleType') + + def set_RuleType(self,RuleType): + self.add_query_param('RuleType',RuleType) + + def get_RuleSource(self): + return self.get_query_params().get('RuleSource') + + def set_RuleSource(self,RuleSource): + self.add_query_param('RuleSource',RuleSource) + + def get_RuleName(self): + return self.get_query_params().get('RuleName') + + def set_RuleName(self,RuleName): + self.add_query_param('RuleName',RuleName) + + def get_EndApplyDate(self): + return self.get_query_params().get('EndApplyDate') + + def set_EndApplyDate(self,EndApplyDate): + self.add_query_param('EndApplyDate',EndApplyDate) + + def get_Classification(self): + return self.get_query_params().get('Classification') + + def set_Classification(self,Classification): + self.add_query_param('Classification',Classification) + + def get_RuleKeyword(self): + return self.get_query_params().get('RuleKeyword') + + def set_RuleKeyword(self,RuleKeyword): + self.add_query_param('RuleKeyword',RuleKeyword) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/InsertTradeIntentionUserRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/InsertTradeIntentionUserRequest.py new file mode 100644 index 0000000000..6086281385 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/InsertTradeIntentionUserRequest.py @@ -0,0 +1,66 @@ +# 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 +class InsertTradeIntentionUserRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'InsertTradeIntentionUser','trademark') + + def get_Mobile(self): + return self.get_query_params().get('Mobile') + + def set_Mobile(self,Mobile): + self.add_query_param('Mobile',Mobile) + + def get_PartnerCode(self): + return self.get_query_params().get('PartnerCode') + + def set_PartnerCode(self,PartnerCode): + self.add_query_param('PartnerCode',PartnerCode) + + def get_Classification(self): + return self.get_query_params().get('Classification') + + def set_Classification(self,Classification): + self.add_query_param('Classification',Classification) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_RegisterNumber(self): + return self.get_query_params().get('RegisterNumber') + + def set_RegisterNumber(self,RegisterNumber): + self.add_query_param('RegisterNumber',RegisterNumber) + + def get_Vcode(self): + return self.get_query_params().get('Vcode') + + def set_Vcode(self,Vcode): + self.add_query_param('Vcode',Vcode) + + def get_UserName(self): + return self.get_query_params().get('UserName') + + def set_UserName(self,UserName): + self.add_query_param('UserName',UserName) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/ListNotaryInfosRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/ListNotaryInfosRequest.py new file mode 100644 index 0000000000..7dec5dea0a --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/ListNotaryInfosRequest.py @@ -0,0 +1,54 @@ +# 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 +class ListNotaryInfosRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'ListNotaryInfos','trademark') + + def get_BizOrderNo(self): + return self.get_query_params().get('BizOrderNo') + + def set_BizOrderNo(self,BizOrderNo): + self.add_query_param('BizOrderNo',BizOrderNo) + + def get_NotaryType(self): + return self.get_query_params().get('NotaryType') + + def set_NotaryType(self,NotaryType): + self.add_query_param('NotaryType',NotaryType) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_Token(self): + return self.get_query_params().get('Token') + + def set_Token(self,Token): + self.add_query_param('Token',Token) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/ListNotaryOrdersRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/ListNotaryOrdersRequest.py new file mode 100644 index 0000000000..27f96af01d --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/ListNotaryOrdersRequest.py @@ -0,0 +1,84 @@ +# 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 +class ListNotaryOrdersRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'ListNotaryOrders','trademark') + + def get_SortKeyType(self): + return self.get_query_params().get('SortKeyType') + + def set_SortKeyType(self,SortKeyType): + self.add_query_param('SortKeyType',SortKeyType) + + def get_SortByType(self): + return self.get_query_params().get('SortByType') + + def set_SortByType(self,SortByType): + self.add_query_param('SortByType',SortByType) + + def get_StartOrderDate(self): + return self.get_query_params().get('StartOrderDate') + + def set_StartOrderDate(self,StartOrderDate): + self.add_query_param('StartOrderDate',StartOrderDate) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) + + def get_NotaryType(self): + return self.get_query_params().get('NotaryType') + + def set_NotaryType(self,NotaryType): + self.add_query_param('NotaryType',NotaryType) + + def get_EndOrderDate(self): + return self.get_query_params().get('EndOrderDate') + + def set_EndOrderDate(self,EndOrderDate): + self.add_query_param('EndOrderDate',EndOrderDate) + + def get_AliyunOrderId(self): + return self.get_query_params().get('AliyunOrderId') + + def set_AliyunOrderId(self,AliyunOrderId): + self.add_query_param('AliyunOrderId',AliyunOrderId) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_NotaryStatus(self): + return self.get_query_params().get('NotaryStatus') + + def set_NotaryStatus(self,NotaryStatus): + self.add_query_param('NotaryStatus',NotaryStatus) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryCommunicationLogsRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryCommunicationLogsRequest.py new file mode 100644 index 0000000000..6d4ee49030 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryCommunicationLogsRequest.py @@ -0,0 +1,30 @@ +# 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 +class QueryCommunicationLogsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryCommunicationLogs','trademark') + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryCredentialsInfoRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryCredentialsInfoRequest.py new file mode 100644 index 0000000000..41998e5e29 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryCredentialsInfoRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryCredentialsInfoRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryCredentialsInfo','trademark') + + def get_OssKey(self): + return self.get_body_params().get('OssKey') + + def set_OssKey(self,OssKey): + self.add_body_params('OssKey', OssKey) + + def get_MaterialType(self): + return self.get_body_params().get('MaterialType') + + def set_MaterialType(self,MaterialType): + self.add_body_params('MaterialType', MaterialType) + + def get_CompanyName(self): + return self.get_query_params().get('CompanyName') + + def set_CompanyName(self,CompanyName): + self.add_query_param('CompanyName',CompanyName) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryMaterialListRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryMaterialListRequest.py new file mode 100644 index 0000000000..102642b445 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryMaterialListRequest.py @@ -0,0 +1,66 @@ +# 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 +class QueryMaterialListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryMaterialList','trademark') + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CardNumber(self): + return self.get_query_params().get('CardNumber') + + def set_CardNumber(self,CardNumber): + self.add_query_param('CardNumber',CardNumber) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryMaterialRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryMaterialRequest.py new file mode 100644 index 0000000000..898b553629 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryMaterialRequest.py @@ -0,0 +1,30 @@ +# 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 +class QueryMaterialRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryMaterial','trademark') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryMonitorKeywordsRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryMonitorKeywordsRequest.py new file mode 100644 index 0000000000..2e2337882c --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryMonitorKeywordsRequest.py @@ -0,0 +1,38 @@ +# 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 +class QueryMonitorKeywordsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryMonitorKeywords','trademark') + + def get_Keywordss(self): + return self.get_query_params().get('Keywordss') + + def set_Keywordss(self,Keywordss): + for i in range(len(Keywordss)): + if Keywordss[i] is not None: + self.add_query_param('Keywords.' + str(i + 1) , Keywordss[i]); + + def get_RuleType(self): + return self.get_query_params().get('RuleType') + + def set_RuleType(self,RuleType): + self.add_query_param('RuleType',RuleType) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryOssResourcesRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryOssResourcesRequest.py new file mode 100644 index 0000000000..f8096bc3f4 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryOssResourcesRequest.py @@ -0,0 +1,30 @@ +# 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 +class QueryOssResourcesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryOssResources','trademark') + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryQrCodeUploadStatusRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryQrCodeUploadStatusRequest.py new file mode 100644 index 0000000000..af9fcc76cb --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryQrCodeUploadStatusRequest.py @@ -0,0 +1,42 @@ +# 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 +class QueryQrCodeUploadStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryQrCodeUploadStatus','trademark') + + def get_OssKey(self): + return self.get_query_params().get('OssKey') + + def set_OssKey(self,OssKey): + self.add_query_param('OssKey',OssKey) + + def get_FieldKey(self): + return self.get_query_params().get('FieldKey') + + def set_FieldKey(self,FieldKey): + self.add_query_param('FieldKey',FieldKey) + + def get_Uuid(self): + return self.get_query_params().get('Uuid') + + def set_Uuid(self,Uuid): + self.add_query_param('Uuid',Uuid) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QuerySupplementDetailRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QuerySupplementDetailRequest.py new file mode 100644 index 0000000000..887e4e2c55 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QuerySupplementDetailRequest.py @@ -0,0 +1,30 @@ +# 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 +class QuerySupplementDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QuerySupplementDetail','trademark') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTaskListRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTaskListRequest.py new file mode 100644 index 0000000000..6b4677e2f6 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTaskListRequest.py @@ -0,0 +1,30 @@ +# 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 +class QueryTaskListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryTaskList','trademark') + + def get_BizType(self): + return self.get_query_params().get('BizType') + + def set_BizType(self,BizType): + self.add_query_param('BizType',BizType) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeIntentionUserListRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeIntentionUserListRequest.py new file mode 100644 index 0000000000..eb0bffd483 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeIntentionUserListRequest.py @@ -0,0 +1,36 @@ +# 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 +class QueryTradeIntentionUserListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryTradeIntentionUserList','trademark') + + def get_End(self): + return self.get_query_params().get('End') + + def set_End(self,End): + self.add_query_param('End',End) + + def get_Begin(self): + return self.get_query_params().get('Begin') + + def set_Begin(self,Begin): + self.add_query_param('Begin',Begin) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeMarkApplicationDetailRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeMarkApplicationDetailRequest.py new file mode 100644 index 0000000000..52bc6224a2 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeMarkApplicationDetailRequest.py @@ -0,0 +1,30 @@ +# 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 +class QueryTradeMarkApplicationDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryTradeMarkApplicationDetail','trademark') + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeMarkApplicationLogsRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeMarkApplicationLogsRequest.py new file mode 100644 index 0000000000..2d798947ad --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeMarkApplicationLogsRequest.py @@ -0,0 +1,30 @@ +# 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 +class QueryTradeMarkApplicationLogsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryTradeMarkApplicationLogs','trademark') + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeMarkApplicationsRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeMarkApplicationsRequest.py new file mode 100644 index 0000000000..181245d542 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeMarkApplicationsRequest.py @@ -0,0 +1,90 @@ +# 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 +class QueryTradeMarkApplicationsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryTradeMarkApplications','trademark') + + def get_TmName(self): + return self.get_query_params().get('TmName') + + def set_TmName(self,TmName): + self.add_query_param('TmName',TmName) + + def get_MaterialName(self): + return self.get_query_params().get('MaterialName') + + def set_MaterialName(self,MaterialName): + self.add_query_param('MaterialName',MaterialName) + + def get_OrderId(self): + return self.get_query_params().get('OrderId') + + def set_OrderId(self,OrderId): + self.add_query_param('OrderId',OrderId) + + def get_SupplementStatus(self): + return self.get_query_params().get('SupplementStatus') + + def set_SupplementStatus(self,SupplementStatus): + self.add_query_param('SupplementStatus',SupplementStatus) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) + + def get_TmNumber(self): + return self.get_query_params().get('TmNumber') + + def set_TmNumber(self,TmNumber): + self.add_query_param('TmNumber',TmNumber) + + def get_SortOrder(self): + return self.get_query_params().get('SortOrder') + + def set_SortOrder(self,SortOrder): + self.add_query_param('SortOrder',SortOrder) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeProduceDetailRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeProduceDetailRequest.py new file mode 100644 index 0000000000..578f740a95 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeProduceDetailRequest.py @@ -0,0 +1,30 @@ +# 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 +class QueryTradeProduceDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryTradeProduceDetail','trademark') + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeProduceListRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeProduceListRequest.py new file mode 100644 index 0000000000..54e3b70750 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTradeProduceListRequest.py @@ -0,0 +1,72 @@ +# 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 +class QueryTradeProduceListRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryTradeProduceList','trademark') + + def get_BuyerStatus(self): + return self.get_query_params().get('BuyerStatus') + + def set_BuyerStatus(self,BuyerStatus): + self.add_query_param('BuyerStatus',BuyerStatus) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_PreOrderId(self): + return self.get_query_params().get('PreOrderId') + + def set_PreOrderId(self,PreOrderId): + self.add_query_param('PreOrderId',PreOrderId) + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) + + def get_SortOrder(self): + return self.get_query_params().get('SortOrder') + + def set_SortOrder(self,SortOrder): + self.add_query_param('SortOrder',SortOrder) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_SortFiled(self): + return self.get_query_params().get('SortFiled') + + def set_SortFiled(self,SortFiled): + self.add_query_param('SortFiled',SortFiled) + + def get_RegisterNumber(self): + return self.get_query_params().get('RegisterNumber') + + def set_RegisterNumber(self,RegisterNumber): + self.add_query_param('RegisterNumber',RegisterNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTrademarkMonitorResultsRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTrademarkMonitorResultsRequest.py new file mode 100644 index 0000000000..cce80a2bcc --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTrademarkMonitorResultsRequest.py @@ -0,0 +1,78 @@ +# 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 +class QueryTrademarkMonitorResultsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryTrademarkMonitorResults','trademark') + + def get_ActionType(self): + return self.get_query_params().get('ActionType') + + def set_ActionType(self,ActionType): + self.add_query_param('ActionType',ActionType) + + def get_TmName(self): + return self.get_query_params().get('TmName') + + def set_TmName(self,TmName): + self.add_query_param('TmName',TmName) + + def get_ApplyYear(self): + return self.get_query_params().get('ApplyYear') + + def set_ApplyYear(self,ApplyYear): + self.add_query_param('ApplyYear',ApplyYear) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_ProcedureStatus(self): + return self.get_query_params().get('ProcedureStatus') + + def set_ProcedureStatus(self,ProcedureStatus): + self.add_query_param('ProcedureStatus',ProcedureStatus) + + def get_RuleId(self): + return self.get_query_params().get('RuleId') + + def set_RuleId(self,RuleId): + self.add_query_param('RuleId',RuleId) + + def get_Classification(self): + return self.get_query_params().get('Classification') + + def set_Classification(self,Classification): + self.add_query_param('Classification',Classification) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) + + def get_RegistrationNumber(self): + return self.get_query_params().get('RegistrationNumber') + + def set_RegistrationNumber(self,RegistrationNumber): + self.add_query_param('RegistrationNumber',RegistrationNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTrademarkMonitorRulesRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTrademarkMonitorRulesRequest.py new file mode 100644 index 0000000000..1596144f3a --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTrademarkMonitorRulesRequest.py @@ -0,0 +1,54 @@ +# 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 +class QueryTrademarkMonitorRulesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryTrademarkMonitorRules','trademark') + + def get_NotifyUpdate(self): + return self.get_query_params().get('NotifyUpdate') + + def set_NotifyUpdate(self,NotifyUpdate): + self.add_query_param('NotifyUpdate',NotifyUpdate) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_RuleName(self): + return self.get_query_params().get('RuleName') + + def set_RuleName(self,RuleName): + self.add_query_param('RuleName',RuleName) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_PageNum(self): + return self.get_query_params().get('PageNum') + + def set_PageNum(self,PageNum): + self.add_query_param('PageNum',PageNum) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTrademarkPriceRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTrademarkPriceRequest.py new file mode 100644 index 0000000000..8b20501d36 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/QueryTrademarkPriceRequest.py @@ -0,0 +1,54 @@ +# 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 +class QueryTrademarkPriceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'QueryTrademarkPrice','trademark') + + def get_TmName(self): + return self.get_query_params().get('TmName') + + def set_TmName(self,TmName): + self.add_query_param('TmName',TmName) + + def get_TmIcon(self): + return self.get_query_params().get('TmIcon') + + def set_TmIcon(self,TmIcon): + self.add_query_param('TmIcon',TmIcon) + + def get_OrderData(self): + return self.get_query_params().get('OrderData') + + def set_OrderData(self,OrderData): + self.add_query_param('OrderData',OrderData) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_UserId(self): + return self.get_query_params().get('UserId') + + def set_UserId(self,UserId): + self.add_query_param('UserId',UserId) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/RefundProduceRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/RefundProduceRequest.py new file mode 100644 index 0000000000..ea866ad51e --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/RefundProduceRequest.py @@ -0,0 +1,30 @@ +# 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 +class RefundProduceRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'RefundProduce','trademark') + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/SaveTaskRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/SaveTaskRequest.py new file mode 100644 index 0000000000..aba473438b --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/SaveTaskRequest.py @@ -0,0 +1,36 @@ +# 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 +class SaveTaskRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'SaveTask','trademark') + + def get_BizType(self): + return self.get_query_params().get('BizType') + + def set_BizType(self,BizType): + self.add_query_param('BizType',BizType) + + def get_Request(self): + return self.get_query_params().get('Request') + + def set_Request(self,Request): + self.add_query_param('Request',Request) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/StartNotaryRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/StartNotaryRequest.py new file mode 100644 index 0000000000..af7063f5b9 --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/StartNotaryRequest.py @@ -0,0 +1,30 @@ +# 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 +class StartNotaryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'StartNotary','trademark') + + def get_NotaryOrderId(self): + return self.get_query_params().get('NotaryOrderId') + + def set_NotaryOrderId(self,NotaryOrderId): + self.add_query_param('NotaryOrderId',NotaryOrderId) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/StoreMaterialTemporarilyRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/StoreMaterialTemporarilyRequest.py new file mode 100644 index 0000000000..13529026bb --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/StoreMaterialTemporarilyRequest.py @@ -0,0 +1,150 @@ +# 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 +class StoreMaterialTemporarilyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'StoreMaterialTemporarily','trademark') + + def get_ContactEmail(self): + return self.get_query_params().get('ContactEmail') + + def set_ContactEmail(self,ContactEmail): + self.add_query_param('ContactEmail',ContactEmail) + + def get_ContactAddress(self): + return self.get_query_params().get('ContactAddress') + + def set_ContactAddress(self,ContactAddress): + self.add_query_param('ContactAddress',ContactAddress) + + def get_EAddress(self): + return self.get_query_params().get('EAddress') + + def set_EAddress(self,EAddress): + self.add_query_param('EAddress',EAddress) + + def get_Country(self): + return self.get_query_params().get('Country') + + def set_Country(self,Country): + self.add_query_param('Country',Country) + + def get_LegalNoticeOssKey(self): + return self.get_query_params().get('LegalNoticeOssKey') + + def set_LegalNoticeOssKey(self,LegalNoticeOssKey): + self.add_query_param('LegalNoticeOssKey',LegalNoticeOssKey) + + def get_Address(self): + return self.get_query_params().get('Address') + + def set_Address(self,Address): + self.add_query_param('Address',Address) + + def get_Town(self): + return self.get_query_params().get('Town') + + def set_Town(self,Town): + self.add_query_param('Town',Town) + + def get_ContactNumber(self): + return self.get_query_params().get('ContactNumber') + + def set_ContactNumber(self,ContactNumber): + self.add_query_param('ContactNumber',ContactNumber) + + def get_City(self): + return self.get_query_params().get('City') + + def set_City(self,City): + self.add_query_param('City',City) + + def get_IdCardOssKey(self): + return self.get_query_params().get('IdCardOssKey') + + def set_IdCardOssKey(self,IdCardOssKey): + self.add_query_param('IdCardOssKey',IdCardOssKey) + + def get_Type(self): + return self.get_query_params().get('Type') + + def set_Type(self,Type): + self.add_query_param('Type',Type) + + def get_ContactName(self): + return self.get_query_params().get('ContactName') + + def set_ContactName(self,ContactName): + self.add_query_param('ContactName',ContactName) + + def get_PassportOssKey(self): + return self.get_query_params().get('PassportOssKey') + + def set_PassportOssKey(self,PassportOssKey): + self.add_query_param('PassportOssKey',PassportOssKey) + + def get_ContactZipcode(self): + return self.get_query_params().get('ContactZipcode') + + def set_ContactZipcode(self,ContactZipcode): + self.add_query_param('ContactZipcode',ContactZipcode) + + def get_EName(self): + return self.get_query_params().get('EName') + + def set_EName(self,EName): + self.add_query_param('EName',EName) + + def get_Province(self): + return self.get_query_params().get('Province') + + def set_Province(self,Province): + self.add_query_param('Province',Province) + + def get_BusinessLicenceOssKey(self): + return self.get_query_params().get('BusinessLicenceOssKey') + + def set_BusinessLicenceOssKey(self,BusinessLicenceOssKey): + self.add_query_param('BusinessLicenceOssKey',BusinessLicenceOssKey) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_CardNumber(self): + return self.get_query_params().get('CardNumber') + + def set_CardNumber(self,CardNumber): + self.add_query_param('CardNumber',CardNumber) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) + + def get_LoaOssKey(self): + return self.get_query_params().get('LoaOssKey') + + def set_LoaOssKey(self,LoaOssKey): + self.add_query_param('LoaOssKey',LoaOssKey) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/SubmitSupplementRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/SubmitSupplementRequest.py new file mode 100644 index 0000000000..723cac13ea --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/SubmitSupplementRequest.py @@ -0,0 +1,42 @@ +# 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 +class SubmitSupplementRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'SubmitSupplement','trademark') + + def get_UploadOssKeyList(self): + return self.get_query_params().get('UploadOssKeyList') + + def set_UploadOssKeyList(self,UploadOssKeyList): + self.add_query_param('UploadOssKeyList',UploadOssKeyList) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Content(self): + return self.get_query_params().get('Content') + + def set_Content(self,Content): + self.add_query_param('Content',Content) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/UpdateMaterialRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/UpdateMaterialRequest.py new file mode 100644 index 0000000000..ea5455815b --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/UpdateMaterialRequest.py @@ -0,0 +1,144 @@ +# 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 +class UpdateMaterialRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'UpdateMaterial','trademark') + + def get_ContactEmail(self): + return self.get_query_params().get('ContactEmail') + + def set_ContactEmail(self,ContactEmail): + self.add_query_param('ContactEmail',ContactEmail) + + def get_ContactAddress(self): + return self.get_query_params().get('ContactAddress') + + def set_ContactAddress(self,ContactAddress): + self.add_query_param('ContactAddress',ContactAddress) + + def get_EAddress(self): + return self.get_query_params().get('EAddress') + + def set_EAddress(self,EAddress): + self.add_query_param('EAddress',EAddress) + + def get_LegalNoticeOssKey(self): + return self.get_query_params().get('LegalNoticeOssKey') + + def set_LegalNoticeOssKey(self,LegalNoticeOssKey): + self.add_query_param('LegalNoticeOssKey',LegalNoticeOssKey) + + def get_Address(self): + return self.get_query_params().get('Address') + + def set_Address(self,Address): + self.add_query_param('Address',Address) + + def get_Town(self): + return self.get_query_params().get('Town') + + def set_Town(self,Town): + self.add_query_param('Town',Town) + + def get_ContactNumber(self): + return self.get_query_params().get('ContactNumber') + + def set_ContactNumber(self,ContactNumber): + self.add_query_param('ContactNumber',ContactNumber) + + def get_City(self): + return self.get_query_params().get('City') + + def set_City(self,City): + self.add_query_param('City',City) + + def get_IdCardOssKey(self): + return self.get_query_params().get('IdCardOssKey') + + def set_IdCardOssKey(self,IdCardOssKey): + self.add_query_param('IdCardOssKey',IdCardOssKey) + + def get_ContactName(self): + return self.get_query_params().get('ContactName') + + def set_ContactName(self,ContactName): + self.add_query_param('ContactName',ContactName) + + def get_PassportOssKey(self): + return self.get_query_params().get('PassportOssKey') + + def set_PassportOssKey(self,PassportOssKey): + self.add_query_param('PassportOssKey',PassportOssKey) + + def get_ContactZipcode(self): + return self.get_query_params().get('ContactZipcode') + + def set_ContactZipcode(self,ContactZipcode): + self.add_query_param('ContactZipcode',ContactZipcode) + + def get_EName(self): + return self.get_query_params().get('EName') + + def set_EName(self,EName): + self.add_query_param('EName',EName) + + def get_Province(self): + return self.get_query_params().get('Province') + + def set_Province(self,Province): + self.add_query_param('Province',Province) + + def get_BusinessLicenceOssKey(self): + return self.get_query_params().get('BusinessLicenceOssKey') + + def set_BusinessLicenceOssKey(self,BusinessLicenceOssKey): + self.add_query_param('BusinessLicenceOssKey',BusinessLicenceOssKey) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_CardNumber(self): + return self.get_query_params().get('CardNumber') + + def set_CardNumber(self,CardNumber): + self.add_query_param('CardNumber',CardNumber) + + def get_LoaId(self): + return self.get_query_params().get('LoaId') + + def set_LoaId(self,LoaId): + self.add_query_param('LoaId',LoaId) + + def get_LoaOssKey(self): + return self.get_query_params().get('LoaOssKey') + + def set_LoaOssKey(self,LoaOssKey): + self.add_query_param('LoaOssKey',LoaOssKey) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/UpdateSendMaterialNumRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/UpdateSendMaterialNumRequest.py new file mode 100644 index 0000000000..c8cef34aab --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/UpdateSendMaterialNumRequest.py @@ -0,0 +1,42 @@ +# 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 +class UpdateSendMaterialNumRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'UpdateSendMaterialNum','trademark') + + def get_Num(self): + return self.get_query_params().get('Num') + + def set_Num(self,Num): + self.add_query_param('Num',Num) + + def get_BizId(self): + return self.get_query_params().get('BizId') + + def set_BizId(self,BizId): + self.add_query_param('BizId',BizId) + + def get_OperateType(self): + return self.get_query_params().get('OperateType') + + def set_OperateType(self,OperateType): + self.add_query_param('OperateType',OperateType) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/UpdateTmMonitorRuleRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/UpdateTmMonitorRuleRequest.py new file mode 100644 index 0000000000..22c363791d --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/UpdateTmMonitorRuleRequest.py @@ -0,0 +1,44 @@ +# 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 +class UpdateTmMonitorRuleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'UpdateTmMonitorRule','trademark') + + def get_NotifyStatuss(self): + return self.get_query_params().get('NotifyStatuss') + + def set_NotifyStatuss(self,NotifyStatuss): + for i in range(len(NotifyStatuss)): + if NotifyStatuss[i] is not None: + self.add_query_param('NotifyStatus.' + str(i + 1) , NotifyStatuss[i]); + + def get_RuleName(self): + return self.get_query_params().get('RuleName') + + def set_RuleName(self,RuleName): + self.add_query_param('RuleName',RuleName) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/UploadNotaryDataRequest.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/UploadNotaryDataRequest.py new file mode 100644 index 0000000000..493dc359fc --- /dev/null +++ b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/UploadNotaryDataRequest.py @@ -0,0 +1,42 @@ +# 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 +class UploadNotaryDataRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Trademark', '2018-07-24', 'UploadNotaryData','trademark') + + def get_UploadContext(self): + return self.get_query_params().get('UploadContext') + + def set_UploadContext(self,UploadContext): + self.add_query_param('UploadContext',UploadContext) + + def get_BizOrderNo(self): + return self.get_query_params().get('BizOrderNo') + + def set_BizOrderNo(self,BizOrderNo): + self.add_query_param('BizOrderNo',BizOrderNo) + + def get_NotaryType(self): + return self.get_query_params().get('NotaryType') + + def set_NotaryType(self,NotaryType): + self.add_query_param('NotaryType',NotaryType) \ No newline at end of file diff --git a/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/__init__.py b/aliyun-python-sdk-trademark/aliyunsdktrademark/request/v20180724/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-trademark/setup.py b/aliyun-python-sdk-trademark/setup.py new file mode 100644 index 0000000000..cc23a4ead7 --- /dev/null +++ b/aliyun-python-sdk-trademark/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for trademark. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdktrademark" +NAME = "aliyun-python-sdk-trademark" +DESCRIPTION = "The trademark module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","trademark"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-ubsms/ChangeLog.txt b/aliyun-python-sdk-ubsms/ChangeLog.txt new file mode 100644 index 0000000000..1160b2dbbc --- /dev/null +++ b/aliyun-python-sdk-ubsms/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-03-15 Version: 2.0.5 +1, Update Dependency + diff --git a/aliyun-python-sdk-ubsms/MANIFEST.in b/aliyun-python-sdk-ubsms/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-ubsms/README.rst b/aliyun-python-sdk-ubsms/README.rst new file mode 100644 index 0000000000..0cf8bf4af1 --- /dev/null +++ b/aliyun-python-sdk-ubsms/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-ubsms +This is the ubsms module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-ubsms/aliyunsdkubsms/__init__.py b/aliyun-python-sdk-ubsms/aliyunsdkubsms/__init__.py new file mode 100644 index 0000000000..b0747c8740 --- /dev/null +++ b/aliyun-python-sdk-ubsms/aliyunsdkubsms/__init__.py @@ -0,0 +1 @@ +__version__ = "2.0.5" \ No newline at end of file diff --git a/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/__init__.py b/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/v20150623/DescribeBusinessStatusRequest.py b/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/v20150623/DescribeBusinessStatusRequest.py new file mode 100644 index 0000000000..c11361a86b --- /dev/null +++ b/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/v20150623/DescribeBusinessStatusRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeBusinessStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ubsms', '2015-06-23', 'DescribeBusinessStatus','ubsms') + + def get_Password(self): + return self.get_query_params().get('Password') + + def set_Password(self,Password): + self.add_query_param('Password',Password) + + def get_callerBid(self): + return self.get_query_params().get('callerBid') + + def set_callerBid(self,callerBid): + self.add_query_param('callerBid',callerBid) \ No newline at end of file diff --git a/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/v20150623/NotifyUserBusinessCommandRequest.py b/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/v20150623/NotifyUserBusinessCommandRequest.py new file mode 100644 index 0000000000..74c953c157 --- /dev/null +++ b/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/v20150623/NotifyUserBusinessCommandRequest.py @@ -0,0 +1,66 @@ +# 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 +class NotifyUserBusinessCommandRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ubsms', '2015-06-23', 'NotifyUserBusinessCommand','ubsms') + + def get_Uid(self): + return self.get_query_params().get('Uid') + + def set_Uid(self,Uid): + self.add_query_param('Uid',Uid) + + def get_Password(self): + return self.get_query_params().get('Password') + + def set_Password(self,Password): + self.add_query_param('Password',Password) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_ServiceCode(self): + return self.get_query_params().get('ServiceCode') + + def set_ServiceCode(self,ServiceCode): + self.add_query_param('ServiceCode',ServiceCode) + + def get_ClientToken(self): + return self.get_query_params().get('ClientToken') + + def set_ClientToken(self,ClientToken): + self.add_query_param('ClientToken',ClientToken) + + def get_Cmd(self): + return self.get_query_params().get('Cmd') + + def set_Cmd(self,Cmd): + self.add_query_param('Cmd',Cmd) + + def get_Region(self): + return self.get_query_params().get('Region') + + def set_Region(self,Region): + self.add_query_param('Region',Region) \ No newline at end of file diff --git a/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/v20150623/SetUserBusinessStatusRequest.py b/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/v20150623/SetUserBusinessStatusRequest.py new file mode 100644 index 0000000000..4d320ab42e --- /dev/null +++ b/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/v20150623/SetUserBusinessStatusRequest.py @@ -0,0 +1,48 @@ +# 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 +class SetUserBusinessStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Ubsms', '2015-06-23', 'SetUserBusinessStatus','ubsms') + + def get_Uid(self): + return self.get_query_params().get('Uid') + + def set_Uid(self,Uid): + self.add_query_param('Uid',Uid) + + def get_StatusValue(self): + return self.get_query_params().get('StatusValue') + + def set_StatusValue(self,StatusValue): + self.add_query_param('StatusValue',StatusValue) + + def get_Service(self): + return self.get_query_params().get('Service') + + def set_Service(self,Service): + self.add_query_param('Service',Service) + + def get_StatusKey(self): + return self.get_query_params().get('StatusKey') + + def set_StatusKey(self,StatusKey): + self.add_query_param('StatusKey',StatusKey) \ No newline at end of file diff --git a/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/v20150623/__init__.py b/aliyun-python-sdk-ubsms/aliyunsdkubsms/request/v20150623/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-ubsms/setup.py b/aliyun-python-sdk-ubsms/setup.py new file mode 100644 index 0000000000..75179efb0a --- /dev/null +++ b/aliyun-python-sdk-ubsms/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for ubsms. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkubsms" +NAME = "aliyun-python-sdk-ubsms" +DESCRIPTION = "The ubsms module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","ubsms"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/ChangeLog.txt b/aliyun-python-sdk-visionai/ChangeLog.txt new file mode 100644 index 0000000000..19048bcc34 --- /dev/null +++ b/aliyun-python-sdk-visionai/ChangeLog.txt @@ -0,0 +1,9 @@ +2020-01-14 Version: 1.0.1 +- Visionai online. + +2020-01-14 Version: 1.0.0 +- Visionai online. + +2019-12-30 Version: 1.0.0 +- Visionai online. + diff --git a/aliyun-python-sdk-visionai/MANIFEST.in b/aliyun-python-sdk-visionai/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-visionai/README.rst b/aliyun-python-sdk-visionai/README.rst new file mode 100644 index 0000000000..2da7a8a5ba --- /dev/null +++ b/aliyun-python-sdk-visionai/README.rst @@ -0,0 +1,15 @@ +============================================================= +aliyun-python-sdk-visionai +============================================================= + +.. This is the visionai module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater + +**Documentation:** + +Please visit `http://develop.aliyun.com/sdk/python `_ diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/__init__.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/__init__.py new file mode 100644 index 0000000000..6c4c011435 --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/__init__.py @@ -0,0 +1 @@ +__version__ = '1.0.1' \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/endpoint.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/endpoint.py new file mode 100644 index 0000000000..b2cd608315 --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/endpoint.py @@ -0,0 +1,33 @@ +# # 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. + + +class EndpointData(): + def __init__(self): + self.endpoint_map = {} + self.endpoint_regional = "regional" + + def getEndpointMap(self): + return self.endpoint_map + + def getEndpointRegional(self): + return self.endpoint_regional + + +endpoint_data = EndpointData() diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/__init__.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/DetectEdgeRequest.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/DetectEdgeRequest.py new file mode 100644 index 0000000000..b7641eb610 --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/DetectEdgeRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkvisionai.endpoint import endpoint_data + +class DetectEdgeRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'visionai', '2019-10-24', 'DetectEdge','visionai') + 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_ImageUrl(self): + return self.get_body_params().get('ImageUrl') + + def set_ImageUrl(self,ImageUrl): + self.add_body_params('ImageUrl', ImageUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/DetectMultiObjectRequest.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/DetectMultiObjectRequest.py new file mode 100644 index 0000000000..db1b6a4ccd --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/DetectMultiObjectRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkvisionai.endpoint import endpoint_data + +class DetectMultiObjectRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'visionai', '2019-10-24', 'DetectMultiObject','visionai') + 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_ImageUrl(self): + return self.get_body_params().get('ImageUrl') + + def set_ImageUrl(self,ImageUrl): + self.add_body_params('ImageUrl', ImageUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/DetectTransparentRequest.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/DetectTransparentRequest.py new file mode 100644 index 0000000000..3e33473609 --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/DetectTransparentRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkvisionai.endpoint import endpoint_data + +class DetectTransparentRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'visionai', '2019-10-24', 'DetectTransparent','visionai') + 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_ImageUrl(self): + return self.get_body_params().get('ImageUrl') + + def set_ImageUrl(self,ImageUrl): + self.add_body_params('ImageUrl', ImageUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/DetectWhitebgRequest.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/DetectWhitebgRequest.py new file mode 100644 index 0000000000..c63614bdad --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/DetectWhitebgRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkvisionai.endpoint import endpoint_data + +class DetectWhitebgRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'visionai', '2019-10-24', 'DetectWhitebg','visionai') + 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_ImageUrl(self): + return self.get_body_params().get('ImageUrl') + + def set_ImageUrl(self,ImageUrl): + self.add_body_params('ImageUrl', ImageUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/IdentifyAnimalRequest.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/IdentifyAnimalRequest.py new file mode 100644 index 0000000000..924a0dced3 --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/IdentifyAnimalRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkvisionai.endpoint import endpoint_data + +class IdentifyAnimalRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'visionai', '2019-10-24', 'IdentifyAnimal','visionai') + 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_ImageUrl(self): + return self.get_body_params().get('ImageUrl') + + def set_ImageUrl(self,ImageUrl): + self.add_body_params('ImageUrl', ImageUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/IdentifyPlantRequest.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/IdentifyPlantRequest.py new file mode 100644 index 0000000000..6bd5269f9b --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/IdentifyPlantRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkvisionai.endpoint import endpoint_data + +class IdentifyPlantRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'visionai', '2019-10-24', 'IdentifyPlant','visionai') + 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_ImageUrl(self): + return self.get_body_params().get('ImageUrl') + + def set_ImageUrl(self,ImageUrl): + self.add_body_params('ImageUrl', ImageUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/RecognizeProdcategoryRequest.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/RecognizeProdcategoryRequest.py new file mode 100644 index 0000000000..6f8ae92426 --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/RecognizeProdcategoryRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkvisionai.endpoint import endpoint_data + +class RecognizeProdcategoryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'visionai', '2019-10-24', 'RecognizeProdcategory','visionai') + 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_ImageUrl(self): + return self.get_body_params().get('ImageUrl') + + def set_ImageUrl(self,ImageUrl): + self.add_body_params('ImageUrl', ImageUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/RecognizeProdmlabelRequest.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/RecognizeProdmlabelRequest.py new file mode 100644 index 0000000000..e5b08e7582 --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/RecognizeProdmlabelRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkvisionai.endpoint import endpoint_data + +class RecognizeProdmlabelRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'visionai', '2019-10-24', 'RecognizeProdmlabel','visionai') + 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_ImageUrl(self): + return self.get_body_params().get('ImageUrl') + + def set_ImageUrl(self,ImageUrl): + self.add_body_params('ImageUrl', ImageUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/RecognizeVehicleRequest.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/RecognizeVehicleRequest.py new file mode 100644 index 0000000000..0bca80b629 --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/RecognizeVehicleRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkvisionai.endpoint import endpoint_data + +class RecognizeVehicleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'visionai', '2019-10-24', 'RecognizeVehicle','visionai') + 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_ImageUrl(self): + return self.get_body_params().get('ImageUrl') + + def set_ImageUrl(self,ImageUrl): + self.add_body_params('ImageUrl', ImageUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/SegmentBodyRequest.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/SegmentBodyRequest.py new file mode 100644 index 0000000000..85753d32cb --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/SegmentBodyRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkvisionai.endpoint import endpoint_data + +class SegmentBodyRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'visionai', '2019-10-24', 'SegmentBody','visionai') + 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_ImageUrl(self): + return self.get_body_params().get('ImageUrl') + + def set_ImageUrl(self,ImageUrl): + self.add_body_params('ImageUrl', ImageUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/SegmentProdcategoryRequest.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/SegmentProdcategoryRequest.py new file mode 100644 index 0000000000..d1f7951bb0 --- /dev/null +++ b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/SegmentProdcategoryRequest.py @@ -0,0 +1,38 @@ +# 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 aliyunsdkvisionai.endpoint import endpoint_data + +class SegmentProdcategoryRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'visionai', '2019-10-24', 'SegmentProdcategory','visionai') + 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_ImageUrl(self): + return self.get_body_params().get('ImageUrl') + + def set_ImageUrl(self,ImageUrl): + self.add_body_params('ImageUrl', ImageUrl) \ No newline at end of file diff --git a/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/__init__.py b/aliyun-python-sdk-visionai/aliyunsdkvisionai/request/v20191024/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-visionai/setup.py b/aliyun-python-sdk-visionai/setup.py new file mode 100644 index 0000000000..ef0158a37d --- /dev/null +++ b/aliyun-python-sdk-visionai/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for visionai. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkvisionai" +NAME = "aliyun-python-sdk-visionai" +DESCRIPTION = "The visionai module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","visionai"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/ChangeLog.txt b/aliyun-python-sdk-webplus/ChangeLog.txt new file mode 100644 index 0000000000..8e94ff0855 --- /dev/null +++ b/aliyun-python-sdk-webplus/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-08-07 Version: 1.0.0 +- Generated 2019-03-20 for `WebPlus`. + diff --git a/aliyun-python-sdk-webplus/MANIFEST.in b/aliyun-python-sdk-webplus/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-webplus/README.rst b/aliyun-python-sdk-webplus/README.rst new file mode 100644 index 0000000000..9a9ae9a7c4 --- /dev/null +++ b/aliyun-python-sdk-webplus/README.rst @@ -0,0 +1,15 @@ +============================================================= +aliyun-python-sdk-webplus +============================================================= + +.. This is the webplus module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater + +**Documentation:** + +Please visit `http://develop.aliyun.com/sdk/python `_ diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/__init__.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/__init__.py new file mode 100644 index 0000000000..75977e6f41 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/__init__.py @@ -0,0 +1 @@ +__version__ = '1.0.0' \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/endpoint.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/endpoint.py new file mode 100644 index 0000000000..561c78ba0a --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/endpoint.py @@ -0,0 +1,53 @@ +# # 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. + + +class EndpointData(): + def __init__(self): + self.endpoint_map = { + "cn-shenzhen": "webplus.cn-hangzhou.aliyuncs.com", + "cn-beijing": "webplus.cn-hangzhou.aliyuncs.com", + "ap-south-1": "webplus.aliyuncs.com", + "eu-west-1": "webplus.aliyuncs.com", + "ap-northeast-1": "webplus.aliyuncs.com", + "me-east-1": "webplus.aliyuncs.com", + "cn-chengdu": "webplus.aliyuncs.com", + "cn-qingdao": "webplus.aliyuncs.com", + "cn-shanghai": "webplus.cn-hangzhou.aliyuncs.com", + "cn-hongkong": "webplus.aliyuncs.com", + "ap-southeast-1": "webplus.aliyuncs.com", + "ap-southeast-2": "webplus.aliyuncs.com", + "ap-southeast-3": "webplus.aliyuncs.com", + "eu-central-1": "webplus.aliyuncs.com", + "cn-huhehaote": "webplus.aliyuncs.com", + "ap-southeast-5": "webplus.aliyuncs.com", + "us-east-1": "webplus.aliyuncs.com", + "cn-zhangjiakou": "webplus.cn-hangzhou.aliyuncs.com", + "us-west-1": "webplus.aliyuncs.com", + } + self.endpoint_regional = "regional" + + def getEndpointMap(self): + return self.endpoint_map + + def getEndpointRegional(self): + return self.endpoint_regional + + +endpoint_data = EndpointData() diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/__init__.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/AbortChangeRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/AbortChangeRequest.py new file mode 100644 index 0000000000..f9b61bde1b --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/AbortChangeRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class AbortChangeRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'AbortChange','webx') + self.set_uri_pattern('/pop/v1/wam/change/abort') + 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_ChangeId(self): + return self.get_body_params().get('ChangeId') + + def set_ChangeId(self,ChangeId): + self.add_body_params('ChangeId', ChangeId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreateAppEnvRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreateAppEnvRequest.py new file mode 100644 index 0000000000..0240f1c37d --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreateAppEnvRequest.py @@ -0,0 +1,93 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class CreateAppEnvRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'CreateAppEnv','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv') + 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_OptionSettings(self): + return self.get_body_params().get('OptionSettings') + + def set_OptionSettings(self,OptionSettings): + self.add_body_params('OptionSettings', OptionSettings) + + def get_DryRun(self): + return self.get_body_params().get('DryRun') + + def set_DryRun(self,DryRun): + self.add_body_params('DryRun', DryRun) + + def get_EnvName(self): + return self.get_body_params().get('EnvName') + + def set_EnvName(self,EnvName): + self.add_body_params('EnvName', EnvName) + + def get_StackId(self): + return self.get_body_params().get('StackId') + + def set_StackId(self,StackId): + self.add_body_params('StackId', StackId) + + def get_AppId(self): + return self.get_body_params().get('AppId') + + def set_AppId(self,AppId): + self.add_body_params('AppId', AppId) + + def get_ProfileName(self): + return self.get_body_params().get('ProfileName') + + def set_ProfileName(self,ProfileName): + self.add_body_params('ProfileName', ProfileName) + + def get_EnvDescription(self): + return self.get_body_params().get('EnvDescription') + + def set_EnvDescription(self,EnvDescription): + self.add_body_params('EnvDescription', EnvDescription) + + def get_PkgVersionId(self): + return self.get_body_params().get('PkgVersionId') + + def set_PkgVersionId(self,PkgVersionId): + self.add_body_params('PkgVersionId', PkgVersionId) + + def get_SourceEnvId(self): + return self.get_body_params().get('SourceEnvId') + + def set_SourceEnvId(self,SourceEnvId): + self.add_body_params('SourceEnvId', SourceEnvId) + + def get_TemplateId(self): + return self.get_body_params().get('TemplateId') + + def set_TemplateId(self,TemplateId): + self.add_body_params('TemplateId', TemplateId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreateApplicationRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreateApplicationRequest.py new file mode 100644 index 0000000000..7e821ed60c --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreateApplicationRequest.py @@ -0,0 +1,51 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class CreateApplicationRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'CreateApplication','webx') + self.set_uri_pattern('/pop/v1/wam/application') + 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_AppDescription(self): + return self.get_body_params().get('AppDescription') + + def set_AppDescription(self,AppDescription): + self.add_body_params('AppDescription', AppDescription) + + def get_AppName(self): + return self.get_body_params().get('AppName') + + def set_AppName(self,AppName): + self.add_body_params('AppName', AppName) + + def get_CategoryName(self): + return self.get_body_params().get('CategoryName') + + def set_CategoryName(self,CategoryName): + self.add_body_params('CategoryName', CategoryName) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreateConfigTemplateRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreateConfigTemplateRequest.py new file mode 100644 index 0000000000..1d1ecd2586 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreateConfigTemplateRequest.py @@ -0,0 +1,87 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class CreateConfigTemplateRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'CreateConfigTemplate','webx') + self.set_uri_pattern('/pop/v1/wam/configTemplate') + 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_OptionSettings(self): + return self.get_body_params().get('OptionSettings') + + def set_OptionSettings(self,OptionSettings): + self.add_body_params('OptionSettings', OptionSettings) + + def get_SourceTemplateId(self): + return self.get_body_params().get('SourceTemplateId') + + def set_SourceTemplateId(self,SourceTemplateId): + self.add_body_params('SourceTemplateId', SourceTemplateId) + + def get_AppId(self): + return self.get_body_params().get('AppId') + + def set_AppId(self,AppId): + self.add_body_params('AppId', AppId) + + def get_StackId(self): + return self.get_body_params().get('StackId') + + def set_StackId(self,StackId): + self.add_body_params('StackId', StackId) + + def get_ProfileName(self): + return self.get_body_params().get('ProfileName') + + def set_ProfileName(self,ProfileName): + self.add_body_params('ProfileName', ProfileName) + + def get_TemplateName(self): + return self.get_body_params().get('TemplateName') + + def set_TemplateName(self,TemplateName): + self.add_body_params('TemplateName', TemplateName) + + def get_SourceEnvId(self): + return self.get_body_params().get('SourceEnvId') + + def set_SourceEnvId(self,SourceEnvId): + self.add_body_params('SourceEnvId', SourceEnvId) + + def get_PkgVersionId(self): + return self.get_body_params().get('PkgVersionId') + + def set_PkgVersionId(self,PkgVersionId): + self.add_body_params('PkgVersionId', PkgVersionId) + + def get_TemplateDescription(self): + return self.get_body_params().get('TemplateDescription') + + def set_TemplateDescription(self,TemplateDescription): + self.add_body_params('TemplateDescription', TemplateDescription) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreatePkgVersionRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreatePkgVersionRequest.py new file mode 100644 index 0000000000..618f83aa5a --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreatePkgVersionRequest.py @@ -0,0 +1,57 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class CreatePkgVersionRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'CreatePkgVersion','webx') + self.set_uri_pattern('/pop/v1/wam/pkgVersion') + 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_PackageSource(self): + return self.get_body_params().get('PackageSource') + + def set_PackageSource(self,PackageSource): + self.add_body_params('PackageSource', PackageSource) + + def get_PkgVersionLabel(self): + return self.get_body_params().get('PkgVersionLabel') + + def set_PkgVersionLabel(self,PkgVersionLabel): + self.add_body_params('PkgVersionLabel', PkgVersionLabel) + + def get_PkgVersionDescription(self): + return self.get_body_params().get('PkgVersionDescription') + + def set_PkgVersionDescription(self,PkgVersionDescription): + self.add_body_params('PkgVersionDescription', PkgVersionDescription) + + def get_AppId(self): + return self.get_body_params().get('AppId') + + def set_AppId(self,AppId): + self.add_body_params('AppId', AppId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreateStorageRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreateStorageRequest.py new file mode 100644 index 0000000000..6610dbea9c --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/CreateStorageRequest.py @@ -0,0 +1,32 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class CreateStorageRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'CreateStorage','webx') + self.set_uri_pattern('/pop/v1/wam/storage') + 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()) diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeleteAppEnvRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeleteAppEnvRequest.py new file mode 100644 index 0000000000..8e67fdafc2 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeleteAppEnvRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DeleteAppEnvRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DeleteAppEnv','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv') + self.set_method('DELETE') + 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_EnvId(self): + return self.get_query_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_query_param('EnvId',EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeleteApplicationRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeleteApplicationRequest.py new file mode 100644 index 0000000000..01a105865e --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeleteApplicationRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DeleteApplicationRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DeleteApplication','webx') + self.set_uri_pattern('/pop/v1/wam/application') + self.set_method('DELETE') + 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_AppId(self): + return self.get_query_params().get('AppId') + + def set_AppId(self,AppId): + self.add_query_param('AppId',AppId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeleteChangeRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeleteChangeRequest.py new file mode 100644 index 0000000000..ff45f7f008 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeleteChangeRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DeleteChangeRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DeleteChange','webx') + self.set_uri_pattern('/pop/v1/wam/change') + self.set_method('DELETE') + 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_ChangeId(self): + return self.get_query_params().get('ChangeId') + + def set_ChangeId(self,ChangeId): + self.add_query_param('ChangeId',ChangeId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeleteConfigTemplateRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeleteConfigTemplateRequest.py new file mode 100644 index 0000000000..06118ea8cf --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeleteConfigTemplateRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DeleteConfigTemplateRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DeleteConfigTemplate','webx') + self.set_uri_pattern('/pop/v1/wam/configTemplate') + self.set_method('DELETE') + 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_TemplateId(self): + return self.get_query_params().get('TemplateId') + + def set_TemplateId(self,TemplateId): + self.add_query_param('TemplateId',TemplateId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeletePkgVersionRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeletePkgVersionRequest.py new file mode 100644 index 0000000000..608d4780c9 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DeletePkgVersionRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DeletePkgVersionRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DeletePkgVersion','webx') + self.set_uri_pattern('/pop/v1/wam/pkgVersion') + self.set_method('DELETE') + 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_PkgVersionId(self): + return self.get_query_params().get('PkgVersionId') + + def set_PkgVersionId(self,PkgVersionId): + self.add_query_param('PkgVersionId',PkgVersionId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeAppEnvInstanceHealthRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeAppEnvInstanceHealthRequest.py new file mode 100644 index 0000000000..7554eeba8e --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeAppEnvInstanceHealthRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeAppEnvInstanceHealthRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeAppEnvInstanceHealth','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/instanceHealth') + self.set_method('GET') + 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_EnvId(self): + return self.get_query_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_query_param('EnvId',EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeAppEnvStatusRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeAppEnvStatusRequest.py new file mode 100644 index 0000000000..303e739a23 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeAppEnvStatusRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeAppEnvStatusRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeAppEnvStatus','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/status') + self.set_method('GET') + 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_EnvId(self): + return self.get_query_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_query_param('EnvId',EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeAppEnvsRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeAppEnvsRequest.py new file mode 100644 index 0000000000..76c789a304 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeAppEnvsRequest.py @@ -0,0 +1,87 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeAppEnvsRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeAppEnvs','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv') + self.set_method('GET') + 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_RecentUpdated(self): + return self.get_query_params().get('RecentUpdated') + + def set_RecentUpdated(self,RecentUpdated): + self.add_query_param('RecentUpdated',RecentUpdated) + + def get_EnvName(self): + return self.get_query_params().get('EnvName') + + def set_EnvName(self,EnvName): + self.add_query_param('EnvName',EnvName) + + def get_AppId(self): + return self.get_query_params().get('AppId') + + def set_AppId(self,AppId): + self.add_query_param('AppId',AppId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_IncludeTerminated(self): + return self.get_query_params().get('IncludeTerminated') + + def set_IncludeTerminated(self,IncludeTerminated): + self.add_query_param('IncludeTerminated',IncludeTerminated) + + def get_EnvId(self): + return self.get_query_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_query_param('EnvId',EnvId) + + def get_StackSearch(self): + return self.get_query_params().get('StackSearch') + + def set_StackSearch(self,StackSearch): + self.add_query_param('StackSearch',StackSearch) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) + + def get_EnvSearch(self): + return self.get_query_params().get('EnvSearch') + + def set_EnvSearch(self,EnvSearch): + self.add_query_param('EnvSearch',EnvSearch) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeApplicationsRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeApplicationsRequest.py new file mode 100644 index 0000000000..e592a6db97 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeApplicationsRequest.py @@ -0,0 +1,81 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeApplicationsRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeApplications','webx') + self.set_uri_pattern('/pop/v1/wam/application') + self.set_method('GET') + 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_AppName(self): + return self.get_query_params().get('AppName') + + def set_AppName(self,AppName): + self.add_query_param('AppName',AppName) + + def get_AppId(self): + return self.get_query_params().get('AppId') + + def set_AppId(self,AppId): + self.add_query_param('AppId',AppId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CategorySearch(self): + return self.get_query_params().get('CategorySearch') + + def set_CategorySearch(self,CategorySearch): + self.add_query_param('CategorySearch',CategorySearch) + + def get_StackSearch(self): + return self.get_query_params().get('StackSearch') + + def set_StackSearch(self,StackSearch): + self.add_query_param('StackSearch',StackSearch) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) + + def get_AppSearch(self): + return self.get_query_params().get('AppSearch') + + def set_AppSearch(self,AppSearch): + self.add_query_param('AppSearch',AppSearch) + + def get_EnvSearch(self): + return self.get_query_params().get('EnvSearch') + + def set_EnvSearch(self,EnvSearch): + self.add_query_param('EnvSearch',EnvSearch) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeCategoriesRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeCategoriesRequest.py new file mode 100644 index 0000000000..318c99de6c --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeCategoriesRequest.py @@ -0,0 +1,32 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeCategoriesRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeCategories','webx') + self.set_uri_pattern('/pop/v1/wam/category') + self.set_method('GET') + if hasattr(self, "endpoint_map"): + setattr(self, "endpoint_map", endpoint_data.getEndpointMap()) + if hasattr(self, "endpoint_regional"): + setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional()) diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeChangeRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeChangeRequest.py new file mode 100644 index 0000000000..fff6990eb1 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeChangeRequest.py @@ -0,0 +1,45 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeChangeRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeChange','webx') + self.set_uri_pattern('/pop/v1/wam/changeInfo') + self.set_method('GET') + 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_EnvId(self): + return self.get_query_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_query_param('EnvId',EnvId) + + def get_ChangeId(self): + return self.get_query_params().get('ChangeId') + + def set_ChangeId(self,ChangeId): + self.add_query_param('ChangeId',ChangeId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeChangesRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeChangesRequest.py new file mode 100644 index 0000000000..3cf3d3e7ad --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeChangesRequest.py @@ -0,0 +1,57 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeChangesRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeChanges','webx') + self.set_uri_pattern('/pop/v1/wam/change') + self.set_method('GET') + 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_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_EnvId(self): + return self.get_query_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_query_param('EnvId',EnvId) + + def get_ActionName(self): + return self.get_query_params().get('ActionName') + + def set_ActionName(self,ActionName): + self.add_query_param('ActionName',ActionName) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeConfigIndexRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeConfigIndexRequest.py new file mode 100644 index 0000000000..022e49702d --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeConfigIndexRequest.py @@ -0,0 +1,51 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeConfigIndexRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeConfigIndex','webx') + self.set_uri_pattern('/pop/v1/wam/config/configIndex') + self.set_method('GET') + 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_StackId(self): + return self.get_query_params().get('StackId') + + def set_StackId(self,StackId): + self.add_query_param('StackId',StackId) + + def get_ProfileName(self): + return self.get_query_params().get('ProfileName') + + def set_ProfileName(self,ProfileName): + self.add_query_param('ProfileName',ProfileName) + + def get_EnvId(self): + return self.get_query_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_query_param('EnvId',EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeConfigOptionsRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeConfigOptionsRequest.py new file mode 100644 index 0000000000..77c230b0aa --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeConfigOptionsRequest.py @@ -0,0 +1,51 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeConfigOptionsRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeConfigOptions','webx') + self.set_uri_pattern('/pop/v1/wam/config/configOption') + self.set_method('GET') + 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_StackId(self): + return self.get_query_params().get('StackId') + + def set_StackId(self,StackId): + self.add_query_param('StackId',StackId) + + def get_ProfileName(self): + return self.get_query_params().get('ProfileName') + + def set_ProfileName(self,ProfileName): + self.add_query_param('ProfileName',ProfileName) + + def get_EnvId(self): + return self.get_query_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_query_param('EnvId',EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeConfigSettingsRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeConfigSettingsRequest.py new file mode 100644 index 0000000000..b34060832d --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeConfigSettingsRequest.py @@ -0,0 +1,45 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeConfigSettingsRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeConfigSettings','webx') + self.set_uri_pattern('/pop/v1/wam/config/configSetting') + self.set_method('GET') + 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_EnvId(self): + return self.get_query_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_query_param('EnvId',EnvId) + + def get_TemplateId(self): + return self.get_query_params().get('TemplateId') + + def set_TemplateId(self,TemplateId): + self.add_query_param('TemplateId',TemplateId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeConfigTemplatesRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeConfigTemplatesRequest.py new file mode 100644 index 0000000000..aa575463b0 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeConfigTemplatesRequest.py @@ -0,0 +1,63 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeConfigTemplatesRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeConfigTemplates','webx') + self.set_uri_pattern('/pop/v1/wam/configTemplate') + self.set_method('GET') + 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_TemplateSearch(self): + return self.get_query_params().get('TemplateSearch') + + def set_TemplateSearch(self,TemplateSearch): + self.add_query_param('TemplateSearch',TemplateSearch) + + def get_AppId(self): + return self.get_query_params().get('AppId') + + def set_AppId(self,AppId): + self.add_query_param('AppId',AppId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_TemplateName(self): + return self.get_query_params().get('TemplateName') + + def set_TemplateName(self,TemplateName): + self.add_query_param('TemplateName',TemplateName) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeEnvResourceRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeEnvResourceRequest.py new file mode 100644 index 0000000000..e0dfc7602a --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeEnvResourceRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeEnvResourceRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeEnvResource','webx') + self.set_uri_pattern('/pop/v1/wam/envResource') + self.set_method('GET') + 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_EnvId(self): + return self.get_query_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_query_param('EnvId',EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeEventsRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeEventsRequest.py new file mode 100644 index 0000000000..270932f6ec --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeEventsRequest.py @@ -0,0 +1,81 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeEventsRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeEvents','webx') + self.set_uri_pattern('/pop/v1/wam/event') + self.set_method('GET') + 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_LastChangeEvents(self): + return self.get_query_params().get('LastChangeEvents') + + def set_LastChangeEvents(self,LastChangeEvents): + self.add_query_param('LastChangeEvents',LastChangeEvents) + + def get_ReverseByTimestamp(self): + return self.get_query_params().get('ReverseByTimestamp') + + def set_ReverseByTimestamp(self,ReverseByTimestamp): + self.add_query_param('ReverseByTimestamp',ReverseByTimestamp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_EnvId(self): + return self.get_query_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_query_param('EnvId',EnvId) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_ChangeId(self): + return self.get_query_params().get('ChangeId') + + def set_ChangeId(self,ChangeId): + self.add_query_param('ChangeId',ChangeId) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeGatherLogResultRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeGatherLogResultRequest.py new file mode 100644 index 0000000000..bf1edec5b2 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeGatherLogResultRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeGatherLogResultRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeGatherLogResult','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/gatherLog') + self.set_method('GET') + 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_ChangeId(self): + return self.get_query_params().get('ChangeId') + + def set_ChangeId(self,ChangeId): + self.add_query_param('ChangeId',ChangeId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeGatherStatsResultRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeGatherStatsResultRequest.py new file mode 100644 index 0000000000..bbf5cb709c --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeGatherStatsResultRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeGatherStatsResultRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeGatherStatsResult','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/gatherStats') + self.set_method('GET') + 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_ChangeId(self): + return self.get_query_params().get('ChangeId') + + def set_ChangeId(self,ChangeId): + self.add_query_param('ChangeId',ChangeId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeInstanceHealthRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeInstanceHealthRequest.py new file mode 100644 index 0000000000..a9ea909ad8 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeInstanceHealthRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeInstanceHealthRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeInstanceHealth','webx') + self.set_uri_pattern('/pop/v1/wam/instance/health') + self.set_method('GET') + 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_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribePkgVersionsRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribePkgVersionsRequest.py new file mode 100644 index 0000000000..28ec5cf822 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribePkgVersionsRequest.py @@ -0,0 +1,63 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribePkgVersionsRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribePkgVersions','webx') + self.set_uri_pattern('/pop/v1/wam/pkgVersion') + self.set_method('GET') + 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_PkgVersionLabel(self): + return self.get_query_params().get('PkgVersionLabel') + + def set_PkgVersionLabel(self,PkgVersionLabel): + self.add_query_param('PkgVersionLabel',PkgVersionLabel) + + def get_AppId(self): + return self.get_query_params().get('AppId') + + def set_AppId(self,AppId): + self.add_query_param('AppId',AppId) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_PkgVersionSearch(self): + return self.get_query_params().get('PkgVersionSearch') + + def set_PkgVersionSearch(self,PkgVersionSearch): + self.add_query_param('PkgVersionSearch',PkgVersionSearch) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeStacksRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeStacksRequest.py new file mode 100644 index 0000000000..51f9e760f2 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeStacksRequest.py @@ -0,0 +1,57 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeStacksRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeStacks','webx') + self.set_uri_pattern('/pop/v1/wam/stack') + self.set_method('GET') + 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_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CategoryName(self): + return self.get_query_params().get('CategoryName') + + def set_CategoryName(self,CategoryName): + self.add_query_param('CategoryName',CategoryName) + + def get_RecommendedOnly(self): + return self.get_query_params().get('RecommendedOnly') + + def set_RecommendedOnly(self,RecommendedOnly): + self.add_query_param('RecommendedOnly',RecommendedOnly) + + def get_PageNumber(self): + return self.get_query_params().get('PageNumber') + + def set_PageNumber(self,PageNumber): + self.add_query_param('PageNumber',PageNumber) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeStorageRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeStorageRequest.py new file mode 100644 index 0000000000..d397de8188 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DescribeStorageRequest.py @@ -0,0 +1,32 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DescribeStorageRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DescribeStorage','webx') + self.set_uri_pattern('/pop/v1/wam/storage') + self.set_method('GET') + if hasattr(self, "endpoint_map"): + setattr(self, "endpoint_map", endpoint_data.getEndpointMap()) + if hasattr(self, "endpoint_regional"): + setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional()) diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DryRunCreateAppEnvRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DryRunCreateAppEnvRequest.py new file mode 100644 index 0000000000..301406202c --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DryRunCreateAppEnvRequest.py @@ -0,0 +1,63 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DryRunCreateAppEnvRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DryRunCreateAppEnv','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/dryRunCreate') + 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_OptionSettings(self): + return self.get_body_params().get('OptionSettings') + + def set_OptionSettings(self,OptionSettings): + self.add_body_params('OptionSettings', OptionSettings) + + def get_StackId(self): + return self.get_body_params().get('StackId') + + def set_StackId(self,StackId): + self.add_body_params('StackId', StackId) + + def get_ProfileName(self): + return self.get_body_params().get('ProfileName') + + def set_ProfileName(self,ProfileName): + self.add_body_params('ProfileName', ProfileName) + + def get_SourceEnvId(self): + return self.get_body_params().get('SourceEnvId') + + def set_SourceEnvId(self,SourceEnvId): + self.add_body_params('SourceEnvId', SourceEnvId) + + def get_TemplateId(self): + return self.get_body_params().get('TemplateId') + + def set_TemplateId(self,TemplateId): + self.add_body_params('TemplateId', TemplateId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DryRunRebuildAppEnvRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DryRunRebuildAppEnvRequest.py new file mode 100644 index 0000000000..7afc2559ed --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DryRunRebuildAppEnvRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DryRunRebuildAppEnvRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DryRunRebuildAppEnv','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/dryRunRebuild') + 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_EnvId(self): + return self.get_body_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_body_params('EnvId', EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DryRunTerminateAppEnvRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DryRunTerminateAppEnvRequest.py new file mode 100644 index 0000000000..a5d7dddd8d --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/DryRunTerminateAppEnvRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class DryRunTerminateAppEnvRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'DryRunTerminateAppEnv','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/dryRunTerminate') + 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_EnvId(self): + return self.get_body_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_body_params('EnvId', EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/GatherAppEnvLogRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/GatherAppEnvLogRequest.py new file mode 100644 index 0000000000..a5fedb81f2 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/GatherAppEnvLogRequest.py @@ -0,0 +1,51 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class GatherAppEnvLogRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'GatherAppEnvLog','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/gatherLog') + 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_LogPath(self): + return self.get_body_params().get('LogPath') + + def set_LogPath(self,LogPath): + self.add_body_params('LogPath', LogPath) + + def get_TargetInstances(self): + return self.get_body_params().get('TargetInstances') + + def set_TargetInstances(self,TargetInstances): + self.add_body_params('TargetInstances', TargetInstances) + + def get_EnvId(self): + return self.get_body_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_body_params('EnvId', EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/GatherAppEnvStatsRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/GatherAppEnvStatsRequest.py new file mode 100644 index 0000000000..06d6d2ccf1 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/GatherAppEnvStatsRequest.py @@ -0,0 +1,45 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class GatherAppEnvStatsRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'GatherAppEnvStats','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/gatherStats') + 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_TargetInstances(self): + return self.get_body_params().get('TargetInstances') + + def set_TargetInstances(self,TargetInstances): + self.add_body_params('TargetInstances', TargetInstances) + + def get_EnvId(self): + return self.get_body_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_body_params('EnvId', EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/PauseChangeRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/PauseChangeRequest.py new file mode 100644 index 0000000000..884e1c31af --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/PauseChangeRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class PauseChangeRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'PauseChange','webx') + self.set_uri_pattern('/pop/v1/wam/change/pause') + 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_ChangeId(self): + return self.get_body_params().get('ChangeId') + + def set_ChangeId(self,ChangeId): + self.add_body_params('ChangeId', ChangeId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/RebuildAppEnvRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/RebuildAppEnvRequest.py new file mode 100644 index 0000000000..58ced0eb6c --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/RebuildAppEnvRequest.py @@ -0,0 +1,45 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class RebuildAppEnvRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'RebuildAppEnv','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/rebuild') + 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_DryRun(self): + return self.get_body_params().get('DryRun') + + def set_DryRun(self,DryRun): + self.add_body_params('DryRun', DryRun) + + def get_EnvId(self): + return self.get_body_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_body_params('EnvId', EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/RestartAppEnvRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/RestartAppEnvRequest.py new file mode 100644 index 0000000000..55143235fa --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/RestartAppEnvRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class RestartAppEnvRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'RestartAppEnv','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/restart') + 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_EnvId(self): + return self.get_body_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_body_params('EnvId', EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/ResumeChangeRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/ResumeChangeRequest.py new file mode 100644 index 0000000000..083bf27b90 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/ResumeChangeRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class ResumeChangeRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'ResumeChange','webx') + self.set_uri_pattern('/pop/v1/wam/change/resume') + 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_ChangeId(self): + return self.get_body_params().get('ChangeId') + + def set_ChangeId(self,ChangeId): + self.add_body_params('ChangeId', ChangeId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/StartAppEnvRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/StartAppEnvRequest.py new file mode 100644 index 0000000000..3431cf49ee --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/StartAppEnvRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class StartAppEnvRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'StartAppEnv','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/start') + 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_EnvId(self): + return self.get_body_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_body_params('EnvId', EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/StopAppEnvRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/StopAppEnvRequest.py new file mode 100644 index 0000000000..9881000888 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/StopAppEnvRequest.py @@ -0,0 +1,39 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class StopAppEnvRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'StopAppEnv','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/stop') + 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_EnvId(self): + return self.get_body_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_body_params('EnvId', EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/TerminateAppEnvRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/TerminateAppEnvRequest.py new file mode 100644 index 0000000000..72d8bbca95 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/TerminateAppEnvRequest.py @@ -0,0 +1,45 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class TerminateAppEnvRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'TerminateAppEnv','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv/terminate') + 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_DryRun(self): + return self.get_body_params().get('DryRun') + + def set_DryRun(self,DryRun): + self.add_body_params('DryRun', DryRun) + + def get_EnvId(self): + return self.get_body_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_body_params('EnvId', EnvId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/UpdateAppEnvRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/UpdateAppEnvRequest.py new file mode 100644 index 0000000000..3df6df67ce --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/UpdateAppEnvRequest.py @@ -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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class UpdateAppEnvRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'UpdateAppEnv','webx') + self.set_uri_pattern('/pop/v1/wam/appEnv') + self.set_method('PUT') + 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_OptionSettings(self): + return self.get_body_params().get('OptionSettings') + + def set_OptionSettings(self,OptionSettings): + self.add_body_params('OptionSettings', OptionSettings) + + def get_DryRun(self): + return self.get_body_params().get('DryRun') + + def set_DryRun(self,DryRun): + self.add_body_params('DryRun', DryRun) + + def get_StackId(self): + return self.get_body_params().get('StackId') + + def set_StackId(self,StackId): + self.add_body_params('StackId', StackId) + + def get_EnvDescription(self): + return self.get_body_params().get('EnvDescription') + + def set_EnvDescription(self,EnvDescription): + self.add_body_params('EnvDescription', EnvDescription) + + def get_EnvId(self): + return self.get_body_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_body_params('EnvId', EnvId) + + def get_PkgVersionId(self): + return self.get_body_params().get('PkgVersionId') + + def set_PkgVersionId(self,PkgVersionId): + self.add_body_params('PkgVersionId', PkgVersionId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/UpdateApplicationRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/UpdateApplicationRequest.py new file mode 100644 index 0000000000..75a0c8bc58 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/UpdateApplicationRequest.py @@ -0,0 +1,45 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class UpdateApplicationRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'UpdateApplication','webx') + self.set_uri_pattern('/pop/v1/wam/application') + self.set_method('PUT') + 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_AppDescription(self): + return self.get_body_params().get('AppDescription') + + def set_AppDescription(self,AppDescription): + self.add_body_params('AppDescription', AppDescription) + + def get_AppId(self): + return self.get_body_params().get('AppId') + + def set_AppId(self,AppId): + self.add_body_params('AppId', AppId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/UpdateConfigTemplateRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/UpdateConfigTemplateRequest.py new file mode 100644 index 0000000000..4715551203 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/UpdateConfigTemplateRequest.py @@ -0,0 +1,51 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class UpdateConfigTemplateRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'UpdateConfigTemplate','webx') + self.set_uri_pattern('/pop/v1/wam/configTemplate') + self.set_method('PUT') + 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_OptionSettings(self): + return self.get_body_params().get('OptionSettings') + + def set_OptionSettings(self,OptionSettings): + self.add_body_params('OptionSettings', OptionSettings) + + def get_TemplateId(self): + return self.get_body_params().get('TemplateId') + + def set_TemplateId(self,TemplateId): + self.add_body_params('TemplateId', TemplateId) + + def get_TemplateDescription(self): + return self.get_body_params().get('TemplateDescription') + + def set_TemplateDescription(self,TemplateDescription): + self.add_body_params('TemplateDescription', TemplateDescription) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/ValidateConfigSettingRequest.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/ValidateConfigSettingRequest.py new file mode 100644 index 0000000000..880591d396 --- /dev/null +++ b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/ValidateConfigSettingRequest.py @@ -0,0 +1,57 @@ +# 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 RoaRequest +from aliyunsdkwebplus.endpoint import endpoint_data + +class ValidateConfigSettingRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'WebPlus', '2019-03-20', 'ValidateConfigSetting','webx') + self.set_uri_pattern('/pop/v1/wam/config/configSetting/validate') + 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_OptionSettings(self): + return self.get_body_params().get('OptionSettings') + + def set_OptionSettings(self,OptionSettings): + self.add_body_params('OptionSettings', OptionSettings) + + def get_StackId(self): + return self.get_body_params().get('StackId') + + def set_StackId(self,StackId): + self.add_body_params('StackId', StackId) + + def get_EnvId(self): + return self.get_body_params().get('EnvId') + + def set_EnvId(self,EnvId): + self.add_body_params('EnvId', EnvId) + + def get_TemplateId(self): + return self.get_body_params().get('TemplateId') + + def set_TemplateId(self,TemplateId): + self.add_body_params('TemplateId', TemplateId) \ No newline at end of file diff --git a/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/__init__.py b/aliyun-python-sdk-webplus/aliyunsdkwebplus/request/v20190320/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-webplus/setup.py b/aliyun-python-sdk-webplus/setup.py new file mode 100644 index 0000000000..3926679115 --- /dev/null +++ b/aliyun-python-sdk-webplus/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for webplus. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkwebplus" +NAME = "aliyun-python-sdk-webplus" +DESCRIPTION = "The webplus module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","webplus"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-xspace/ChangeLog.txt b/aliyun-python-sdk-xspace/ChangeLog.txt new file mode 100644 index 0000000000..a81bb0ff1a --- /dev/null +++ b/aliyun-python-sdk-xspace/ChangeLog.txt @@ -0,0 +1,18 @@ +2019-03-19 Version: 1.2.1 +1, move fields: tag, associate_person, cid + +2019-03-19 Version: 1.2.1 +1, format fields: tags, associatePerson + +2019-03-18 Version: 1.2.0 +1, move AssociatePerson\Tag field +2, Optimize RealName field + +2019-03-12 Version: 1.1.1 +1, add agency infomation +2, update sdk core resources + +2019-03-11 Version: 1.1.1 +1, add agency infomation +2, update sdk core resources + diff --git a/aliyun-python-sdk-xspace/MANIFEST.in b/aliyun-python-sdk-xspace/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-xspace/README.rst b/aliyun-python-sdk-xspace/README.rst new file mode 100644 index 0000000000..db6010f535 --- /dev/null +++ b/aliyun-python-sdk-xspace/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-xspace +This is the xspace module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-xspace/aliyunsdkxspace/__init__.py b/aliyun-python-sdk-xspace/aliyunsdkxspace/__init__.py new file mode 100644 index 0000000000..42cf7cd54c --- /dev/null +++ b/aliyun-python-sdk-xspace/aliyunsdkxspace/__init__.py @@ -0,0 +1 @@ +__version__ = "1.2.1" \ No newline at end of file diff --git a/aliyun-python-sdk-xspace/aliyunsdkxspace/request/__init__.py b/aliyun-python-sdk-xspace/aliyunsdkxspace/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-xspace/aliyunsdkxspace/request/v20170720/QueryCustomerByIdRequest.py b/aliyun-python-sdk-xspace/aliyunsdkxspace/request/v20170720/QueryCustomerByIdRequest.py new file mode 100644 index 0000000000..fe91b12a25 --- /dev/null +++ b/aliyun-python-sdk-xspace/aliyunsdkxspace/request/v20170720/QueryCustomerByIdRequest.py @@ -0,0 +1,32 @@ +# 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 RoaRequest +class QueryCustomerByIdRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'xspace', '2017-07-20', 'QueryCustomerById') + self.set_uri_pattern('/customer') + self.set_method('PUT|POST|GET|DELETE') + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) \ No newline at end of file diff --git a/aliyun-python-sdk-xspace/aliyunsdkxspace/request/v20170720/QueryCustomerByPhoneRequest.py b/aliyun-python-sdk-xspace/aliyunsdkxspace/request/v20170720/QueryCustomerByPhoneRequest.py new file mode 100644 index 0000000000..706d2d8f30 --- /dev/null +++ b/aliyun-python-sdk-xspace/aliyunsdkxspace/request/v20170720/QueryCustomerByPhoneRequest.py @@ -0,0 +1,32 @@ +# 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 RoaRequest +class QueryCustomerByPhoneRequest(RoaRequest): + + def __init__(self): + RoaRequest.__init__(self, 'xspace', '2017-07-20', 'QueryCustomerByPhone') + self.set_uri_pattern('/customerbyphone') + self.set_method('POST|GET') + + def get_Phone(self): + return self.get_query_params().get('Phone') + + def set_Phone(self,Phone): + self.add_query_param('Phone',Phone) \ No newline at end of file diff --git a/aliyun-python-sdk-xspace/aliyunsdkxspace/request/v20170720/__init__.py b/aliyun-python-sdk-xspace/aliyunsdkxspace/request/v20170720/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-xspace/setup.py b/aliyun-python-sdk-xspace/setup.py new file mode 100644 index 0000000000..daa2dbba6e --- /dev/null +++ b/aliyun-python-sdk-xspace/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for xspace. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkxspace" +NAME = "aliyun-python-sdk-xspace" +DESCRIPTION = "The xspace module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","xspace"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/ChangeLog.txt b/aliyun-python-sdk-yundun-ds/ChangeLog.txt new file mode 100644 index 0000000000..7bf2804505 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-05-20 Version: 1.0.0 +1, Initial release of api, including data management api, rule configuration api and system configuration api. + diff --git a/aliyun-python-sdk-yundun-ds/MANIFEST.in b/aliyun-python-sdk-yundun-ds/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-yundun-ds/README.rst b/aliyun-python-sdk-yundun-ds/README.rst new file mode 100644 index 0000000000..639abee234 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-yundun-ds +This is the yundun-ds module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/__init__.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/__init__.py new file mode 100644 index 0000000000..d538f87eda --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/__init__.py @@ -0,0 +1 @@ +__version__ = "1.0.0" \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/__init__.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/CreateConfigRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/CreateConfigRequest.py new file mode 100644 index 0000000000..f6f66b34f7 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/CreateConfigRequest.py @@ -0,0 +1,66 @@ +# 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 +class CreateConfigRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'CreateConfig','sddp') + + def get_Code(self): + return self.get_query_params().get('Code') + + def set_Code(self,Code): + self.add_query_param('Code',Code) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Description(self): + return self.get_query_params().get('Description') + + def set_Description(self,Description): + self.add_query_param('Description',Description) + + def get_ConfigList(self): + return self.get_query_params().get('ConfigList') + + def set_ConfigList(self,ConfigList): + self.add_query_param('ConfigList',ConfigList) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Value(self): + return self.get_query_params().get('Value') + + def set_Value(self,Value): + self.add_query_param('Value',Value) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/CreateDataLimitRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/CreateDataLimitRequest.py new file mode 100644 index 0000000000..b8c7aa7d69 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/CreateDataLimitRequest.py @@ -0,0 +1,78 @@ +# 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 +class CreateDataLimitRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'CreateDataLimit','sddp') + + def get_Password(self): + return self.get_query_params().get('Password') + + def set_Password(self,Password): + self.add_query_param('Password',Password) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Connector(self): + return self.get_query_params().get('Connector') + + def set_Connector(self,Connector): + self.add_query_param('Connector',Connector) + + def get_DataLimitList(self): + return self.get_query_params().get('DataLimitList') + + def set_DataLimitList(self,DataLimitList): + self.add_query_param('DataLimitList',DataLimitList) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_ResourceType(self): + return self.get_query_params().get('ResourceType') + + def set_ResourceType(self,ResourceType): + self.add_query_param('ResourceType',ResourceType) + + def get_ServiceRegionId(self): + return self.get_query_params().get('ServiceRegionId') + + def set_ServiceRegionId(self,ServiceRegionId): + self.add_query_param('ServiceRegionId',ServiceRegionId) + + def get_ParentId(self): + return self.get_query_params().get('ParentId') + + def set_ParentId(self,ParentId): + self.add_query_param('ParentId',ParentId) + + def get_UserName(self): + return self.get_query_params().get('UserName') + + def set_UserName(self,UserName): + self.add_query_param('UserName',UserName) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/CreateRuleRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/CreateRuleRequest.py new file mode 100644 index 0000000000..67e317cc9a --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/CreateRuleRequest.py @@ -0,0 +1,72 @@ +# 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 +class CreateRuleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'CreateRule','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_RiskLevelId(self): + return self.get_query_params().get('RiskLevelId') + + def set_RiskLevelId(self,RiskLevelId): + self.add_query_param('RiskLevelId',RiskLevelId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_CustomType(self): + return self.get_query_params().get('CustomType') + + def set_CustomType(self,CustomType): + self.add_query_param('CustomType',CustomType) + + def get_Category(self): + return self.get_query_params().get('Category') + + def set_Category(self,Category): + self.add_query_param('Category',Category) + + def get_Content(self): + return self.get_query_params().get('Content') + + def set_Content(self,Content): + self.add_query_param('Content',Content) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/CreateUserAuthRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/CreateUserAuthRequest.py new file mode 100644 index 0000000000..17600096fb --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/CreateUserAuthRequest.py @@ -0,0 +1,54 @@ +# 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 +class CreateUserAuthRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'CreateUserAuth','sddp') + + def get_AccountId(self): + return self.get_query_params().get('AccountId') + + def set_AccountId(self,AccountId): + self.add_query_param('AccountId',AccountId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_AccessKey(self): + return self.get_query_params().get('AccessKey') + + def set_AccessKey(self,AccessKey): + self.add_query_param('AccessKey',AccessKey) + + def get_AccessKeySecret(self): + return self.get_query_params().get('AccessKeySecret') + + def set_AccessKeySecret(self,AccessKeySecret): + self.add_query_param('AccessKeySecret',AccessKeySecret) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DeleteDataLimitRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DeleteDataLimitRequest.py new file mode 100644 index 0000000000..7b9ada6d6c --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DeleteDataLimitRequest.py @@ -0,0 +1,48 @@ +# 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 +class DeleteDataLimitRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DeleteDataLimit','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DeleteRuleRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DeleteRuleRequest.py new file mode 100644 index 0000000000..1388eecb94 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DeleteRuleRequest.py @@ -0,0 +1,48 @@ +# 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 +class DeleteRuleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DeleteRule','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeAccountDetailRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeAccountDetailRequest.py new file mode 100644 index 0000000000..bdcc6c8edc --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeAccountDetailRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeAccountDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeAccountDetail','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_UserId(self): + return self.get_query_params().get('UserId') + + def set_UserId(self,UserId): + self.add_query_param('UserId',UserId) + + def get_AccountTypeId(self): + return self.get_query_params().get('AccountTypeId') + + def set_AccountTypeId(self,AccountTypeId): + self.add_query_param('AccountTypeId',AccountTypeId) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeAccountsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeAccountsRequest.py new file mode 100644 index 0000000000..98109d3281 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeAccountsRequest.py @@ -0,0 +1,114 @@ +# 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 +class DescribeAccountsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeAccounts','sddp') + + def get_ProductCode(self): + return self.get_query_params().get('ProductCode') + + def set_ProductCode(self,ProductCode): + self.add_query_param('ProductCode',ProductCode) + + def get_LoginName(self): + return self.get_query_params().get('LoginName') + + def set_LoginName(self,LoginName): + self.add_query_param('LoginName',LoginName) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_ColumnId(self): + return self.get_query_params().get('ColumnId') + + def set_ColumnId(self,ColumnId): + self.add_query_param('ColumnId',ColumnId) + + def get_PackageId(self): + return self.get_query_params().get('PackageId') + + def set_PackageId(self,PackageId): + self.add_query_param('PackageId',PackageId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_DepartId(self): + return self.get_query_params().get('DepartId') + + def set_DepartId(self,DepartId): + self.add_query_param('DepartId',DepartId) + + def get_OperationId(self): + return self.get_query_params().get('OperationId') + + def set_OperationId(self,OperationId): + self.add_query_param('OperationId',OperationId) + + def get_TableId(self): + return self.get_query_params().get('TableId') + + def set_TableId(self,TableId): + self.add_query_param('TableId',TableId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Key(self): + return self.get_query_params().get('Key') + + def set_Key(self,Key): + self.add_query_param('Key',Key) + + def get_QueryType(self): + return self.get_query_params().get('QueryType') + + def set_QueryType(self,QueryType): + self.add_query_param('QueryType',QueryType) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeAuthAccountsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeAuthAccountsRequest.py new file mode 100644 index 0000000000..3410b68bde --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeAuthAccountsRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeAuthAccountsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeAuthAccounts','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeColumnsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeColumnsRequest.py new file mode 100644 index 0000000000..2e53b9080c --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeColumnsRequest.py @@ -0,0 +1,84 @@ +# 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 +class DescribeColumnsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeColumns','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_RiskLevels(self): + return self.get_query_params().get('RiskLevels') + + def set_RiskLevels(self,RiskLevels): + self.add_query_param('RiskLevels',RiskLevels) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_TableId(self): + return self.get_query_params().get('TableId') + + def set_TableId(self,TableId): + self.add_query_param('TableId',TableId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_QueryName(self): + return self.get_query_params().get('QueryName') + + def set_QueryName(self,QueryName): + self.add_query_param('QueryName',QueryName) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_RuleId(self): + return self.get_query_params().get('RuleId') + + def set_RuleId(self,RuleId): + self.add_query_param('RuleId',RuleId) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeConditionsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeConditionsRequest.py new file mode 100644 index 0000000000..f831112f6c --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeConditionsRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeConditionsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeConditions','sddp') + + def get_ProductCode(self): + return self.get_query_params().get('ProductCode') + + def set_ProductCode(self,ProductCode): + self.add_query_param('ProductCode',ProductCode) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_SearchType(self): + return self.get_query_params().get('SearchType') + + def set_SearchType(self,SearchType): + self.add_query_param('SearchType',SearchType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_QueryType(self): + return self.get_query_params().get('QueryType') + + def set_QueryType(self,QueryType): + self.add_query_param('QueryType',QueryType) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeConfigsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeConfigsRequest.py new file mode 100644 index 0000000000..f82364046a --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeConfigsRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeConfigsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeConfigs','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataAssetsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataAssetsRequest.py new file mode 100644 index 0000000000..2711e36027 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataAssetsRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeDataAssetsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeDataAssets','sddp') + + def get_RangeId(self): + return self.get_query_params().get('RangeId') + + def set_RangeId(self,RangeId): + self.add_query_param('RangeId',RangeId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_RiskLevels(self): + return self.get_query_params().get('RiskLevels') + + def set_RiskLevels(self,RiskLevels): + self.add_query_param('RiskLevels',RiskLevels) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_RuleId(self): + return self.get_query_params().get('RuleId') + + def set_RuleId(self,RuleId): + self.add_query_param('RuleId',RuleId) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataCountsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataCountsRequest.py new file mode 100644 index 0000000000..74a2cab6c3 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataCountsRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeDataCountsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeDataCounts','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataHubConnectorsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataHubConnectorsRequest.py new file mode 100644 index 0000000000..c0aa535cca --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataHubConnectorsRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeDataHubConnectorsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeDataHubConnectors','sddp') + + def get_TopicId(self): + return self.get_query_params().get('TopicId') + + def set_TopicId(self,TopicId): + self.add_query_param('TopicId',TopicId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_DepartId(self): + return self.get_query_params().get('DepartId') + + def set_DepartId(self,DepartId): + self.add_query_param('DepartId',DepartId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_ProjectId(self): + return self.get_query_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_query_param('ProjectId',ProjectId) + + def get_Key(self): + return self.get_query_params().get('Key') + + def set_Key(self,Key): + self.add_query_param('Key',Key) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataHubProjectsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataHubProjectsRequest.py new file mode 100644 index 0000000000..918b84064b --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataHubProjectsRequest.py @@ -0,0 +1,72 @@ +# 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 +class DescribeDataHubProjectsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeDataHubProjects','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_DepartId(self): + return self.get_query_params().get('DepartId') + + def set_DepartId(self,DepartId): + self.add_query_param('DepartId',DepartId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Key(self): + return self.get_query_params().get('Key') + + def set_Key(self,Key): + self.add_query_param('Key',Key) + + def get_QueryType(self): + return self.get_query_params().get('QueryType') + + def set_QueryType(self,QueryType): + self.add_query_param('QueryType',QueryType) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataHubSubscriptionsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataHubSubscriptionsRequest.py new file mode 100644 index 0000000000..34ada14574 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataHubSubscriptionsRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribeDataHubSubscriptionsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeDataHubSubscriptions','sddp') + + def get_TopicId(self): + return self.get_query_params().get('TopicId') + + def set_TopicId(self,TopicId): + self.add_query_param('TopicId',TopicId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_DepartId(self): + return self.get_query_params().get('DepartId') + + def set_DepartId(self,DepartId): + self.add_query_param('DepartId',DepartId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_ProjectId(self): + return self.get_query_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_query_param('ProjectId',ProjectId) + + def get_Key(self): + return self.get_query_params().get('Key') + + def set_Key(self,Key): + self.add_query_param('Key',Key) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataHubTopicsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataHubTopicsRequest.py new file mode 100644 index 0000000000..ece3a78ab2 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataHubTopicsRequest.py @@ -0,0 +1,72 @@ +# 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 +class DescribeDataHubTopicsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeDataHubTopics','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_DepartId(self): + return self.get_query_params().get('DepartId') + + def set_DepartId(self,DepartId): + self.add_query_param('DepartId',DepartId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_ProjectId(self): + return self.get_query_params().get('ProjectId') + + def set_ProjectId(self,ProjectId): + self.add_query_param('ProjectId',ProjectId) + + def get_Key(self): + return self.get_query_params().get('Key') + + def set_Key(self,Key): + self.add_query_param('Key',Key) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataLimitSetRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataLimitSetRequest.py new file mode 100644 index 0000000000..caa7b2af36 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataLimitSetRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeDataLimitSetRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeDataLimitSet','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_ResourceType(self): + return self.get_query_params().get('ResourceType') + + def set_ResourceType(self,ResourceType): + self.add_query_param('ResourceType',ResourceType) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataTotalCountRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataTotalCountRequest.py new file mode 100644 index 0000000000..b92a5f7b06 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDataTotalCountRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeDataTotalCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeDataTotalCount','sddp') + + def get_ProductCode(self): + return self.get_query_params().get('ProductCode') + + def set_ProductCode(self,ProductCode): + self.add_query_param('ProductCode',ProductCode) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_CountType(self): + return self.get_query_params().get('CountType') + + def set_CountType(self,CountType): + self.add_query_param('CountType',CountType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDepartCountsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDepartCountsRequest.py new file mode 100644 index 0000000000..719bf5fad1 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDepartCountsRequest.py @@ -0,0 +1,66 @@ +# 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 +class DescribeDepartCountsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeDepartCounts','sddp') + + def get_TypeCode(self): + return self.get_query_params().get('TypeCode') + + def set_TypeCode(self,TypeCode): + self.add_query_param('TypeCode',TypeCode) + + def get_DepartName(self): + return self.get_query_params().get('DepartName') + + def set_DepartName(self,DepartName): + self.add_query_param('DepartName',DepartName) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDepartTotalCountRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDepartTotalCountRequest.py new file mode 100644 index 0000000000..c4f9f65317 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDepartTotalCountRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeDepartTotalCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeDepartTotalCount','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDepartsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDepartsRequest.py new file mode 100644 index 0000000000..387228533d --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeDepartsRequest.py @@ -0,0 +1,66 @@ +# 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 +class DescribeDepartsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeDeparts','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_AccountType(self): + return self.get_query_params().get('AccountType') + + def set_AccountType(self,AccountType): + self.add_query_param('AccountType',AccountType) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Key(self): + return self.get_query_params().get('Key') + + def set_Key(self,Key): + self.add_query_param('Key',Key) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventCountsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventCountsRequest.py new file mode 100644 index 0000000000..8f916e0b2b --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventCountsRequest.py @@ -0,0 +1,60 @@ +# 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 +class DescribeEventCountsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeEventCounts','sddp') + + def get_TypeCode(self): + return self.get_query_params().get('TypeCode') + + def set_TypeCode(self,TypeCode): + self.add_query_param('TypeCode',TypeCode) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_CountType(self): + return self.get_query_params().get('CountType') + + def set_CountType(self,CountType): + self.add_query_param('CountType',CountType) + + def get_Days(self): + return self.get_query_params().get('Days') + + def set_Days(self,Days): + self.add_query_param('Days',Days) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventDetailRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventDetailRequest.py new file mode 100644 index 0000000000..d34260da48 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventDetailRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeEventDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeEventDetail','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventTotalCountRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventTotalCountRequest.py new file mode 100644 index 0000000000..25bccb1a1d --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventTotalCountRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeEventTotalCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeEventTotalCount','sddp') + + def get_TypeCode(self): + return self.get_query_params().get('TypeCode') + + def set_TypeCode(self,TypeCode): + self.add_query_param('TypeCode',TypeCode) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_CountType(self): + return self.get_query_params().get('CountType') + + def set_CountType(self,CountType): + self.add_query_param('CountType',CountType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventTypesRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventTypesRequest.py new file mode 100644 index 0000000000..d6a3e2bf74 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventTypesRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeEventTypesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeEventTypes','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ParentTypeId(self): + return self.get_query_params().get('ParentTypeId') + + def set_ParentTypeId(self,ParentTypeId): + self.add_query_param('ParentTypeId',ParentTypeId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventsRequest.py new file mode 100644 index 0000000000..67188f482c --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeEventsRequest.py @@ -0,0 +1,102 @@ +# 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 +class DescribeEventsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeEvents','sddp') + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_EndTime(self): + return self.get_query_params().get('EndTime') + + def set_EndTime(self,EndTime): + self.add_query_param('EndTime',EndTime) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_StartTime(self): + return self.get_query_params().get('StartTime') + + def set_StartTime(self,StartTime): + self.add_query_param('StartTime',StartTime) + + def get_UserId(self): + return self.get_query_params().get('UserId') + + def set_UserId(self,UserId): + self.add_query_param('UserId',UserId) + + def get_TypeCode(self): + return self.get_query_params().get('TypeCode') + + def set_TypeCode(self,TypeCode): + self.add_query_param('TypeCode',TypeCode) + + def get_SubTypeCode(self): + return self.get_query_params().get('SubTypeCode') + + def set_SubTypeCode(self,SubTypeCode): + self.add_query_param('SubTypeCode',SubTypeCode) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_DepartId(self): + return self.get_query_params().get('DepartId') + + def set_DepartId(self,DepartId): + self.add_query_param('DepartId',DepartId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_DealUserId(self): + return self.get_query_params().get('DealUserId') + + def set_DealUserId(self,DealUserId): + self.add_query_param('DealUserId',DealUserId) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeFlowTotalCountRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeFlowTotalCountRequest.py new file mode 100644 index 0000000000..17f0692460 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeFlowTotalCountRequest.py @@ -0,0 +1,54 @@ +# 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 +class DescribeFlowTotalCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeFlowTotalCount','sddp') + + def get_ProductCode(self): + return self.get_query_params().get('ProductCode') + + def set_ProductCode(self,ProductCode): + self.add_query_param('ProductCode',ProductCode) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_DepartId(self): + return self.get_query_params().get('DepartId') + + def set_DepartId(self,DepartId): + self.add_query_param('DepartId',DepartId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeInstancesRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeInstancesRequest.py new file mode 100644 index 0000000000..8c2815e46d --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeInstancesRequest.py @@ -0,0 +1,96 @@ +# 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 +class DescribeInstancesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeInstances','sddp') + + def get_ProductCode(self): + return self.get_query_params().get('ProductCode') + + def set_ProductCode(self,ProductCode): + self.add_query_param('ProductCode',ProductCode) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ProductId(self): + return self.get_query_params().get('ProductId') + + def set_ProductId(self,ProductId): + self.add_query_param('ProductId',ProductId) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_QueryName(self): + return self.get_query_params().get('QueryName') + + def set_QueryName(self,QueryName): + self.add_query_param('QueryName',QueryName) + + def get_RiskLevelId(self): + return self.get_query_params().get('RiskLevelId') + + def set_RiskLevelId(self,RiskLevelId): + self.add_query_param('RiskLevelId',RiskLevelId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_RuleId(self): + return self.get_query_params().get('RuleId') + + def set_RuleId(self,RuleId): + self.add_query_param('RuleId',RuleId) + + def get_QueryType(self): + return self.get_query_params().get('QueryType') + + def set_QueryType(self,QueryType): + self.add_query_param('QueryType',QueryType) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeOssObjectDetailRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeOssObjectDetailRequest.py new file mode 100644 index 0000000000..db76d4ecdb --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeOssObjectDetailRequest.py @@ -0,0 +1,48 @@ +# 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 +class DescribeOssObjectDetailRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeOssObjectDetail','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeOssObjectsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeOssObjectsRequest.py new file mode 100644 index 0000000000..43b2adee3d --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeOssObjectsRequest.py @@ -0,0 +1,84 @@ +# 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 +class DescribeOssObjectsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeOssObjects','sddp') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_QueryName(self): + return self.get_query_params().get('QueryName') + + def set_QueryName(self,QueryName): + self.add_query_param('QueryName',QueryName) + + def get_RiskLevelId(self): + return self.get_query_params().get('RiskLevelId') + + def set_RiskLevelId(self,RiskLevelId): + self.add_query_param('RiskLevelId',RiskLevelId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_RuleId(self): + return self.get_query_params().get('RuleId') + + def set_RuleId(self,RuleId): + self.add_query_param('RuleId',RuleId) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribePackagesRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribePackagesRequest.py new file mode 100644 index 0000000000..59c5a17e31 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribePackagesRequest.py @@ -0,0 +1,96 @@ +# 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 +class DescribePackagesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribePackages','sddp') + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_ProductId(self): + return self.get_query_params().get('ProductId') + + def set_ProductId(self,ProductId): + self.add_query_param('ProductId',ProductId) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_QueryName(self): + return self.get_query_params().get('QueryName') + + def set_QueryName(self,QueryName): + self.add_query_param('QueryName',QueryName) + + def get_RiskLevelId(self): + return self.get_query_params().get('RiskLevelId') + + def set_RiskLevelId(self,RiskLevelId): + self.add_query_param('RiskLevelId',RiskLevelId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_RuleId(self): + return self.get_query_params().get('RuleId') + + def set_RuleId(self,RuleId): + self.add_query_param('RuleId',RuleId) + + def get_QueryType(self): + return self.get_query_params().get('QueryType') + + def set_QueryType(self,QueryType): + self.add_query_param('QueryType',QueryType) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribePrivilegesRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribePrivilegesRequest.py new file mode 100644 index 0000000000..e0e7815e53 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribePrivilegesRequest.py @@ -0,0 +1,78 @@ +# 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 +class DescribePrivilegesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribePrivileges','sddp') + + def get_AccountId(self): + return self.get_query_params().get('AccountId') + + def set_AccountId(self,AccountId): + self.add_query_param('AccountId',AccountId) + + def get_UseAccountId(self): + return self.get_query_params().get('UseAccountId') + + def set_UseAccountId(self,UseAccountId): + self.add_query_param('UseAccountId',UseAccountId) + + def get_DataTypeIds(self): + return self.get_query_params().get('DataTypeIds') + + def set_DataTypeIds(self,DataTypeIds): + self.add_query_param('DataTypeIds',DataTypeIds) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Key(self): + return self.get_query_params().get('Key') + + def set_Key(self,Key): + self.add_query_param('Key',Key) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeRuleTotalCountRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeRuleTotalCountRequest.py new file mode 100644 index 0000000000..d93923c04b --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeRuleTotalCountRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeRuleTotalCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeRuleTotalCount','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeRulesRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeRulesRequest.py new file mode 100644 index 0000000000..cc5f8fa980 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeRulesRequest.py @@ -0,0 +1,72 @@ +# 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 +class DescribeRulesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeRules','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_RiskLevelId(self): + return self.get_query_params().get('RiskLevelId') + + def set_RiskLevelId(self,RiskLevelId): + self.add_query_param('RiskLevelId',RiskLevelId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_CustomType(self): + return self.get_query_params().get('CustomType') + + def set_CustomType(self,CustomType): + self.add_query_param('CustomType',CustomType) + + def get_Category(self): + return self.get_query_params().get('Category') + + def set_Category(self,Category): + self.add_query_param('Category',Category) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeTablesRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeTablesRequest.py new file mode 100644 index 0000000000..08ae60faa5 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeTablesRequest.py @@ -0,0 +1,102 @@ +# 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 +class DescribeTablesRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeTables','sddp') + + def get_ProductId(self): + return self.get_query_params().get('ProductId') + + def set_ProductId(self,ProductId): + self.add_query_param('ProductId',ProductId) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_PackageId(self): + return self.get_query_params().get('PackageId') + + def set_PackageId(self,PackageId): + self.add_query_param('PackageId',PackageId) + + def get_CurrentPage(self): + return self.get_query_params().get('CurrentPage') + + def set_CurrentPage(self,CurrentPage): + self.add_query_param('CurrentPage',CurrentPage) + + def get_QueryName(self): + return self.get_query_params().get('QueryName') + + def set_QueryName(self,QueryName): + self.add_query_param('QueryName',QueryName) + + def get_RiskLevelId(self): + return self.get_query_params().get('RiskLevelId') + + def set_RiskLevelId(self,RiskLevelId): + self.add_query_param('RiskLevelId',RiskLevelId) + + def get_InstanceId(self): + return self.get_query_params().get('InstanceId') + + def set_InstanceId(self,InstanceId): + self.add_query_param('InstanceId',InstanceId) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_PageSize(self): + return self.get_query_params().get('PageSize') + + def set_PageSize(self,PageSize): + self.add_query_param('PageSize',PageSize) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_RuleId(self): + return self.get_query_params().get('RuleId') + + def set_RuleId(self,RuleId): + self.add_query_param('RuleId',RuleId) + + def get_QueryType(self): + return self.get_query_params().get('QueryType') + + def set_QueryType(self,QueryType): + self.add_query_param('QueryType',QueryType) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeTotalCountRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeTotalCountRequest.py new file mode 100644 index 0000000000..305594e1c3 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeTotalCountRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeTotalCountRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeTotalCount','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeTransferEventCountsRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeTransferEventCountsRequest.py new file mode 100644 index 0000000000..45fb249fec --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeTransferEventCountsRequest.py @@ -0,0 +1,42 @@ +# 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 +class DescribeTransferEventCountsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeTransferEventCounts','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeUserStatusRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeUserStatusRequest.py new file mode 100644 index 0000000000..7478dfe7e0 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/DescribeUserStatusRequest.py @@ -0,0 +1,36 @@ +# 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 +class DescribeUserStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'DescribeUserStatus','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyDefaultLevelRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyDefaultLevelRequest.py new file mode 100644 index 0000000000..da014f0f7e --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyDefaultLevelRequest.py @@ -0,0 +1,54 @@ +# 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 +class ModifyDefaultLevelRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'ModifyDefaultLevel','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_DefaultId(self): + return self.get_query_params().get('DefaultId') + + def set_DefaultId(self,DefaultId): + self.add_query_param('DefaultId',DefaultId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_SensitiveIds(self): + return self.get_query_params().get('SensitiveIds') + + def set_SensitiveIds(self,SensitiveIds): + self.add_query_param('SensitiveIds',SensitiveIds) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyEventStatusRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyEventStatusRequest.py new file mode 100644 index 0000000000..b242748c6f --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyEventStatusRequest.py @@ -0,0 +1,66 @@ +# 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 +class ModifyEventStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'ModifyEventStatus','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Backed(self): + return self.get_query_params().get('Backed') + + def set_Backed(self,Backed): + self.add_query_param('Backed',Backed) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_DealReason(self): + return self.get_query_params().get('DealReason') + + def set_DealReason(self,DealReason): + self.add_query_param('DealReason',DealReason) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyEventTypeStatusRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyEventTypeStatusRequest.py new file mode 100644 index 0000000000..d247ccec92 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyEventTypeStatusRequest.py @@ -0,0 +1,42 @@ +# 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 +class ModifyEventTypeStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'ModifyEventTypeStatus','sddp') + + def get_SubTypeIds(self): + return self.get_query_params().get('SubTypeIds') + + def set_SubTypeIds(self,SubTypeIds): + self.add_query_param('SubTypeIds',SubTypeIds) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyRuleRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyRuleRequest.py new file mode 100644 index 0000000000..619e358bf6 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyRuleRequest.py @@ -0,0 +1,78 @@ +# 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 +class ModifyRuleRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'ModifyRule','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Name(self): + return self.get_query_params().get('Name') + + def set_Name(self,Name): + self.add_query_param('Name',Name) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_RiskLevelId(self): + return self.get_query_params().get('RiskLevelId') + + def set_RiskLevelId(self,RiskLevelId): + self.add_query_param('RiskLevelId',RiskLevelId) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_CustomType(self): + return self.get_query_params().get('CustomType') + + def set_CustomType(self,CustomType): + self.add_query_param('CustomType',CustomType) + + def get_Category(self): + return self.get_query_params().get('Category') + + def set_Category(self,Category): + self.add_query_param('Category',Category) + + def get_Content(self): + return self.get_query_params().get('Content') + + def set_Content(self,Content): + self.add_query_param('Content',Content) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyRuleStatusRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyRuleStatusRequest.py new file mode 100644 index 0000000000..035fe6e539 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ModifyRuleStatusRequest.py @@ -0,0 +1,54 @@ +# 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 +class ModifyRuleStatusRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'ModifyRuleStatus','sddp') + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_FeatureType(self): + return self.get_query_params().get('FeatureType') + + def set_FeatureType(self,FeatureType): + self.add_query_param('FeatureType',FeatureType) + + def get_Id(self): + return self.get_query_params().get('Id') + + def set_Id(self,Id): + self.add_query_param('Id',Id) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_Status(self): + return self.get_query_params().get('Status') + + def set_Status(self,Status): + self.add_query_param('Status',Status) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ValidateConnectorRequest.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ValidateConnectorRequest.py new file mode 100644 index 0000000000..4e9d1ef398 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/ValidateConnectorRequest.py @@ -0,0 +1,72 @@ +# 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 +class ValidateConnectorRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun-ds', '2019-01-03', 'ValidateConnector','sddp') + + def get_Password(self): + return self.get_query_params().get('Password') + + def set_Password(self,Password): + self.add_query_param('Password',Password) + + def get_SourceIp(self): + return self.get_query_params().get('SourceIp') + + def set_SourceIp(self,SourceIp): + self.add_query_param('SourceIp',SourceIp) + + def get_Connector(self): + return self.get_query_params().get('Connector') + + def set_Connector(self,Connector): + self.add_query_param('Connector',Connector) + + def get_Lang(self): + return self.get_query_params().get('Lang') + + def set_Lang(self,Lang): + self.add_query_param('Lang',Lang) + + def get_ResourceType(self): + return self.get_query_params().get('ResourceType') + + def set_ResourceType(self,ResourceType): + self.add_query_param('ResourceType',ResourceType) + + def get_ServiceRegionId(self): + return self.get_query_params().get('ServiceRegionId') + + def set_ServiceRegionId(self,ServiceRegionId): + self.add_query_param('ServiceRegionId',ServiceRegionId) + + def get_ParentId(self): + return self.get_query_params().get('ParentId') + + def set_ParentId(self,ParentId): + self.add_query_param('ParentId',ParentId) + + def get_UserName(self): + return self.get_query_params().get('UserName') + + def set_UserName(self,UserName): + self.add_query_param('UserName',UserName) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/__init__.py b/aliyun-python-sdk-yundun-ds/aliyunsdkyundun_ds/request/v20190103/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-yundun-ds/setup.py b/aliyun-python-sdk-yundun-ds/setup.py new file mode 100644 index 0000000000..051d56f166 --- /dev/null +++ b/aliyun-python-sdk-yundun-ds/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for yundun-ds. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkyundun_ds" +NAME = "aliyun-python-sdk-yundun-ds" +DESCRIPTION = "The yundun-ds module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","yundun-ds"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/ChangeLog.txt b/aliyun-python-sdk-yundun/ChangeLog.txt new file mode 100644 index 0000000000..2fd5dc25c1 --- /dev/null +++ b/aliyun-python-sdk-yundun/ChangeLog.txt @@ -0,0 +1,3 @@ +2019-03-15 Version: 2.1.4 +1, Update Dependency + diff --git a/aliyun-python-sdk-yundun/MANIFEST.in b/aliyun-python-sdk-yundun/MANIFEST.in new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-yundun/README.rst b/aliyun-python-sdk-yundun/README.rst new file mode 100644 index 0000000000..19e9ed19cb --- /dev/null +++ b/aliyun-python-sdk-yundun/README.rst @@ -0,0 +1,11 @@ +aliyun-python-sdk-yundun +This is the yundun module of Aliyun Python SDK. + +Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services. + +This module works on Python versions: + +2.6.5 and greater +Documentation: + +Please visit http://develop.aliyun.com/sdk/python \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/__init__.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/__init__.py new file mode 100644 index 0000000000..9e07a2e6d7 --- /dev/null +++ b/aliyun-python-sdk-yundun/aliyunsdkyundun/__init__.py @@ -0,0 +1 @@ +__version__ = "2.1.4" \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/request/__init__.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/AllMalwareNumRequest.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/AllMalwareNumRequest.py new file mode 100644 index 0000000000..8175d30c25 --- /dev/null +++ b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/AllMalwareNumRequest.py @@ -0,0 +1,24 @@ +# 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 +class AllMalwareNumRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun', '2015-02-27', 'AllMalwareNum','yundun') \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/CurrentDdosAttackNumRequest.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/CurrentDdosAttackNumRequest.py new file mode 100644 index 0000000000..e8cf574e0e --- /dev/null +++ b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/CurrentDdosAttackNumRequest.py @@ -0,0 +1,24 @@ +# 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 +class CurrentDdosAttackNumRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun', '2015-02-27', 'CurrentDdosAttackNum','yundun') \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayAegisOnlineRateRequest.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayAegisOnlineRateRequest.py new file mode 100644 index 0000000000..d1ff4ef993 --- /dev/null +++ b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayAegisOnlineRateRequest.py @@ -0,0 +1,24 @@ +# 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 +class TodayAegisOnlineRateRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun', '2015-02-27', 'TodayAegisOnlineRate','yundun') \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayAllkbpsRequest.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayAllkbpsRequest.py new file mode 100644 index 0000000000..0a20015bd7 --- /dev/null +++ b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayAllkbpsRequest.py @@ -0,0 +1,24 @@ +# 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 +class TodayAllkbpsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun', '2015-02-27', 'TodayAllkbps','yundun') \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayAllppsRequest.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayAllppsRequest.py new file mode 100644 index 0000000000..e81e3d070b --- /dev/null +++ b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayAllppsRequest.py @@ -0,0 +1,24 @@ +# 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 +class TodayAllppsRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun', '2015-02-27', 'TodayAllpps','yundun') \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayBackdoorRequest.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayBackdoorRequest.py new file mode 100644 index 0000000000..63cd8db51d --- /dev/null +++ b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayBackdoorRequest.py @@ -0,0 +1,24 @@ +# 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 +class TodayBackdoorRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun', '2015-02-27', 'TodayBackdoor','yundun') \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayCrackInterceptRequest.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayCrackInterceptRequest.py new file mode 100644 index 0000000000..afc5f69088 --- /dev/null +++ b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayCrackInterceptRequest.py @@ -0,0 +1,24 @@ +# 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 +class TodayCrackInterceptRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun', '2015-02-27', 'TodayCrackIntercept','yundun') \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayMalwareNumRequest.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayMalwareNumRequest.py new file mode 100644 index 0000000000..fdca84ba83 --- /dev/null +++ b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayMalwareNumRequest.py @@ -0,0 +1,24 @@ +# 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 +class TodayMalwareNumRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun', '2015-02-27', 'TodayMalwareNum','yundun') \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayqpsByRegionRequest.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayqpsByRegionRequest.py new file mode 100644 index 0000000000..9ee2940d38 --- /dev/null +++ b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/TodayqpsByRegionRequest.py @@ -0,0 +1,24 @@ +# 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 +class TodayqpsByRegionRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun', '2015-02-27', 'TodayqpsByRegion','yundun') \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/WebAttackNumRequest.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/WebAttackNumRequest.py new file mode 100644 index 0000000000..28882b28cb --- /dev/null +++ b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/WebAttackNumRequest.py @@ -0,0 +1,24 @@ +# 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 +class WebAttackNumRequest(RpcRequest): + + def __init__(self): + RpcRequest.__init__(self, 'Yundun', '2015-02-27', 'WebAttackNum','yundun') \ No newline at end of file diff --git a/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/__init__.py b/aliyun-python-sdk-yundun/aliyunsdkyundun/request/v20150227/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/aliyun-python-sdk-yundun/setup.py b/aliyun-python-sdk-yundun/setup.py new file mode 100644 index 0000000000..ab144abf85 --- /dev/null +++ b/aliyun-python-sdk-yundun/setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/python +''' + 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 setuptools import setup, find_packages +import os +import sys + +""" +setup module for yundun. + +Created on 7/3/2015 + +@author: alex +""" + +PACKAGE = "aliyunsdkyundun" +NAME = "aliyun-python-sdk-yundun" +DESCRIPTION = "The yundun module of Aliyun Python sdk." +AUTHOR = "Aliyun" +AUTHOR_EMAIL = "aliyun-developers-efficiency@list.alibaba-inc.com" +URL = "http://develop.aliyun.com/sdk/python" + +TOPDIR = os.path.dirname(__file__) or "." +VERSION = __import__(PACKAGE).__version__ + +desc_file = open("README.rst") +try: + LONG_DESCRIPTION = desc_file.read() +finally: + desc_file.close() + +setup( + name=NAME, + version=VERSION, + description=DESCRIPTION, + long_description=LONG_DESCRIPTION, + author=AUTHOR, + author_email=AUTHOR_EMAIL, + license="Apache", + url=URL, + keywords=["aliyun","sdk","yundun"], + packages=find_packages(exclude=["tests*"]), + include_package_data=True, + platforms="any", + install_requires=["aliyun-python-sdk-core>=2.11.5",], + classifiers=( + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development", + ) + +) \ No newline at end of file pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy