Skip to content

Commit c7a0e49

Browse files
committed
Update SubscribeBillToOSS and QueryBillToOSSSubscription to support BucketPath.
1 parent eb3e4ff commit c7a0e49

File tree

4 files changed

+77
-1
lines changed

4 files changed

+77
-1
lines changed

aliyun-python-sdk-bssopenapi/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022-05-19 Version: 1.7.11
2+
- Update SubscribeBillToOSS and QueryBillToOSSSubscription to support BucketPath.
3+
14
2022-04-24 Version: 1.7.10
25
- Bill api add query conditions and return data field.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.7.10'
1+
__version__ = '1.7.11'
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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+
from aliyunsdkbssopenapi.endpoint import endpoint_data
22+
23+
class ReleaseInstanceRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'BssOpenApi', '2017-12-14', 'ReleaseInstance')
27+
self.set_method('POST')
28+
29+
if hasattr(self, "endpoint_map"):
30+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
31+
if hasattr(self, "endpoint_regional"):
32+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
33+
34+
def get_ProductCode(self): # String
35+
return self.get_query_params().get('ProductCode')
36+
37+
def set_ProductCode(self, ProductCode): # String
38+
self.add_query_param('ProductCode', ProductCode)
39+
def get_SubscriptionType(self): # String
40+
return self.get_query_params().get('SubscriptionType')
41+
42+
def set_SubscriptionType(self, SubscriptionType): # String
43+
self.add_query_param('SubscriptionType', SubscriptionType)
44+
def get_OwnerId(self): # Long
45+
return self.get_query_params().get('OwnerId')
46+
47+
def set_OwnerId(self, OwnerId): # Long
48+
self.add_query_param('OwnerId', OwnerId)
49+
def get_ProductType(self): # String
50+
return self.get_query_params().get('ProductType')
51+
52+
def set_ProductType(self, ProductType): # String
53+
self.add_query_param('ProductType', ProductType)
54+
def get_InstanceIds(self): # String
55+
return self.get_query_params().get('InstanceIds')
56+
57+
def set_InstanceIds(self, InstanceIds): # String
58+
self.add_query_param('InstanceIds', InstanceIds)
59+
def get_Region(self): # String
60+
return self.get_query_params().get('Region')
61+
62+
def set_Region(self, Region): # String
63+
self.add_query_param('Region', Region)
64+
def get_RenewStatus(self): # String
65+
return self.get_query_params().get('RenewStatus')
66+
67+
def set_RenewStatus(self, RenewStatus): # String
68+
self.add_query_param('RenewStatus', RenewStatus)

aliyun-python-sdk-bssopenapi/aliyunsdkbssopenapi/request/v20171214/SubscribeBillToOSSRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ def get_SubscribeBucket(self): # String
4646

4747
def set_SubscribeBucket(self, SubscribeBucket): # String
4848
self.add_query_param('SubscribeBucket', SubscribeBucket)
49+
def get_BucketPath(self): # String
50+
return self.get_query_params().get('BucketPath')
51+
52+
def set_BucketPath(self, BucketPath): # String
53+
self.add_query_param('BucketPath', BucketPath)
4954
def get_BeginBillingCycle(self): # String
5055
return self.get_query_params().get('BeginBillingCycle')
5156

0 commit comments

Comments
 (0)