tencentcloud-sdk-python-billing 3.1.102__tar.gz → 3.1.112__tar.gz
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.
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/setup.py +1 -1
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/billing/v20180709/billing_client.py +23 -0
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/billing/v20180709/billing_client_async.py +18 -0
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/billing/v20180709/models.py +315 -0
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud_sdk_python_billing.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_billing-3.1.112/tencentcloud_sdk_python_billing.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_billing-3.1.102/tencentcloud_sdk_python_billing.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/README.rst +0 -0
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/setup.cfg +0 -0
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/billing/__init__.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/billing/v20180709/__init__.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/billing/v20180709/errorcodes.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud_sdk_python_billing.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud_sdk_python_billing.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud_sdk_python_billing.egg-info/top_level.txt +0 -0
{tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-billing
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.112
|
|
4
4
|
Summary: Tencent Cloud Billing SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.112
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
{tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/setup.py
RENAMED
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-billing',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.112,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Billing SDK for Python',
|
|
@@ -1298,6 +1298,29 @@ class BillingClient(AbstractClient):
|
|
|
1298
1298
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1299
1299
|
|
|
1300
1300
|
|
|
1301
|
+
def DescribeOrgMemberAccountBalance(self, request):
|
|
1302
|
+
r"""批量查询成员可用余额信息
|
|
1303
|
+
|
|
1304
|
+
:param request: Request instance for DescribeOrgMemberAccountBalance.
|
|
1305
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.DescribeOrgMemberAccountBalanceRequest`
|
|
1306
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.DescribeOrgMemberAccountBalanceResponse`
|
|
1307
|
+
|
|
1308
|
+
"""
|
|
1309
|
+
try:
|
|
1310
|
+
params = request._serialize()
|
|
1311
|
+
headers = request.headers
|
|
1312
|
+
body = self.call("DescribeOrgMemberAccountBalance", params, headers=headers)
|
|
1313
|
+
response = json.loads(body)
|
|
1314
|
+
model = models.DescribeOrgMemberAccountBalanceResponse()
|
|
1315
|
+
model._deserialize(response["Response"])
|
|
1316
|
+
return model
|
|
1317
|
+
except Exception as e:
|
|
1318
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1319
|
+
raise
|
|
1320
|
+
else:
|
|
1321
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1322
|
+
|
|
1323
|
+
|
|
1301
1324
|
def DescribeRenewInstances(self, request):
|
|
1302
1325
|
r"""注意事项:
|
|
1303
1326
|
1、本接口支持查询已接入续费管理页的包年包月实例,包括运行中、已隔离(部分产品不支持)
|
|
@@ -1022,6 +1022,24 @@ class BillingClient(AbstractClient):
|
|
|
1022
1022
|
|
|
1023
1023
|
return await self.call_and_deserialize(**kwargs)
|
|
1024
1024
|
|
|
1025
|
+
async def DescribeOrgMemberAccountBalance(
|
|
1026
|
+
self,
|
|
1027
|
+
request: models.DescribeOrgMemberAccountBalanceRequest,
|
|
1028
|
+
opts: Dict = None,
|
|
1029
|
+
) -> models.DescribeOrgMemberAccountBalanceResponse:
|
|
1030
|
+
"""
|
|
1031
|
+
批量查询成员可用余额信息
|
|
1032
|
+
"""
|
|
1033
|
+
|
|
1034
|
+
kwargs = {}
|
|
1035
|
+
kwargs["action"] = "DescribeOrgMemberAccountBalance"
|
|
1036
|
+
kwargs["params"] = request._serialize()
|
|
1037
|
+
kwargs["resp_cls"] = models.DescribeOrgMemberAccountBalanceResponse
|
|
1038
|
+
kwargs["headers"] = request.headers
|
|
1039
|
+
kwargs["opts"] = opts or {}
|
|
1040
|
+
|
|
1041
|
+
return await self.call_and_deserialize(**kwargs)
|
|
1042
|
+
|
|
1025
1043
|
async def DescribeRenewInstances(
|
|
1026
1044
|
self,
|
|
1027
1045
|
request: models.DescribeRenewInstancesRequest,
|
|
@@ -27256,6 +27256,321 @@ class DescribeGatherRuleDetailResponse(AbstractModel):
|
|
|
27256
27256
|
self._RequestId = params.get("RequestId")
|
|
27257
27257
|
|
|
27258
27258
|
|
|
27259
|
+
class DescribeOrgMemberAccountBalanceData(AbstractModel):
|
|
27260
|
+
r"""DescribeOrgMemberAccountBalanceData
|
|
27261
|
+
|
|
27262
|
+
"""
|
|
27263
|
+
|
|
27264
|
+
def __init__(self):
|
|
27265
|
+
r"""
|
|
27266
|
+
:param _MemberUin: <p>成员账号Uin</p>
|
|
27267
|
+
:type MemberUin: str
|
|
27268
|
+
:param _MemberName: <p>成员名称</p>
|
|
27269
|
+
:type MemberName: str
|
|
27270
|
+
:param _IsCreditAccount: <p>是否为信用账户</p>
|
|
27271
|
+
:type IsCreditAccount: bool
|
|
27272
|
+
:param _RealBalance: <p>当前真实可用余额</p><p>单位:分</p>
|
|
27273
|
+
:type RealBalance: float
|
|
27274
|
+
:param _CashAccountBalance: <p>现金账户余额</p><p>单位:分</p>
|
|
27275
|
+
:type CashAccountBalance: float
|
|
27276
|
+
:param _CreditAmount: <p>信用额度</p><p>单位:分</p><p>信用额度 = 基础信用额度 + 临时信用额度</p>
|
|
27277
|
+
:type CreditAmount: float
|
|
27278
|
+
:param _TempCredit: <p>临时信用额度</p><p>单位:分</p>
|
|
27279
|
+
:type TempCredit: float
|
|
27280
|
+
:param _BasicCreditAmount: <p>基础信用额度</p><p>单位:分</p>
|
|
27281
|
+
:type BasicCreditAmount: float
|
|
27282
|
+
:param _OweAmount: <p>欠费金额</p><p>单位:分</p>
|
|
27283
|
+
:type OweAmount: float
|
|
27284
|
+
"""
|
|
27285
|
+
self._MemberUin = None
|
|
27286
|
+
self._MemberName = None
|
|
27287
|
+
self._IsCreditAccount = None
|
|
27288
|
+
self._RealBalance = None
|
|
27289
|
+
self._CashAccountBalance = None
|
|
27290
|
+
self._CreditAmount = None
|
|
27291
|
+
self._TempCredit = None
|
|
27292
|
+
self._BasicCreditAmount = None
|
|
27293
|
+
self._OweAmount = None
|
|
27294
|
+
|
|
27295
|
+
@property
|
|
27296
|
+
def MemberUin(self):
|
|
27297
|
+
r"""<p>成员账号Uin</p>
|
|
27298
|
+
:rtype: str
|
|
27299
|
+
"""
|
|
27300
|
+
return self._MemberUin
|
|
27301
|
+
|
|
27302
|
+
@MemberUin.setter
|
|
27303
|
+
def MemberUin(self, MemberUin):
|
|
27304
|
+
self._MemberUin = MemberUin
|
|
27305
|
+
|
|
27306
|
+
@property
|
|
27307
|
+
def MemberName(self):
|
|
27308
|
+
r"""<p>成员名称</p>
|
|
27309
|
+
:rtype: str
|
|
27310
|
+
"""
|
|
27311
|
+
return self._MemberName
|
|
27312
|
+
|
|
27313
|
+
@MemberName.setter
|
|
27314
|
+
def MemberName(self, MemberName):
|
|
27315
|
+
self._MemberName = MemberName
|
|
27316
|
+
|
|
27317
|
+
@property
|
|
27318
|
+
def IsCreditAccount(self):
|
|
27319
|
+
r"""<p>是否为信用账户</p>
|
|
27320
|
+
:rtype: bool
|
|
27321
|
+
"""
|
|
27322
|
+
return self._IsCreditAccount
|
|
27323
|
+
|
|
27324
|
+
@IsCreditAccount.setter
|
|
27325
|
+
def IsCreditAccount(self, IsCreditAccount):
|
|
27326
|
+
self._IsCreditAccount = IsCreditAccount
|
|
27327
|
+
|
|
27328
|
+
@property
|
|
27329
|
+
def RealBalance(self):
|
|
27330
|
+
r"""<p>当前真实可用余额</p><p>单位:分</p>
|
|
27331
|
+
:rtype: float
|
|
27332
|
+
"""
|
|
27333
|
+
return self._RealBalance
|
|
27334
|
+
|
|
27335
|
+
@RealBalance.setter
|
|
27336
|
+
def RealBalance(self, RealBalance):
|
|
27337
|
+
self._RealBalance = RealBalance
|
|
27338
|
+
|
|
27339
|
+
@property
|
|
27340
|
+
def CashAccountBalance(self):
|
|
27341
|
+
r"""<p>现金账户余额</p><p>单位:分</p>
|
|
27342
|
+
:rtype: float
|
|
27343
|
+
"""
|
|
27344
|
+
return self._CashAccountBalance
|
|
27345
|
+
|
|
27346
|
+
@CashAccountBalance.setter
|
|
27347
|
+
def CashAccountBalance(self, CashAccountBalance):
|
|
27348
|
+
self._CashAccountBalance = CashAccountBalance
|
|
27349
|
+
|
|
27350
|
+
@property
|
|
27351
|
+
def CreditAmount(self):
|
|
27352
|
+
r"""<p>信用额度</p><p>单位:分</p><p>信用额度 = 基础信用额度 + 临时信用额度</p>
|
|
27353
|
+
:rtype: float
|
|
27354
|
+
"""
|
|
27355
|
+
return self._CreditAmount
|
|
27356
|
+
|
|
27357
|
+
@CreditAmount.setter
|
|
27358
|
+
def CreditAmount(self, CreditAmount):
|
|
27359
|
+
self._CreditAmount = CreditAmount
|
|
27360
|
+
|
|
27361
|
+
@property
|
|
27362
|
+
def TempCredit(self):
|
|
27363
|
+
r"""<p>临时信用额度</p><p>单位:分</p>
|
|
27364
|
+
:rtype: float
|
|
27365
|
+
"""
|
|
27366
|
+
return self._TempCredit
|
|
27367
|
+
|
|
27368
|
+
@TempCredit.setter
|
|
27369
|
+
def TempCredit(self, TempCredit):
|
|
27370
|
+
self._TempCredit = TempCredit
|
|
27371
|
+
|
|
27372
|
+
@property
|
|
27373
|
+
def BasicCreditAmount(self):
|
|
27374
|
+
r"""<p>基础信用额度</p><p>单位:分</p>
|
|
27375
|
+
:rtype: float
|
|
27376
|
+
"""
|
|
27377
|
+
return self._BasicCreditAmount
|
|
27378
|
+
|
|
27379
|
+
@BasicCreditAmount.setter
|
|
27380
|
+
def BasicCreditAmount(self, BasicCreditAmount):
|
|
27381
|
+
self._BasicCreditAmount = BasicCreditAmount
|
|
27382
|
+
|
|
27383
|
+
@property
|
|
27384
|
+
def OweAmount(self):
|
|
27385
|
+
r"""<p>欠费金额</p><p>单位:分</p>
|
|
27386
|
+
:rtype: float
|
|
27387
|
+
"""
|
|
27388
|
+
return self._OweAmount
|
|
27389
|
+
|
|
27390
|
+
@OweAmount.setter
|
|
27391
|
+
def OweAmount(self, OweAmount):
|
|
27392
|
+
self._OweAmount = OweAmount
|
|
27393
|
+
|
|
27394
|
+
|
|
27395
|
+
def _deserialize(self, params):
|
|
27396
|
+
self._MemberUin = params.get("MemberUin")
|
|
27397
|
+
self._MemberName = params.get("MemberName")
|
|
27398
|
+
self._IsCreditAccount = params.get("IsCreditAccount")
|
|
27399
|
+
self._RealBalance = params.get("RealBalance")
|
|
27400
|
+
self._CashAccountBalance = params.get("CashAccountBalance")
|
|
27401
|
+
self._CreditAmount = params.get("CreditAmount")
|
|
27402
|
+
self._TempCredit = params.get("TempCredit")
|
|
27403
|
+
self._BasicCreditAmount = params.get("BasicCreditAmount")
|
|
27404
|
+
self._OweAmount = params.get("OweAmount")
|
|
27405
|
+
memeber_set = set(params.keys())
|
|
27406
|
+
for name, value in vars(self).items():
|
|
27407
|
+
property_name = name[1:]
|
|
27408
|
+
if property_name in memeber_set:
|
|
27409
|
+
memeber_set.remove(property_name)
|
|
27410
|
+
if len(memeber_set) > 0:
|
|
27411
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
27412
|
+
|
|
27413
|
+
|
|
27414
|
+
|
|
27415
|
+
class DescribeOrgMemberAccountBalanceRequest(AbstractModel):
|
|
27416
|
+
r"""DescribeOrgMemberAccountBalance请求参数结构体
|
|
27417
|
+
|
|
27418
|
+
"""
|
|
27419
|
+
|
|
27420
|
+
def __init__(self):
|
|
27421
|
+
r"""
|
|
27422
|
+
:param _PageNumber: <p>页码</p><p>默认值:1</p><p>取值范围≥1</p>
|
|
27423
|
+
:type PageNumber: int
|
|
27424
|
+
:param _PageSize: <p>单页大小</p><p>取值范围:[1, 10]</p><p>默认值:10</p>
|
|
27425
|
+
:type PageSize: int
|
|
27426
|
+
:param _MemberUins: <p>成员uin列表</p><p>入参限制:元素必须为纯数字字符串,并且元素个数不能大于10</p><p>为空时返回当前组织内所有成员的账户余额信息,不为空时返回指定成员的账户余额信息</p>
|
|
27427
|
+
:type MemberUins: list of str
|
|
27428
|
+
"""
|
|
27429
|
+
self._PageNumber = None
|
|
27430
|
+
self._PageSize = None
|
|
27431
|
+
self._MemberUins = None
|
|
27432
|
+
|
|
27433
|
+
@property
|
|
27434
|
+
def PageNumber(self):
|
|
27435
|
+
r"""<p>页码</p><p>默认值:1</p><p>取值范围≥1</p>
|
|
27436
|
+
:rtype: int
|
|
27437
|
+
"""
|
|
27438
|
+
return self._PageNumber
|
|
27439
|
+
|
|
27440
|
+
@PageNumber.setter
|
|
27441
|
+
def PageNumber(self, PageNumber):
|
|
27442
|
+
self._PageNumber = PageNumber
|
|
27443
|
+
|
|
27444
|
+
@property
|
|
27445
|
+
def PageSize(self):
|
|
27446
|
+
r"""<p>单页大小</p><p>取值范围:[1, 10]</p><p>默认值:10</p>
|
|
27447
|
+
:rtype: int
|
|
27448
|
+
"""
|
|
27449
|
+
return self._PageSize
|
|
27450
|
+
|
|
27451
|
+
@PageSize.setter
|
|
27452
|
+
def PageSize(self, PageSize):
|
|
27453
|
+
self._PageSize = PageSize
|
|
27454
|
+
|
|
27455
|
+
@property
|
|
27456
|
+
def MemberUins(self):
|
|
27457
|
+
r"""<p>成员uin列表</p><p>入参限制:元素必须为纯数字字符串,并且元素个数不能大于10</p><p>为空时返回当前组织内所有成员的账户余额信息,不为空时返回指定成员的账户余额信息</p>
|
|
27458
|
+
:rtype: list of str
|
|
27459
|
+
"""
|
|
27460
|
+
return self._MemberUins
|
|
27461
|
+
|
|
27462
|
+
@MemberUins.setter
|
|
27463
|
+
def MemberUins(self, MemberUins):
|
|
27464
|
+
self._MemberUins = MemberUins
|
|
27465
|
+
|
|
27466
|
+
|
|
27467
|
+
def _deserialize(self, params):
|
|
27468
|
+
self._PageNumber = params.get("PageNumber")
|
|
27469
|
+
self._PageSize = params.get("PageSize")
|
|
27470
|
+
self._MemberUins = params.get("MemberUins")
|
|
27471
|
+
memeber_set = set(params.keys())
|
|
27472
|
+
for name, value in vars(self).items():
|
|
27473
|
+
property_name = name[1:]
|
|
27474
|
+
if property_name in memeber_set:
|
|
27475
|
+
memeber_set.remove(property_name)
|
|
27476
|
+
if len(memeber_set) > 0:
|
|
27477
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
27478
|
+
|
|
27479
|
+
|
|
27480
|
+
|
|
27481
|
+
class DescribeOrgMemberAccountBalanceResponse(AbstractModel):
|
|
27482
|
+
r"""DescribeOrgMemberAccountBalance返回参数结构体
|
|
27483
|
+
|
|
27484
|
+
"""
|
|
27485
|
+
|
|
27486
|
+
def __init__(self):
|
|
27487
|
+
r"""
|
|
27488
|
+
:param _Data: <p>成员账户余额列表</p>
|
|
27489
|
+
:type Data: list of DescribeOrgMemberAccountBalanceData
|
|
27490
|
+
:param _TotalCount: <p>总记录数</p>
|
|
27491
|
+
:type TotalCount: int
|
|
27492
|
+
:param _PageSize: <p>当前页实际返回数量</p>
|
|
27493
|
+
:type PageSize: int
|
|
27494
|
+
:param _PageNumber: <p>当前页码</p>
|
|
27495
|
+
:type PageNumber: int
|
|
27496
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
27497
|
+
:type RequestId: str
|
|
27498
|
+
"""
|
|
27499
|
+
self._Data = None
|
|
27500
|
+
self._TotalCount = None
|
|
27501
|
+
self._PageSize = None
|
|
27502
|
+
self._PageNumber = None
|
|
27503
|
+
self._RequestId = None
|
|
27504
|
+
|
|
27505
|
+
@property
|
|
27506
|
+
def Data(self):
|
|
27507
|
+
r"""<p>成员账户余额列表</p>
|
|
27508
|
+
:rtype: list of DescribeOrgMemberAccountBalanceData
|
|
27509
|
+
"""
|
|
27510
|
+
return self._Data
|
|
27511
|
+
|
|
27512
|
+
@Data.setter
|
|
27513
|
+
def Data(self, Data):
|
|
27514
|
+
self._Data = Data
|
|
27515
|
+
|
|
27516
|
+
@property
|
|
27517
|
+
def TotalCount(self):
|
|
27518
|
+
r"""<p>总记录数</p>
|
|
27519
|
+
:rtype: int
|
|
27520
|
+
"""
|
|
27521
|
+
return self._TotalCount
|
|
27522
|
+
|
|
27523
|
+
@TotalCount.setter
|
|
27524
|
+
def TotalCount(self, TotalCount):
|
|
27525
|
+
self._TotalCount = TotalCount
|
|
27526
|
+
|
|
27527
|
+
@property
|
|
27528
|
+
def PageSize(self):
|
|
27529
|
+
r"""<p>当前页实际返回数量</p>
|
|
27530
|
+
:rtype: int
|
|
27531
|
+
"""
|
|
27532
|
+
return self._PageSize
|
|
27533
|
+
|
|
27534
|
+
@PageSize.setter
|
|
27535
|
+
def PageSize(self, PageSize):
|
|
27536
|
+
self._PageSize = PageSize
|
|
27537
|
+
|
|
27538
|
+
@property
|
|
27539
|
+
def PageNumber(self):
|
|
27540
|
+
r"""<p>当前页码</p>
|
|
27541
|
+
:rtype: int
|
|
27542
|
+
"""
|
|
27543
|
+
return self._PageNumber
|
|
27544
|
+
|
|
27545
|
+
@PageNumber.setter
|
|
27546
|
+
def PageNumber(self, PageNumber):
|
|
27547
|
+
self._PageNumber = PageNumber
|
|
27548
|
+
|
|
27549
|
+
@property
|
|
27550
|
+
def RequestId(self):
|
|
27551
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
27552
|
+
:rtype: str
|
|
27553
|
+
"""
|
|
27554
|
+
return self._RequestId
|
|
27555
|
+
|
|
27556
|
+
@RequestId.setter
|
|
27557
|
+
def RequestId(self, RequestId):
|
|
27558
|
+
self._RequestId = RequestId
|
|
27559
|
+
|
|
27560
|
+
|
|
27561
|
+
def _deserialize(self, params):
|
|
27562
|
+
if params.get("Data") is not None:
|
|
27563
|
+
self._Data = []
|
|
27564
|
+
for item in params.get("Data"):
|
|
27565
|
+
obj = DescribeOrgMemberAccountBalanceData()
|
|
27566
|
+
obj._deserialize(item)
|
|
27567
|
+
self._Data.append(obj)
|
|
27568
|
+
self._TotalCount = params.get("TotalCount")
|
|
27569
|
+
self._PageSize = params.get("PageSize")
|
|
27570
|
+
self._PageNumber = params.get("PageNumber")
|
|
27571
|
+
self._RequestId = params.get("RequestId")
|
|
27572
|
+
|
|
27573
|
+
|
|
27259
27574
|
class DescribeRenewInstancesRequest(AbstractModel):
|
|
27260
27575
|
r"""DescribeRenewInstances请求参数结构体
|
|
27261
27576
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-billing
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.112
|
|
4
4
|
Summary: Tencent Cloud Billing SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.112
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.112
|
tencentcloud_sdk_python_billing-3.1.102/tencentcloud_sdk_python_billing.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.102
|
{tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/README.rst
RENAMED
|
File without changes
|
{tencentcloud_sdk_python_billing-3.1.102 → tencentcloud_sdk_python_billing-3.1.112}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|