tencentcloud-sdk-python-billing 3.0.1131__tar.gz → 3.0.1135__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/setup.py +1 -1
  3. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/tencentcloud/billing/v20180709/models.py +39 -0
  5. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/tencentcloud_sdk_python_billing.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-billing-3.0.1135/tencentcloud_sdk_python_billing.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-billing-3.0.1131/tencentcloud_sdk_python_billing.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/README.rst +0 -0
  9. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/tencentcloud/billing/__init__.py +0 -0
  11. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/tencentcloud/billing/v20180709/__init__.py +0 -0
  12. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/tencentcloud/billing/v20180709/billing_client.py +0 -0
  13. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/tencentcloud/billing/v20180709/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/tencentcloud_sdk_python_billing.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/tencentcloud_sdk_python_billing.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-billing-3.0.1131 → tencentcloud-sdk-python-billing-3.0.1135}/tencentcloud_sdk_python_billing.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-billing
3
- Version: 3.0.1131
3
+ Version: 3.0.1135
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
@@ -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.0.1131"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1135"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Billing SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1131'
17
+ __version__ = '3.0.1135'
@@ -5115,6 +5115,15 @@ class BillDetail(AbstractModel):
5115
5115
  :param _Id: 账单记录ID
5116
5116
  注意:此字段可能返回 null,表示取不到有效值。
5117
5117
  :type Id: str
5118
+ :param _RegionType: 国内国际编码
5119
+ 注意:此字段可能返回 null,表示取不到有效值。
5120
+ :type RegionType: str
5121
+ :param _RegionTypeName: 国内国际:资源所属区域类型(国内、国际)
5122
+ 注意:此字段可能返回 null,表示取不到有效值。
5123
+ :type RegionTypeName: str
5124
+ :param _ReserveDetail: 备注属性(实例配置):其他备注信息,如预留实例的预留实例类型和交易类型、CCN 产品的两端地域信息
5125
+ 注意:此字段可能返回 null,表示取不到有效值。
5126
+ :type ReserveDetail: str
5118
5127
  """
5119
5128
  self._BusinessCodeName = None
5120
5129
  self._ProductCodeName = None
@@ -5147,6 +5156,9 @@ class BillDetail(AbstractModel):
5147
5156
  self._BillDay = None
5148
5157
  self._BillMonth = None
5149
5158
  self._Id = None
5159
+ self._RegionType = None
5160
+ self._RegionTypeName = None
5161
+ self._ReserveDetail = None
5150
5162
 
5151
5163
  @property
5152
5164
  def BusinessCodeName(self):
@@ -5396,6 +5408,30 @@ class BillDetail(AbstractModel):
5396
5408
  def Id(self, Id):
5397
5409
  self._Id = Id
5398
5410
 
5411
+ @property
5412
+ def RegionType(self):
5413
+ return self._RegionType
5414
+
5415
+ @RegionType.setter
5416
+ def RegionType(self, RegionType):
5417
+ self._RegionType = RegionType
5418
+
5419
+ @property
5420
+ def RegionTypeName(self):
5421
+ return self._RegionTypeName
5422
+
5423
+ @RegionTypeName.setter
5424
+ def RegionTypeName(self, RegionTypeName):
5425
+ self._RegionTypeName = RegionTypeName
5426
+
5427
+ @property
5428
+ def ReserveDetail(self):
5429
+ return self._ReserveDetail
5430
+
5431
+ @ReserveDetail.setter
5432
+ def ReserveDetail(self, ReserveDetail):
5433
+ self._ReserveDetail = ReserveDetail
5434
+
5399
5435
 
5400
5436
  def _deserialize(self, params):
5401
5437
  self._BusinessCodeName = params.get("BusinessCodeName")
@@ -5441,6 +5477,9 @@ class BillDetail(AbstractModel):
5441
5477
  self._BillDay = params.get("BillDay")
5442
5478
  self._BillMonth = params.get("BillMonth")
5443
5479
  self._Id = params.get("Id")
5480
+ self._RegionType = params.get("RegionType")
5481
+ self._RegionTypeName = params.get("RegionTypeName")
5482
+ self._ReserveDetail = params.get("ReserveDetail")
5444
5483
  memeber_set = set(params.keys())
5445
5484
  for name, value in vars(self).items():
5446
5485
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-billing
3
- Version: 3.0.1131
3
+ Version: 3.0.1135
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1135
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1131