tencentcloud-sdk-python-billing 3.1.13__tar.gz → 3.1.14__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.14}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/setup.py +1 -1
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/tencentcloud/billing/v20180709/models.py +30 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/tencentcloud_sdk_python_billing.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_billing-3.1.14/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.14}/README.rst +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/setup.cfg +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/tencentcloud/billing/__init__.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/tencentcloud/billing/v20180709/__init__.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/tencentcloud/billing/v20180709/billing_client.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/tencentcloud/billing/v20180709/billing_client_async.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/tencentcloud/billing/v20180709/errorcodes.py +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/tencentcloud_sdk_python_billing.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/tencentcloud_sdk_python_billing.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_billing-3.1.13 → tencentcloud_sdk_python_billing-3.1.14}/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.14
|
|
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.14
|
|
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.14,<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:]
|
|
@@ -25358,6 +25373,8 @@ class DescribeDealsByCondRequest(AbstractModel):
|
|
|
25358
25373
|
:type BigDealId: str
|
|
25359
25374
|
:param _ResourceId: 资源id
|
|
25360
25375
|
:type ResourceId: str
|
|
25376
|
+
:param _StatusSet: 订单状态
|
|
25377
|
+
:type StatusSet: list of int
|
|
25361
25378
|
"""
|
|
25362
25379
|
self._StartTime = None
|
|
25363
25380
|
self._EndTime = None
|
|
@@ -25367,6 +25384,7 @@ class DescribeDealsByCondRequest(AbstractModel):
|
|
|
25367
25384
|
self._OrderId = None
|
|
25368
25385
|
self._BigDealId = None
|
|
25369
25386
|
self._ResourceId = None
|
|
25387
|
+
self._StatusSet = None
|
|
25370
25388
|
|
|
25371
25389
|
@property
|
|
25372
25390
|
def StartTime(self):
|
|
@@ -25468,6 +25486,17 @@ class DescribeDealsByCondRequest(AbstractModel):
|
|
|
25468
25486
|
def ResourceId(self, ResourceId):
|
|
25469
25487
|
self._ResourceId = ResourceId
|
|
25470
25488
|
|
|
25489
|
+
@property
|
|
25490
|
+
def StatusSet(self):
|
|
25491
|
+
r"""订单状态
|
|
25492
|
+
:rtype: list of int
|
|
25493
|
+
"""
|
|
25494
|
+
return self._StatusSet
|
|
25495
|
+
|
|
25496
|
+
@StatusSet.setter
|
|
25497
|
+
def StatusSet(self, StatusSet):
|
|
25498
|
+
self._StatusSet = StatusSet
|
|
25499
|
+
|
|
25471
25500
|
|
|
25472
25501
|
def _deserialize(self, params):
|
|
25473
25502
|
self._StartTime = params.get("StartTime")
|
|
@@ -25478,6 +25507,7 @@ class DescribeDealsByCondRequest(AbstractModel):
|
|
|
25478
25507
|
self._OrderId = params.get("OrderId")
|
|
25479
25508
|
self._BigDealId = params.get("BigDealId")
|
|
25480
25509
|
self._ResourceId = params.get("ResourceId")
|
|
25510
|
+
self._StatusSet = params.get("StatusSet")
|
|
25481
25511
|
memeber_set = set(params.keys())
|
|
25482
25512
|
for name, value in vars(self).items():
|
|
25483
25513
|
property_name = name[1:]
|
|
@@ -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.14
|
|
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.14
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.14
|
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.14}/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
|