Skip to content

Commit c699496

Browse files
committed
Added param for ActivateLicenseResponse .
1 parent 3156178 commit c699496

25 files changed

+1624
-0
lines changed

aliyun-python-sdk-mseap/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2024-07-10 Version: 1.0.0
2+
- Added param for ActivateLicenseResponse .
3+

aliyun-python-sdk-mseap/LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 1999-present Alibaba Group Holding Ltd.
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

aliyun-python-sdk-mseap/MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include LICENSE README.rst ChangeLog.txt

aliyun-python-sdk-mseap/README.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
=============================================================
2+
aliyun-python-sdk-mseap
3+
=============================================================
4+
5+
.. This is the mseap module of Aliyun Python SDK.
6+
7+
Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services.
8+
9+
This module works on Python versions:
10+
11+
2.6.5 and greater
12+
13+
**Documentation:**
14+
15+
Please visit `http://develop.aliyun.com/sdk/python <http://develop.aliyun.com/sdk/python>`_
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = '1.0.0'

aliyun-python-sdk-mseap/aliyunsdkmseap/request/__init__.py

Whitespace-only changes.
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
22+
class ActivateLicenseRequest(RpcRequest):
23+
24+
def __init__(self):
25+
RpcRequest.__init__(self, 'mseap', '2021-01-18', 'ActivateLicense')
26+
self.set_method('POST')
27+
28+
def get_LicenseNo(self): # String
29+
return self.get_query_params().get('LicenseNo')
30+
31+
def set_LicenseNo(self, LicenseNo): # String
32+
self.add_query_param('LicenseNo', LicenseNo)
33+
def get_BizType(self): # String
34+
return self.get_query_params().get('BizType')
35+
36+
def set_BizType(self, BizType): # String
37+
self.add_query_param('BizType', BizType)
38+
def get_LicensePublisher(self): # String
39+
return self.get_query_params().get('LicensePublisher')
40+
41+
def set_LicensePublisher(self, LicensePublisher): # String
42+
self.add_query_param('LicensePublisher', LicensePublisher)
43+
def get_BizId(self): # String
44+
return self.get_query_params().get('BizId')
45+
46+
def set_BizId(self, BizId): # String
47+
self.add_query_param('BizId', BizId)
48+
def get_LicenseCode(self): # String
49+
return self.get_query_params().get('LicenseCode')
50+
51+
def set_LicenseCode(self, LicenseCode): # String
52+
self.add_query_param('LicenseCode', LicenseCode)
Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
22+
class CallbackTaskRequest(RpcRequest):
23+
24+
def __init__(self):
25+
RpcRequest.__init__(self, 'mseap', '2021-01-18', 'CallbackTask')
26+
self.set_method('POST')
27+
28+
def get_UserCallerParentId(self): # Long
29+
return self.get_query_params().get('UserCallerParentId')
30+
31+
def set_UserCallerParentId(self, UserCallerParentId): # Long
32+
self.add_query_param('UserCallerParentId', UserCallerParentId)
33+
def get_OutTaskId(self): # String
34+
return self.get_query_params().get('OutTaskId')
35+
36+
def set_OutTaskId(self, OutTaskId): # String
37+
self.add_query_param('OutTaskId', OutTaskId)
38+
def get_ApiType(self): # String
39+
return self.get_query_params().get('ApiType')
40+
41+
def set_ApiType(self, ApiType): # String
42+
self.add_query_param('ApiType', ApiType)
43+
def get_UserMfaPresent(self): # Boolean
44+
return self.get_query_params().get('UserMfaPresent')
45+
46+
def set_UserMfaPresent(self, UserMfaPresent): # Boolean
47+
self.add_query_param('UserMfaPresent', UserMfaPresent)
48+
def get_UserKp(self): # String
49+
return self.get_query_params().get('UserKp')
50+
51+
def set_UserKp(self, UserKp): # String
52+
self.add_query_param('UserKp', UserKp)
53+
def get_Lang(self): # String
54+
return self.get_query_params().get('Lang')
55+
56+
def set_Lang(self, Lang): # String
57+
self.add_query_param('Lang', Lang)
58+
def get_TaskId(self): # String
59+
return self.get_query_params().get('TaskId')
60+
61+
def set_TaskId(self, TaskId): # String
62+
self.add_query_param('TaskId', TaskId)
63+
def get_UserCallerType(self): # String
64+
return self.get_query_params().get('UserCallerType')
65+
66+
def set_UserCallerType(self, UserCallerType): # String
67+
self.add_query_param('UserCallerType', UserCallerType)
68+
def get_TaskType(self): # String
69+
return self.get_query_params().get('TaskType')
70+
71+
def set_TaskType(self, TaskType): # String
72+
self.add_query_param('TaskType', TaskType)
73+
def get_UserSecurityToken(self): # String
74+
return self.get_query_params().get('UserSecurityToken')
75+
76+
def set_UserSecurityToken(self, UserSecurityToken): # String
77+
self.add_query_param('UserSecurityToken', UserSecurityToken)
78+
def get_UserAccessKeyId(self): # String
79+
return self.get_query_params().get('UserAccessKeyId')
80+
81+
def set_UserAccessKeyId(self, UserAccessKeyId): # String
82+
self.add_query_param('UserAccessKeyId', UserAccessKeyId)
83+
def get_OrderId(self): # String
84+
return self.get_query_params().get('OrderId')
85+
86+
def set_OrderId(self, OrderId): # String
87+
self.add_query_param('OrderId', OrderId)
88+
def get_AliyunKp(self): # String
89+
return self.get_query_params().get('AliyunKp')
90+
91+
def set_AliyunKp(self, AliyunKp): # String
92+
self.add_query_param('AliyunKp', AliyunKp)
93+
def get_UserBid(self): # String
94+
return self.get_query_params().get('UserBid')
95+
96+
def set_UserBid(self, UserBid): # String
97+
self.add_query_param('UserBid', UserBid)
98+
def get_OriginalRequest(self): # String
99+
return self.get_query_params().get('OriginalRequest')
100+
101+
def set_OriginalRequest(self, OriginalRequest): # String
102+
self.add_query_param('OriginalRequest', OriginalRequest)
103+
def get_PrincipalKey(self): # String
104+
return self.get_query_params().get('PrincipalKey')
105+
106+
def set_PrincipalKey(self, PrincipalKey): # String
107+
self.add_query_param('PrincipalKey', PrincipalKey)
108+
def get_UserCallerSecurityTransport(self): # Boolean
109+
return self.get_query_params().get('UserCallerSecurityTransport')
110+
111+
def set_UserCallerSecurityTransport(self, UserCallerSecurityTransport): # Boolean
112+
self.add_query_param('UserCallerSecurityTransport', UserCallerSecurityTransport)
113+
def get_BizCode(self): # String
114+
return self.get_query_params().get('BizCode')
115+
116+
def set_BizCode(self, BizCode): # String
117+
self.add_query_param('BizCode', BizCode)
118+
def get_UserClientIp(self): # String
119+
return self.get_query_params().get('UserClientIp')
120+
121+
def set_UserClientIp(self, UserClientIp): # String
122+
self.add_query_param('UserClientIp', UserClientIp)
123+
def get_TaskData(self): # String
124+
return self.get_query_params().get('TaskData')
125+
126+
def set_TaskData(self, TaskData): # String
127+
self.add_query_param('TaskData', TaskData)
128+
def get_Bid(self): # String
129+
return self.get_query_params().get('Bid')
130+
131+
def set_Bid(self, Bid): # String
132+
self.add_query_param('Bid', Bid)
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
22+
class DescribeAgreementStatusRequest(RpcRequest):
23+
24+
def __init__(self):
25+
RpcRequest.__init__(self, 'mseap', '2021-01-18', 'DescribeAgreementStatus')
26+
self.set_method('POST')
27+
28+
def get_AgreementCode(self): # String
29+
return self.get_query_params().get('AgreementCode')
30+
31+
def set_AgreementCode(self, AgreementCode): # String
32+
self.add_query_param('AgreementCode', AgreementCode)
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
22+
class GenerateUploadFilePolicyForPartnerRequest(RpcRequest):
23+
24+
def __init__(self):
25+
RpcRequest.__init__(self, 'mseap', '2021-01-18', 'GenerateUploadFilePolicyForPartner')
26+
self.set_protocol_type('https')
27+
self.set_method('POST')
28+
29+
def get_FileType(self): # String
30+
return self.get_query_params().get('FileType')
31+
32+
def set_FileType(self, FileType): # String
33+
self.add_query_param('FileType', FileType)
34+
def get_BizType(self): # String
35+
return self.get_query_params().get('BizType')
36+
37+
def set_BizType(self, BizType): # String
38+
self.add_query_param('BizType', BizType)
39+
def get_FileName(self): # String
40+
return self.get_query_params().get('FileName')
41+
42+
def set_FileName(self, FileName): # String
43+
self.add_query_param('FileName', FileName)

0 commit comments

Comments
 (0)