Skip to content

Commit ff69b01

Browse files
committed
由颍川发起的CSB SDK自动发布, BUILD_ID=320, 版本号:1.1.1
发布日志: 1, publish Project API. 2, publish Service API. 3, publish Service order API. 4, publish Credential API.
1 parent f37c4f6 commit ff69b01

11 files changed

+226
-1
lines changed

aliyun-python-sdk-csb/ChangeLog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2017-12-30 Version: 1.1.1
2+
1, publish Project API.
3+
2, publish Service API.
4+
3, publish Service order API.
5+
4, publish Credential API.
6+
17
2017-12-29 Version: 1.1.0
28
1, publish Project API.
39
2, publish Service API.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.0"
1+
__version__ = "1.1.1"
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+
# 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 ApproveOrderListRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'CSB', '2017-11-18', 'ApproveOrderList','CSB')
25+
self.set_protocol_type('https');
26+
self.set_method('POST')
27+
28+
def get_Data(self):
29+
return self.get_body_params().get('Data')
30+
31+
def set_Data(self,Data):
32+
self.add_body_params('Data', Data)

aliyun-python-sdk-csb/aliyunsdkcsb/request/v20171118/CreateServiceRequest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class CreateServiceRequest(RpcRequest):
2222

2323
def __init__(self):
2424
RpcRequest.__init__(self, 'CSB', '2017-11-18', 'CreateService','CSB')
25+
self.set_protocol_type('https');
2526
self.set_method('POST')
2627

2728
def get_Data(self):
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 RpcRequest
21+
class DeleteServiceListRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'CSB', '2017-11-18', 'DeleteServiceList','CSB')
25+
self.set_protocol_type('https');
26+
self.set_method('POST')
27+
28+
def get_Data(self):
29+
return self.get_body_params().get('Data')
30+
31+
def set_Data(self,Data):
32+
self.add_body_params('Data', Data)
33+
34+
def get_CsbId(self):
35+
return self.get_query_params().get('CsbId')
36+
37+
def set_CsbId(self,CsbId):
38+
self.add_query_param('CsbId',CsbId)

aliyun-python-sdk-csb/aliyunsdkcsb/request/v20171118/DeleteServiceRequest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class DeleteServiceRequest(RpcRequest):
2222

2323
def __init__(self):
2424
RpcRequest.__init__(self, 'CSB', '2017-11-18', 'DeleteService','CSB')
25+
self.set_protocol_type('https');
2526
self.set_method('POST')
2627

2728
def get_ServiceName(self):
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+
# 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 UpdateOrderListRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'CSB', '2017-11-18', 'UpdateOrderList','CSB')
25+
self.set_protocol_type('https');
26+
self.set_method('POST')
27+
28+
def get_Data(self):
29+
return self.get_body_params().get('Data')
30+
31+
def set_Data(self,Data):
32+
self.add_body_params('Data', Data)
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 RpcRequest
21+
class UpdateProjectListStatusRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'CSB', '2017-11-18', 'UpdateProjectListStatus','CSB')
25+
self.set_protocol_type('https');
26+
self.set_method('POST')
27+
28+
def get_Data(self):
29+
return self.get_body_params().get('Data')
30+
31+
def set_Data(self,Data):
32+
self.add_body_params('Data', Data)
33+
34+
def get_CsbId(self):
35+
return self.get_query_params().get('CsbId')
36+
37+
def set_CsbId(self,CsbId):
38+
self.add_query_param('CsbId',CsbId)
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 RpcRequest
21+
class UpdateServiceListStatusRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'CSB', '2017-11-18', 'UpdateServiceListStatus','CSB')
25+
self.set_protocol_type('https');
26+
self.set_method('POST')
27+
28+
def get_Data(self):
29+
return self.get_body_params().get('Data')
30+
31+
def set_Data(self,Data):
32+
self.add_body_params('Data', Data)
33+
34+
def get_CsbId(self):
35+
return self.get_query_params().get('CsbId')
36+
37+
def set_CsbId(self,CsbId):
38+
self.add_query_param('CsbId',CsbId)
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 RpcRequest
21+
class UpdateServiceQPSRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'CSB', '2017-11-18', 'UpdateServiceQPS','CSB')
25+
self.set_protocol_type('https');
26+
self.set_method('POST')
27+
28+
def get_Qps(self):
29+
return self.get_query_params().get('Qps')
30+
31+
def set_Qps(self,Qps):
32+
self.add_query_param('Qps',Qps)
33+
34+
def get_ServiceId(self):
35+
return self.get_query_params().get('ServiceId')
36+
37+
def set_ServiceId(self,ServiceId):
38+
self.add_query_param('ServiceId',ServiceId)

0 commit comments

Comments
 (0)