tencentcloud-sdk-python-billing 3.1.83__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/setup.py +1 -1
  3. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/billing/v20180709/billing_client.py +23 -0
  5. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/billing/v20180709/billing_client_async.py +18 -0
  6. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/billing/v20180709/models.py +373 -94
  7. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud_sdk_python_billing.egg-info/PKG-INFO +2 -2
  8. tencentcloud_sdk_python_billing-3.1.112/tencentcloud_sdk_python_billing.egg-info/requires.txt +1 -0
  9. tencentcloud_sdk_python_billing-3.1.83/tencentcloud_sdk_python_billing.egg-info/requires.txt +0 -1
  10. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/README.rst +0 -0
  11. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/setup.cfg +0 -0
  12. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/billing/__init__.py +0 -0
  13. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/billing/v20180709/__init__.py +0 -0
  14. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud/billing/v20180709/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud_sdk_python_billing.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/tencentcloud_sdk_python_billing.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_billing-3.1.83 → tencentcloud_sdk_python_billing-3.1.112}/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.83
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.83
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.112
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.83,<4.0.0"],
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',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.83'
17
+ __version__ = '3.1.112'
@@ -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,
@@ -5714,36 +5714,31 @@ class AnalyseConditions(AbstractModel):
5714
5714
 
5715
5715
  def __init__(self):
5716
5716
  r"""
5717
- :param _BusinessCodes: 产品名称代码
5717
+ :param _BusinessCodes: <p>产品名称代码</p>
5718
5718
  :type BusinessCodes: str
5719
- :param _ProductCodes: 子产品名称代码
5719
+ :param _ProductCodes: <p>子产品名称代码</p>
5720
5720
  :type ProductCodes: str
5721
- :param _ComponentCode: 组件类型代码
5721
+ :param _ComponentCode: <p>组件类型代码</p>
5722
5722
  :type ComponentCode: str
5723
- :param _ZoneIds: 可用区ID:资源所属可用区ID
5723
+ :param _ZoneIds: <p>可用区ID:资源所属可用区ID</p>
5724
5724
  :type ZoneIds: str
5725
- :param _RegionIds: 地域ID:资源所属地域ID
5725
+ :param _RegionIds: <p>地域ID:资源所属地域ID</p>
5726
5726
  :type RegionIds: str
5727
- :param _ProjectIds: 项目ID:资源所属项目ID
5727
+ :param _ProjectIds: <p>项目ID:资源所属项目ID</p>
5728
5728
  :type ProjectIds: str
5729
- :param _PayModes: 计费模式 prePay(表示包年包月)/postPay(表示按量计费)
5729
+ :param _PayModes: <p>计费模式 prePay(表示包年包月)/postPay(表示按量计费)</p>
5730
5730
  :type PayModes: str
5731
- :param _ActionTypes: 交易类型,查询交易类型(请使用交易类型code入参)
5731
+ :param _ActionTypes: <p>交易类型,查询交易类型(请使用交易类型code入参)</p>
5732
5732
  :type ActionTypes: str
5733
- :param _Tags: 分账标签键
5733
+ :param _Tags: <p>分账标签</p>
5734
5734
  :type Tags: str
5735
- :param _FeeType: 费用类型,查询费用类型(请使用费用类型code入参)入参枚举如下:
5736
- cashPayAmount:现金
5737
- incentivePayAmount:赠送金
5738
- voucherPayAmount:优惠券
5739
- tax:税金
5740
- costBeforeTax:税前价
5735
+ :param _FeeType: <p>费用类型,查询费用类型(请使用费用类型code入参)入参枚举如下:<br>cashPayAmount:现金<br>incentivePayAmount:赠送金<br>voucherPayAmount:优惠券<br>tax:税金<br>costBeforeTax:税前价</p>
5741
5736
  :type FeeType: str
5742
- :param _PayerUins: 查询成本分析数据的用户UIN
5737
+ :param _PayerUins: <p>查询成本分析数据的用户UIN</p>
5743
5738
  :type PayerUins: str
5744
- :param _OwnerUins: 使用资源的用户UIN
5739
+ :param _OwnerUins: <p>使用资源的用户UIN</p>
5745
5740
  :type OwnerUins: str
5746
- :param _ConsumptionTypes: 消耗类型,查询消耗类型(请使用消耗类型code入参)
5741
+ :param _ConsumptionTypes: <p>消耗类型,查询消耗类型(请使用消耗类型code入参)</p>
5747
5742
  :type ConsumptionTypes: str
5748
5743
  """
5749
5744
  self._BusinessCodes = None
@@ -5762,7 +5757,7 @@ costBeforeTax:税前价
5762
5757
 
5763
5758
  @property
5764
5759
  def BusinessCodes(self):
5765
- r"""产品名称代码
5760
+ r"""<p>产品名称代码</p>
5766
5761
  :rtype: str
5767
5762
  """
5768
5763
  return self._BusinessCodes
@@ -5773,7 +5768,7 @@ costBeforeTax:税前价
5773
5768
 
5774
5769
  @property
5775
5770
  def ProductCodes(self):
5776
- r"""子产品名称代码
5771
+ r"""<p>子产品名称代码</p>
5777
5772
  :rtype: str
5778
5773
  """
5779
5774
  return self._ProductCodes
@@ -5784,7 +5779,7 @@ costBeforeTax:税前价
5784
5779
 
5785
5780
  @property
5786
5781
  def ComponentCode(self):
5787
- r"""组件类型代码
5782
+ r"""<p>组件类型代码</p>
5788
5783
  :rtype: str
5789
5784
  """
5790
5785
  return self._ComponentCode
@@ -5795,7 +5790,7 @@ costBeforeTax:税前价
5795
5790
 
5796
5791
  @property
5797
5792
  def ZoneIds(self):
5798
- r"""可用区ID:资源所属可用区ID
5793
+ r"""<p>可用区ID:资源所属可用区ID</p>
5799
5794
  :rtype: str
5800
5795
  """
5801
5796
  return self._ZoneIds
@@ -5806,7 +5801,7 @@ costBeforeTax:税前价
5806
5801
 
5807
5802
  @property
5808
5803
  def RegionIds(self):
5809
- r"""地域ID:资源所属地域ID
5804
+ r"""<p>地域ID:资源所属地域ID</p>
5810
5805
  :rtype: str
5811
5806
  """
5812
5807
  return self._RegionIds
@@ -5817,7 +5812,7 @@ costBeforeTax:税前价
5817
5812
 
5818
5813
  @property
5819
5814
  def ProjectIds(self):
5820
- r"""项目ID:资源所属项目ID
5815
+ r"""<p>项目ID:资源所属项目ID</p>
5821
5816
  :rtype: str
5822
5817
  """
5823
5818
  return self._ProjectIds
@@ -5828,7 +5823,7 @@ costBeforeTax:税前价
5828
5823
 
5829
5824
  @property
5830
5825
  def PayModes(self):
5831
- r"""计费模式 prePay(表示包年包月)/postPay(表示按量计费)
5826
+ r"""<p>计费模式 prePay(表示包年包月)/postPay(表示按量计费)</p>
5832
5827
  :rtype: str
5833
5828
  """
5834
5829
  return self._PayModes
@@ -5839,7 +5834,7 @@ costBeforeTax:税前价
5839
5834
 
5840
5835
  @property
5841
5836
  def ActionTypes(self):
5842
- r"""交易类型,查询交易类型(请使用交易类型code入参)
5837
+ r"""<p>交易类型,查询交易类型(请使用交易类型code入参)</p>
5843
5838
  :rtype: str
5844
5839
  """
5845
5840
  return self._ActionTypes
@@ -5850,7 +5845,7 @@ costBeforeTax:税前价
5850
5845
 
5851
5846
  @property
5852
5847
  def Tags(self):
5853
- r"""分账标签键
5848
+ r"""<p>分账标签</p>
5854
5849
  :rtype: str
5855
5850
  """
5856
5851
  return self._Tags
@@ -5861,12 +5856,7 @@ costBeforeTax:税前价
5861
5856
 
5862
5857
  @property
5863
5858
  def FeeType(self):
5864
- r"""费用类型,查询费用类型(请使用费用类型code入参)入参枚举如下:
5865
- cashPayAmount:现金
5866
- incentivePayAmount:赠送金
5867
- voucherPayAmount:优惠券
5868
- tax:税金
5869
- costBeforeTax:税前价
5859
+ r"""<p>费用类型,查询费用类型(请使用费用类型code入参)入参枚举如下:<br>cashPayAmount:现金<br>incentivePayAmount:赠送金<br>voucherPayAmount:优惠券<br>tax:税金<br>costBeforeTax:税前价</p>
5870
5860
  :rtype: str
5871
5861
  """
5872
5862
  return self._FeeType
@@ -5877,7 +5867,7 @@ costBeforeTax:税前价
5877
5867
 
5878
5868
  @property
5879
5869
  def PayerUins(self):
5880
- r"""查询成本分析数据的用户UIN
5870
+ r"""<p>查询成本分析数据的用户UIN</p>
5881
5871
  :rtype: str
5882
5872
  """
5883
5873
  return self._PayerUins
@@ -5888,7 +5878,7 @@ costBeforeTax:税前价
5888
5878
 
5889
5879
  @property
5890
5880
  def OwnerUins(self):
5891
- r"""使用资源的用户UIN
5881
+ r"""<p>使用资源的用户UIN</p>
5892
5882
  :rtype: str
5893
5883
  """
5894
5884
  return self._OwnerUins
@@ -5899,7 +5889,7 @@ costBeforeTax:税前价
5899
5889
 
5900
5890
  @property
5901
5891
  def ConsumptionTypes(self):
5902
- r"""消耗类型,查询消耗类型(请使用消耗类型code入参)
5892
+ r"""<p>消耗类型,查询消耗类型(请使用消耗类型code入参)</p>
5903
5893
  :rtype: str
5904
5894
  """
5905
5895
  return self._ConsumptionTypes
@@ -24305,40 +24295,27 @@ class DescribeCostExplorerSummaryRequest(AbstractModel):
24305
24295
 
24306
24296
  def __init__(self):
24307
24297
  r"""
24308
- :param _BeginTime: 周期开始时间,格式为yyyy-mm-dd hh:ii:ss
24298
+ :param _BeginTime: <p>周期开始时间,格式为yyyy-mm-dd hh:ii:ss</p>
24309
24299
  :type BeginTime: str
24310
- :param _EndTime: 周期结束时间,格式为yyyy-mm-dd hh:ii:ss
24300
+ :param _EndTime: <p>周期结束时间,格式为yyyy-mm-dd hh:ii:ss</p>
24311
24301
  :type EndTime: str
24312
- :param _BillType: 账单类型:1-费用账单、2-消耗账单
24302
+ :param _BillType: <p>账单类型:1-费用账单、2-消耗账单</p>
24313
24303
  :type BillType: str
24314
- :param _PeriodType: 统计周期:日-day,月-month
24304
+ :param _PeriodType: <p>统计周期:日-day,月-month;</p>
24315
24305
  :type PeriodType: str
24316
- :param _Dimensions: 分类维度(数据汇总维度),查询分类维度(请使用分类维度code入参)入参枚举值:
24317
- default=仅总计
24318
- feeType=费用类型
24319
- billType=账单类型
24320
- business=产品
24321
- product=子产品
24322
- region=地域
24323
- zone=可用区
24324
- actionType=交易类型
24325
- payMode =计费模式
24326
- tags=标签
24327
- project =项目
24328
- payerUin=支付者账号
24329
- ownerUin=使用者账号
24306
+ :param _Dimensions: <p>分类维度(数据汇总维度),查询分类维度(请使用分类维度code入参)入参枚举值:<br>default=仅总计<br>feeType=费用类型<br>billType=账单类型<br>business=产品<br>product=子产品<br>region=地域<br>zone=可用区<br>actionType=交易类型<br>payMode =计费模式<br>tags=标签<br>project =项目<br>payerUin=支付者账号<br>ownerUin=使用者账号</p>
24330
24307
  :type Dimensions: str
24331
- :param _FeeType: 费用类型:cost-折后总费用,totalCost-原价费用
24308
+ :param _FeeType: <p>费用类型:cost-折后总费用,totalCost-原价费用</p>
24332
24309
  :type FeeType: str
24333
- :param _PageSize: 数量,每页最大值为100
24310
+ :param _PageSize: <p>数量,每页最大值为100</p>
24334
24311
  :type PageSize: int
24335
- :param _PageNo: 起始页,当PageNo=1表示第一页, PageNo=2表示第二页,依次类推。
24312
+ :param _PageNo: <p>起始页,当PageNo=1表示第一页, PageNo=2表示第二页,依次类推。</p>
24336
24313
  :type PageNo: int
24337
- :param _TagKeyStr: 分账标签值
24314
+ :param _TagKeyStr: <p>分账标签键</p>
24338
24315
  :type TagKeyStr: str
24339
- :param _NeedConditionValue: 是否需要筛选框, 1-表示需要, 0-表示不需要,若不传默认不需要。
24316
+ :param _NeedConditionValue: <p>是否需要筛选框, 1-表示需要, 0-表示不需要,若不传默认不需要。</p>
24340
24317
  :type NeedConditionValue: str
24341
- :param _Conditions: 筛选参数
24318
+ :param _Conditions: <p>筛选参数</p>
24342
24319
  :type Conditions: :class:`tencentcloud.billing.v20180709.models.AnalyseConditions`
24343
24320
  """
24344
24321
  self._BeginTime = None
@@ -24355,7 +24332,7 @@ ownerUin=使用者账号
24355
24332
 
24356
24333
  @property
24357
24334
  def BeginTime(self):
24358
- r"""周期开始时间,格式为yyyy-mm-dd hh:ii:ss
24335
+ r"""<p>周期开始时间,格式为yyyy-mm-dd hh:ii:ss</p>
24359
24336
  :rtype: str
24360
24337
  """
24361
24338
  return self._BeginTime
@@ -24366,7 +24343,7 @@ ownerUin=使用者账号
24366
24343
 
24367
24344
  @property
24368
24345
  def EndTime(self):
24369
- r"""周期结束时间,格式为yyyy-mm-dd hh:ii:ss
24346
+ r"""<p>周期结束时间,格式为yyyy-mm-dd hh:ii:ss</p>
24370
24347
  :rtype: str
24371
24348
  """
24372
24349
  return self._EndTime
@@ -24377,7 +24354,7 @@ ownerUin=使用者账号
24377
24354
 
24378
24355
  @property
24379
24356
  def BillType(self):
24380
- r"""账单类型:1-费用账单、2-消耗账单
24357
+ r"""<p>账单类型:1-费用账单、2-消耗账单</p>
24381
24358
  :rtype: str
24382
24359
  """
24383
24360
  return self._BillType
@@ -24388,7 +24365,7 @@ ownerUin=使用者账号
24388
24365
 
24389
24366
  @property
24390
24367
  def PeriodType(self):
24391
- r"""统计周期:日-day,月-month
24368
+ r"""<p>统计周期:日-day,月-month;</p>
24392
24369
  :rtype: str
24393
24370
  """
24394
24371
  return self._PeriodType
@@ -24399,20 +24376,7 @@ ownerUin=使用者账号
24399
24376
 
24400
24377
  @property
24401
24378
  def Dimensions(self):
24402
- r"""分类维度(数据汇总维度),查询分类维度(请使用分类维度code入参)入参枚举值:
24403
- default=仅总计
24404
- feeType=费用类型
24405
- billType=账单类型
24406
- business=产品
24407
- product=子产品
24408
- region=地域
24409
- zone=可用区
24410
- actionType=交易类型
24411
- payMode =计费模式
24412
- tags=标签
24413
- project =项目
24414
- payerUin=支付者账号
24415
- ownerUin=使用者账号
24379
+ r"""<p>分类维度(数据汇总维度),查询分类维度(请使用分类维度code入参)入参枚举值:<br>default=仅总计<br>feeType=费用类型<br>billType=账单类型<br>business=产品<br>product=子产品<br>region=地域<br>zone=可用区<br>actionType=交易类型<br>payMode =计费模式<br>tags=标签<br>project =项目<br>payerUin=支付者账号<br>ownerUin=使用者账号</p>
24416
24380
  :rtype: str
24417
24381
  """
24418
24382
  return self._Dimensions
@@ -24423,7 +24387,7 @@ ownerUin=使用者账号
24423
24387
 
24424
24388
  @property
24425
24389
  def FeeType(self):
24426
- r"""费用类型:cost-折后总费用,totalCost-原价费用
24390
+ r"""<p>费用类型:cost-折后总费用,totalCost-原价费用</p>
24427
24391
  :rtype: str
24428
24392
  """
24429
24393
  return self._FeeType
@@ -24434,7 +24398,7 @@ ownerUin=使用者账号
24434
24398
 
24435
24399
  @property
24436
24400
  def PageSize(self):
24437
- r"""数量,每页最大值为100
24401
+ r"""<p>数量,每页最大值为100</p>
24438
24402
  :rtype: int
24439
24403
  """
24440
24404
  return self._PageSize
@@ -24445,7 +24409,7 @@ ownerUin=使用者账号
24445
24409
 
24446
24410
  @property
24447
24411
  def PageNo(self):
24448
- r"""起始页,当PageNo=1表示第一页, PageNo=2表示第二页,依次类推。
24412
+ r"""<p>起始页,当PageNo=1表示第一页, PageNo=2表示第二页,依次类推。</p>
24449
24413
  :rtype: int
24450
24414
  """
24451
24415
  return self._PageNo
@@ -24456,7 +24420,7 @@ ownerUin=使用者账号
24456
24420
 
24457
24421
  @property
24458
24422
  def TagKeyStr(self):
24459
- r"""分账标签值
24423
+ r"""<p>分账标签键</p>
24460
24424
  :rtype: str
24461
24425
  """
24462
24426
  return self._TagKeyStr
@@ -24467,7 +24431,7 @@ ownerUin=使用者账号
24467
24431
 
24468
24432
  @property
24469
24433
  def NeedConditionValue(self):
24470
- r"""是否需要筛选框, 1-表示需要, 0-表示不需要,若不传默认不需要。
24434
+ r"""<p>是否需要筛选框, 1-表示需要, 0-表示不需要,若不传默认不需要。</p>
24471
24435
  :rtype: str
24472
24436
  """
24473
24437
  return self._NeedConditionValue
@@ -24478,7 +24442,7 @@ ownerUin=使用者账号
24478
24442
 
24479
24443
  @property
24480
24444
  def Conditions(self):
24481
- r"""筛选参数
24445
+ r"""<p>筛选参数</p>
24482
24446
  :rtype: :class:`tencentcloud.billing.v20180709.models.AnalyseConditions`
24483
24447
  """
24484
24448
  return self._Conditions
@@ -24519,15 +24483,15 @@ class DescribeCostExplorerSummaryResponse(AbstractModel):
24519
24483
 
24520
24484
  def __init__(self):
24521
24485
  r"""
24522
- :param _Total: 数据条数
24486
+ :param _Total: <p>数据条数</p>
24523
24487
  :type Total: int
24524
- :param _Header: 表头信息
24488
+ :param _Header: <p>表头信息</p>
24525
24489
  :type Header: :class:`tencentcloud.billing.v20180709.models.AnalyseHeaderDetail`
24526
- :param _Detail: 数据明细
24490
+ :param _Detail: <p>数据明细</p>
24527
24491
  :type Detail: list of AnalyseDetail
24528
- :param _TotalDetail: 数据总计
24492
+ :param _TotalDetail: <p>数据总计</p>
24529
24493
  :type TotalDetail: :class:`tencentcloud.billing.v20180709.models.AnalyseDetail`
24530
- :param _ConditionValue: 筛选框
24494
+ :param _ConditionValue: <p>筛选框</p>
24531
24495
  :type ConditionValue: :class:`tencentcloud.billing.v20180709.models.AnalyseConditionDetail`
24532
24496
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
24533
24497
  :type RequestId: str
@@ -24541,7 +24505,7 @@ class DescribeCostExplorerSummaryResponse(AbstractModel):
24541
24505
 
24542
24506
  @property
24543
24507
  def Total(self):
24544
- r"""数据条数
24508
+ r"""<p>数据条数</p>
24545
24509
  :rtype: int
24546
24510
  """
24547
24511
  return self._Total
@@ -24552,7 +24516,7 @@ class DescribeCostExplorerSummaryResponse(AbstractModel):
24552
24516
 
24553
24517
  @property
24554
24518
  def Header(self):
24555
- r"""表头信息
24519
+ r"""<p>表头信息</p>
24556
24520
  :rtype: :class:`tencentcloud.billing.v20180709.models.AnalyseHeaderDetail`
24557
24521
  """
24558
24522
  return self._Header
@@ -24563,7 +24527,7 @@ class DescribeCostExplorerSummaryResponse(AbstractModel):
24563
24527
 
24564
24528
  @property
24565
24529
  def Detail(self):
24566
- r"""数据明细
24530
+ r"""<p>数据明细</p>
24567
24531
  :rtype: list of AnalyseDetail
24568
24532
  """
24569
24533
  return self._Detail
@@ -24574,7 +24538,7 @@ class DescribeCostExplorerSummaryResponse(AbstractModel):
24574
24538
 
24575
24539
  @property
24576
24540
  def TotalDetail(self):
24577
- r"""数据总计
24541
+ r"""<p>数据总计</p>
24578
24542
  :rtype: :class:`tencentcloud.billing.v20180709.models.AnalyseDetail`
24579
24543
  """
24580
24544
  return self._TotalDetail
@@ -24585,7 +24549,7 @@ class DescribeCostExplorerSummaryResponse(AbstractModel):
24585
24549
 
24586
24550
  @property
24587
24551
  def ConditionValue(self):
24588
- r"""筛选框
24552
+ r"""<p>筛选框</p>
24589
24553
  :rtype: :class:`tencentcloud.billing.v20180709.models.AnalyseConditionDetail`
24590
24554
  """
24591
24555
  return self._ConditionValue
@@ -27292,6 +27256,321 @@ class DescribeGatherRuleDetailResponse(AbstractModel):
27292
27256
  self._RequestId = params.get("RequestId")
27293
27257
 
27294
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
+
27295
27574
  class DescribeRenewInstancesRequest(AbstractModel):
27296
27575
  r"""DescribeRenewInstances请求参数结构体
27297
27576
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-billing
3
- Version: 3.1.83
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.83
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
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.83