Skip to content

Commit c22f7c1

Browse files
committed
DOMAIN-INTL SDK Auto Released By huizeng.zh,Version:1.5.0
发布日志: 1, Add a new api, QueryDomainByDomainName.
1 parent 6a7e29d commit c22f7c1

19 files changed

+706
-9
lines changed

aliyun-python-sdk-domain-intl/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-04-23 Version: 1.5.0
2+
1, Add a new api, QueryDomainByDomainName.
3+
14
2018-12-20 Version: 1.4.0
25
1, Add Dns Sec apis.
36
2, Add coupon and promotion fields for order apis.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.4.0"
1+
__version__ = "1.5.0"
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class CancelDomainVerificationRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'CancelDomainVerification','domain')
25+
26+
def get_ActionType(self):
27+
return self.get_query_params().get('ActionType')
28+
29+
def set_ActionType(self,ActionType):
30+
self.add_query_param('ActionType',ActionType)
31+
32+
def get_InstanceId(self):
33+
return self.get_query_params().get('InstanceId')
34+
35+
def set_InstanceId(self,InstanceId):
36+
self.add_query_param('InstanceId',InstanceId)
37+
38+
def get_UserClientIp(self):
39+
return self.get_query_params().get('UserClientIp')
40+
41+
def set_UserClientIp(self,UserClientIp):
42+
self.add_query_param('UserClientIp',UserClientIp)
43+
44+
def get_Lang(self):
45+
return self.get_query_params().get('Lang')
46+
47+
def set_Lang(self,Lang):
48+
self.add_query_param('Lang',Lang)
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class QueryDomainByDomainNameRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryDomainByDomainName','domain')
25+
26+
def get_UserClientIp(self):
27+
return self.get_query_params().get('UserClientIp')
28+
29+
def set_UserClientIp(self,UserClientIp):
30+
self.add_query_param('UserClientIp',UserClientIp)
31+
32+
def get_DomainName(self):
33+
return self.get_query_params().get('DomainName')
34+
35+
def set_DomainName(self,DomainName):
36+
self.add_query_param('DomainName',DomainName)
37+
38+
def get_Lang(self):
39+
return self.get_query_params().get('Lang')
40+
41+
def set_Lang(self,Lang):
42+
self.add_query_param('Lang',Lang)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class QueryDomainRealNameVerificationInfoRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryDomainRealNameVerificationInfo','domain')
25+
26+
def get_FetchImage(self):
27+
return self.get_query_params().get('FetchImage')
28+
29+
def set_FetchImage(self,FetchImage):
30+
self.add_query_param('FetchImage',FetchImage)
31+
32+
def get_UserClientIp(self):
33+
return self.get_query_params().get('UserClientIp')
34+
35+
def set_UserClientIp(self,UserClientIp):
36+
self.add_query_param('UserClientIp',UserClientIp)
37+
38+
def get_DomainName(self):
39+
return self.get_query_params().get('DomainName')
40+
41+
def set_DomainName(self,DomainName):
42+
self.add_query_param('DomainName',DomainName)
43+
44+
def get_Lang(self):
45+
return self.get_query_params().get('Lang')
46+
47+
def set_Lang(self,Lang):
48+
self.add_query_param('Lang',Lang)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class QueryFailReasonForDomainRealNameVerificationRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryFailReasonForDomainRealNameVerification','domain')
25+
26+
def get_RealNameVerificationAction(self):
27+
return self.get_query_params().get('RealNameVerificationAction')
28+
29+
def set_RealNameVerificationAction(self,RealNameVerificationAction):
30+
self.add_query_param('RealNameVerificationAction',RealNameVerificationAction)
31+
32+
def get_UserClientIp(self):
33+
return self.get_query_params().get('UserClientIp')
34+
35+
def set_UserClientIp(self,UserClientIp):
36+
self.add_query_param('UserClientIp',UserClientIp)
37+
38+
def get_DomainName(self):
39+
return self.get_query_params().get('DomainName')
40+
41+
def set_DomainName(self,DomainName):
42+
self.add_query_param('DomainName',DomainName)
43+
44+
def get_Lang(self):
45+
return self.get_query_params().get('Lang')
46+
47+
def set_Lang(self,Lang):
48+
self.add_query_param('Lang',Lang)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class QueryFailReasonForRegistrantProfileRealNameVerificationRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryFailReasonForRegistrantProfileRealNameVerification','domain')
25+
26+
def get_UserClientIp(self):
27+
return self.get_query_params().get('UserClientIp')
28+
29+
def set_UserClientIp(self,UserClientIp):
30+
self.add_query_param('UserClientIp',UserClientIp)
31+
32+
def get_RegistrantProfileID(self):
33+
return self.get_query_params().get('RegistrantProfileID')
34+
35+
def set_RegistrantProfileID(self,RegistrantProfileID):
36+
self.add_query_param('RegistrantProfileID',RegistrantProfileID)
37+
38+
def get_Lang(self):
39+
return self.get_query_params().get('Lang')
40+
41+
def set_Lang(self,Lang):
42+
self.add_query_param('Lang',Lang)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class QueryRegistrantProfileRealNameVerificationInfoRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'QueryRegistrantProfileRealNameVerificationInfo','domain')
25+
26+
def get_FetchImage(self):
27+
return self.get_query_params().get('FetchImage')
28+
29+
def set_FetchImage(self,FetchImage):
30+
self.add_query_param('FetchImage',FetchImage)
31+
32+
def get_UserClientIp(self):
33+
return self.get_query_params().get('UserClientIp')
34+
35+
def set_UserClientIp(self,UserClientIp):
36+
self.add_query_param('UserClientIp',UserClientIp)
37+
38+
def get_RegistrantProfileId(self):
39+
return self.get_query_params().get('RegistrantProfileId')
40+
41+
def set_RegistrantProfileId(self,RegistrantProfileId):
42+
self.add_query_param('RegistrantProfileId',RegistrantProfileId)
43+
44+
def get_Lang(self):
45+
return self.get_query_params().get('Lang')
46+
47+
def set_Lang(self,Lang):
48+
self.add_query_param('Lang',Lang)

aliyun-python-sdk-domain-intl/aliyunsdkdomain_intl/request/v20171218/QueryRegistrantProfilesRequest.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,24 @@ def get_PageSize(self):
4747
def set_PageSize(self,PageSize):
4848
self.add_query_param('PageSize',PageSize)
4949

50+
def get_RegistrantType(self):
51+
return self.get_query_params().get('RegistrantType')
52+
53+
def set_RegistrantType(self,RegistrantType):
54+
self.add_query_param('RegistrantType',RegistrantType)
55+
56+
def get_RegistrantProfileType(self):
57+
return self.get_query_params().get('RegistrantProfileType')
58+
59+
def set_RegistrantProfileType(self,RegistrantProfileType):
60+
self.add_query_param('RegistrantProfileType',RegistrantProfileType)
61+
62+
def get_RealNameStatus(self):
63+
return self.get_query_params().get('RealNameStatus')
64+
65+
def set_RealNameStatus(self,RealNameStatus):
66+
self.add_query_param('RealNameStatus',RealNameStatus)
67+
5068
def get_Lang(self):
5169
return self.get_query_params().get('Lang')
5270

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class RegistrantProfileRealNameVerificationRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'Domain-intl', '2017-12-18', 'RegistrantProfileRealNameVerification','domain')
25+
self.set_method('POST')
26+
27+
def get_IdentityCredentialType(self):
28+
return self.get_query_params().get('IdentityCredentialType')
29+
30+
def set_IdentityCredentialType(self,IdentityCredentialType):
31+
self.add_query_param('IdentityCredentialType',IdentityCredentialType)
32+
33+
def get_UserClientIp(self):
34+
return self.get_query_params().get('UserClientIp')
35+
36+
def set_UserClientIp(self,UserClientIp):
37+
self.add_query_param('UserClientIp',UserClientIp)
38+
39+
def get_RegistrantProfileID(self):
40+
return self.get_query_params().get('RegistrantProfileID')
41+
42+
def set_RegistrantProfileID(self,RegistrantProfileID):
43+
self.add_query_param('RegistrantProfileID',RegistrantProfileID)
44+
45+
def get_IdentityCredential(self):
46+
return self.get_body_params().get('IdentityCredential')
47+
48+
def set_IdentityCredential(self,IdentityCredential):
49+
self.add_body_params('IdentityCredential', IdentityCredential)
50+
51+
def get_Lang(self):
52+
return self.get_query_params().get('Lang')
53+
54+
def set_Lang(self,Lang):
55+
self.add_query_param('Lang',Lang)
56+
57+
def get_IdentityCredentialNo(self):
58+
return self.get_query_params().get('IdentityCredentialNo')
59+
60+
def set_IdentityCredentialNo(self,IdentityCredentialNo):
61+
self.add_query_param('IdentityCredentialNo',IdentityCredentialNo)

0 commit comments

Comments
 (0)