Skip to content

Commit cc67374

Browse files
committed
Generated 2015-01-01 for Acs
1 parent ccbe1a8 commit cc67374

File tree

82 files changed

+4227
-0
lines changed

Some content is hidden

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

82 files changed

+4227
-0
lines changed

aliyun-python-sdk-acs/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2019-05-14 Version: 1.10.0
2+
- Generated 2015-01-01 for `Acs`
3+

aliyun-python-sdk-acs/MANIFEST.in

Whitespace-only changes.

aliyun-python-sdk-acs/README.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
aliyun-python-sdk-acs
2+
This is the acs module of Aliyun Python SDK.
3+
4+
Aliyun Python SDK is the official software development kit. It makes things easy to integrate your Python application, library, or script with Aliyun services.
5+
6+
This module works on Python versions:
7+
8+
2.6.5 and greater
9+
Documentation:
10+
11+
Please visit 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.10.0'

aliyun-python-sdk-acs/aliyunsdkacs/request/__init__.py

Whitespace-only changes.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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 RoaRequest
21+
class DeleteAccountBindingRequest(RoaRequest):
22+
23+
def __init__(self):
24+
RoaRequest.__init__(self, 'Acs', '2015-01-01', 'DeleteAccountBinding')
25+
self.set_uri_pattern('/AccountBinding/[Product]/[AliyunUid]')
26+
self.set_method('DELETE')
27+
28+
def get_Product(self):
29+
return self.get_path_params().get('Product')
30+
31+
def set_Product(self,Product):
32+
self.add_path_param('Product',Product)
33+
34+
def get_AliyunUid(self):
35+
return self.get_path_params().get('AliyunUid')
36+
37+
def set_AliyunUid(self,AliyunUid):
38+
self.add_path_param('AliyunUid',AliyunUid)
39+
40+
def get_Accept(self):
41+
return self.get_headers().get('Accept')
42+
43+
def set_Accept(self,Accept):
44+
self.add_header('Accept',Accept)
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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 RoaRequest
21+
class DeleteApiRequest(RoaRequest):
22+
23+
def __init__(self):
24+
RoaRequest.__init__(self, 'Acs', '2015-01-01', 'DeleteApi')
25+
self.set_uri_pattern('/Api/[ProductName]/[VersionName]/[ApiName]')
26+
self.set_method('DELETE')
27+
28+
def get_ApiName(self):
29+
return self.get_path_params().get('ApiName')
30+
31+
def set_ApiName(self,ApiName):
32+
self.add_path_param('ApiName',ApiName)
33+
34+
def get_ProductName(self):
35+
return self.get_path_params().get('ProductName')
36+
37+
def set_ProductName(self,ProductName):
38+
self.add_path_param('ProductName',ProductName)
39+
40+
def get_VersionName(self):
41+
return self.get_path_params().get('VersionName')
42+
43+
def set_VersionName(self,VersionName):
44+
self.add_path_param('VersionName',VersionName)
45+
46+
def get_Accept(self):
47+
return self.get_headers().get('Accept')
48+
49+
def set_Accept(self,Accept):
50+
self.add_header('Accept',Accept)
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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 RoaRequest
21+
class DeleteControlPolicyRequest(RoaRequest):
22+
23+
def __init__(self):
24+
RoaRequest.__init__(self, 'Acs', '2015-01-01', 'DeleteControlPolicy')
25+
self.set_uri_pattern('/ControlPolicy/[Product]/[ControlPolicyName]')
26+
self.set_method('DELETE')
27+
28+
def get_Product(self):
29+
return self.get_path_params().get('Product')
30+
31+
def set_Product(self,Product):
32+
self.add_path_param('Product',Product)
33+
34+
def get_ControlPolicyName(self):
35+
return self.get_path_params().get('ControlPolicyName')
36+
37+
def set_ControlPolicyName(self,ControlPolicyName):
38+
self.add_path_param('ControlPolicyName',ControlPolicyName)
39+
40+
def get_Accept(self):
41+
return self.get_headers().get('Accept')
42+
43+
def set_Accept(self,Accept):
44+
self.add_header('Accept',Accept)
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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 RoaRequest
21+
class DeleteFlowControlRequest(RoaRequest):
22+
23+
def __init__(self):
24+
RoaRequest.__init__(self, 'Acs', '2015-01-01', 'DeleteFlowControl')
25+
self.set_uri_pattern('/FlowControl/[ProductName]/[VersionName]/[ApiName]')
26+
self.set_method('DELETE')
27+
28+
def get_ApiName(self):
29+
return self.get_path_params().get('ApiName')
30+
31+
def set_ApiName(self,ApiName):
32+
self.add_path_param('ApiName',ApiName)
33+
34+
def get_ProductName(self):
35+
return self.get_path_params().get('ProductName')
36+
37+
def set_ProductName(self,ProductName):
38+
self.add_path_param('ProductName',ProductName)
39+
40+
def get_VersionName(self):
41+
return self.get_path_params().get('VersionName')
42+
43+
def set_VersionName(self,VersionName):
44+
self.add_path_param('VersionName',VersionName)
45+
46+
def get_Accept(self):
47+
return self.get_headers().get('Accept')
48+
49+
def set_Accept(self,Accept):
50+
self.add_header('Accept',Accept)
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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 RoaRequest
21+
class DeleteFlowSpecialRequest(RoaRequest):
22+
23+
def __init__(self):
24+
RoaRequest.__init__(self, 'Acs', '2015-01-01', 'DeleteFlowSpecial')
25+
self.set_uri_pattern('/FlowSpecial/[Product]/[Name]')
26+
self.set_method('DELETE')
27+
28+
def get_Product(self):
29+
return self.get_path_params().get('Product')
30+
31+
def set_Product(self,Product):
32+
self.add_path_param('Product',Product)
33+
34+
def get_Name(self):
35+
return self.get_path_params().get('Name')
36+
37+
def set_Name(self,Name):
38+
self.add_path_param('Name',Name)
39+
40+
def get_Accept(self):
41+
return self.get_headers().get('Accept')
42+
43+
def set_Accept(self,Accept):
44+
self.add_header('Accept',Accept)
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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 RoaRequest
21+
class DeletePolicyRequest(RoaRequest):
22+
23+
def __init__(self):
24+
RoaRequest.__init__(self, 'Acs', '2015-01-01', 'DeletePolicy')
25+
self.set_uri_pattern('/Policy/[Product]/[ControlPolicyName]/[UserId]')
26+
self.set_method('DELETE')
27+
28+
def get_Product(self):
29+
return self.get_path_params().get('Product')
30+
31+
def set_Product(self,Product):
32+
self.add_path_param('Product',Product)
33+
34+
def get_ControlPolicyName(self):
35+
return self.get_path_params().get('ControlPolicyName')
36+
37+
def set_ControlPolicyName(self,ControlPolicyName):
38+
self.add_path_param('ControlPolicyName',ControlPolicyName)
39+
40+
def get_UserId(self):
41+
return self.get_path_params().get('UserId')
42+
43+
def set_UserId(self,UserId):
44+
self.add_path_param('UserId',UserId)
45+
46+
def get_Accept(self):
47+
return self.get_headers().get('Accept')
48+
49+
def set_Accept(self,Accept):
50+
self.add_header('Accept',Accept)
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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 RoaRequest
21+
class DeleteProductRequest(RoaRequest):
22+
23+
def __init__(self):
24+
RoaRequest.__init__(self, 'Acs', '2015-01-01', 'DeleteProduct')
25+
self.set_uri_pattern('/Product/[ProductName]')
26+
self.set_method('DELETE')
27+
28+
def get_ProductName(self):
29+
return self.get_path_params().get('ProductName')
30+
31+
def set_ProductName(self,ProductName):
32+
self.add_path_param('ProductName',ProductName)
33+
34+
def get_Accept(self):
35+
return self.get_headers().get('Accept')
36+
37+
def set_Accept(self,Accept):
38+
self.add_header('Accept',Accept)
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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 RoaRequest
21+
class DeleteTairCacheRequest(RoaRequest):
22+
23+
def __init__(self):
24+
RoaRequest.__init__(self, 'Acs', '2015-01-01', 'DeleteTairCache')
25+
self.set_uri_pattern('/TairCache')
26+
self.set_method('DELETE')
27+
28+
def get_xacscachekey(self):
29+
return self.get_headers().get('x-acs-cache-key')
30+
31+
def set_xacscachekey(self,xacscachekey):
32+
self.add_header('x-acs-cache-key',xacscachekey)
33+
34+
def get_Accept(self):
35+
return self.get_headers().get('Accept')
36+
37+
def set_Accept(self,Accept):
38+
self.add_header('Accept',Accept)

0 commit comments

Comments
 (0)