tencentcloud-sdk-python-billing 3.1.13__tar.gz → 3.1.18__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.13 → tencentcloud_sdk_python_billing-3.1.18}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/setup.py +1 -1
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/tencentcloud/billing/v20180709/models.py +182 -6
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/tencentcloud_sdk_python_billing.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_billing-3.1.18/tencentcloud_sdk_python_billing.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_billing-3.1.13/tencentcloud_sdk_python_billing.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/README.rst +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/setup.cfg +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/tencentcloud/billing/__init__.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/tencentcloud/billing/v20180709/__init__.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/tencentcloud/billing/v20180709/billing_client.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/tencentcloud/billing/v20180709/billing_client_async.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/tencentcloud/billing/v20180709/errorcodes.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/tencentcloud_sdk_python_billing.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/tencentcloud_sdk_python_billing.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/tencentcloud_sdk_python_billing.egg-info/top_level.txt +0 -0
|
@@ -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.18
|
|
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.18
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -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.18,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Billing SDK for Python',
|
|
@@ -15510,6 +15510,8 @@ postMoveIn 按量计费迁入资源
|
|
|
15510
15510
|
:param _ResourceId: 订单对应的资源id, 查询参数Limit超过200,将返回null
|
|
15511
15511
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15512
15512
|
:type ResourceId: list of str
|
|
15513
|
+
:param _ZoneCode: 订单对应的可用区Id
|
|
15514
|
+
:type ZoneCode: str
|
|
15513
15515
|
"""
|
|
15514
15516
|
self._OrderId = None
|
|
15515
15517
|
self._Status = None
|
|
@@ -15537,6 +15539,7 @@ postMoveIn 按量计费迁入资源
|
|
|
15537
15539
|
self._ProductName = None
|
|
15538
15540
|
self._SubProductName = None
|
|
15539
15541
|
self._ResourceId = None
|
|
15542
|
+
self._ZoneCode = None
|
|
15540
15543
|
|
|
15541
15544
|
@property
|
|
15542
15545
|
def OrderId(self):
|
|
@@ -15837,6 +15840,17 @@ postMoveIn 按量计费迁入资源
|
|
|
15837
15840
|
def ResourceId(self, ResourceId):
|
|
15838
15841
|
self._ResourceId = ResourceId
|
|
15839
15842
|
|
|
15843
|
+
@property
|
|
15844
|
+
def ZoneCode(self):
|
|
15845
|
+
r"""订单对应的可用区Id
|
|
15846
|
+
:rtype: str
|
|
15847
|
+
"""
|
|
15848
|
+
return self._ZoneCode
|
|
15849
|
+
|
|
15850
|
+
@ZoneCode.setter
|
|
15851
|
+
def ZoneCode(self, ZoneCode):
|
|
15852
|
+
self._ZoneCode = ZoneCode
|
|
15853
|
+
|
|
15840
15854
|
|
|
15841
15855
|
def _deserialize(self, params):
|
|
15842
15856
|
self._OrderId = params.get("OrderId")
|
|
@@ -15870,6 +15884,7 @@ postMoveIn 按量计费迁入资源
|
|
|
15870
15884
|
self._ProductName = params.get("ProductName")
|
|
15871
15885
|
self._SubProductName = params.get("SubProductName")
|
|
15872
15886
|
self._ResourceId = params.get("ResourceId")
|
|
15887
|
+
self._ZoneCode = params.get("ZoneCode")
|
|
15873
15888
|
memeber_set = set(params.keys())
|
|
15874
15889
|
for name, value in vars(self).items():
|
|
15875
15890
|
property_name = name[1:]
|
|
@@ -16295,6 +16310,36 @@ class DescribeAccountBalanceRequest(AbstractModel):
|
|
|
16295
16310
|
|
|
16296
16311
|
"""
|
|
16297
16312
|
|
|
16313
|
+
def __init__(self):
|
|
16314
|
+
r"""
|
|
16315
|
+
:param _TempCredit: 是否查询临时额度
|
|
16316
|
+
:type TempCredit: bool
|
|
16317
|
+
"""
|
|
16318
|
+
self._TempCredit = None
|
|
16319
|
+
|
|
16320
|
+
@property
|
|
16321
|
+
def TempCredit(self):
|
|
16322
|
+
r"""是否查询临时额度
|
|
16323
|
+
:rtype: bool
|
|
16324
|
+
"""
|
|
16325
|
+
return self._TempCredit
|
|
16326
|
+
|
|
16327
|
+
@TempCredit.setter
|
|
16328
|
+
def TempCredit(self, TempCredit):
|
|
16329
|
+
self._TempCredit = TempCredit
|
|
16330
|
+
|
|
16331
|
+
|
|
16332
|
+
def _deserialize(self, params):
|
|
16333
|
+
self._TempCredit = params.get("TempCredit")
|
|
16334
|
+
memeber_set = set(params.keys())
|
|
16335
|
+
for name, value in vars(self).items():
|
|
16336
|
+
property_name = name[1:]
|
|
16337
|
+
if property_name in memeber_set:
|
|
16338
|
+
memeber_set.remove(property_name)
|
|
16339
|
+
if len(memeber_set) > 0:
|
|
16340
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
16341
|
+
|
|
16342
|
+
|
|
16298
16343
|
|
|
16299
16344
|
class DescribeAccountBalanceResponse(AbstractModel):
|
|
16300
16345
|
r"""DescribeAccountBalance返回参数结构体
|
|
@@ -16329,6 +16374,10 @@ class DescribeAccountBalanceResponse(AbstractModel):
|
|
|
16329
16374
|
:type CreditBalance: float
|
|
16330
16375
|
:param _RealCreditBalance: 真实可用信用额度,单位 分
|
|
16331
16376
|
:type RealCreditBalance: float
|
|
16377
|
+
:param _TempCredit: 临时额度,单位 分
|
|
16378
|
+
:type TempCredit: float
|
|
16379
|
+
:param _TempAmountInfoList: 临时额度详情
|
|
16380
|
+
:type TempAmountInfoList: list of UinTempAmountModel
|
|
16332
16381
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
16333
16382
|
:type RequestId: str
|
|
16334
16383
|
"""
|
|
@@ -16345,6 +16394,8 @@ class DescribeAccountBalanceResponse(AbstractModel):
|
|
|
16345
16394
|
self._CreditAmount = None
|
|
16346
16395
|
self._CreditBalance = None
|
|
16347
16396
|
self._RealCreditBalance = None
|
|
16397
|
+
self._TempCredit = None
|
|
16398
|
+
self._TempAmountInfoList = None
|
|
16348
16399
|
self._RequestId = None
|
|
16349
16400
|
|
|
16350
16401
|
@property
|
|
@@ -16498,6 +16549,28 @@ class DescribeAccountBalanceResponse(AbstractModel):
|
|
|
16498
16549
|
def RealCreditBalance(self, RealCreditBalance):
|
|
16499
16550
|
self._RealCreditBalance = RealCreditBalance
|
|
16500
16551
|
|
|
16552
|
+
@property
|
|
16553
|
+
def TempCredit(self):
|
|
16554
|
+
r"""临时额度,单位 分
|
|
16555
|
+
:rtype: float
|
|
16556
|
+
"""
|
|
16557
|
+
return self._TempCredit
|
|
16558
|
+
|
|
16559
|
+
@TempCredit.setter
|
|
16560
|
+
def TempCredit(self, TempCredit):
|
|
16561
|
+
self._TempCredit = TempCredit
|
|
16562
|
+
|
|
16563
|
+
@property
|
|
16564
|
+
def TempAmountInfoList(self):
|
|
16565
|
+
r"""临时额度详情
|
|
16566
|
+
:rtype: list of UinTempAmountModel
|
|
16567
|
+
"""
|
|
16568
|
+
return self._TempAmountInfoList
|
|
16569
|
+
|
|
16570
|
+
@TempAmountInfoList.setter
|
|
16571
|
+
def TempAmountInfoList(self, TempAmountInfoList):
|
|
16572
|
+
self._TempAmountInfoList = TempAmountInfoList
|
|
16573
|
+
|
|
16501
16574
|
@property
|
|
16502
16575
|
def RequestId(self):
|
|
16503
16576
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -16524,6 +16597,13 @@ class DescribeAccountBalanceResponse(AbstractModel):
|
|
|
16524
16597
|
self._CreditAmount = params.get("CreditAmount")
|
|
16525
16598
|
self._CreditBalance = params.get("CreditBalance")
|
|
16526
16599
|
self._RealCreditBalance = params.get("RealCreditBalance")
|
|
16600
|
+
self._TempCredit = params.get("TempCredit")
|
|
16601
|
+
if params.get("TempAmountInfoList") is not None:
|
|
16602
|
+
self._TempAmountInfoList = []
|
|
16603
|
+
for item in params.get("TempAmountInfoList"):
|
|
16604
|
+
obj = UinTempAmountModel()
|
|
16605
|
+
obj._deserialize(item)
|
|
16606
|
+
self._TempAmountInfoList.append(obj)
|
|
16527
16607
|
self._RequestId = params.get("RequestId")
|
|
16528
16608
|
|
|
16529
16609
|
|
|
@@ -23906,14 +23986,14 @@ class DescribeCostDetailRequest(AbstractModel):
|
|
|
23906
23986
|
:type Limit: int
|
|
23907
23987
|
:param _Offset: 偏移量
|
|
23908
23988
|
:type Offset: int
|
|
23909
|
-
:param _BeginTime:
|
|
23989
|
+
:param _BeginTime: 周期开始时间,查询粒度为天级别,需传入时分秒参数,格式为yyyy-mm-dd hh:ii:ss,Month和BeginTime&EndTime必传一个,如果有该字段则Month字段无效。BeginTime和EndTime必须一起传,且为同一月份,暂不支持跨月拉取。可拉取的数据是开通消耗账单后,且距今 18 个月内的数据。
|
|
23910
23990
|
:type BeginTime: str
|
|
23911
|
-
:param _EndTime:
|
|
23991
|
+
:param _EndTime: 周期结束时间,查询粒度为天级别,需传入时分秒参数,格式为yyyy-mm-dd hh:ii:ss,Month和BeginTime&EndTime必传一个,如果有该字段则Month字段无效。BeginTime和EndTime必须一起传,且为同一月份,暂不支持跨月拉取。可拉取的数据是开通消耗账单后,且距今 18 个月内的数据。
|
|
23912
23992
|
:type EndTime: str
|
|
23913
23993
|
:param _NeedRecordNum: 是否需要访问列表的总记录数,用于前端分页
|
|
23914
23994
|
1-表示需要, 0-表示不需要
|
|
23915
23995
|
:type NeedRecordNum: int
|
|
23916
|
-
:param _Month: 月份,格式为yyyy-mm,Month和BeginTime&EndTime必传一个,如果有传BeginTime&EndTime则Month
|
|
23996
|
+
:param _Month: 月份,格式为yyyy-mm,Month和BeginTime&EndTime必传一个,如果有传BeginTime&EndTime则Month字段无效。不能早于开通消耗账单的月份,最多可拉取18个月内的数据。
|
|
23917
23997
|
:type Month: str
|
|
23918
23998
|
:param _ProductCode: 查询指定产品信息
|
|
23919
23999
|
:type ProductCode: str
|
|
@@ -23956,7 +24036,7 @@ class DescribeCostDetailRequest(AbstractModel):
|
|
|
23956
24036
|
|
|
23957
24037
|
@property
|
|
23958
24038
|
def BeginTime(self):
|
|
23959
|
-
r"""
|
|
24039
|
+
r"""周期开始时间,查询粒度为天级别,需传入时分秒参数,格式为yyyy-mm-dd hh:ii:ss,Month和BeginTime&EndTime必传一个,如果有该字段则Month字段无效。BeginTime和EndTime必须一起传,且为同一月份,暂不支持跨月拉取。可拉取的数据是开通消耗账单后,且距今 18 个月内的数据。
|
|
23960
24040
|
:rtype: str
|
|
23961
24041
|
"""
|
|
23962
24042
|
return self._BeginTime
|
|
@@ -23967,7 +24047,7 @@ class DescribeCostDetailRequest(AbstractModel):
|
|
|
23967
24047
|
|
|
23968
24048
|
@property
|
|
23969
24049
|
def EndTime(self):
|
|
23970
|
-
r"""
|
|
24050
|
+
r"""周期结束时间,查询粒度为天级别,需传入时分秒参数,格式为yyyy-mm-dd hh:ii:ss,Month和BeginTime&EndTime必传一个,如果有该字段则Month字段无效。BeginTime和EndTime必须一起传,且为同一月份,暂不支持跨月拉取。可拉取的数据是开通消耗账单后,且距今 18 个月内的数据。
|
|
23971
24051
|
:rtype: str
|
|
23972
24052
|
"""
|
|
23973
24053
|
return self._EndTime
|
|
@@ -23990,7 +24070,7 @@ class DescribeCostDetailRequest(AbstractModel):
|
|
|
23990
24070
|
|
|
23991
24071
|
@property
|
|
23992
24072
|
def Month(self):
|
|
23993
|
-
r"""月份,格式为yyyy-mm,Month和BeginTime&EndTime必传一个,如果有传BeginTime&EndTime则Month
|
|
24073
|
+
r"""月份,格式为yyyy-mm,Month和BeginTime&EndTime必传一个,如果有传BeginTime&EndTime则Month字段无效。不能早于开通消耗账单的月份,最多可拉取18个月内的数据。
|
|
23994
24074
|
:rtype: str
|
|
23995
24075
|
"""
|
|
23996
24076
|
return self._Month
|
|
@@ -25358,6 +25438,8 @@ class DescribeDealsByCondRequest(AbstractModel):
|
|
|
25358
25438
|
:type BigDealId: str
|
|
25359
25439
|
:param _ResourceId: 资源id
|
|
25360
25440
|
:type ResourceId: str
|
|
25441
|
+
:param _StatusSet: 订单状态
|
|
25442
|
+
:type StatusSet: list of int
|
|
25361
25443
|
"""
|
|
25362
25444
|
self._StartTime = None
|
|
25363
25445
|
self._EndTime = None
|
|
@@ -25367,6 +25449,7 @@ class DescribeDealsByCondRequest(AbstractModel):
|
|
|
25367
25449
|
self._OrderId = None
|
|
25368
25450
|
self._BigDealId = None
|
|
25369
25451
|
self._ResourceId = None
|
|
25452
|
+
self._StatusSet = None
|
|
25370
25453
|
|
|
25371
25454
|
@property
|
|
25372
25455
|
def StartTime(self):
|
|
@@ -25468,6 +25551,17 @@ class DescribeDealsByCondRequest(AbstractModel):
|
|
|
25468
25551
|
def ResourceId(self, ResourceId):
|
|
25469
25552
|
self._ResourceId = ResourceId
|
|
25470
25553
|
|
|
25554
|
+
@property
|
|
25555
|
+
def StatusSet(self):
|
|
25556
|
+
r"""订单状态
|
|
25557
|
+
:rtype: list of int
|
|
25558
|
+
"""
|
|
25559
|
+
return self._StatusSet
|
|
25560
|
+
|
|
25561
|
+
@StatusSet.setter
|
|
25562
|
+
def StatusSet(self, StatusSet):
|
|
25563
|
+
self._StatusSet = StatusSet
|
|
25564
|
+
|
|
25471
25565
|
|
|
25472
25566
|
def _deserialize(self, params):
|
|
25473
25567
|
self._StartTime = params.get("StartTime")
|
|
@@ -25478,6 +25572,7 @@ class DescribeDealsByCondRequest(AbstractModel):
|
|
|
25478
25572
|
self._OrderId = params.get("OrderId")
|
|
25479
25573
|
self._BigDealId = params.get("BigDealId")
|
|
25480
25574
|
self._ResourceId = params.get("ResourceId")
|
|
25575
|
+
self._StatusSet = params.get("StatusSet")
|
|
25481
25576
|
memeber_set = set(params.keys())
|
|
25482
25577
|
for name, value in vars(self).items():
|
|
25483
25578
|
property_name = name[1:]
|
|
@@ -31185,6 +31280,87 @@ class TagsForm(AbstractModel):
|
|
|
31185
31280
|
|
|
31186
31281
|
|
|
31187
31282
|
|
|
31283
|
+
class UinTempAmountModel(AbstractModel):
|
|
31284
|
+
r"""临时额度详情
|
|
31285
|
+
|
|
31286
|
+
"""
|
|
31287
|
+
|
|
31288
|
+
def __init__(self):
|
|
31289
|
+
r"""
|
|
31290
|
+
:param _Uin: 用户uin
|
|
31291
|
+
:type Uin: str
|
|
31292
|
+
:param _TempAmount: 临时额度
|
|
31293
|
+
:type TempAmount: float
|
|
31294
|
+
:param _StartTime: 开始时间
|
|
31295
|
+
:type StartTime: str
|
|
31296
|
+
:param _EndTime: 结束时间
|
|
31297
|
+
:type EndTime: str
|
|
31298
|
+
"""
|
|
31299
|
+
self._Uin = None
|
|
31300
|
+
self._TempAmount = None
|
|
31301
|
+
self._StartTime = None
|
|
31302
|
+
self._EndTime = None
|
|
31303
|
+
|
|
31304
|
+
@property
|
|
31305
|
+
def Uin(self):
|
|
31306
|
+
r"""用户uin
|
|
31307
|
+
:rtype: str
|
|
31308
|
+
"""
|
|
31309
|
+
return self._Uin
|
|
31310
|
+
|
|
31311
|
+
@Uin.setter
|
|
31312
|
+
def Uin(self, Uin):
|
|
31313
|
+
self._Uin = Uin
|
|
31314
|
+
|
|
31315
|
+
@property
|
|
31316
|
+
def TempAmount(self):
|
|
31317
|
+
r"""临时额度
|
|
31318
|
+
:rtype: float
|
|
31319
|
+
"""
|
|
31320
|
+
return self._TempAmount
|
|
31321
|
+
|
|
31322
|
+
@TempAmount.setter
|
|
31323
|
+
def TempAmount(self, TempAmount):
|
|
31324
|
+
self._TempAmount = TempAmount
|
|
31325
|
+
|
|
31326
|
+
@property
|
|
31327
|
+
def StartTime(self):
|
|
31328
|
+
r"""开始时间
|
|
31329
|
+
:rtype: str
|
|
31330
|
+
"""
|
|
31331
|
+
return self._StartTime
|
|
31332
|
+
|
|
31333
|
+
@StartTime.setter
|
|
31334
|
+
def StartTime(self, StartTime):
|
|
31335
|
+
self._StartTime = StartTime
|
|
31336
|
+
|
|
31337
|
+
@property
|
|
31338
|
+
def EndTime(self):
|
|
31339
|
+
r"""结束时间
|
|
31340
|
+
:rtype: str
|
|
31341
|
+
"""
|
|
31342
|
+
return self._EndTime
|
|
31343
|
+
|
|
31344
|
+
@EndTime.setter
|
|
31345
|
+
def EndTime(self, EndTime):
|
|
31346
|
+
self._EndTime = EndTime
|
|
31347
|
+
|
|
31348
|
+
|
|
31349
|
+
def _deserialize(self, params):
|
|
31350
|
+
self._Uin = params.get("Uin")
|
|
31351
|
+
self._TempAmount = params.get("TempAmount")
|
|
31352
|
+
self._StartTime = params.get("StartTime")
|
|
31353
|
+
self._EndTime = params.get("EndTime")
|
|
31354
|
+
memeber_set = set(params.keys())
|
|
31355
|
+
for name, value in vars(self).items():
|
|
31356
|
+
property_name = name[1:]
|
|
31357
|
+
if property_name in memeber_set:
|
|
31358
|
+
memeber_set.remove(property_name)
|
|
31359
|
+
if len(memeber_set) > 0:
|
|
31360
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
31361
|
+
|
|
31362
|
+
|
|
31363
|
+
|
|
31188
31364
|
class UsageDetails(AbstractModel):
|
|
31189
31365
|
r"""购买商品信息
|
|
31190
31366
|
|
|
@@ -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.18
|
|
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.18
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.18
|
tencentcloud_sdk_python_billing-3.1.13/tencentcloud_sdk_python_billing.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.13
|
{tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.18}/README.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|