tencentcloud-sdk-python-intl-en 3.0.1208__py2.py3-none-any.whl → 3.0.1209__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/billing/v20180709/billing_client.py +230 -0
- tencentcloud/billing/v20180709/models.py +6421 -4629
- {tencentcloud_sdk_python_intl_en-3.0.1208.dist-info → tencentcloud_sdk_python_intl_en-3.0.1209.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1208.dist-info → tencentcloud_sdk_python_intl_en-3.0.1209.dist-info}/RECORD +7 -7
- {tencentcloud_sdk_python_intl_en-3.0.1208.dist-info → tencentcloud_sdk_python_intl_en-3.0.1209.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1208.dist-info → tencentcloud_sdk_python_intl_en-3.0.1209.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -26,6 +26,29 @@ class BillingClient(AbstractClient):
|
|
|
26
26
|
_service = 'billing'
|
|
27
27
|
|
|
28
28
|
|
|
29
|
+
def CreateAllocationRule(self, request):
|
|
30
|
+
"""Create a sharing rule.
|
|
31
|
+
|
|
32
|
+
:param request: Request instance for CreateAllocationRule.
|
|
33
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.CreateAllocationRuleRequest`
|
|
34
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.CreateAllocationRuleResponse`
|
|
35
|
+
|
|
36
|
+
"""
|
|
37
|
+
try:
|
|
38
|
+
params = request._serialize()
|
|
39
|
+
headers = request.headers
|
|
40
|
+
body = self.call("CreateAllocationRule", params, headers=headers)
|
|
41
|
+
response = json.loads(body)
|
|
42
|
+
model = models.CreateAllocationRuleResponse()
|
|
43
|
+
model._deserialize(response["Response"])
|
|
44
|
+
return model
|
|
45
|
+
except Exception as e:
|
|
46
|
+
if isinstance(e, TencentCloudSDKException):
|
|
47
|
+
raise
|
|
48
|
+
else:
|
|
49
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
50
|
+
|
|
51
|
+
|
|
29
52
|
def CreateAllocationTag(self, request):
|
|
30
53
|
"""This API is used to batch set cost allocation tags.
|
|
31
54
|
|
|
@@ -72,6 +95,52 @@ class BillingClient(AbstractClient):
|
|
|
72
95
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
73
96
|
|
|
74
97
|
|
|
98
|
+
def CreateGatherRule(self, request):
|
|
99
|
+
"""Create a collection rule.
|
|
100
|
+
|
|
101
|
+
:param request: Request instance for CreateGatherRule.
|
|
102
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.CreateGatherRuleRequest`
|
|
103
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.CreateGatherRuleResponse`
|
|
104
|
+
|
|
105
|
+
"""
|
|
106
|
+
try:
|
|
107
|
+
params = request._serialize()
|
|
108
|
+
headers = request.headers
|
|
109
|
+
body = self.call("CreateGatherRule", params, headers=headers)
|
|
110
|
+
response = json.loads(body)
|
|
111
|
+
model = models.CreateGatherRuleResponse()
|
|
112
|
+
model._deserialize(response["Response"])
|
|
113
|
+
return model
|
|
114
|
+
except Exception as e:
|
|
115
|
+
if isinstance(e, TencentCloudSDKException):
|
|
116
|
+
raise
|
|
117
|
+
else:
|
|
118
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
def DeleteAllocationRule(self, request):
|
|
122
|
+
"""Delete sharing rule interface.
|
|
123
|
+
|
|
124
|
+
:param request: Request instance for DeleteAllocationRule.
|
|
125
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.DeleteAllocationRuleRequest`
|
|
126
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.DeleteAllocationRuleResponse`
|
|
127
|
+
|
|
128
|
+
"""
|
|
129
|
+
try:
|
|
130
|
+
params = request._serialize()
|
|
131
|
+
headers = request.headers
|
|
132
|
+
body = self.call("DeleteAllocationRule", params, headers=headers)
|
|
133
|
+
response = json.loads(body)
|
|
134
|
+
model = models.DeleteAllocationRuleResponse()
|
|
135
|
+
model._deserialize(response["Response"])
|
|
136
|
+
return model
|
|
137
|
+
except Exception as e:
|
|
138
|
+
if isinstance(e, TencentCloudSDKException):
|
|
139
|
+
raise
|
|
140
|
+
else:
|
|
141
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
142
|
+
|
|
143
|
+
|
|
75
144
|
def DeleteAllocationTag(self, request):
|
|
76
145
|
"""u200cThis API is used to batch cancel cost allocation tags.
|
|
77
146
|
|
|
@@ -118,6 +187,29 @@ class BillingClient(AbstractClient):
|
|
|
118
187
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
119
188
|
|
|
120
189
|
|
|
190
|
+
def DeleteGatherRule(self, request):
|
|
191
|
+
"""Delete a collection rule.
|
|
192
|
+
|
|
193
|
+
:param request: Request instance for DeleteGatherRule.
|
|
194
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.DeleteGatherRuleRequest`
|
|
195
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.DeleteGatherRuleResponse`
|
|
196
|
+
|
|
197
|
+
"""
|
|
198
|
+
try:
|
|
199
|
+
params = request._serialize()
|
|
200
|
+
headers = request.headers
|
|
201
|
+
body = self.call("DeleteGatherRule", params, headers=headers)
|
|
202
|
+
response = json.loads(body)
|
|
203
|
+
model = models.DeleteGatherRuleResponse()
|
|
204
|
+
model._deserialize(response["Response"])
|
|
205
|
+
return model
|
|
206
|
+
except Exception as e:
|
|
207
|
+
if isinstance(e, TencentCloudSDKException):
|
|
208
|
+
raise
|
|
209
|
+
else:
|
|
210
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
211
|
+
|
|
212
|
+
|
|
121
213
|
def DescribeAccountBalance(self, request):
|
|
122
214
|
"""This API is used to check the Tencent Cloud account balance.
|
|
123
215
|
|
|
@@ -141,6 +233,75 @@ class BillingClient(AbstractClient):
|
|
|
141
233
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
142
234
|
|
|
143
235
|
|
|
236
|
+
def DescribeAllocationRuleDetail(self, request):
|
|
237
|
+
"""This API is used to query sharing rule details.
|
|
238
|
+
|
|
239
|
+
:param request: Request instance for DescribeAllocationRuleDetail.
|
|
240
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.DescribeAllocationRuleDetailRequest`
|
|
241
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.DescribeAllocationRuleDetailResponse`
|
|
242
|
+
|
|
243
|
+
"""
|
|
244
|
+
try:
|
|
245
|
+
params = request._serialize()
|
|
246
|
+
headers = request.headers
|
|
247
|
+
body = self.call("DescribeAllocationRuleDetail", params, headers=headers)
|
|
248
|
+
response = json.loads(body)
|
|
249
|
+
model = models.DescribeAllocationRuleDetailResponse()
|
|
250
|
+
model._deserialize(response["Response"])
|
|
251
|
+
return model
|
|
252
|
+
except Exception as e:
|
|
253
|
+
if isinstance(e, TencentCloudSDKException):
|
|
254
|
+
raise
|
|
255
|
+
else:
|
|
256
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
def DescribeAllocationRuleSummary(self, request):
|
|
260
|
+
"""This API is used to query all sharing rule overviews.
|
|
261
|
+
|
|
262
|
+
:param request: Request instance for DescribeAllocationRuleSummary.
|
|
263
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.DescribeAllocationRuleSummaryRequest`
|
|
264
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.DescribeAllocationRuleSummaryResponse`
|
|
265
|
+
|
|
266
|
+
"""
|
|
267
|
+
try:
|
|
268
|
+
params = request._serialize()
|
|
269
|
+
headers = request.headers
|
|
270
|
+
body = self.call("DescribeAllocationRuleSummary", params, headers=headers)
|
|
271
|
+
response = json.loads(body)
|
|
272
|
+
model = models.DescribeAllocationRuleSummaryResponse()
|
|
273
|
+
model._deserialize(response["Response"])
|
|
274
|
+
return model
|
|
275
|
+
except Exception as e:
|
|
276
|
+
if isinstance(e, TencentCloudSDKException):
|
|
277
|
+
raise
|
|
278
|
+
else:
|
|
279
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
def DescribeAllocationTree(self, request):
|
|
283
|
+
"""This API is used to query the cost tree.
|
|
284
|
+
|
|
285
|
+
:param request: Request instance for DescribeAllocationTree.
|
|
286
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.DescribeAllocationTreeRequest`
|
|
287
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.DescribeAllocationTreeResponse`
|
|
288
|
+
|
|
289
|
+
"""
|
|
290
|
+
try:
|
|
291
|
+
params = request._serialize()
|
|
292
|
+
headers = request.headers
|
|
293
|
+
body = self.call("DescribeAllocationTree", params, headers=headers)
|
|
294
|
+
response = json.loads(body)
|
|
295
|
+
model = models.DescribeAllocationTreeResponse()
|
|
296
|
+
model._deserialize(response["Response"])
|
|
297
|
+
return model
|
|
298
|
+
except Exception as e:
|
|
299
|
+
if isinstance(e, TencentCloudSDKException):
|
|
300
|
+
raise
|
|
301
|
+
else:
|
|
302
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
303
|
+
|
|
304
|
+
|
|
144
305
|
def DescribeAllocationUnitDetail(self, request):
|
|
145
306
|
"""Query the details of a cost allocation unit.
|
|
146
307
|
|
|
@@ -651,6 +812,29 @@ class BillingClient(AbstractClient):
|
|
|
651
812
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
652
813
|
|
|
653
814
|
|
|
815
|
+
def DescribeGatherRuleDetail(self, request):
|
|
816
|
+
"""This API is used to query the collection rule details.
|
|
817
|
+
|
|
818
|
+
:param request: Request instance for DescribeGatherRuleDetail.
|
|
819
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.DescribeGatherRuleDetailRequest`
|
|
820
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.DescribeGatherRuleDetailResponse`
|
|
821
|
+
|
|
822
|
+
"""
|
|
823
|
+
try:
|
|
824
|
+
params = request._serialize()
|
|
825
|
+
headers = request.headers
|
|
826
|
+
body = self.call("DescribeGatherRuleDetail", params, headers=headers)
|
|
827
|
+
response = json.loads(body)
|
|
828
|
+
model = models.DescribeGatherRuleDetailResponse()
|
|
829
|
+
model._deserialize(response["Response"])
|
|
830
|
+
return model
|
|
831
|
+
except Exception as e:
|
|
832
|
+
if isinstance(e, TencentCloudSDKException):
|
|
833
|
+
raise
|
|
834
|
+
else:
|
|
835
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
836
|
+
|
|
837
|
+
|
|
654
838
|
def DescribeTagList(self, request):
|
|
655
839
|
"""This API is used to get cost allocation tags.
|
|
656
840
|
|
|
@@ -720,6 +904,29 @@ class BillingClient(AbstractClient):
|
|
|
720
904
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
721
905
|
|
|
722
906
|
|
|
907
|
+
def ModifyAllocationRule(self, request):
|
|
908
|
+
"""Edit sharing rules.
|
|
909
|
+
|
|
910
|
+
:param request: Request instance for ModifyAllocationRule.
|
|
911
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.ModifyAllocationRuleRequest`
|
|
912
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.ModifyAllocationRuleResponse`
|
|
913
|
+
|
|
914
|
+
"""
|
|
915
|
+
try:
|
|
916
|
+
params = request._serialize()
|
|
917
|
+
headers = request.headers
|
|
918
|
+
body = self.call("ModifyAllocationRule", params, headers=headers)
|
|
919
|
+
response = json.loads(body)
|
|
920
|
+
model = models.ModifyAllocationRuleResponse()
|
|
921
|
+
model._deserialize(response["Response"])
|
|
922
|
+
return model
|
|
923
|
+
except Exception as e:
|
|
924
|
+
if isinstance(e, TencentCloudSDKException):
|
|
925
|
+
raise
|
|
926
|
+
else:
|
|
927
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
928
|
+
|
|
929
|
+
|
|
723
930
|
def ModifyAllocationUnit(self, request):
|
|
724
931
|
"""This API is used to modify cost allocation unit information.
|
|
725
932
|
|
|
@@ -736,6 +943,29 @@ class BillingClient(AbstractClient):
|
|
|
736
943
|
model = models.ModifyAllocationUnitResponse()
|
|
737
944
|
model._deserialize(response["Response"])
|
|
738
945
|
return model
|
|
946
|
+
except Exception as e:
|
|
947
|
+
if isinstance(e, TencentCloudSDKException):
|
|
948
|
+
raise
|
|
949
|
+
else:
|
|
950
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
951
|
+
|
|
952
|
+
|
|
953
|
+
def ModifyGatherRule(self, request):
|
|
954
|
+
"""Edit a collection rule.
|
|
955
|
+
|
|
956
|
+
:param request: Request instance for ModifyGatherRule.
|
|
957
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.ModifyGatherRuleRequest`
|
|
958
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.ModifyGatherRuleResponse`
|
|
959
|
+
|
|
960
|
+
"""
|
|
961
|
+
try:
|
|
962
|
+
params = request._serialize()
|
|
963
|
+
headers = request.headers
|
|
964
|
+
body = self.call("ModifyGatherRule", params, headers=headers)
|
|
965
|
+
response = json.loads(body)
|
|
966
|
+
model = models.ModifyGatherRuleResponse()
|
|
967
|
+
model._deserialize(response["Response"])
|
|
968
|
+
return model
|
|
739
969
|
except Exception as e:
|
|
740
970
|
if isinstance(e, TencentCloudSDKException):
|
|
741
971
|
raise
|