tencentcloud-sdk-python 3.0.1117__py2.py3-none-any.whl → 3.0.1119__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 might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/asr/v20190614/asr_client.py +1 -1
- tencentcloud/asr/v20190614/models.py +3 -4
- tencentcloud/bi/v20220105/models.py +36 -0
- tencentcloud/billing/v20180709/models.py +334 -17
- tencentcloud/ccc/v20200210/ccc_client.py +69 -0
- tencentcloud/ccc/v20200210/errorcodes.py +9 -0
- tencentcloud/ccc/v20200210/models.py +620 -0
- tencentcloud/cdwpg/v20201230/models.py +12 -0
- tencentcloud/ckafka/v20190819/ckafka_client.py +46 -0
- tencentcloud/ckafka/v20190819/models.py +288 -1
- tencentcloud/clb/v20180317/models.py +0 -1
- tencentcloud/cloudstudio/v20230508/models.py +52 -4
- tencentcloud/csip/v20221121/models.py +9 -8
- tencentcloud/cwp/v20180228/cwp_client.py +6 -2
- tencentcloud/cwp/v20180228/models.py +166 -0
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
- tencentcloud/cynosdb/v20190107/models.py +375 -0
- tencentcloud/dlc/v20210125/models.py +8 -0
- tencentcloud/dsgc/v20190723/models.py +24 -0
- tencentcloud/dts/v20211206/models.py +52 -0
- tencentcloud/es/v20180416/models.py +163 -5
- tencentcloud/ess/v20201111/models.py +51 -34
- tencentcloud/essbasic/v20210526/models.py +26 -7
- tencentcloud/iotexplorer/v20190423/errorcodes.py +3 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +529 -0
- tencentcloud/iotexplorer/v20190423/models.py +3400 -271
- tencentcloud/lcic/v20220817/models.py +90 -0
- tencentcloud/mps/v20190612/models.py +69 -25
- tencentcloud/ocr/v20181119/errorcodes.py +3 -0
- tencentcloud/ocr/v20181119/models.py +443 -0
- tencentcloud/ocr/v20181119/ocr_client.py +23 -0
- tencentcloud/tione/v20211111/models.py +130 -2
- tencentcloud/tms/v20201229/tms_client.py +1 -1
- tencentcloud/tts/v20190823/models.py +13 -0
- tencentcloud/vod/v20180717/models.py +12 -17
- tencentcloud/wedata/v20210820/models.py +285 -7
- {tencentcloud_sdk_python-3.0.1117.dist-info → tencentcloud_sdk_python-3.0.1119.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1117.dist-info → tencentcloud_sdk_python-3.0.1119.dist-info}/RECORD +42 -42
- {tencentcloud_sdk_python-3.0.1117.dist-info → tencentcloud_sdk_python-3.0.1119.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1117.dist-info → tencentcloud_sdk_python-3.0.1119.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1117.dist-info → tencentcloud_sdk_python-3.0.1119.dist-info}/top_level.txt +0 -0
|
@@ -335,10 +335,10 @@ class AllocationDetail(AbstractModel):
|
|
|
335
335
|
:param _ZoneName: 可用区:资源所属可用区
|
|
336
336
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
337
337
|
:type ZoneName: str
|
|
338
|
-
:param _ResourceId: 资源ID
|
|
338
|
+
:param _ResourceId: 资源ID:不同产品因资源形态不同,资源内容不完全相同,如云服务器 CVM 为对应的实例 ID; 若该产品被分拆,则展示产品分拆后的分拆项 ID,如 COS 桶 ID,CDN 域名
|
|
339
339
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
340
340
|
:type ResourceId: str
|
|
341
|
-
:param _ResourceName:
|
|
341
|
+
:param _ResourceName: 实例名称:用户在控制台为资源设置的名称,如未设置默认为空;若该产品被分拆,则展示分拆产品分拆后的分拆项资源别名
|
|
342
342
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
343
343
|
:type ResourceName: str
|
|
344
344
|
:param _InstanceType: 实例类型编码
|
|
@@ -720,18 +720,26 @@ class AllocationDetail(AbstractModel):
|
|
|
720
720
|
|
|
721
721
|
@property
|
|
722
722
|
def SplitItemId(self):
|
|
723
|
+
warnings.warn("parameter `SplitItemId` is deprecated", DeprecationWarning)
|
|
724
|
+
|
|
723
725
|
return self._SplitItemId
|
|
724
726
|
|
|
725
727
|
@SplitItemId.setter
|
|
726
728
|
def SplitItemId(self, SplitItemId):
|
|
729
|
+
warnings.warn("parameter `SplitItemId` is deprecated", DeprecationWarning)
|
|
730
|
+
|
|
727
731
|
self._SplitItemId = SplitItemId
|
|
728
732
|
|
|
729
733
|
@property
|
|
730
734
|
def SplitItemName(self):
|
|
735
|
+
warnings.warn("parameter `SplitItemName` is deprecated", DeprecationWarning)
|
|
736
|
+
|
|
731
737
|
return self._SplitItemName
|
|
732
738
|
|
|
733
739
|
@SplitItemName.setter
|
|
734
740
|
def SplitItemName(self, SplitItemName):
|
|
741
|
+
warnings.warn("parameter `SplitItemName` is deprecated", DeprecationWarning)
|
|
742
|
+
|
|
735
743
|
self._SplitItemName = SplitItemName
|
|
736
744
|
|
|
737
745
|
@property
|
|
@@ -2442,10 +2450,10 @@ class AllocationSummaryByItem(AbstractModel):
|
|
|
2442
2450
|
:param _InstanceTypeName: 实例类型:购买的产品服务对应的实例类型,包括资源包、RI、SP、竞价实例。常规实例默认展示“-”
|
|
2443
2451
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2444
2452
|
:type InstanceTypeName: str
|
|
2445
|
-
:param _ResourceId: 资源ID
|
|
2453
|
+
:param _ResourceId: 资源ID:不同产品因资源形态不同,资源内容不完全相同,如云服务器 CVM 为对应的实例 ID; 若该产品被分拆,则展示产品分拆后的分拆项 ID,如 COS 桶 ID,CDN 域名
|
|
2446
2454
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2447
2455
|
:type ResourceId: str
|
|
2448
|
-
:param _ResourceName:
|
|
2456
|
+
:param _ResourceName: 实例名称:用户在控制台为资源设置的名称,如未设置默认为空;若该产品被分拆,则展示分拆产品分拆后的分拆项资源别名
|
|
2449
2457
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2450
2458
|
:type ResourceName: str
|
|
2451
2459
|
:param _Tag: 分账标签:资源绑定的标签
|
|
@@ -2939,18 +2947,26 @@ class AllocationSummaryByItem(AbstractModel):
|
|
|
2939
2947
|
|
|
2940
2948
|
@property
|
|
2941
2949
|
def SplitItemId(self):
|
|
2950
|
+
warnings.warn("parameter `SplitItemId` is deprecated", DeprecationWarning)
|
|
2951
|
+
|
|
2942
2952
|
return self._SplitItemId
|
|
2943
2953
|
|
|
2944
2954
|
@SplitItemId.setter
|
|
2945
2955
|
def SplitItemId(self, SplitItemId):
|
|
2956
|
+
warnings.warn("parameter `SplitItemId` is deprecated", DeprecationWarning)
|
|
2957
|
+
|
|
2946
2958
|
self._SplitItemId = SplitItemId
|
|
2947
2959
|
|
|
2948
2960
|
@property
|
|
2949
2961
|
def SplitItemName(self):
|
|
2962
|
+
warnings.warn("parameter `SplitItemName` is deprecated", DeprecationWarning)
|
|
2963
|
+
|
|
2950
2964
|
return self._SplitItemName
|
|
2951
2965
|
|
|
2952
2966
|
@SplitItemName.setter
|
|
2953
2967
|
def SplitItemName(self, SplitItemName):
|
|
2968
|
+
warnings.warn("parameter `SplitItemName` is deprecated", DeprecationWarning)
|
|
2969
|
+
|
|
2954
2970
|
self._SplitItemName = SplitItemName
|
|
2955
2971
|
|
|
2956
2972
|
@property
|
|
@@ -3266,10 +3282,10 @@ class AllocationSummaryByResource(AbstractModel):
|
|
|
3266
3282
|
:param _InstanceTypeName: 实例类型:购买的产品服务对应的实例类型,包括资源包、RI、SP、竞价实例。常规实例默认展示“-”
|
|
3267
3283
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3268
3284
|
:type InstanceTypeName: str
|
|
3269
|
-
:param _ResourceId: 资源ID
|
|
3285
|
+
:param _ResourceId: 资源ID:不同产品因资源形态不同,资源内容不完全相同,如云服务器 CVM 为对应的实例 ID; 若该产品被分拆,则展示产品分拆后的分拆项 ID,如 COS 桶 ID,CDN 域名
|
|
3270
3286
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3271
3287
|
:type ResourceId: str
|
|
3272
|
-
:param _ResourceName:
|
|
3288
|
+
:param _ResourceName: 实例名称:用户在控制台为资源设置的名称,如未设置默认为空;若该产品被分拆,则展示分拆产品分拆后的分拆项资源别名
|
|
3273
3289
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3274
3290
|
:type ResourceName: str
|
|
3275
3291
|
:param _Tag: 分账标签:资源绑定的标签
|
|
@@ -3653,18 +3669,26 @@ class AllocationSummaryByResource(AbstractModel):
|
|
|
3653
3669
|
|
|
3654
3670
|
@property
|
|
3655
3671
|
def SplitItemId(self):
|
|
3672
|
+
warnings.warn("parameter `SplitItemId` is deprecated", DeprecationWarning)
|
|
3673
|
+
|
|
3656
3674
|
return self._SplitItemId
|
|
3657
3675
|
|
|
3658
3676
|
@SplitItemId.setter
|
|
3659
3677
|
def SplitItemId(self, SplitItemId):
|
|
3678
|
+
warnings.warn("parameter `SplitItemId` is deprecated", DeprecationWarning)
|
|
3679
|
+
|
|
3660
3680
|
self._SplitItemId = SplitItemId
|
|
3661
3681
|
|
|
3662
3682
|
@property
|
|
3663
3683
|
def SplitItemName(self):
|
|
3684
|
+
warnings.warn("parameter `SplitItemName` is deprecated", DeprecationWarning)
|
|
3685
|
+
|
|
3664
3686
|
return self._SplitItemName
|
|
3665
3687
|
|
|
3666
3688
|
@SplitItemName.setter
|
|
3667
3689
|
def SplitItemName(self, SplitItemName):
|
|
3690
|
+
warnings.warn("parameter `SplitItemName` is deprecated", DeprecationWarning)
|
|
3691
|
+
|
|
3668
3692
|
self._SplitItemName = SplitItemName
|
|
3669
3693
|
|
|
3670
3694
|
@property
|
|
@@ -8416,6 +8440,9 @@ class ConsumptionBusinessSummaryDataItem(AbstractModel):
|
|
|
8416
8440
|
:param _TransferPayAmount: 分成金
|
|
8417
8441
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8418
8442
|
:type TransferPayAmount: str
|
|
8443
|
+
:param _RegionName: 地域名称(仅在地域汇总总展示)
|
|
8444
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8445
|
+
:type RegionName: str
|
|
8419
8446
|
"""
|
|
8420
8447
|
self._BusinessCode = None
|
|
8421
8448
|
self._BusinessCodeName = None
|
|
@@ -8425,6 +8452,7 @@ class ConsumptionBusinessSummaryDataItem(AbstractModel):
|
|
|
8425
8452
|
self._IncentivePayAmount = None
|
|
8426
8453
|
self._VoucherPayAmount = None
|
|
8427
8454
|
self._TransferPayAmount = None
|
|
8455
|
+
self._RegionName = None
|
|
8428
8456
|
|
|
8429
8457
|
@property
|
|
8430
8458
|
def BusinessCode(self):
|
|
@@ -8490,6 +8518,14 @@ class ConsumptionBusinessSummaryDataItem(AbstractModel):
|
|
|
8490
8518
|
def TransferPayAmount(self, TransferPayAmount):
|
|
8491
8519
|
self._TransferPayAmount = TransferPayAmount
|
|
8492
8520
|
|
|
8521
|
+
@property
|
|
8522
|
+
def RegionName(self):
|
|
8523
|
+
return self._RegionName
|
|
8524
|
+
|
|
8525
|
+
@RegionName.setter
|
|
8526
|
+
def RegionName(self, RegionName):
|
|
8527
|
+
self._RegionName = RegionName
|
|
8528
|
+
|
|
8493
8529
|
|
|
8494
8530
|
def _deserialize(self, params):
|
|
8495
8531
|
self._BusinessCode = params.get("BusinessCode")
|
|
@@ -8502,6 +8538,7 @@ class ConsumptionBusinessSummaryDataItem(AbstractModel):
|
|
|
8502
8538
|
self._IncentivePayAmount = params.get("IncentivePayAmount")
|
|
8503
8539
|
self._VoucherPayAmount = params.get("VoucherPayAmount")
|
|
8504
8540
|
self._TransferPayAmount = params.get("TransferPayAmount")
|
|
8541
|
+
self._RegionName = params.get("RegionName")
|
|
8505
8542
|
memeber_set = set(params.keys())
|
|
8506
8543
|
for name, value in vars(self).items():
|
|
8507
8544
|
property_name = name[1:]
|
|
@@ -8669,12 +8706,28 @@ class ConsumptionRegionSummaryDataItem(AbstractModel):
|
|
|
8669
8706
|
:type Trend: :class:`tencentcloud.billing.v20180709.models.ConsumptionSummaryTrend`
|
|
8670
8707
|
:param _Business: 产品消费详情
|
|
8671
8708
|
:type Business: list of ConsumptionBusinessSummaryDataItem
|
|
8709
|
+
:param _CashPayAmount: 现金
|
|
8710
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8711
|
+
:type CashPayAmount: str
|
|
8712
|
+
:param _VoucherPayAmount: 代金券
|
|
8713
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8714
|
+
:type VoucherPayAmount: str
|
|
8715
|
+
:param _IncentivePayAmount: 赠送金
|
|
8716
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8717
|
+
:type IncentivePayAmount: str
|
|
8718
|
+
:param _TransferPayAmount: 分成金
|
|
8719
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8720
|
+
:type TransferPayAmount: str
|
|
8672
8721
|
"""
|
|
8673
8722
|
self._RegionId = None
|
|
8674
8723
|
self._RegionName = None
|
|
8675
8724
|
self._RealTotalCost = None
|
|
8676
8725
|
self._Trend = None
|
|
8677
8726
|
self._Business = None
|
|
8727
|
+
self._CashPayAmount = None
|
|
8728
|
+
self._VoucherPayAmount = None
|
|
8729
|
+
self._IncentivePayAmount = None
|
|
8730
|
+
self._TransferPayAmount = None
|
|
8678
8731
|
|
|
8679
8732
|
@property
|
|
8680
8733
|
def RegionId(self):
|
|
@@ -8716,6 +8769,38 @@ class ConsumptionRegionSummaryDataItem(AbstractModel):
|
|
|
8716
8769
|
def Business(self, Business):
|
|
8717
8770
|
self._Business = Business
|
|
8718
8771
|
|
|
8772
|
+
@property
|
|
8773
|
+
def CashPayAmount(self):
|
|
8774
|
+
return self._CashPayAmount
|
|
8775
|
+
|
|
8776
|
+
@CashPayAmount.setter
|
|
8777
|
+
def CashPayAmount(self, CashPayAmount):
|
|
8778
|
+
self._CashPayAmount = CashPayAmount
|
|
8779
|
+
|
|
8780
|
+
@property
|
|
8781
|
+
def VoucherPayAmount(self):
|
|
8782
|
+
return self._VoucherPayAmount
|
|
8783
|
+
|
|
8784
|
+
@VoucherPayAmount.setter
|
|
8785
|
+
def VoucherPayAmount(self, VoucherPayAmount):
|
|
8786
|
+
self._VoucherPayAmount = VoucherPayAmount
|
|
8787
|
+
|
|
8788
|
+
@property
|
|
8789
|
+
def IncentivePayAmount(self):
|
|
8790
|
+
return self._IncentivePayAmount
|
|
8791
|
+
|
|
8792
|
+
@IncentivePayAmount.setter
|
|
8793
|
+
def IncentivePayAmount(self, IncentivePayAmount):
|
|
8794
|
+
self._IncentivePayAmount = IncentivePayAmount
|
|
8795
|
+
|
|
8796
|
+
@property
|
|
8797
|
+
def TransferPayAmount(self):
|
|
8798
|
+
return self._TransferPayAmount
|
|
8799
|
+
|
|
8800
|
+
@TransferPayAmount.setter
|
|
8801
|
+
def TransferPayAmount(self, TransferPayAmount):
|
|
8802
|
+
self._TransferPayAmount = TransferPayAmount
|
|
8803
|
+
|
|
8719
8804
|
|
|
8720
8805
|
def _deserialize(self, params):
|
|
8721
8806
|
self._RegionId = params.get("RegionId")
|
|
@@ -8730,6 +8815,10 @@ class ConsumptionRegionSummaryDataItem(AbstractModel):
|
|
|
8730
8815
|
obj = ConsumptionBusinessSummaryDataItem()
|
|
8731
8816
|
obj._deserialize(item)
|
|
8732
8817
|
self._Business.append(obj)
|
|
8818
|
+
self._CashPayAmount = params.get("CashPayAmount")
|
|
8819
|
+
self._VoucherPayAmount = params.get("VoucherPayAmount")
|
|
8820
|
+
self._IncentivePayAmount = params.get("IncentivePayAmount")
|
|
8821
|
+
self._TransferPayAmount = params.get("TransferPayAmount")
|
|
8733
8822
|
memeber_set = set(params.keys())
|
|
8734
8823
|
for name, value in vars(self).items():
|
|
8735
8824
|
property_name = name[1:]
|
|
@@ -8889,6 +8978,57 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
|
8889
8978
|
:param _TransferPayAmount: 分成金
|
|
8890
8979
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8891
8980
|
:type TransferPayAmount: str
|
|
8981
|
+
:param _PayerUin: 支付者UIN:支付者的账号 ID,账号 ID 是用户在腾讯云的唯一账号标识
|
|
8982
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8983
|
+
:type PayerUin: str
|
|
8984
|
+
:param _OwnerUin: 使用者UIN:实际使用资源的账号 ID
|
|
8985
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8986
|
+
:type OwnerUin: str
|
|
8987
|
+
:param _OperateUin: 操作者UIN:操作者账号 ID(预付费资源下单或后付费操作开通资源账号的 ID 或者角色 ID )
|
|
8988
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8989
|
+
:type OperateUin: str
|
|
8990
|
+
:param _ProductCode: 子产品编码
|
|
8991
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8992
|
+
:type ProductCode: str
|
|
8993
|
+
:param _ProductCodeName: 子产品名称:用户采购的具体产品细分类型,例如:云服务器 CVM-标准型 S1
|
|
8994
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8995
|
+
:type ProductCodeName: str
|
|
8996
|
+
:param _RegionType: 地域类型
|
|
8997
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8998
|
+
:type RegionType: str
|
|
8999
|
+
:param _RegionTypeName: 地域类型名称
|
|
9000
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9001
|
+
:type RegionTypeName: str
|
|
9002
|
+
:param _Extend1: 扩展字段1
|
|
9003
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9004
|
+
:type Extend1: str
|
|
9005
|
+
:param _Extend2: 扩展字段2
|
|
9006
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9007
|
+
:type Extend2: str
|
|
9008
|
+
:param _Extend3: 扩展字段3
|
|
9009
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9010
|
+
:type Extend3: str
|
|
9011
|
+
:param _Extend4: 扩展字段4
|
|
9012
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9013
|
+
:type Extend4: str
|
|
9014
|
+
:param _Extend5: 扩展字段5
|
|
9015
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9016
|
+
:type Extend5: str
|
|
9017
|
+
:param _InstanceType: 实例类型
|
|
9018
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9019
|
+
:type InstanceType: str
|
|
9020
|
+
:param _InstanceTypeName: 实例类型名称
|
|
9021
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9022
|
+
:type InstanceTypeName: str
|
|
9023
|
+
:param _PayTime: 扣费时间:结算扣费时间
|
|
9024
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9025
|
+
:type PayTime: str
|
|
9026
|
+
:param _ZoneName: 可用区:资源所属可用区,如广州三区
|
|
9027
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9028
|
+
:type ZoneName: str
|
|
9029
|
+
:param _ComponentConfig: 配置描述
|
|
9030
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9031
|
+
:type ComponentConfig: str
|
|
8892
9032
|
"""
|
|
8893
9033
|
self._ResourceId = None
|
|
8894
9034
|
self._ResourceName = None
|
|
@@ -8912,6 +9052,23 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
|
8912
9052
|
self._VoucherPayAmount = None
|
|
8913
9053
|
self._IncentivePayAmount = None
|
|
8914
9054
|
self._TransferPayAmount = None
|
|
9055
|
+
self._PayerUin = None
|
|
9056
|
+
self._OwnerUin = None
|
|
9057
|
+
self._OperateUin = None
|
|
9058
|
+
self._ProductCode = None
|
|
9059
|
+
self._ProductCodeName = None
|
|
9060
|
+
self._RegionType = None
|
|
9061
|
+
self._RegionTypeName = None
|
|
9062
|
+
self._Extend1 = None
|
|
9063
|
+
self._Extend2 = None
|
|
9064
|
+
self._Extend3 = None
|
|
9065
|
+
self._Extend4 = None
|
|
9066
|
+
self._Extend5 = None
|
|
9067
|
+
self._InstanceType = None
|
|
9068
|
+
self._InstanceTypeName = None
|
|
9069
|
+
self._PayTime = None
|
|
9070
|
+
self._ZoneName = None
|
|
9071
|
+
self._ComponentConfig = None
|
|
8915
9072
|
|
|
8916
9073
|
@property
|
|
8917
9074
|
def ResourceId(self):
|
|
@@ -9089,6 +9246,142 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
|
9089
9246
|
def TransferPayAmount(self, TransferPayAmount):
|
|
9090
9247
|
self._TransferPayAmount = TransferPayAmount
|
|
9091
9248
|
|
|
9249
|
+
@property
|
|
9250
|
+
def PayerUin(self):
|
|
9251
|
+
return self._PayerUin
|
|
9252
|
+
|
|
9253
|
+
@PayerUin.setter
|
|
9254
|
+
def PayerUin(self, PayerUin):
|
|
9255
|
+
self._PayerUin = PayerUin
|
|
9256
|
+
|
|
9257
|
+
@property
|
|
9258
|
+
def OwnerUin(self):
|
|
9259
|
+
return self._OwnerUin
|
|
9260
|
+
|
|
9261
|
+
@OwnerUin.setter
|
|
9262
|
+
def OwnerUin(self, OwnerUin):
|
|
9263
|
+
self._OwnerUin = OwnerUin
|
|
9264
|
+
|
|
9265
|
+
@property
|
|
9266
|
+
def OperateUin(self):
|
|
9267
|
+
return self._OperateUin
|
|
9268
|
+
|
|
9269
|
+
@OperateUin.setter
|
|
9270
|
+
def OperateUin(self, OperateUin):
|
|
9271
|
+
self._OperateUin = OperateUin
|
|
9272
|
+
|
|
9273
|
+
@property
|
|
9274
|
+
def ProductCode(self):
|
|
9275
|
+
return self._ProductCode
|
|
9276
|
+
|
|
9277
|
+
@ProductCode.setter
|
|
9278
|
+
def ProductCode(self, ProductCode):
|
|
9279
|
+
self._ProductCode = ProductCode
|
|
9280
|
+
|
|
9281
|
+
@property
|
|
9282
|
+
def ProductCodeName(self):
|
|
9283
|
+
return self._ProductCodeName
|
|
9284
|
+
|
|
9285
|
+
@ProductCodeName.setter
|
|
9286
|
+
def ProductCodeName(self, ProductCodeName):
|
|
9287
|
+
self._ProductCodeName = ProductCodeName
|
|
9288
|
+
|
|
9289
|
+
@property
|
|
9290
|
+
def RegionType(self):
|
|
9291
|
+
return self._RegionType
|
|
9292
|
+
|
|
9293
|
+
@RegionType.setter
|
|
9294
|
+
def RegionType(self, RegionType):
|
|
9295
|
+
self._RegionType = RegionType
|
|
9296
|
+
|
|
9297
|
+
@property
|
|
9298
|
+
def RegionTypeName(self):
|
|
9299
|
+
return self._RegionTypeName
|
|
9300
|
+
|
|
9301
|
+
@RegionTypeName.setter
|
|
9302
|
+
def RegionTypeName(self, RegionTypeName):
|
|
9303
|
+
self._RegionTypeName = RegionTypeName
|
|
9304
|
+
|
|
9305
|
+
@property
|
|
9306
|
+
def Extend1(self):
|
|
9307
|
+
return self._Extend1
|
|
9308
|
+
|
|
9309
|
+
@Extend1.setter
|
|
9310
|
+
def Extend1(self, Extend1):
|
|
9311
|
+
self._Extend1 = Extend1
|
|
9312
|
+
|
|
9313
|
+
@property
|
|
9314
|
+
def Extend2(self):
|
|
9315
|
+
return self._Extend2
|
|
9316
|
+
|
|
9317
|
+
@Extend2.setter
|
|
9318
|
+
def Extend2(self, Extend2):
|
|
9319
|
+
self._Extend2 = Extend2
|
|
9320
|
+
|
|
9321
|
+
@property
|
|
9322
|
+
def Extend3(self):
|
|
9323
|
+
return self._Extend3
|
|
9324
|
+
|
|
9325
|
+
@Extend3.setter
|
|
9326
|
+
def Extend3(self, Extend3):
|
|
9327
|
+
self._Extend3 = Extend3
|
|
9328
|
+
|
|
9329
|
+
@property
|
|
9330
|
+
def Extend4(self):
|
|
9331
|
+
return self._Extend4
|
|
9332
|
+
|
|
9333
|
+
@Extend4.setter
|
|
9334
|
+
def Extend4(self, Extend4):
|
|
9335
|
+
self._Extend4 = Extend4
|
|
9336
|
+
|
|
9337
|
+
@property
|
|
9338
|
+
def Extend5(self):
|
|
9339
|
+
return self._Extend5
|
|
9340
|
+
|
|
9341
|
+
@Extend5.setter
|
|
9342
|
+
def Extend5(self, Extend5):
|
|
9343
|
+
self._Extend5 = Extend5
|
|
9344
|
+
|
|
9345
|
+
@property
|
|
9346
|
+
def InstanceType(self):
|
|
9347
|
+
return self._InstanceType
|
|
9348
|
+
|
|
9349
|
+
@InstanceType.setter
|
|
9350
|
+
def InstanceType(self, InstanceType):
|
|
9351
|
+
self._InstanceType = InstanceType
|
|
9352
|
+
|
|
9353
|
+
@property
|
|
9354
|
+
def InstanceTypeName(self):
|
|
9355
|
+
return self._InstanceTypeName
|
|
9356
|
+
|
|
9357
|
+
@InstanceTypeName.setter
|
|
9358
|
+
def InstanceTypeName(self, InstanceTypeName):
|
|
9359
|
+
self._InstanceTypeName = InstanceTypeName
|
|
9360
|
+
|
|
9361
|
+
@property
|
|
9362
|
+
def PayTime(self):
|
|
9363
|
+
return self._PayTime
|
|
9364
|
+
|
|
9365
|
+
@PayTime.setter
|
|
9366
|
+
def PayTime(self, PayTime):
|
|
9367
|
+
self._PayTime = PayTime
|
|
9368
|
+
|
|
9369
|
+
@property
|
|
9370
|
+
def ZoneName(self):
|
|
9371
|
+
return self._ZoneName
|
|
9372
|
+
|
|
9373
|
+
@ZoneName.setter
|
|
9374
|
+
def ZoneName(self, ZoneName):
|
|
9375
|
+
self._ZoneName = ZoneName
|
|
9376
|
+
|
|
9377
|
+
@property
|
|
9378
|
+
def ComponentConfig(self):
|
|
9379
|
+
return self._ComponentConfig
|
|
9380
|
+
|
|
9381
|
+
@ComponentConfig.setter
|
|
9382
|
+
def ComponentConfig(self, ComponentConfig):
|
|
9383
|
+
self._ComponentConfig = ComponentConfig
|
|
9384
|
+
|
|
9092
9385
|
|
|
9093
9386
|
def _deserialize(self, params):
|
|
9094
9387
|
self._ResourceId = params.get("ResourceId")
|
|
@@ -9113,6 +9406,23 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
|
9113
9406
|
self._VoucherPayAmount = params.get("VoucherPayAmount")
|
|
9114
9407
|
self._IncentivePayAmount = params.get("IncentivePayAmount")
|
|
9115
9408
|
self._TransferPayAmount = params.get("TransferPayAmount")
|
|
9409
|
+
self._PayerUin = params.get("PayerUin")
|
|
9410
|
+
self._OwnerUin = params.get("OwnerUin")
|
|
9411
|
+
self._OperateUin = params.get("OperateUin")
|
|
9412
|
+
self._ProductCode = params.get("ProductCode")
|
|
9413
|
+
self._ProductCodeName = params.get("ProductCodeName")
|
|
9414
|
+
self._RegionType = params.get("RegionType")
|
|
9415
|
+
self._RegionTypeName = params.get("RegionTypeName")
|
|
9416
|
+
self._Extend1 = params.get("Extend1")
|
|
9417
|
+
self._Extend2 = params.get("Extend2")
|
|
9418
|
+
self._Extend3 = params.get("Extend3")
|
|
9419
|
+
self._Extend4 = params.get("Extend4")
|
|
9420
|
+
self._Extend5 = params.get("Extend5")
|
|
9421
|
+
self._InstanceType = params.get("InstanceType")
|
|
9422
|
+
self._InstanceTypeName = params.get("InstanceTypeName")
|
|
9423
|
+
self._PayTime = params.get("PayTime")
|
|
9424
|
+
self._ZoneName = params.get("ZoneName")
|
|
9425
|
+
self._ComponentConfig = params.get("ComponentConfig")
|
|
9116
9426
|
memeber_set = set(params.keys())
|
|
9117
9427
|
for name, value in vars(self).items():
|
|
9118
9428
|
property_name = name[1:]
|
|
@@ -11314,7 +11624,7 @@ class DescribeAllocationBillDetailRequest(AbstractModel):
|
|
|
11314
11624
|
r"""
|
|
11315
11625
|
:param _Limit: 数量,最大值为1000
|
|
11316
11626
|
:type Limit: int
|
|
11317
|
-
:param _Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200
|
|
11627
|
+
:param _Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200表示第三页,以此类推
|
|
11318
11628
|
:type Offset: int
|
|
11319
11629
|
:param _Month: 账单月份,格式为2024-02,不传默认当前月
|
|
11320
11630
|
:type Month: str
|
|
@@ -11358,7 +11668,7 @@ desc - 降序
|
|
|
11358
11668
|
:type ComponentCodes: list of str
|
|
11359
11669
|
:param _ItemCodes: 组件名称编码,用作筛选
|
|
11360
11670
|
:type ItemCodes: list of str
|
|
11361
|
-
:param _SearchKey: 模糊搜索:支持标签、资源id
|
|
11671
|
+
:param _SearchKey: 模糊搜索:支持标签、资源id、资源别名
|
|
11362
11672
|
:type SearchKey: str
|
|
11363
11673
|
:param _ProjectIds: 项目ID,用作筛选
|
|
11364
11674
|
:type ProjectIds: list of int non-negative
|
|
@@ -12197,7 +12507,7 @@ class DescribeAllocationSummaryByItemRequest(AbstractModel):
|
|
|
12197
12507
|
:param _Limit: 数量,最大值为1000
|
|
12198
12508
|
|
|
12199
12509
|
:type Limit: int
|
|
12200
|
-
:param _Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200
|
|
12510
|
+
:param _Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200表示第三页,以此类推
|
|
12201
12511
|
:type Offset: int
|
|
12202
12512
|
:param _Month: 账单月份,格式为2024-02,不传默认当前月
|
|
12203
12513
|
|
|
@@ -12260,8 +12570,7 @@ desc - 降序
|
|
|
12260
12570
|
:type ComponentCodes: list of str
|
|
12261
12571
|
:param _ItemCodes: 组件名称编码,用作筛选
|
|
12262
12572
|
:type ItemCodes: list of str
|
|
12263
|
-
:param _SearchKey: 模糊搜索:支持标签、资源id
|
|
12264
|
-
|
|
12573
|
+
:param _SearchKey: 模糊搜索:支持标签、资源id、资源别名
|
|
12265
12574
|
:type SearchKey: str
|
|
12266
12575
|
:param _ProjectIds: 项目ID,用作筛选
|
|
12267
12576
|
|
|
@@ -12598,7 +12907,7 @@ class DescribeAllocationSummaryByResourceRequest(AbstractModel):
|
|
|
12598
12907
|
:param _Limit: 数量,最大值为1000
|
|
12599
12908
|
|
|
12600
12909
|
:type Limit: int
|
|
12601
|
-
:param _Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200
|
|
12910
|
+
:param _Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200表示第三页,以此类推
|
|
12602
12911
|
:type Offset: int
|
|
12603
12912
|
:param _Month: 账单月份,格式为2024-02,不传默认当前月
|
|
12604
12913
|
|
|
@@ -12645,7 +12954,7 @@ desc - 降序
|
|
|
12645
12954
|
:type InstanceTypes: list of str
|
|
12646
12955
|
:param _Tag: 标签,用作筛选
|
|
12647
12956
|
:type Tag: list of str
|
|
12648
|
-
:param _SearchKey: 模糊搜索:支持标签、资源id
|
|
12957
|
+
:param _SearchKey: 模糊搜索:支持标签、资源id、资源别名
|
|
12649
12958
|
:type SearchKey: str
|
|
12650
12959
|
:param _ProjectIds: 项目ID,用作筛选
|
|
12651
12960
|
:type ProjectIds: list of int non-negative
|
|
@@ -17546,7 +17855,7 @@ class DescribeGatherResourceRequest(AbstractModel):
|
|
|
17546
17855
|
r"""
|
|
17547
17856
|
:param _Limit: 数量,最大值为1000
|
|
17548
17857
|
:type Limit: int
|
|
17549
|
-
:param _Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200
|
|
17858
|
+
:param _Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200表示第三页,以此类推
|
|
17550
17859
|
:type Offset: int
|
|
17551
17860
|
:param _Month: 账单月份,格式为2024-02,不传默认当前月
|
|
17552
17861
|
:type Month: str
|
|
@@ -17583,7 +17892,7 @@ desc - 降序
|
|
|
17583
17892
|
:type OperateUins: list of str
|
|
17584
17893
|
:param _OwnerUins: 使用者UIN,用作筛选
|
|
17585
17894
|
:type OwnerUins: list of str
|
|
17586
|
-
:param _SearchKey: 模糊搜索:支持标签、资源id
|
|
17895
|
+
:param _SearchKey: 模糊搜索:支持标签、资源id、资源别名
|
|
17587
17896
|
:type SearchKey: str
|
|
17588
17897
|
:param _Tag: 标签,用作筛选
|
|
17589
17898
|
:type Tag: list of str
|
|
@@ -19510,10 +19819,10 @@ class GatherResourceSummary(AbstractModel):
|
|
|
19510
19819
|
:param _InstanceTypeName: 实例类型:购买的产品服务对应的实例类型,包括资源包、RI、SP、竞价实例。常规实例默认展示“-”
|
|
19511
19820
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19512
19821
|
:type InstanceTypeName: str
|
|
19513
|
-
:param _ResourceId: 资源ID
|
|
19822
|
+
:param _ResourceId: 资源ID:不同产品因资源形态不同,资源内容不完全相同,如云服务器 CVM 为对应的实例 ID; 若该产品被分拆,则展示产品分拆后的分拆项 ID,如 COS 桶 ID,CDN 域名
|
|
19514
19823
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19515
19824
|
:type ResourceId: str
|
|
19516
|
-
:param _ResourceName:
|
|
19825
|
+
:param _ResourceName: 实例名称:用户在控制台为资源设置的名称,如未设置默认为空;若该产品被分拆,则展示分拆产品分拆后的分拆项资源别名
|
|
19517
19826
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19518
19827
|
:type ResourceName: str
|
|
19519
19828
|
:param _TreeNodeUniqKey: 分账单元唯一标识
|
|
@@ -19942,18 +20251,26 @@ class GatherResourceSummary(AbstractModel):
|
|
|
19942
20251
|
|
|
19943
20252
|
@property
|
|
19944
20253
|
def SplitItemId(self):
|
|
20254
|
+
warnings.warn("parameter `SplitItemId` is deprecated", DeprecationWarning)
|
|
20255
|
+
|
|
19945
20256
|
return self._SplitItemId
|
|
19946
20257
|
|
|
19947
20258
|
@SplitItemId.setter
|
|
19948
20259
|
def SplitItemId(self, SplitItemId):
|
|
20260
|
+
warnings.warn("parameter `SplitItemId` is deprecated", DeprecationWarning)
|
|
20261
|
+
|
|
19949
20262
|
self._SplitItemId = SplitItemId
|
|
19950
20263
|
|
|
19951
20264
|
@property
|
|
19952
20265
|
def SplitItemName(self):
|
|
20266
|
+
warnings.warn("parameter `SplitItemName` is deprecated", DeprecationWarning)
|
|
20267
|
+
|
|
19953
20268
|
return self._SplitItemName
|
|
19954
20269
|
|
|
19955
20270
|
@SplitItemName.setter
|
|
19956
20271
|
def SplitItemName(self, SplitItemName):
|
|
20272
|
+
warnings.warn("parameter `SplitItemName` is deprecated", DeprecationWarning)
|
|
20273
|
+
|
|
19957
20274
|
self._SplitItemName = SplitItemName
|
|
19958
20275
|
|
|
19959
20276
|
|
|
@@ -210,6 +210,29 @@ class CccClient(AbstractClient):
|
|
|
210
210
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
211
211
|
|
|
212
212
|
|
|
213
|
+
def CreateCompanyApply(self, request):
|
|
214
|
+
"""创建公司资质申请(1、首次使用接口,建议先在云联络中心控制台查看各个资料模版:https://console.cloud.tencent.com/ccc/enterprise/update。2、参数中图片Url建议使用腾讯云Cos存储的临时链接)
|
|
215
|
+
|
|
216
|
+
:param request: Request instance for CreateCompanyApply.
|
|
217
|
+
:type request: :class:`tencentcloud.ccc.v20200210.models.CreateCompanyApplyRequest`
|
|
218
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.CreateCompanyApplyResponse`
|
|
219
|
+
|
|
220
|
+
"""
|
|
221
|
+
try:
|
|
222
|
+
params = request._serialize()
|
|
223
|
+
headers = request.headers
|
|
224
|
+
body = self.call("CreateCompanyApply", params, headers=headers)
|
|
225
|
+
response = json.loads(body)
|
|
226
|
+
model = models.CreateCompanyApplyResponse()
|
|
227
|
+
model._deserialize(response["Response"])
|
|
228
|
+
return model
|
|
229
|
+
except Exception as e:
|
|
230
|
+
if isinstance(e, TencentCloudSDKException):
|
|
231
|
+
raise
|
|
232
|
+
else:
|
|
233
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
234
|
+
|
|
235
|
+
|
|
213
236
|
def CreateExtension(self, request):
|
|
214
237
|
"""创建话机账号
|
|
215
238
|
|
|
@@ -557,6 +580,29 @@ class CccClient(AbstractClient):
|
|
|
557
580
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
558
581
|
|
|
559
582
|
|
|
583
|
+
def DescribeCompanyList(self, request):
|
|
584
|
+
"""查询公司资质申请列表
|
|
585
|
+
|
|
586
|
+
:param request: Request instance for DescribeCompanyList.
|
|
587
|
+
:type request: :class:`tencentcloud.ccc.v20200210.models.DescribeCompanyListRequest`
|
|
588
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.DescribeCompanyListResponse`
|
|
589
|
+
|
|
590
|
+
"""
|
|
591
|
+
try:
|
|
592
|
+
params = request._serialize()
|
|
593
|
+
headers = request.headers
|
|
594
|
+
body = self.call("DescribeCompanyList", params, headers=headers)
|
|
595
|
+
response = json.loads(body)
|
|
596
|
+
model = models.DescribeCompanyListResponse()
|
|
597
|
+
model._deserialize(response["Response"])
|
|
598
|
+
return model
|
|
599
|
+
except Exception as e:
|
|
600
|
+
if isinstance(e, TencentCloudSDKException):
|
|
601
|
+
raise
|
|
602
|
+
else:
|
|
603
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
604
|
+
|
|
605
|
+
|
|
560
606
|
def DescribeExtension(self, request):
|
|
561
607
|
"""获取话机信息
|
|
562
608
|
|
|
@@ -971,6 +1017,29 @@ class CccClient(AbstractClient):
|
|
|
971
1017
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
972
1018
|
|
|
973
1019
|
|
|
1020
|
+
def ModifyCompanyApply(self, request):
|
|
1021
|
+
"""修改公司资质申请,只能修改状态为驳回或待审核的申请单。(1、首次使用接口,建议先在云联络中心控制台查看各个资料模版:https://console.cloud.tencent.com/ccc/enterprise/update。2、参数中图片Url建议使用腾讯云Cos存储的临时链接)
|
|
1022
|
+
|
|
1023
|
+
:param request: Request instance for ModifyCompanyApply.
|
|
1024
|
+
:type request: :class:`tencentcloud.ccc.v20200210.models.ModifyCompanyApplyRequest`
|
|
1025
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.ModifyCompanyApplyResponse`
|
|
1026
|
+
|
|
1027
|
+
"""
|
|
1028
|
+
try:
|
|
1029
|
+
params = request._serialize()
|
|
1030
|
+
headers = request.headers
|
|
1031
|
+
body = self.call("ModifyCompanyApply", params, headers=headers)
|
|
1032
|
+
response = json.loads(body)
|
|
1033
|
+
model = models.ModifyCompanyApplyResponse()
|
|
1034
|
+
model._deserialize(response["Response"])
|
|
1035
|
+
return model
|
|
1036
|
+
except Exception as e:
|
|
1037
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1038
|
+
raise
|
|
1039
|
+
else:
|
|
1040
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1041
|
+
|
|
1042
|
+
|
|
974
1043
|
def ModifyExtension(self, request):
|
|
975
1044
|
"""修改话机账号(绑定技能组、绑定坐席账号)
|
|
976
1045
|
|