tencentcloud-sdk-python 3.0.1332__py2.py3-none-any.whl → 3.0.1334__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/aiart/v20221229/models.py +2 -0
- tencentcloud/antiddos/v20200309/models.py +2 -2
- tencentcloud/apm/v20210622/models.py +63 -55
- tencentcloud/billing/v20180709/models.py +30 -474
- tencentcloud/cat/v20180409/models.py +4 -4
- tencentcloud/cdwpg/v20201230/cdwpg_client.py +368 -0
- tencentcloud/cdwpg/v20201230/models.py +5699 -1484
- tencentcloud/ciam/v20220331/models.py +0 -92
- tencentcloud/cls/v20201016/models.py +0 -2
- tencentcloud/common/abstract_client.py +3 -0
- tencentcloud/controlcenter/v20230110/models.py +0 -4
- tencentcloud/csip/v20221121/models.py +94 -4
- tencentcloud/cvm/v20170312/models.py +49 -212
- tencentcloud/dbbrain/v20191016/models.py +0 -6
- tencentcloud/dbbrain/v20210527/models.py +0 -12
- tencentcloud/dlc/v20210125/models.py +32 -0
- tencentcloud/emr/v20190103/models.py +17 -0
- tencentcloud/es/v20180416/models.py +15 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/goosefs/v20220519/models.py +0 -10
- tencentcloud/gwlb/v20240906/models.py +34 -2
- tencentcloud/iotcloud/v20210408/models.py +15 -15
- tencentcloud/keewidb/v20220308/models.py +0 -76
- tencentcloud/live/v20180801/models.py +8 -58
- tencentcloud/lke/v20231130/lke_client.py +46 -0
- tencentcloud/lke/v20231130/models.py +385 -0
- tencentcloud/mongodb/v20190725/models.py +10 -4
- tencentcloud/mps/v20190612/models.py +31 -2
- tencentcloud/mqtt/v20240516/models.py +154 -0
- tencentcloud/mqtt/v20240516/mqtt_client.py +23 -0
- tencentcloud/ocr/v20181119/errorcodes.py +3 -0
- tencentcloud/ocr/v20181119/models.py +28 -6
- tencentcloud/pts/v20210728/models.py +68 -6
- tencentcloud/redis/v20180412/models.py +0 -66
- tencentcloud/rum/v20210622/models.py +150 -0
- tencentcloud/tag/v20180813/models.py +2 -2
- tencentcloud/tdmq/v20200217/models.py +192 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/tke/v20180525/models.py +0 -20
- tencentcloud/tms/v20201229/models.py +15 -0
- tencentcloud/trp/v20210515/models.py +0 -6
- tencentcloud/tsf/v20180326/models.py +0 -880
- tencentcloud/vod/v20180717/models.py +8 -8
- tencentcloud/vod/v20180717/vod_client.py +2 -2
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +0 -6
- tencentcloud/wedata/v20210820/models.py +173 -0
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/RECORD +53 -53
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/top_level.txt +0 -0
@@ -199,25 +199,19 @@ class AdjustInfoDetail(AbstractModel):
|
|
199
199
|
def __init__(self):
|
200
200
|
r"""
|
201
201
|
:param _PayerUin: 支付者UIN:支付者的账号 ID,账号 ID 是用户在腾讯云的唯一账号标识
|
202
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
203
202
|
:type PayerUin: str
|
204
203
|
:param _Month: 账单月份,格式:yyyy-MM
|
205
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
206
204
|
:type Month: str
|
207
205
|
:param _AdjustType: 调整类型
|
208
206
|
调账:manualAdjustment
|
209
207
|
补结算:supplementarySettlement
|
210
208
|
重结算:reSettlement
|
211
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
212
209
|
:type AdjustType: str
|
213
210
|
:param _AdjustNum: 调整单号
|
214
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
215
211
|
:type AdjustNum: str
|
216
212
|
:param _AdjustCompletionTime: 异常调整完成时间,格式:yyyy-MM-dd HH:mm:ss
|
217
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
218
213
|
:type AdjustCompletionTime: str
|
219
214
|
:param _AdjustAmount: 调整金额
|
220
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
221
215
|
:type AdjustAmount: float
|
222
216
|
"""
|
223
217
|
self._PayerUin = None
|
@@ -230,7 +224,6 @@ class AdjustInfoDetail(AbstractModel):
|
|
230
224
|
@property
|
231
225
|
def PayerUin(self):
|
232
226
|
"""支付者UIN:支付者的账号 ID,账号 ID 是用户在腾讯云的唯一账号标识
|
233
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
234
227
|
:rtype: str
|
235
228
|
"""
|
236
229
|
return self._PayerUin
|
@@ -242,7 +235,6 @@ class AdjustInfoDetail(AbstractModel):
|
|
242
235
|
@property
|
243
236
|
def Month(self):
|
244
237
|
"""账单月份,格式:yyyy-MM
|
245
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
246
238
|
:rtype: str
|
247
239
|
"""
|
248
240
|
return self._Month
|
@@ -257,7 +249,6 @@ class AdjustInfoDetail(AbstractModel):
|
|
257
249
|
调账:manualAdjustment
|
258
250
|
补结算:supplementarySettlement
|
259
251
|
重结算:reSettlement
|
260
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
261
252
|
:rtype: str
|
262
253
|
"""
|
263
254
|
return self._AdjustType
|
@@ -269,7 +260,6 @@ class AdjustInfoDetail(AbstractModel):
|
|
269
260
|
@property
|
270
261
|
def AdjustNum(self):
|
271
262
|
"""调整单号
|
272
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
273
263
|
:rtype: str
|
274
264
|
"""
|
275
265
|
return self._AdjustNum
|
@@ -281,7 +271,6 @@ class AdjustInfoDetail(AbstractModel):
|
|
281
271
|
@property
|
282
272
|
def AdjustCompletionTime(self):
|
283
273
|
"""异常调整完成时间,格式:yyyy-MM-dd HH:mm:ss
|
284
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
285
274
|
:rtype: str
|
286
275
|
"""
|
287
276
|
return self._AdjustCompletionTime
|
@@ -293,7 +282,6 @@ class AdjustInfoDetail(AbstractModel):
|
|
293
282
|
@property
|
294
283
|
def AdjustAmount(self):
|
295
284
|
"""调整金额
|
296
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
297
285
|
:rtype: float
|
298
286
|
"""
|
299
287
|
return self._AdjustAmount
|
@@ -1760,13 +1748,11 @@ class AllocationMonthOverviewDetail(AbstractModel):
|
|
1760
1748
|
:param _Ratio: 占比(折后总额):本分账单元合计费用(折后总额)/合计费用(折后总额)*100%
|
1761
1749
|
:type Ratio: str
|
1762
1750
|
:param _Trend: 环比(折后总额):[本月分账单元合计费用(折后总额) - 上月分账单元合计费用(折后总额)] / 上月分账单元合计费用(折后总额) * 100%
|
1763
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1764
1751
|
:type Trend: str
|
1765
1752
|
:param _TrendType: 环比箭头
|
1766
1753
|
upward -上升
|
1767
1754
|
downward - 下降
|
1768
1755
|
none - 平稳
|
1769
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1770
1756
|
:type TrendType: str
|
1771
1757
|
"""
|
1772
1758
|
self._GatherCashPayAmount = None
|
@@ -1967,7 +1953,6 @@ none - 平稳
|
|
1967
1953
|
@property
|
1968
1954
|
def Trend(self):
|
1969
1955
|
"""环比(折后总额):[本月分账单元合计费用(折后总额) - 上月分账单元合计费用(折后总额)] / 上月分账单元合计费用(折后总额) * 100%
|
1970
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1971
1956
|
:rtype: str
|
1972
1957
|
"""
|
1973
1958
|
return self._Trend
|
@@ -1982,7 +1967,6 @@ none - 平稳
|
|
1982
1967
|
upward -上升
|
1983
1968
|
downward - 下降
|
1984
1969
|
none - 平稳
|
1985
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1986
1970
|
:rtype: str
|
1987
1971
|
"""
|
1988
1972
|
return self._TrendType
|
@@ -2029,13 +2013,10 @@ class AllocationOverviewDetail(AbstractModel):
|
|
2029
2013
|
def __init__(self):
|
2030
2014
|
r"""
|
2031
2015
|
:param _TreeNodeUniqKey: 分账单元唯一标识
|
2032
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2033
2016
|
:type TreeNodeUniqKey: str
|
2034
2017
|
:param _TreeNodeUniqKeyName: 分账单元名称
|
2035
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2036
2018
|
:type TreeNodeUniqKeyName: str
|
2037
2019
|
:param _BillDate: 日期:结算日期
|
2038
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2039
2020
|
:type BillDate: str
|
2040
2021
|
:param _GatherCashPayAmount: 归集费用(现金):基于归集规则直接归集到分账单元的现金
|
2041
2022
|
:type GatherCashPayAmount: str
|
@@ -2070,13 +2051,11 @@ class AllocationOverviewDetail(AbstractModel):
|
|
2070
2051
|
:param _Ratio: 占比(折后总额):本分账单元合计费用(折后总额)/合计费用(折后总额)*100%
|
2071
2052
|
:type Ratio: str
|
2072
2053
|
:param _Trend: 环比(折后总额):[本月分账单元合计费用(折后总额) - 上月分账单元合计费用(折后总额)] / 上月分账单元合计费用(折后总额) * 100%
|
2073
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2074
2054
|
:type Trend: str
|
2075
2055
|
:param _TrendType: 环比箭头
|
2076
2056
|
upward -上升
|
2077
2057
|
downward - 下降
|
2078
2058
|
none - 平稳
|
2079
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2080
2059
|
:type TrendType: str
|
2081
2060
|
"""
|
2082
2061
|
self._TreeNodeUniqKey = None
|
@@ -2104,7 +2083,6 @@ none - 平稳
|
|
2104
2083
|
@property
|
2105
2084
|
def TreeNodeUniqKey(self):
|
2106
2085
|
"""分账单元唯一标识
|
2107
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2108
2086
|
:rtype: str
|
2109
2087
|
"""
|
2110
2088
|
return self._TreeNodeUniqKey
|
@@ -2116,7 +2094,6 @@ none - 平稳
|
|
2116
2094
|
@property
|
2117
2095
|
def TreeNodeUniqKeyName(self):
|
2118
2096
|
"""分账单元名称
|
2119
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2120
2097
|
:rtype: str
|
2121
2098
|
"""
|
2122
2099
|
return self._TreeNodeUniqKeyName
|
@@ -2128,7 +2105,6 @@ none - 平稳
|
|
2128
2105
|
@property
|
2129
2106
|
def BillDate(self):
|
2130
2107
|
"""日期:结算日期
|
2131
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2132
2108
|
:rtype: str
|
2133
2109
|
"""
|
2134
2110
|
return self._BillDate
|
@@ -2316,7 +2292,6 @@ none - 平稳
|
|
2316
2292
|
@property
|
2317
2293
|
def Trend(self):
|
2318
2294
|
"""环比(折后总额):[本月分账单元合计费用(折后总额) - 上月分账单元合计费用(折后总额)] / 上月分账单元合计费用(折后总额) * 100%
|
2319
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2320
2295
|
:rtype: str
|
2321
2296
|
"""
|
2322
2297
|
return self._Trend
|
@@ -2331,7 +2306,6 @@ none - 平稳
|
|
2331
2306
|
upward -上升
|
2332
2307
|
downward - 下降
|
2333
2308
|
none - 平稳
|
2334
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2335
2309
|
:rtype: str
|
2336
2310
|
"""
|
2337
2311
|
return self._TrendType
|
@@ -2381,26 +2355,20 @@ class AllocationOverviewNode(AbstractModel):
|
|
2381
2355
|
def __init__(self):
|
2382
2356
|
r"""
|
2383
2357
|
:param _Id: 分账单元ID
|
2384
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2385
2358
|
:type Id: int
|
2386
2359
|
:param _Name: 分账单元名称
|
2387
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2388
2360
|
:type Name: str
|
2389
2361
|
:param _TreeNodeUniqKey: 分账单元唯一标识
|
2390
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2391
2362
|
:type TreeNodeUniqKey: str
|
2392
2363
|
:param _Symbol: 分账单元包含规则标志
|
2393
2364
|
0 - 不存在规则
|
2394
2365
|
1 - 同时存在归集规则和公摊规则
|
2395
2366
|
2 - 仅存在归集规则
|
2396
2367
|
3 - 仅存在公摊规则
|
2397
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2398
2368
|
:type Symbol: int
|
2399
2369
|
:param _Children: 子单元月概览详情
|
2400
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2401
2370
|
:type Children: list of AllocationOverviewNode
|
2402
2371
|
:param _Detail: 分账账单月概览金额明细
|
2403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2404
2372
|
:type Detail: :class:`tencentcloud.billing.v20180709.models.AllocationMonthOverviewDetail`
|
2405
2373
|
"""
|
2406
2374
|
self._Id = None
|
@@ -2413,7 +2381,6 @@ class AllocationOverviewNode(AbstractModel):
|
|
2413
2381
|
@property
|
2414
2382
|
def Id(self):
|
2415
2383
|
"""分账单元ID
|
2416
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2417
2384
|
:rtype: int
|
2418
2385
|
"""
|
2419
2386
|
return self._Id
|
@@ -2425,7 +2392,6 @@ class AllocationOverviewNode(AbstractModel):
|
|
2425
2392
|
@property
|
2426
2393
|
def Name(self):
|
2427
2394
|
"""分账单元名称
|
2428
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2429
2395
|
:rtype: str
|
2430
2396
|
"""
|
2431
2397
|
return self._Name
|
@@ -2437,7 +2403,6 @@ class AllocationOverviewNode(AbstractModel):
|
|
2437
2403
|
@property
|
2438
2404
|
def TreeNodeUniqKey(self):
|
2439
2405
|
"""分账单元唯一标识
|
2440
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2441
2406
|
:rtype: str
|
2442
2407
|
"""
|
2443
2408
|
return self._TreeNodeUniqKey
|
@@ -2453,7 +2418,6 @@ class AllocationOverviewNode(AbstractModel):
|
|
2453
2418
|
1 - 同时存在归集规则和公摊规则
|
2454
2419
|
2 - 仅存在归集规则
|
2455
2420
|
3 - 仅存在公摊规则
|
2456
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2457
2421
|
:rtype: int
|
2458
2422
|
"""
|
2459
2423
|
return self._Symbol
|
@@ -2465,7 +2429,6 @@ class AllocationOverviewNode(AbstractModel):
|
|
2465
2429
|
@property
|
2466
2430
|
def Children(self):
|
2467
2431
|
"""子单元月概览详情
|
2468
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2469
2432
|
:rtype: list of AllocationOverviewNode
|
2470
2433
|
"""
|
2471
2434
|
return self._Children
|
@@ -2477,7 +2440,6 @@ class AllocationOverviewNode(AbstractModel):
|
|
2477
2440
|
@property
|
2478
2441
|
def Detail(self):
|
2479
2442
|
"""分账账单月概览金额明细
|
2480
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2481
2443
|
:rtype: :class:`tencentcloud.billing.v20180709.models.AllocationMonthOverviewDetail`
|
2482
2444
|
"""
|
2483
2445
|
return self._Detail
|
@@ -2680,7 +2642,6 @@ class AllocationStat(AbstractModel):
|
|
2680
2642
|
def __init__(self):
|
2681
2643
|
r"""
|
2682
2644
|
:param _Average: 费用平均信息
|
2683
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2684
2645
|
:type Average: :class:`tencentcloud.billing.v20180709.models.AllocationAverageData`
|
2685
2646
|
"""
|
2686
2647
|
self._Average = None
|
@@ -2688,7 +2649,6 @@ class AllocationStat(AbstractModel):
|
|
2688
2649
|
@property
|
2689
2650
|
def Average(self):
|
2690
2651
|
"""费用平均信息
|
2691
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2692
2652
|
:rtype: :class:`tencentcloud.billing.v20180709.models.AllocationAverageData`
|
2693
2653
|
"""
|
2694
2654
|
return self._Average
|
@@ -2720,13 +2680,10 @@ class AllocationSummaryByBusiness(AbstractModel):
|
|
2720
2680
|
def __init__(self):
|
2721
2681
|
r"""
|
2722
2682
|
:param _TreeNodeUniqKey: 分账单元唯一标识
|
2723
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2724
2683
|
:type TreeNodeUniqKey: str
|
2725
2684
|
:param _TreeNodeUniqKeyName: 分账单元名称
|
2726
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2727
2685
|
:type TreeNodeUniqKeyName: str
|
2728
2686
|
:param _BillDate: 日期:结算日期
|
2729
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2730
2687
|
:type BillDate: str
|
2731
2688
|
:param _GatherCashPayAmount: 归集费用(现金):基于归集规则直接归集到分账单元的现金
|
2732
2689
|
:type GatherCashPayAmount: str
|
@@ -2761,19 +2718,15 @@ class AllocationSummaryByBusiness(AbstractModel):
|
|
2761
2718
|
:param _Ratio: 占比(折后总额):本分账单元合计费用(折后总额)/合计费用(折后总额)*100%
|
2762
2719
|
:type Ratio: str
|
2763
2720
|
:param _Trend: 环比(折后总额):[本月分账单元合计费用(折后总额) - 上月分账单元合计费用(折后总额)] / 上月分账单元合计费用(折后总额) * 100%
|
2764
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2765
2721
|
:type Trend: str
|
2766
2722
|
:param _TrendType: 环比箭头
|
2767
2723
|
upward -上升
|
2768
2724
|
downward - 下降
|
2769
2725
|
none - 平稳
|
2770
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2771
2726
|
:type TrendType: str
|
2772
2727
|
:param _BusinessCode: 产品编码
|
2773
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2774
2728
|
:type BusinessCode: str
|
2775
2729
|
:param _BusinessCodeName: 产品名称:用户所采购的各类云产品
|
2776
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2777
2730
|
:type BusinessCodeName: str
|
2778
2731
|
:param _TotalCost: 组件原价:原价 = 组件刊例价 * 组件用量 * 使用时长(如客户享受一口价/合同价则默认不展示,退费类场景也默认不展示),指定价模式
|
2779
2732
|
:type TotalCost: str
|
@@ -2828,7 +2781,6 @@ none - 平稳
|
|
2828
2781
|
@property
|
2829
2782
|
def TreeNodeUniqKey(self):
|
2830
2783
|
"""分账单元唯一标识
|
2831
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2832
2784
|
:rtype: str
|
2833
2785
|
"""
|
2834
2786
|
return self._TreeNodeUniqKey
|
@@ -2840,7 +2792,6 @@ none - 平稳
|
|
2840
2792
|
@property
|
2841
2793
|
def TreeNodeUniqKeyName(self):
|
2842
2794
|
"""分账单元名称
|
2843
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2844
2795
|
:rtype: str
|
2845
2796
|
"""
|
2846
2797
|
return self._TreeNodeUniqKeyName
|
@@ -2852,7 +2803,6 @@ none - 平稳
|
|
2852
2803
|
@property
|
2853
2804
|
def BillDate(self):
|
2854
2805
|
"""日期:结算日期
|
2855
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2856
2806
|
:rtype: str
|
2857
2807
|
"""
|
2858
2808
|
return self._BillDate
|
@@ -3040,7 +2990,6 @@ none - 平稳
|
|
3040
2990
|
@property
|
3041
2991
|
def Trend(self):
|
3042
2992
|
"""环比(折后总额):[本月分账单元合计费用(折后总额) - 上月分账单元合计费用(折后总额)] / 上月分账单元合计费用(折后总额) * 100%
|
3043
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3044
2993
|
:rtype: str
|
3045
2994
|
"""
|
3046
2995
|
return self._Trend
|
@@ -3055,7 +3004,6 @@ none - 平稳
|
|
3055
3004
|
upward -上升
|
3056
3005
|
downward - 下降
|
3057
3006
|
none - 平稳
|
3058
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3059
3007
|
:rtype: str
|
3060
3008
|
"""
|
3061
3009
|
return self._TrendType
|
@@ -3067,7 +3015,6 @@ none - 平稳
|
|
3067
3015
|
@property
|
3068
3016
|
def BusinessCode(self):
|
3069
3017
|
"""产品编码
|
3070
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3071
3018
|
:rtype: str
|
3072
3019
|
"""
|
3073
3020
|
return self._BusinessCode
|
@@ -3079,7 +3026,6 @@ none - 平稳
|
|
3079
3026
|
@property
|
3080
3027
|
def BusinessCodeName(self):
|
3081
3028
|
"""产品名称:用户所采购的各类云产品
|
3082
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3083
3029
|
:rtype: str
|
3084
3030
|
"""
|
3085
3031
|
return self._BusinessCodeName
|
@@ -3228,121 +3174,83 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3228
3174
|
def __init__(self):
|
3229
3175
|
r"""
|
3230
3176
|
:param _TreeNodeUniqKey: 分账单元唯一标识
|
3231
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3232
3177
|
:type TreeNodeUniqKey: str
|
3233
3178
|
:param _TreeNodeUniqKeyName: 分账单元名称
|
3234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3235
3179
|
:type TreeNodeUniqKeyName: str
|
3236
3180
|
:param _BillDate: 日期:结算日期
|
3237
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3238
3181
|
:type BillDate: str
|
3239
3182
|
:param _PayerUin: 支付者 UIN:支付者的账号 ID,账号 ID 是用户在腾讯云的唯一账号标识
|
3240
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3241
3183
|
:type PayerUin: str
|
3242
3184
|
:param _OwnerUin: 使用者 UIN:实际使用资源的账号 ID
|
3243
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3244
3185
|
:type OwnerUin: str
|
3245
3186
|
:param _OperateUin: 操作者 UIN:操作者账号 ID(预付费资源下单或后付费操作开通资源账号的ID或者角色 ID)
|
3246
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3247
3187
|
:type OperateUin: str
|
3248
3188
|
:param _PayMode: 计费模式编码
|
3249
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3250
3189
|
:type PayMode: str
|
3251
3190
|
:param _PayModeName: 计费模式:资源的计费模式,区分为包年包月和按量计费
|
3252
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3253
3191
|
:type PayModeName: str
|
3254
3192
|
:param _ActionType: 交易类型编码
|
3255
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3256
3193
|
:type ActionType: str
|
3257
3194
|
:param _ActionTypeName: 交易类型:明细交易类型
|
3258
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3259
3195
|
:type ActionTypeName: str
|
3260
3196
|
:param _BusinessCode: 产品编码
|
3261
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3262
3197
|
:type BusinessCode: str
|
3263
3198
|
:param _BusinessCodeName: 产品名称:用户所采购的各类云产品
|
3264
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3265
3199
|
:type BusinessCodeName: str
|
3266
3200
|
:param _ProductCode: 子产品编码
|
3267
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3268
3201
|
:type ProductCode: str
|
3269
3202
|
:param _ProductCodeName: 子产品名称:用户采购的具体产品细分类型
|
3270
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3271
3203
|
:type ProductCodeName: str
|
3272
3204
|
:param _RegionId: 地域ID
|
3273
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3274
3205
|
:type RegionId: int
|
3275
3206
|
:param _RegionName: 地域名称:资源所属地域
|
3276
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3277
3207
|
:type RegionName: str
|
3278
3208
|
:param _ZoneId: 可用区ID
|
3279
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3280
3209
|
:type ZoneId: int
|
3281
3210
|
:param _ZoneName: 可用区:资源所属可用区
|
3282
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3283
3211
|
:type ZoneName: str
|
3284
3212
|
:param _InstanceType: 实例类型编码
|
3285
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3286
3213
|
:type InstanceType: str
|
3287
3214
|
:param _InstanceTypeName: 实例类型:购买的产品服务对应的实例类型,包括资源包、RI、SP、竞价实例。常规实例默认展示“-”
|
3288
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3289
3215
|
:type InstanceTypeName: str
|
3290
3216
|
:param _ResourceId: 资源ID:不同产品因资源形态不同,资源内容不完全相同,如云服务器 CVM 为对应的实例 ID; 若该产品被分拆,则展示产品分拆后的分拆项 ID,如 COS 桶 ID,CDN 域名
|
3291
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3292
3217
|
:type ResourceId: str
|
3293
3218
|
:param _ResourceName: 实例名称:用户在控制台为资源设置的名称,如未设置默认为空;若该产品被分拆,则展示分拆产品分拆后的分拆项资源别名
|
3294
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3295
3219
|
:type ResourceName: str
|
3296
3220
|
:param _Tag: 分账标签:资源绑定的标签
|
3297
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3298
3221
|
:type Tag: list of BillTag
|
3299
3222
|
:param _ProjectId: 项目ID
|
3300
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3301
3223
|
:type ProjectId: int
|
3302
3224
|
:param _ProjectName: 项目名称:资源归属的项目,用户在控制台给资源自主分配项目,未分配则是默认项目
|
3303
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3304
3225
|
:type ProjectName: str
|
3305
3226
|
:param _AllocationType: 费用归集类型:费用来源类型,分摊、归集、未分配
|
3306
3227
|
0 - 分摊
|
3307
3228
|
1 - 归集
|
3308
3229
|
-1 - 未分配
|
3309
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3310
3230
|
:type AllocationType: int
|
3311
3231
|
:param _TotalCost: 组件原价:原价 = 组件刊例价 * 组件用量 * 使用时长(如客户享受一口价/合同价则默认不展示,退费类场景也默认不展示),指定价模式
|
3312
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3313
3232
|
:type TotalCost: str
|
3314
3233
|
:param _RiTimeSpan: 预留实例抵扣时长:本产品或服务使用预留实例抵扣的使用时长
|
3315
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3316
3234
|
:type RiTimeSpan: str
|
3317
3235
|
:param _RiCost: 预留实例抵扣原价:本产品或服务使用预留实例抵扣的组件原价金额
|
3318
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3319
3236
|
:type RiCost: str
|
3320
3237
|
:param _RealTotalCost: 优惠后总价:优惠后总价 =(原价 - 预留实例抵扣原价 - 节省计划抵扣原价)* 折扣率
|
3321
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3322
3238
|
:type RealTotalCost: str
|
3323
3239
|
:param _CashPayAmount: 现金账户支出(元):通过现金账户支付的金额
|
3324
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3325
3240
|
:type CashPayAmount: str
|
3326
3241
|
:param _VoucherPayAmount: 代金券支出(元):使用各类优惠券(如代金券、现金券等)支付的金额
|
3327
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3328
3242
|
:type VoucherPayAmount: str
|
3329
3243
|
:param _IncentivePayAmount: 赠送账户支出(元):使用赠送金支付的金额
|
3330
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3331
3244
|
:type IncentivePayAmount: str
|
3332
3245
|
:param _TransferPayAmount: 分成账户支出(元):通过分成金账户支付的金额
|
3333
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3334
3246
|
:type TransferPayAmount: str
|
3335
3247
|
:param _ItemCode: 组件名称编码
|
3336
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3337
3248
|
:type ItemCode: str
|
3338
3249
|
:param _ItemCodeName: 组件名称:用户购买的产品或服务,所包含的具体组件
|
3339
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3340
3250
|
:type ItemCodeName: str
|
3341
3251
|
:param _ComponentCode: 组件类型编码
|
3342
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3343
3252
|
:type ComponentCode: str
|
3344
3253
|
:param _ComponentCodeName: 组件类型:用户购买的产品或服务对应的组件大类
|
3345
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3346
3254
|
:type ComponentCodeName: str
|
3347
3255
|
:param _SplitItemId: 分拆项 ID:涉及分拆产品的分拆后的分拆项 ID,如 COS 桶 ID,CDN 域名
|
3348
3256
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -3351,90 +3259,62 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3351
3259
|
注意:此字段可能返回 null,表示取不到有效值。
|
3352
3260
|
:type SplitItemName: str
|
3353
3261
|
:param _FeeBeginTime: 开始使用时间:产品服务开始使用时间
|
3354
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3355
3262
|
:type FeeBeginTime: str
|
3356
3263
|
:param _FeeEndTime: 结束使用时间:产品服务结束使用时间
|
3357
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3358
3264
|
:type FeeEndTime: str
|
3359
3265
|
:param _SPCost: 节省计划抵扣原价:节省计划抵扣原价 = 节省计划包抵扣面值 / 节省计划抵扣率
|
3360
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3361
3266
|
:type SPCost: str
|
3362
3267
|
:param _RegionType: 国内国际编码
|
3363
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3364
3268
|
:type RegionType: str
|
3365
3269
|
:param _RegionTypeName: 国内国际:资源所属区域类型(国内、国际)
|
3366
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3367
3270
|
:type RegionTypeName: str
|
3368
3271
|
:param _SinglePrice: 组件刊例价:组件的官网原始单价(如客户享受一口价/合同价则默认不展示)
|
3369
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3370
3272
|
:type SinglePrice: str
|
3371
3273
|
:param _ContractPrice: 组件单价:组件的折后单价,组件单价 = 刊例价 * 折扣
|
3372
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3373
3274
|
:type ContractPrice: str
|
3374
3275
|
:param _SinglePriceUnit: 组件价格单位:组件价格的单位,单位构成:元/用量单位/时长单位
|
3375
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3376
3276
|
:type SinglePriceUnit: str
|
3377
3277
|
:param _UsedAmount: 组件用量:该组件实际结算用量,组件用量=组件原始用量-抵扣用量(含资源包)
|
3378
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3379
3278
|
:type UsedAmount: str
|
3380
3279
|
:param _UsedAmountUnit: 组件用量单位:组件用量对应的单位
|
3381
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3382
3280
|
:type UsedAmountUnit: str
|
3383
3281
|
:param _TimeSpan: 使用时长:资源使用的时长,组件用量=组件原始使用时长-抵扣时长(含资源包)
|
3384
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3385
3282
|
:type TimeSpan: str
|
3386
3283
|
:param _TimeUnit: 时长单位:资源使用时长的单位
|
3387
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3388
3284
|
:type TimeUnit: str
|
3389
3285
|
:param _ReserveDetail: 备注属性(实例配置):其他备注信息,如预留实例的预留实例类型和交易类型、CCN 产品的两端地域信息
|
3390
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3391
3286
|
:type ReserveDetail: str
|
3392
3287
|
:param _RealTotalMeasure: 原始用量/时长:组件被资源包抵扣前的原始用量
|
3393
3288
|
(目前仅实时音视频、弹性微服务、云呼叫中心及专属可用区产品支持该信息外显,其他产品尚在接入中)
|
3394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3395
3289
|
:type RealTotalMeasure: str
|
3396
3290
|
:param _DeductedMeasure: 抵扣用量/时长(含资源包):组件被资源包抵扣的用量
|
3397
3291
|
(目前仅实时音视频、弹性微服务、云呼叫中心及专属可用区产品支持该信息外显,其他产品尚在接入中)
|
3398
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3399
3292
|
:type DeductedMeasure: str
|
3400
3293
|
:param _Discount: 折扣率:本资源享受的折扣率(如客户享受一口价/合同价则默认不展示,退费场景也默认不展示)
|
3401
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3402
3294
|
:type Discount: str
|
3403
3295
|
:param _BlendedDiscount: 混合折扣率:综合各类折扣抵扣信息后的最终折扣率,混合折扣率=优惠后总价/原价
|
3404
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3405
3296
|
:type BlendedDiscount: str
|
3406
3297
|
:param _PriceInfo: 价格属性:该组件除单价、时长外的其他影响折扣定价的属性信息
|
3407
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3408
3298
|
:type PriceInfo: list of str
|
3409
3299
|
:param _Formula: 计算规则说明:特殊交易类型计费结算的详细计算说明,如退费及变配
|
3410
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3411
3300
|
:type Formula: str
|
3412
3301
|
:param _FormulaUrl: 计费规则:各产品详细的计费规则官网说明链接
|
3413
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3414
3302
|
:type FormulaUrl: str
|
3415
3303
|
:param _ComponentConfig: 配置描述:资源配置规格信息
|
3416
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3417
3304
|
:type ComponentConfig: str
|
3418
3305
|
:param _SPDeduction: SPDeduction
|
3419
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3420
3306
|
:type SPDeduction: str
|
3421
3307
|
:param _SPDeductionRate: 节省计划抵扣率:节省计划可用余额额度范围内,节省计划对于此组件打的折扣率
|
3422
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3423
3308
|
:type SPDeductionRate: str
|
3424
3309
|
:param _AssociatedOrder: AssociatedOrder
|
3425
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3426
3310
|
:type AssociatedOrder: str
|
3427
3311
|
:param _DiscountObject: 当前消费项的优惠对象,例如:官网折扣、用户折扣、活动折扣。
|
3428
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3429
3312
|
:type DiscountObject: str
|
3430
3313
|
:param _DiscountType: 当前消费项的优惠类型,例如:折扣、合同价。
|
3431
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3432
3314
|
:type DiscountType: str
|
3433
3315
|
:param _DiscountContent: 对优惠类型的补充描述,例如:商务折扣8折,则优惠类型为“折扣”,优惠内容为“0.8”。
|
3434
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3435
3316
|
:type DiscountContent: str
|
3436
3317
|
:param _BillMonth: 账单月
|
3437
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3438
3318
|
:type BillMonth: str
|
3439
3319
|
"""
|
3440
3320
|
self._TreeNodeUniqKey = None
|
@@ -3509,7 +3389,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3509
3389
|
@property
|
3510
3390
|
def TreeNodeUniqKey(self):
|
3511
3391
|
"""分账单元唯一标识
|
3512
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3513
3392
|
:rtype: str
|
3514
3393
|
"""
|
3515
3394
|
return self._TreeNodeUniqKey
|
@@ -3521,7 +3400,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3521
3400
|
@property
|
3522
3401
|
def TreeNodeUniqKeyName(self):
|
3523
3402
|
"""分账单元名称
|
3524
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3525
3403
|
:rtype: str
|
3526
3404
|
"""
|
3527
3405
|
return self._TreeNodeUniqKeyName
|
@@ -3533,7 +3411,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3533
3411
|
@property
|
3534
3412
|
def BillDate(self):
|
3535
3413
|
"""日期:结算日期
|
3536
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3537
3414
|
:rtype: str
|
3538
3415
|
"""
|
3539
3416
|
return self._BillDate
|
@@ -3545,7 +3422,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3545
3422
|
@property
|
3546
3423
|
def PayerUin(self):
|
3547
3424
|
"""支付者 UIN:支付者的账号 ID,账号 ID 是用户在腾讯云的唯一账号标识
|
3548
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3549
3425
|
:rtype: str
|
3550
3426
|
"""
|
3551
3427
|
return self._PayerUin
|
@@ -3557,7 +3433,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3557
3433
|
@property
|
3558
3434
|
def OwnerUin(self):
|
3559
3435
|
"""使用者 UIN:实际使用资源的账号 ID
|
3560
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3561
3436
|
:rtype: str
|
3562
3437
|
"""
|
3563
3438
|
return self._OwnerUin
|
@@ -3569,7 +3444,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3569
3444
|
@property
|
3570
3445
|
def OperateUin(self):
|
3571
3446
|
"""操作者 UIN:操作者账号 ID(预付费资源下单或后付费操作开通资源账号的ID或者角色 ID)
|
3572
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3573
3447
|
:rtype: str
|
3574
3448
|
"""
|
3575
3449
|
return self._OperateUin
|
@@ -3581,7 +3455,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3581
3455
|
@property
|
3582
3456
|
def PayMode(self):
|
3583
3457
|
"""计费模式编码
|
3584
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3585
3458
|
:rtype: str
|
3586
3459
|
"""
|
3587
3460
|
return self._PayMode
|
@@ -3593,7 +3466,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3593
3466
|
@property
|
3594
3467
|
def PayModeName(self):
|
3595
3468
|
"""计费模式:资源的计费模式,区分为包年包月和按量计费
|
3596
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3597
3469
|
:rtype: str
|
3598
3470
|
"""
|
3599
3471
|
return self._PayModeName
|
@@ -3605,7 +3477,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3605
3477
|
@property
|
3606
3478
|
def ActionType(self):
|
3607
3479
|
"""交易类型编码
|
3608
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3609
3480
|
:rtype: str
|
3610
3481
|
"""
|
3611
3482
|
return self._ActionType
|
@@ -3617,7 +3488,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3617
3488
|
@property
|
3618
3489
|
def ActionTypeName(self):
|
3619
3490
|
"""交易类型:明细交易类型
|
3620
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3621
3491
|
:rtype: str
|
3622
3492
|
"""
|
3623
3493
|
return self._ActionTypeName
|
@@ -3629,7 +3499,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3629
3499
|
@property
|
3630
3500
|
def BusinessCode(self):
|
3631
3501
|
"""产品编码
|
3632
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3633
3502
|
:rtype: str
|
3634
3503
|
"""
|
3635
3504
|
return self._BusinessCode
|
@@ -3641,7 +3510,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3641
3510
|
@property
|
3642
3511
|
def BusinessCodeName(self):
|
3643
3512
|
"""产品名称:用户所采购的各类云产品
|
3644
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3645
3513
|
:rtype: str
|
3646
3514
|
"""
|
3647
3515
|
return self._BusinessCodeName
|
@@ -3653,7 +3521,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3653
3521
|
@property
|
3654
3522
|
def ProductCode(self):
|
3655
3523
|
"""子产品编码
|
3656
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3657
3524
|
:rtype: str
|
3658
3525
|
"""
|
3659
3526
|
return self._ProductCode
|
@@ -3665,7 +3532,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3665
3532
|
@property
|
3666
3533
|
def ProductCodeName(self):
|
3667
3534
|
"""子产品名称:用户采购的具体产品细分类型
|
3668
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3669
3535
|
:rtype: str
|
3670
3536
|
"""
|
3671
3537
|
return self._ProductCodeName
|
@@ -3677,7 +3543,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3677
3543
|
@property
|
3678
3544
|
def RegionId(self):
|
3679
3545
|
"""地域ID
|
3680
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3681
3546
|
:rtype: int
|
3682
3547
|
"""
|
3683
3548
|
return self._RegionId
|
@@ -3689,7 +3554,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3689
3554
|
@property
|
3690
3555
|
def RegionName(self):
|
3691
3556
|
"""地域名称:资源所属地域
|
3692
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3693
3557
|
:rtype: str
|
3694
3558
|
"""
|
3695
3559
|
return self._RegionName
|
@@ -3701,7 +3565,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3701
3565
|
@property
|
3702
3566
|
def ZoneId(self):
|
3703
3567
|
"""可用区ID
|
3704
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3705
3568
|
:rtype: int
|
3706
3569
|
"""
|
3707
3570
|
return self._ZoneId
|
@@ -3713,7 +3576,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3713
3576
|
@property
|
3714
3577
|
def ZoneName(self):
|
3715
3578
|
"""可用区:资源所属可用区
|
3716
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3717
3579
|
:rtype: str
|
3718
3580
|
"""
|
3719
3581
|
return self._ZoneName
|
@@ -3725,7 +3587,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3725
3587
|
@property
|
3726
3588
|
def InstanceType(self):
|
3727
3589
|
"""实例类型编码
|
3728
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3729
3590
|
:rtype: str
|
3730
3591
|
"""
|
3731
3592
|
return self._InstanceType
|
@@ -3737,7 +3598,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3737
3598
|
@property
|
3738
3599
|
def InstanceTypeName(self):
|
3739
3600
|
"""实例类型:购买的产品服务对应的实例类型,包括资源包、RI、SP、竞价实例。常规实例默认展示“-”
|
3740
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3741
3601
|
:rtype: str
|
3742
3602
|
"""
|
3743
3603
|
return self._InstanceTypeName
|
@@ -3749,7 +3609,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3749
3609
|
@property
|
3750
3610
|
def ResourceId(self):
|
3751
3611
|
"""资源ID:不同产品因资源形态不同,资源内容不完全相同,如云服务器 CVM 为对应的实例 ID; 若该产品被分拆,则展示产品分拆后的分拆项 ID,如 COS 桶 ID,CDN 域名
|
3752
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3753
3612
|
:rtype: str
|
3754
3613
|
"""
|
3755
3614
|
return self._ResourceId
|
@@ -3761,7 +3620,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3761
3620
|
@property
|
3762
3621
|
def ResourceName(self):
|
3763
3622
|
"""实例名称:用户在控制台为资源设置的名称,如未设置默认为空;若该产品被分拆,则展示分拆产品分拆后的分拆项资源别名
|
3764
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3765
3623
|
:rtype: str
|
3766
3624
|
"""
|
3767
3625
|
return self._ResourceName
|
@@ -3773,7 +3631,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3773
3631
|
@property
|
3774
3632
|
def Tag(self):
|
3775
3633
|
"""分账标签:资源绑定的标签
|
3776
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3777
3634
|
:rtype: list of BillTag
|
3778
3635
|
"""
|
3779
3636
|
return self._Tag
|
@@ -3785,7 +3642,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3785
3642
|
@property
|
3786
3643
|
def ProjectId(self):
|
3787
3644
|
"""项目ID
|
3788
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3789
3645
|
:rtype: int
|
3790
3646
|
"""
|
3791
3647
|
return self._ProjectId
|
@@ -3797,7 +3653,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3797
3653
|
@property
|
3798
3654
|
def ProjectName(self):
|
3799
3655
|
"""项目名称:资源归属的项目,用户在控制台给资源自主分配项目,未分配则是默认项目
|
3800
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3801
3656
|
:rtype: str
|
3802
3657
|
"""
|
3803
3658
|
return self._ProjectName
|
@@ -3812,7 +3667,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3812
3667
|
0 - 分摊
|
3813
3668
|
1 - 归集
|
3814
3669
|
-1 - 未分配
|
3815
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3816
3670
|
:rtype: int
|
3817
3671
|
"""
|
3818
3672
|
return self._AllocationType
|
@@ -3824,7 +3678,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3824
3678
|
@property
|
3825
3679
|
def TotalCost(self):
|
3826
3680
|
"""组件原价:原价 = 组件刊例价 * 组件用量 * 使用时长(如客户享受一口价/合同价则默认不展示,退费类场景也默认不展示),指定价模式
|
3827
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3828
3681
|
:rtype: str
|
3829
3682
|
"""
|
3830
3683
|
return self._TotalCost
|
@@ -3836,7 +3689,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3836
3689
|
@property
|
3837
3690
|
def RiTimeSpan(self):
|
3838
3691
|
"""预留实例抵扣时长:本产品或服务使用预留实例抵扣的使用时长
|
3839
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3840
3692
|
:rtype: str
|
3841
3693
|
"""
|
3842
3694
|
return self._RiTimeSpan
|
@@ -3848,7 +3700,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3848
3700
|
@property
|
3849
3701
|
def RiCost(self):
|
3850
3702
|
"""预留实例抵扣原价:本产品或服务使用预留实例抵扣的组件原价金额
|
3851
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3852
3703
|
:rtype: str
|
3853
3704
|
"""
|
3854
3705
|
return self._RiCost
|
@@ -3860,7 +3711,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3860
3711
|
@property
|
3861
3712
|
def RealTotalCost(self):
|
3862
3713
|
"""优惠后总价:优惠后总价 =(原价 - 预留实例抵扣原价 - 节省计划抵扣原价)* 折扣率
|
3863
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3864
3714
|
:rtype: str
|
3865
3715
|
"""
|
3866
3716
|
return self._RealTotalCost
|
@@ -3872,7 +3722,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3872
3722
|
@property
|
3873
3723
|
def CashPayAmount(self):
|
3874
3724
|
"""现金账户支出(元):通过现金账户支付的金额
|
3875
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3876
3725
|
:rtype: str
|
3877
3726
|
"""
|
3878
3727
|
return self._CashPayAmount
|
@@ -3884,7 +3733,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3884
3733
|
@property
|
3885
3734
|
def VoucherPayAmount(self):
|
3886
3735
|
"""代金券支出(元):使用各类优惠券(如代金券、现金券等)支付的金额
|
3887
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3888
3736
|
:rtype: str
|
3889
3737
|
"""
|
3890
3738
|
return self._VoucherPayAmount
|
@@ -3896,7 +3744,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3896
3744
|
@property
|
3897
3745
|
def IncentivePayAmount(self):
|
3898
3746
|
"""赠送账户支出(元):使用赠送金支付的金额
|
3899
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3900
3747
|
:rtype: str
|
3901
3748
|
"""
|
3902
3749
|
return self._IncentivePayAmount
|
@@ -3908,7 +3755,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3908
3755
|
@property
|
3909
3756
|
def TransferPayAmount(self):
|
3910
3757
|
"""分成账户支出(元):通过分成金账户支付的金额
|
3911
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3912
3758
|
:rtype: str
|
3913
3759
|
"""
|
3914
3760
|
return self._TransferPayAmount
|
@@ -3920,7 +3766,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3920
3766
|
@property
|
3921
3767
|
def ItemCode(self):
|
3922
3768
|
"""组件名称编码
|
3923
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3924
3769
|
:rtype: str
|
3925
3770
|
"""
|
3926
3771
|
return self._ItemCode
|
@@ -3932,7 +3777,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3932
3777
|
@property
|
3933
3778
|
def ItemCodeName(self):
|
3934
3779
|
"""组件名称:用户购买的产品或服务,所包含的具体组件
|
3935
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3936
3780
|
:rtype: str
|
3937
3781
|
"""
|
3938
3782
|
return self._ItemCodeName
|
@@ -3944,7 +3788,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3944
3788
|
@property
|
3945
3789
|
def ComponentCode(self):
|
3946
3790
|
"""组件类型编码
|
3947
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3948
3791
|
:rtype: str
|
3949
3792
|
"""
|
3950
3793
|
return self._ComponentCode
|
@@ -3956,7 +3799,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
3956
3799
|
@property
|
3957
3800
|
def ComponentCodeName(self):
|
3958
3801
|
"""组件类型:用户购买的产品或服务对应的组件大类
|
3959
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3960
3802
|
:rtype: str
|
3961
3803
|
"""
|
3962
3804
|
return self._ComponentCodeName
|
@@ -4000,7 +3842,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4000
3842
|
@property
|
4001
3843
|
def FeeBeginTime(self):
|
4002
3844
|
"""开始使用时间:产品服务开始使用时间
|
4003
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4004
3845
|
:rtype: str
|
4005
3846
|
"""
|
4006
3847
|
return self._FeeBeginTime
|
@@ -4012,7 +3853,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4012
3853
|
@property
|
4013
3854
|
def FeeEndTime(self):
|
4014
3855
|
"""结束使用时间:产品服务结束使用时间
|
4015
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4016
3856
|
:rtype: str
|
4017
3857
|
"""
|
4018
3858
|
return self._FeeEndTime
|
@@ -4024,7 +3864,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4024
3864
|
@property
|
4025
3865
|
def SPCost(self):
|
4026
3866
|
"""节省计划抵扣原价:节省计划抵扣原价 = 节省计划包抵扣面值 / 节省计划抵扣率
|
4027
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4028
3867
|
:rtype: str
|
4029
3868
|
"""
|
4030
3869
|
return self._SPCost
|
@@ -4036,7 +3875,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4036
3875
|
@property
|
4037
3876
|
def RegionType(self):
|
4038
3877
|
"""国内国际编码
|
4039
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4040
3878
|
:rtype: str
|
4041
3879
|
"""
|
4042
3880
|
return self._RegionType
|
@@ -4048,7 +3886,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4048
3886
|
@property
|
4049
3887
|
def RegionTypeName(self):
|
4050
3888
|
"""国内国际:资源所属区域类型(国内、国际)
|
4051
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4052
3889
|
:rtype: str
|
4053
3890
|
"""
|
4054
3891
|
return self._RegionTypeName
|
@@ -4060,7 +3897,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4060
3897
|
@property
|
4061
3898
|
def SinglePrice(self):
|
4062
3899
|
"""组件刊例价:组件的官网原始单价(如客户享受一口价/合同价则默认不展示)
|
4063
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4064
3900
|
:rtype: str
|
4065
3901
|
"""
|
4066
3902
|
return self._SinglePrice
|
@@ -4072,7 +3908,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4072
3908
|
@property
|
4073
3909
|
def ContractPrice(self):
|
4074
3910
|
"""组件单价:组件的折后单价,组件单价 = 刊例价 * 折扣
|
4075
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4076
3911
|
:rtype: str
|
4077
3912
|
"""
|
4078
3913
|
return self._ContractPrice
|
@@ -4084,7 +3919,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4084
3919
|
@property
|
4085
3920
|
def SinglePriceUnit(self):
|
4086
3921
|
"""组件价格单位:组件价格的单位,单位构成:元/用量单位/时长单位
|
4087
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4088
3922
|
:rtype: str
|
4089
3923
|
"""
|
4090
3924
|
return self._SinglePriceUnit
|
@@ -4096,7 +3930,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4096
3930
|
@property
|
4097
3931
|
def UsedAmount(self):
|
4098
3932
|
"""组件用量:该组件实际结算用量,组件用量=组件原始用量-抵扣用量(含资源包)
|
4099
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4100
3933
|
:rtype: str
|
4101
3934
|
"""
|
4102
3935
|
return self._UsedAmount
|
@@ -4108,7 +3941,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4108
3941
|
@property
|
4109
3942
|
def UsedAmountUnit(self):
|
4110
3943
|
"""组件用量单位:组件用量对应的单位
|
4111
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4112
3944
|
:rtype: str
|
4113
3945
|
"""
|
4114
3946
|
return self._UsedAmountUnit
|
@@ -4120,7 +3952,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4120
3952
|
@property
|
4121
3953
|
def TimeSpan(self):
|
4122
3954
|
"""使用时长:资源使用的时长,组件用量=组件原始使用时长-抵扣时长(含资源包)
|
4123
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4124
3955
|
:rtype: str
|
4125
3956
|
"""
|
4126
3957
|
return self._TimeSpan
|
@@ -4132,7 +3963,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4132
3963
|
@property
|
4133
3964
|
def TimeUnit(self):
|
4134
3965
|
"""时长单位:资源使用时长的单位
|
4135
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4136
3966
|
:rtype: str
|
4137
3967
|
"""
|
4138
3968
|
return self._TimeUnit
|
@@ -4144,7 +3974,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4144
3974
|
@property
|
4145
3975
|
def ReserveDetail(self):
|
4146
3976
|
"""备注属性(实例配置):其他备注信息,如预留实例的预留实例类型和交易类型、CCN 产品的两端地域信息
|
4147
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4148
3977
|
:rtype: str
|
4149
3978
|
"""
|
4150
3979
|
return self._ReserveDetail
|
@@ -4157,7 +3986,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4157
3986
|
def RealTotalMeasure(self):
|
4158
3987
|
"""原始用量/时长:组件被资源包抵扣前的原始用量
|
4159
3988
|
(目前仅实时音视频、弹性微服务、云呼叫中心及专属可用区产品支持该信息外显,其他产品尚在接入中)
|
4160
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4161
3989
|
:rtype: str
|
4162
3990
|
"""
|
4163
3991
|
return self._RealTotalMeasure
|
@@ -4170,7 +3998,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4170
3998
|
def DeductedMeasure(self):
|
4171
3999
|
"""抵扣用量/时长(含资源包):组件被资源包抵扣的用量
|
4172
4000
|
(目前仅实时音视频、弹性微服务、云呼叫中心及专属可用区产品支持该信息外显,其他产品尚在接入中)
|
4173
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4174
4001
|
:rtype: str
|
4175
4002
|
"""
|
4176
4003
|
return self._DeductedMeasure
|
@@ -4182,7 +4009,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4182
4009
|
@property
|
4183
4010
|
def Discount(self):
|
4184
4011
|
"""折扣率:本资源享受的折扣率(如客户享受一口价/合同价则默认不展示,退费场景也默认不展示)
|
4185
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4186
4012
|
:rtype: str
|
4187
4013
|
"""
|
4188
4014
|
return self._Discount
|
@@ -4194,7 +4020,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4194
4020
|
@property
|
4195
4021
|
def BlendedDiscount(self):
|
4196
4022
|
"""混合折扣率:综合各类折扣抵扣信息后的最终折扣率,混合折扣率=优惠后总价/原价
|
4197
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4198
4023
|
:rtype: str
|
4199
4024
|
"""
|
4200
4025
|
return self._BlendedDiscount
|
@@ -4206,7 +4031,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4206
4031
|
@property
|
4207
4032
|
def PriceInfo(self):
|
4208
4033
|
"""价格属性:该组件除单价、时长外的其他影响折扣定价的属性信息
|
4209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4210
4034
|
:rtype: list of str
|
4211
4035
|
"""
|
4212
4036
|
return self._PriceInfo
|
@@ -4218,7 +4042,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4218
4042
|
@property
|
4219
4043
|
def Formula(self):
|
4220
4044
|
"""计算规则说明:特殊交易类型计费结算的详细计算说明,如退费及变配
|
4221
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4222
4045
|
:rtype: str
|
4223
4046
|
"""
|
4224
4047
|
return self._Formula
|
@@ -4230,7 +4053,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4230
4053
|
@property
|
4231
4054
|
def FormulaUrl(self):
|
4232
4055
|
"""计费规则:各产品详细的计费规则官网说明链接
|
4233
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4234
4056
|
:rtype: str
|
4235
4057
|
"""
|
4236
4058
|
return self._FormulaUrl
|
@@ -4242,7 +4064,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4242
4064
|
@property
|
4243
4065
|
def ComponentConfig(self):
|
4244
4066
|
"""配置描述:资源配置规格信息
|
4245
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4246
4067
|
:rtype: str
|
4247
4068
|
"""
|
4248
4069
|
return self._ComponentConfig
|
@@ -4254,7 +4075,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4254
4075
|
@property
|
4255
4076
|
def SPDeduction(self):
|
4256
4077
|
"""SPDeduction
|
4257
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4258
4078
|
:rtype: str
|
4259
4079
|
"""
|
4260
4080
|
return self._SPDeduction
|
@@ -4266,7 +4086,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4266
4086
|
@property
|
4267
4087
|
def SPDeductionRate(self):
|
4268
4088
|
"""节省计划抵扣率:节省计划可用余额额度范围内,节省计划对于此组件打的折扣率
|
4269
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4270
4089
|
:rtype: str
|
4271
4090
|
"""
|
4272
4091
|
return self._SPDeductionRate
|
@@ -4278,7 +4097,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4278
4097
|
@property
|
4279
4098
|
def AssociatedOrder(self):
|
4280
4099
|
"""AssociatedOrder
|
4281
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4282
4100
|
:rtype: str
|
4283
4101
|
"""
|
4284
4102
|
return self._AssociatedOrder
|
@@ -4290,7 +4108,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4290
4108
|
@property
|
4291
4109
|
def DiscountObject(self):
|
4292
4110
|
"""当前消费项的优惠对象,例如:官网折扣、用户折扣、活动折扣。
|
4293
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4294
4111
|
:rtype: str
|
4295
4112
|
"""
|
4296
4113
|
return self._DiscountObject
|
@@ -4302,7 +4119,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4302
4119
|
@property
|
4303
4120
|
def DiscountType(self):
|
4304
4121
|
"""当前消费项的优惠类型,例如:折扣、合同价。
|
4305
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4306
4122
|
:rtype: str
|
4307
4123
|
"""
|
4308
4124
|
return self._DiscountType
|
@@ -4314,7 +4130,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4314
4130
|
@property
|
4315
4131
|
def DiscountContent(self):
|
4316
4132
|
"""对优惠类型的补充描述,例如:商务折扣8折,则优惠类型为“折扣”,优惠内容为“0.8”。
|
4317
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4318
4133
|
:rtype: str
|
4319
4134
|
"""
|
4320
4135
|
return self._DiscountContent
|
@@ -4326,7 +4141,6 @@ class AllocationSummaryByItem(AbstractModel):
|
|
4326
4141
|
@property
|
4327
4142
|
def BillMonth(self):
|
4328
4143
|
"""账单月
|
4329
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4330
4144
|
:rtype: str
|
4331
4145
|
"""
|
4332
4146
|
return self._BillMonth
|
@@ -9923,10 +9737,8 @@ class BillZoneId(AbstractModel):
|
|
9923
9737
|
def __init__(self):
|
9924
9738
|
r"""
|
9925
9739
|
:param _ZoneId: 可用区ID
|
9926
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9927
9740
|
:type ZoneId: int
|
9928
9741
|
:param _ZoneName: 可用区:资源所属可用区
|
9929
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9930
9742
|
:type ZoneName: str
|
9931
9743
|
"""
|
9932
9744
|
self._ZoneId = None
|
@@ -9935,7 +9747,6 @@ class BillZoneId(AbstractModel):
|
|
9935
9747
|
@property
|
9936
9748
|
def ZoneId(self):
|
9937
9749
|
"""可用区ID
|
9938
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9939
9750
|
:rtype: int
|
9940
9751
|
"""
|
9941
9752
|
return self._ZoneId
|
@@ -9947,7 +9758,6 @@ class BillZoneId(AbstractModel):
|
|
9947
9758
|
@property
|
9948
9759
|
def ZoneName(self):
|
9949
9760
|
"""可用区:资源所属可用区
|
9950
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9951
9761
|
:rtype: str
|
9952
9762
|
"""
|
9953
9763
|
return self._ZoneName
|
@@ -9982,7 +9792,6 @@ class BusinessSummaryInfo(AbstractModel):
|
|
9982
9792
|
:param _BusinessCodeName: 产品名称:用户所采购的各类云产品,例如:云服务器 CVM
|
9983
9793
|
:type BusinessCodeName: str
|
9984
9794
|
:param _TotalCost: 原价,单位为元。TotalCost字段自账单3.0(即2021-05)之后开始生效,账单3.0之前返回"-"。合同价的情况下,TotalCost字段与官网价格存在差异,也返回“-”。
|
9985
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9986
9795
|
:type TotalCost: str
|
9987
9796
|
:param _RealTotalCost: 优惠后总价
|
9988
9797
|
:type RealTotalCost: str
|
@@ -9993,7 +9802,6 @@ class BusinessSummaryInfo(AbstractModel):
|
|
9993
9802
|
:param _VoucherPayAmount: 优惠券支出:使用各类优惠券(如代金券、现金券等)支付的金额
|
9994
9803
|
:type VoucherPayAmount: str
|
9995
9804
|
:param _TransferPayAmount: 分成金账户支出:通过分成金账户支付的金额
|
9996
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9997
9805
|
:type TransferPayAmount: str
|
9998
9806
|
"""
|
9999
9807
|
self._BusinessCode = None
|
@@ -10030,7 +9838,6 @@ class BusinessSummaryInfo(AbstractModel):
|
|
10030
9838
|
@property
|
10031
9839
|
def TotalCost(self):
|
10032
9840
|
"""原价,单位为元。TotalCost字段自账单3.0(即2021-05)之后开始生效,账单3.0之前返回"-"。合同价的情况下,TotalCost字段与官网价格存在差异,也返回“-”。
|
10033
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10034
9841
|
:rtype: str
|
10035
9842
|
"""
|
10036
9843
|
return self._TotalCost
|
@@ -10086,7 +9893,6 @@ class BusinessSummaryInfo(AbstractModel):
|
|
10086
9893
|
@property
|
10087
9894
|
def TransferPayAmount(self):
|
10088
9895
|
"""分成金账户支出:通过分成金账户支付的金额
|
10089
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10090
9896
|
:rtype: str
|
10091
9897
|
"""
|
10092
9898
|
return self._TransferPayAmount
|
@@ -10123,7 +9929,6 @@ class BusinessSummaryOverviewItem(AbstractModel):
|
|
10123
9929
|
def __init__(self):
|
10124
9930
|
r"""
|
10125
9931
|
:param _BusinessCode: 产品编码
|
10126
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10127
9932
|
:type BusinessCode: str
|
10128
9933
|
:param _BusinessCodeName: 产品名称:用户所采购的各类云产品,例如:云服务器 CVM
|
10129
9934
|
:type BusinessCodeName: str
|
@@ -10158,7 +9963,6 @@ class BusinessSummaryOverviewItem(AbstractModel):
|
|
10158
9963
|
@property
|
10159
9964
|
def BusinessCode(self):
|
10160
9965
|
"""产品编码
|
10161
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10162
9966
|
:rtype: str
|
10163
9967
|
"""
|
10164
9968
|
return self._BusinessCode
|
@@ -10927,19 +10731,14 @@ class ConsumptionBusinessSummaryDataItem(AbstractModel):
|
|
10927
10731
|
:param _Trend: 费用趋势
|
10928
10732
|
:type Trend: :class:`tencentcloud.billing.v20180709.models.ConsumptionSummaryTrend`
|
10929
10733
|
:param _CashPayAmount: 现金
|
10930
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10931
10734
|
:type CashPayAmount: str
|
10932
10735
|
:param _IncentivePayAmount: 赠送金
|
10933
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10934
10736
|
:type IncentivePayAmount: str
|
10935
10737
|
:param _VoucherPayAmount: 代金券
|
10936
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10937
10738
|
:type VoucherPayAmount: str
|
10938
10739
|
:param _TransferPayAmount: 分成金
|
10939
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10940
10740
|
:type TransferPayAmount: str
|
10941
10741
|
:param _RegionName: 地域名称(仅在地域汇总总展示)
|
10942
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10943
10742
|
:type RegionName: str
|
10944
10743
|
"""
|
10945
10744
|
self._BusinessCode = None
|
@@ -10999,7 +10798,6 @@ class ConsumptionBusinessSummaryDataItem(AbstractModel):
|
|
10999
10798
|
@property
|
11000
10799
|
def CashPayAmount(self):
|
11001
10800
|
"""现金
|
11002
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11003
10801
|
:rtype: str
|
11004
10802
|
"""
|
11005
10803
|
return self._CashPayAmount
|
@@ -11011,7 +10809,6 @@ class ConsumptionBusinessSummaryDataItem(AbstractModel):
|
|
11011
10809
|
@property
|
11012
10810
|
def IncentivePayAmount(self):
|
11013
10811
|
"""赠送金
|
11014
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11015
10812
|
:rtype: str
|
11016
10813
|
"""
|
11017
10814
|
return self._IncentivePayAmount
|
@@ -11023,7 +10820,6 @@ class ConsumptionBusinessSummaryDataItem(AbstractModel):
|
|
11023
10820
|
@property
|
11024
10821
|
def VoucherPayAmount(self):
|
11025
10822
|
"""代金券
|
11026
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11027
10823
|
:rtype: str
|
11028
10824
|
"""
|
11029
10825
|
return self._VoucherPayAmount
|
@@ -11035,7 +10831,6 @@ class ConsumptionBusinessSummaryDataItem(AbstractModel):
|
|
11035
10831
|
@property
|
11036
10832
|
def TransferPayAmount(self):
|
11037
10833
|
"""分成金
|
11038
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11039
10834
|
:rtype: str
|
11040
10835
|
"""
|
11041
10836
|
return self._TransferPayAmount
|
@@ -11047,7 +10842,6 @@ class ConsumptionBusinessSummaryDataItem(AbstractModel):
|
|
11047
10842
|
@property
|
11048
10843
|
def RegionName(self):
|
11049
10844
|
"""地域名称(仅在地域汇总总展示)
|
11050
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11051
10845
|
:rtype: str
|
11052
10846
|
"""
|
11053
10847
|
return self._RegionName
|
@@ -11556,85 +11350,58 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11556
11350
|
:param _ConsumptionTypeName: 消耗类型
|
11557
11351
|
:type ConsumptionTypeName: str
|
11558
11352
|
:param _RealCost: 折前价
|
11559
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11560
11353
|
:type RealCost: str
|
11561
11354
|
:param _FeeBeginTime: 费用起始时间
|
11562
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11563
11355
|
:type FeeBeginTime: str
|
11564
11356
|
:param _FeeEndTime: 费用结束时间
|
11565
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11566
11357
|
:type FeeEndTime: str
|
11567
11358
|
:param _DayDiff: 天数
|
11568
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11569
11359
|
:type DayDiff: str
|
11570
11360
|
:param _DailyTotalCost: 每日消耗
|
11571
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11572
11361
|
:type DailyTotalCost: str
|
11573
11362
|
:param _OrderId: 订单号
|
11574
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11575
11363
|
:type OrderId: str
|
11576
11364
|
:param _VoucherPayAmount: 代金券
|
11577
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11578
11365
|
:type VoucherPayAmount: str
|
11579
11366
|
:param _IncentivePayAmount: 赠送金
|
11580
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11581
11367
|
:type IncentivePayAmount: str
|
11582
11368
|
:param _TransferPayAmount: 分成金
|
11583
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11584
11369
|
:type TransferPayAmount: str
|
11585
11370
|
:param _PayerUin: 支付者UIN:支付者的账号 ID,账号 ID 是用户在腾讯云的唯一账号标识
|
11586
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11587
11371
|
:type PayerUin: str
|
11588
11372
|
:param _OwnerUin: 使用者UIN:实际使用资源的账号 ID
|
11589
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11590
11373
|
:type OwnerUin: str
|
11591
11374
|
:param _OperateUin: 操作者UIN:操作者账号 ID(预付费资源下单或后付费操作开通资源账号的 ID 或者角色 ID )
|
11592
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11593
11375
|
:type OperateUin: str
|
11594
11376
|
:param _ProductCode: 子产品编码
|
11595
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11596
11377
|
:type ProductCode: str
|
11597
11378
|
:param _ProductCodeName: 子产品名称:用户采购的具体产品细分类型,例如:云服务器 CVM-标准型 S1
|
11598
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11599
11379
|
:type ProductCodeName: str
|
11600
11380
|
:param _RegionType: 地域类型
|
11601
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11602
11381
|
:type RegionType: str
|
11603
11382
|
:param _RegionTypeName: 地域类型名称
|
11604
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11605
11383
|
:type RegionTypeName: str
|
11606
11384
|
:param _Extend1: 扩展字段1
|
11607
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11608
11385
|
:type Extend1: str
|
11609
11386
|
:param _Extend2: 扩展字段2
|
11610
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11611
11387
|
:type Extend2: str
|
11612
11388
|
:param _Extend3: 扩展字段3
|
11613
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11614
11389
|
:type Extend3: str
|
11615
11390
|
:param _Extend4: 扩展字段4
|
11616
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11617
11391
|
:type Extend4: str
|
11618
11392
|
:param _Extend5: 扩展字段5
|
11619
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11620
11393
|
:type Extend5: str
|
11621
11394
|
:param _InstanceType: 实例类型
|
11622
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11623
11395
|
:type InstanceType: str
|
11624
11396
|
:param _InstanceTypeName: 实例类型名称
|
11625
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11626
11397
|
:type InstanceTypeName: str
|
11627
11398
|
:param _PayTime: 扣费时间:结算扣费时间
|
11628
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11629
11399
|
:type PayTime: str
|
11630
11400
|
:param _ZoneName: 可用区:资源所属可用区,如广州三区
|
11631
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11632
11401
|
:type ZoneName: str
|
11633
11402
|
:param _ComponentConfig: 配置描述
|
11634
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11635
11403
|
:type ComponentConfig: str
|
11636
11404
|
:param _Tags: 标签信息
|
11637
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11638
11405
|
:type Tags: str
|
11639
11406
|
"""
|
11640
11407
|
self._ResourceId = None
|
@@ -11824,7 +11591,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11824
11591
|
@property
|
11825
11592
|
def RealCost(self):
|
11826
11593
|
"""折前价
|
11827
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11828
11594
|
:rtype: str
|
11829
11595
|
"""
|
11830
11596
|
return self._RealCost
|
@@ -11836,7 +11602,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11836
11602
|
@property
|
11837
11603
|
def FeeBeginTime(self):
|
11838
11604
|
"""费用起始时间
|
11839
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11840
11605
|
:rtype: str
|
11841
11606
|
"""
|
11842
11607
|
return self._FeeBeginTime
|
@@ -11848,7 +11613,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11848
11613
|
@property
|
11849
11614
|
def FeeEndTime(self):
|
11850
11615
|
"""费用结束时间
|
11851
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11852
11616
|
:rtype: str
|
11853
11617
|
"""
|
11854
11618
|
return self._FeeEndTime
|
@@ -11860,7 +11624,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11860
11624
|
@property
|
11861
11625
|
def DayDiff(self):
|
11862
11626
|
"""天数
|
11863
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11864
11627
|
:rtype: str
|
11865
11628
|
"""
|
11866
11629
|
return self._DayDiff
|
@@ -11872,7 +11635,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11872
11635
|
@property
|
11873
11636
|
def DailyTotalCost(self):
|
11874
11637
|
"""每日消耗
|
11875
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11876
11638
|
:rtype: str
|
11877
11639
|
"""
|
11878
11640
|
return self._DailyTotalCost
|
@@ -11884,7 +11646,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11884
11646
|
@property
|
11885
11647
|
def OrderId(self):
|
11886
11648
|
"""订单号
|
11887
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11888
11649
|
:rtype: str
|
11889
11650
|
"""
|
11890
11651
|
return self._OrderId
|
@@ -11896,7 +11657,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11896
11657
|
@property
|
11897
11658
|
def VoucherPayAmount(self):
|
11898
11659
|
"""代金券
|
11899
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11900
11660
|
:rtype: str
|
11901
11661
|
"""
|
11902
11662
|
return self._VoucherPayAmount
|
@@ -11908,7 +11668,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11908
11668
|
@property
|
11909
11669
|
def IncentivePayAmount(self):
|
11910
11670
|
"""赠送金
|
11911
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11912
11671
|
:rtype: str
|
11913
11672
|
"""
|
11914
11673
|
return self._IncentivePayAmount
|
@@ -11920,7 +11679,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11920
11679
|
@property
|
11921
11680
|
def TransferPayAmount(self):
|
11922
11681
|
"""分成金
|
11923
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11924
11682
|
:rtype: str
|
11925
11683
|
"""
|
11926
11684
|
return self._TransferPayAmount
|
@@ -11932,7 +11690,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11932
11690
|
@property
|
11933
11691
|
def PayerUin(self):
|
11934
11692
|
"""支付者UIN:支付者的账号 ID,账号 ID 是用户在腾讯云的唯一账号标识
|
11935
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11936
11693
|
:rtype: str
|
11937
11694
|
"""
|
11938
11695
|
return self._PayerUin
|
@@ -11944,7 +11701,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11944
11701
|
@property
|
11945
11702
|
def OwnerUin(self):
|
11946
11703
|
"""使用者UIN:实际使用资源的账号 ID
|
11947
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11948
11704
|
:rtype: str
|
11949
11705
|
"""
|
11950
11706
|
return self._OwnerUin
|
@@ -11956,7 +11712,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11956
11712
|
@property
|
11957
11713
|
def OperateUin(self):
|
11958
11714
|
"""操作者UIN:操作者账号 ID(预付费资源下单或后付费操作开通资源账号的 ID 或者角色 ID )
|
11959
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11960
11715
|
:rtype: str
|
11961
11716
|
"""
|
11962
11717
|
return self._OperateUin
|
@@ -11968,7 +11723,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11968
11723
|
@property
|
11969
11724
|
def ProductCode(self):
|
11970
11725
|
"""子产品编码
|
11971
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11972
11726
|
:rtype: str
|
11973
11727
|
"""
|
11974
11728
|
return self._ProductCode
|
@@ -11980,7 +11734,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11980
11734
|
@property
|
11981
11735
|
def ProductCodeName(self):
|
11982
11736
|
"""子产品名称:用户采购的具体产品细分类型,例如:云服务器 CVM-标准型 S1
|
11983
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11984
11737
|
:rtype: str
|
11985
11738
|
"""
|
11986
11739
|
return self._ProductCodeName
|
@@ -11992,7 +11745,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
11992
11745
|
@property
|
11993
11746
|
def RegionType(self):
|
11994
11747
|
"""地域类型
|
11995
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11996
11748
|
:rtype: str
|
11997
11749
|
"""
|
11998
11750
|
return self._RegionType
|
@@ -12004,7 +11756,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
12004
11756
|
@property
|
12005
11757
|
def RegionTypeName(self):
|
12006
11758
|
"""地域类型名称
|
12007
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12008
11759
|
:rtype: str
|
12009
11760
|
"""
|
12010
11761
|
return self._RegionTypeName
|
@@ -12016,7 +11767,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
12016
11767
|
@property
|
12017
11768
|
def Extend1(self):
|
12018
11769
|
"""扩展字段1
|
12019
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12020
11770
|
:rtype: str
|
12021
11771
|
"""
|
12022
11772
|
return self._Extend1
|
@@ -12028,7 +11778,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
12028
11778
|
@property
|
12029
11779
|
def Extend2(self):
|
12030
11780
|
"""扩展字段2
|
12031
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12032
11781
|
:rtype: str
|
12033
11782
|
"""
|
12034
11783
|
return self._Extend2
|
@@ -12040,7 +11789,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
12040
11789
|
@property
|
12041
11790
|
def Extend3(self):
|
12042
11791
|
"""扩展字段3
|
12043
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12044
11792
|
:rtype: str
|
12045
11793
|
"""
|
12046
11794
|
return self._Extend3
|
@@ -12052,7 +11800,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
12052
11800
|
@property
|
12053
11801
|
def Extend4(self):
|
12054
11802
|
"""扩展字段4
|
12055
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12056
11803
|
:rtype: str
|
12057
11804
|
"""
|
12058
11805
|
return self._Extend4
|
@@ -12064,7 +11811,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
12064
11811
|
@property
|
12065
11812
|
def Extend5(self):
|
12066
11813
|
"""扩展字段5
|
12067
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12068
11814
|
:rtype: str
|
12069
11815
|
"""
|
12070
11816
|
return self._Extend5
|
@@ -12076,7 +11822,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
12076
11822
|
@property
|
12077
11823
|
def InstanceType(self):
|
12078
11824
|
"""实例类型
|
12079
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12080
11825
|
:rtype: str
|
12081
11826
|
"""
|
12082
11827
|
return self._InstanceType
|
@@ -12088,7 +11833,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
12088
11833
|
@property
|
12089
11834
|
def InstanceTypeName(self):
|
12090
11835
|
"""实例类型名称
|
12091
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12092
11836
|
:rtype: str
|
12093
11837
|
"""
|
12094
11838
|
return self._InstanceTypeName
|
@@ -12100,7 +11844,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
12100
11844
|
@property
|
12101
11845
|
def PayTime(self):
|
12102
11846
|
"""扣费时间:结算扣费时间
|
12103
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12104
11847
|
:rtype: str
|
12105
11848
|
"""
|
12106
11849
|
return self._PayTime
|
@@ -12112,7 +11855,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
12112
11855
|
@property
|
12113
11856
|
def ZoneName(self):
|
12114
11857
|
"""可用区:资源所属可用区,如广州三区
|
12115
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12116
11858
|
:rtype: str
|
12117
11859
|
"""
|
12118
11860
|
return self._ZoneName
|
@@ -12124,7 +11866,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
12124
11866
|
@property
|
12125
11867
|
def ComponentConfig(self):
|
12126
11868
|
"""配置描述
|
12127
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12128
11869
|
:rtype: str
|
12129
11870
|
"""
|
12130
11871
|
return self._ComponentConfig
|
@@ -12136,7 +11877,6 @@ class ConsumptionResourceSummaryDataItem(AbstractModel):
|
|
12136
11877
|
@property
|
12137
11878
|
def Tags(self):
|
12138
11879
|
"""标签信息
|
12139
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12140
11880
|
:rtype: str
|
12141
11881
|
"""
|
12142
11882
|
return self._Tags
|
@@ -12243,7 +11983,6 @@ class ConsumptionSummaryTrend(AbstractModel):
|
|
12243
11983
|
:param _Type: 趋势类型,upward上升/downward下降/none无
|
12244
11984
|
:type Type: str
|
12245
11985
|
:param _Value: 趋势值,Type为none是该字段值为null
|
12246
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12247
11986
|
:type Value: str
|
12248
11987
|
"""
|
12249
11988
|
self._Type = None
|
@@ -12263,7 +12002,6 @@ class ConsumptionSummaryTrend(AbstractModel):
|
|
12263
12002
|
@property
|
12264
12003
|
def Value(self):
|
12265
12004
|
"""趋势值,Type为none是该字段值为null
|
12266
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12267
12005
|
:rtype: str
|
12268
12006
|
"""
|
12269
12007
|
return self._Value
|
@@ -12639,7 +12377,6 @@ class CostDetail(AbstractModel):
|
|
12639
12377
|
:param _ResourceName: 资源名称
|
12640
12378
|
:type ResourceName: str
|
12641
12379
|
:param _ActionTypeName: 类型名称
|
12642
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12643
12380
|
:type ActionTypeName: str
|
12644
12381
|
:param _OrderId: 订单id
|
12645
12382
|
:type OrderId: str
|
@@ -12773,7 +12510,6 @@ class CostDetail(AbstractModel):
|
|
12773
12510
|
@property
|
12774
12511
|
def ActionTypeName(self):
|
12775
12512
|
"""类型名称
|
12776
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12777
12513
|
:rtype: str
|
12778
12514
|
"""
|
12779
12515
|
return self._ActionTypeName
|
@@ -12985,17 +12721,14 @@ class Deal(AbstractModel):
|
|
12985
12721
|
:param _TotalCost: 原价(分)
|
12986
12722
|
:type TotalCost: float
|
12987
12723
|
:param _ProductCode: 产品编码
|
12988
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12989
12724
|
:type ProductCode: str
|
12990
12725
|
:param _SubProductCode: 子产品编码
|
12991
12726
|
:type SubProductCode: str
|
12992
12727
|
:param _BigDealId: 大订单号
|
12993
12728
|
:type BigDealId: str
|
12994
12729
|
:param _Formula: 退费公式
|
12995
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12996
12730
|
:type Formula: str
|
12997
12731
|
:param _RefReturnDeals: 退费涉及订单信息
|
12998
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12999
12732
|
:type RefReturnDeals: str
|
13000
12733
|
:param _PayMode: 付费模式:prePay 预付费 postPay后付费 riPay预留实例
|
13001
12734
|
:type PayMode: str
|
@@ -13012,13 +12745,10 @@ preMoveIn 包年包月迁入资源
|
|
13012
12745
|
preToPost 预付费转后付费
|
13013
12746
|
postMoveOut 按量计费迁出资源
|
13014
12747
|
postMoveIn 按量计费迁入资源
|
13015
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13016
12748
|
:type Action: str
|
13017
12749
|
:param _ProductName: 产品编码中文名称
|
13018
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13019
12750
|
:type ProductName: str
|
13020
12751
|
:param _SubProductName: 子产品编码中文名称
|
13021
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13022
12752
|
:type SubProductName: str
|
13023
12753
|
:param _ResourceId: 订单对应的资源id, 查询参数Limit超过200,将返回null
|
13024
12754
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -13230,7 +12960,6 @@ postMoveIn 按量计费迁入资源
|
|
13230
12960
|
@property
|
13231
12961
|
def ProductCode(self):
|
13232
12962
|
"""产品编码
|
13233
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13234
12963
|
:rtype: str
|
13235
12964
|
"""
|
13236
12965
|
return self._ProductCode
|
@@ -13264,7 +12993,6 @@ postMoveIn 按量计费迁入资源
|
|
13264
12993
|
@property
|
13265
12994
|
def Formula(self):
|
13266
12995
|
"""退费公式
|
13267
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13268
12996
|
:rtype: str
|
13269
12997
|
"""
|
13270
12998
|
return self._Formula
|
@@ -13276,7 +13004,6 @@ postMoveIn 按量计费迁入资源
|
|
13276
13004
|
@property
|
13277
13005
|
def RefReturnDeals(self):
|
13278
13006
|
"""退费涉及订单信息
|
13279
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13280
13007
|
:rtype: str
|
13281
13008
|
"""
|
13282
13009
|
return self._RefReturnDeals
|
@@ -13311,7 +13038,6 @@ preMoveIn 包年包月迁入资源
|
|
13311
13038
|
preToPost 预付费转后付费
|
13312
13039
|
postMoveOut 按量计费迁出资源
|
13313
13040
|
postMoveIn 按量计费迁入资源
|
13314
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13315
13041
|
:rtype: str
|
13316
13042
|
"""
|
13317
13043
|
return self._Action
|
@@ -13323,7 +13049,6 @@ postMoveIn 按量计费迁入资源
|
|
13323
13049
|
@property
|
13324
13050
|
def ProductName(self):
|
13325
13051
|
"""产品编码中文名称
|
13326
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13327
13052
|
:rtype: str
|
13328
13053
|
"""
|
13329
13054
|
return self._ProductName
|
@@ -13335,7 +13060,6 @@ postMoveIn 按量计费迁入资源
|
|
13335
13060
|
@property
|
13336
13061
|
def SubProductName(self):
|
13337
13062
|
"""子产品编码中文名称
|
13338
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13339
13063
|
:rtype: str
|
13340
13064
|
"""
|
13341
13065
|
return self._SubProductName
|
@@ -13744,37 +13468,26 @@ class DescribeAllocateConditionsResponse(AbstractModel):
|
|
13744
13468
|
def __init__(self):
|
13745
13469
|
r"""
|
13746
13470
|
:param _Business: 产品筛选列表
|
13747
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13748
13471
|
:type Business: list of BillBusinessLink
|
13749
13472
|
:param _Product: 子产品筛选列表
|
13750
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13751
13473
|
:type Product: list of BillProduct
|
13752
13474
|
:param _Item: 组件名称筛选列表
|
13753
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13754
13475
|
:type Item: list of BillItem
|
13755
13476
|
:param _Region: 地域筛选列表
|
13756
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13757
13477
|
:type Region: list of BillRegion
|
13758
13478
|
:param _InstanceType: 实例类型筛选列表
|
13759
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13760
13479
|
:type InstanceType: list of BillInstanceType
|
13761
13480
|
:param _PayMode: 计费模式筛选列表
|
13762
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13763
13481
|
:type PayMode: list of BillPayMode
|
13764
13482
|
:param _Project: 项目筛选列表
|
13765
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13766
13483
|
:type Project: list of BillProject
|
13767
13484
|
:param _Tag: 标签筛选列表
|
13768
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13769
13485
|
:type Tag: list of BillTag
|
13770
13486
|
:param _OwnerUin: 使用者 UIN 筛选列表
|
13771
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13772
13487
|
:type OwnerUin: list of BillOwnerUin
|
13773
13488
|
:param _OperateUin: 操作者 UIN 筛选列表
|
13774
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13775
13489
|
:type OperateUin: list of BillOperateUin
|
13776
13490
|
:param _ActionType: 交易类型筛选列表
|
13777
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13778
13491
|
:type ActionType: list of BillActionType
|
13779
13492
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13780
13493
|
:type RequestId: str
|
@@ -13795,7 +13508,6 @@ class DescribeAllocateConditionsResponse(AbstractModel):
|
|
13795
13508
|
@property
|
13796
13509
|
def Business(self):
|
13797
13510
|
"""产品筛选列表
|
13798
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13799
13511
|
:rtype: list of BillBusinessLink
|
13800
13512
|
"""
|
13801
13513
|
return self._Business
|
@@ -13807,7 +13519,6 @@ class DescribeAllocateConditionsResponse(AbstractModel):
|
|
13807
13519
|
@property
|
13808
13520
|
def Product(self):
|
13809
13521
|
"""子产品筛选列表
|
13810
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13811
13522
|
:rtype: list of BillProduct
|
13812
13523
|
"""
|
13813
13524
|
return self._Product
|
@@ -13819,7 +13530,6 @@ class DescribeAllocateConditionsResponse(AbstractModel):
|
|
13819
13530
|
@property
|
13820
13531
|
def Item(self):
|
13821
13532
|
"""组件名称筛选列表
|
13822
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13823
13533
|
:rtype: list of BillItem
|
13824
13534
|
"""
|
13825
13535
|
return self._Item
|
@@ -13831,7 +13541,6 @@ class DescribeAllocateConditionsResponse(AbstractModel):
|
|
13831
13541
|
@property
|
13832
13542
|
def Region(self):
|
13833
13543
|
"""地域筛选列表
|
13834
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13835
13544
|
:rtype: list of BillRegion
|
13836
13545
|
"""
|
13837
13546
|
return self._Region
|
@@ -13843,7 +13552,6 @@ class DescribeAllocateConditionsResponse(AbstractModel):
|
|
13843
13552
|
@property
|
13844
13553
|
def InstanceType(self):
|
13845
13554
|
"""实例类型筛选列表
|
13846
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13847
13555
|
:rtype: list of BillInstanceType
|
13848
13556
|
"""
|
13849
13557
|
return self._InstanceType
|
@@ -13855,7 +13563,6 @@ class DescribeAllocateConditionsResponse(AbstractModel):
|
|
13855
13563
|
@property
|
13856
13564
|
def PayMode(self):
|
13857
13565
|
"""计费模式筛选列表
|
13858
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13859
13566
|
:rtype: list of BillPayMode
|
13860
13567
|
"""
|
13861
13568
|
return self._PayMode
|
@@ -13867,7 +13574,6 @@ class DescribeAllocateConditionsResponse(AbstractModel):
|
|
13867
13574
|
@property
|
13868
13575
|
def Project(self):
|
13869
13576
|
"""项目筛选列表
|
13870
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13871
13577
|
:rtype: list of BillProject
|
13872
13578
|
"""
|
13873
13579
|
return self._Project
|
@@ -13879,7 +13585,6 @@ class DescribeAllocateConditionsResponse(AbstractModel):
|
|
13879
13585
|
@property
|
13880
13586
|
def Tag(self):
|
13881
13587
|
"""标签筛选列表
|
13882
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13883
13588
|
:rtype: list of BillTag
|
13884
13589
|
"""
|
13885
13590
|
return self._Tag
|
@@ -13891,7 +13596,6 @@ class DescribeAllocateConditionsResponse(AbstractModel):
|
|
13891
13596
|
@property
|
13892
13597
|
def OwnerUin(self):
|
13893
13598
|
"""使用者 UIN 筛选列表
|
13894
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13895
13599
|
:rtype: list of BillOwnerUin
|
13896
13600
|
"""
|
13897
13601
|
return self._OwnerUin
|
@@ -13903,7 +13607,6 @@ class DescribeAllocateConditionsResponse(AbstractModel):
|
|
13903
13607
|
@property
|
13904
13608
|
def OperateUin(self):
|
13905
13609
|
"""操作者 UIN 筛选列表
|
13906
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13907
13610
|
:rtype: list of BillOperateUin
|
13908
13611
|
"""
|
13909
13612
|
return self._OperateUin
|
@@ -13915,7 +13618,6 @@ class DescribeAllocateConditionsResponse(AbstractModel):
|
|
13915
13618
|
@property
|
13916
13619
|
def ActionType(self):
|
13917
13620
|
"""交易类型筛选列表
|
13918
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13919
13621
|
:rtype: list of BillActionType
|
13920
13622
|
"""
|
13921
13623
|
return self._ActionType
|
@@ -14305,52 +14007,36 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14305
14007
|
def __init__(self):
|
14306
14008
|
r"""
|
14307
14009
|
:param _Business: 产品筛选列表
|
14308
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14309
14010
|
:type Business: list of BillBusiness
|
14310
14011
|
:param _Product: 子产品筛选列表
|
14311
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14312
14012
|
:type Product: list of BillProduct
|
14313
14013
|
:param _Item: 组件名称筛选列表
|
14314
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14315
14014
|
:type Item: list of BillItem
|
14316
14015
|
:param _Region: 地域筛选列表
|
14317
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14318
14016
|
:type Region: list of BillRegion
|
14319
14017
|
:param _InstanceType: 实例类型筛选列表
|
14320
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14321
14018
|
:type InstanceType: list of BillInstanceType
|
14322
14019
|
:param _PayMode: 计费模式筛选列表
|
14323
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14324
14020
|
:type PayMode: list of BillPayMode
|
14325
14021
|
:param _Project: 项目筛选列表
|
14326
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14327
14022
|
:type Project: list of BillProject
|
14328
14023
|
:param _Tag: 标签筛选列表
|
14329
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14330
14024
|
:type Tag: list of BillTag
|
14331
14025
|
:param _OwnerUin: 使用者 UIN 筛选列表
|
14332
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14333
14026
|
:type OwnerUin: list of BillOwnerUin
|
14334
14027
|
:param _OperateUin: 操作者 UIN 筛选列表
|
14335
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14336
14028
|
:type OperateUin: list of BillOperateUin
|
14337
14029
|
:param _BillDay: 日期筛选列表
|
14338
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14339
14030
|
:type BillDay: list of BillDays
|
14340
14031
|
:param _ActionType: 交易类型筛选列表
|
14341
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14342
14032
|
:type ActionType: list of BillActionType
|
14343
14033
|
:param _Component: 组件类型筛选列表
|
14344
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14345
14034
|
:type Component: list of BillComponent
|
14346
14035
|
:param _Zone: 可用区筛选列表
|
14347
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14348
14036
|
:type Zone: list of BillZoneId
|
14349
14037
|
:param _AllocationTreeNode: 分账单元筛选列表
|
14350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14351
14038
|
:type AllocationTreeNode: list of AllocationTreeNode
|
14352
14039
|
:param _TagKey: 分账标签键
|
14353
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14354
14040
|
:type TagKey: list of str
|
14355
14041
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14356
14042
|
:type RequestId: str
|
@@ -14376,7 +14062,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14376
14062
|
@property
|
14377
14063
|
def Business(self):
|
14378
14064
|
"""产品筛选列表
|
14379
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14380
14065
|
:rtype: list of BillBusiness
|
14381
14066
|
"""
|
14382
14067
|
return self._Business
|
@@ -14388,7 +14073,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14388
14073
|
@property
|
14389
14074
|
def Product(self):
|
14390
14075
|
"""子产品筛选列表
|
14391
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14392
14076
|
:rtype: list of BillProduct
|
14393
14077
|
"""
|
14394
14078
|
return self._Product
|
@@ -14400,7 +14084,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14400
14084
|
@property
|
14401
14085
|
def Item(self):
|
14402
14086
|
"""组件名称筛选列表
|
14403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14404
14087
|
:rtype: list of BillItem
|
14405
14088
|
"""
|
14406
14089
|
return self._Item
|
@@ -14412,7 +14095,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14412
14095
|
@property
|
14413
14096
|
def Region(self):
|
14414
14097
|
"""地域筛选列表
|
14415
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14416
14098
|
:rtype: list of BillRegion
|
14417
14099
|
"""
|
14418
14100
|
return self._Region
|
@@ -14424,7 +14106,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14424
14106
|
@property
|
14425
14107
|
def InstanceType(self):
|
14426
14108
|
"""实例类型筛选列表
|
14427
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14428
14109
|
:rtype: list of BillInstanceType
|
14429
14110
|
"""
|
14430
14111
|
return self._InstanceType
|
@@ -14436,7 +14117,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14436
14117
|
@property
|
14437
14118
|
def PayMode(self):
|
14438
14119
|
"""计费模式筛选列表
|
14439
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14440
14120
|
:rtype: list of BillPayMode
|
14441
14121
|
"""
|
14442
14122
|
return self._PayMode
|
@@ -14448,7 +14128,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14448
14128
|
@property
|
14449
14129
|
def Project(self):
|
14450
14130
|
"""项目筛选列表
|
14451
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14452
14131
|
:rtype: list of BillProject
|
14453
14132
|
"""
|
14454
14133
|
return self._Project
|
@@ -14460,7 +14139,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14460
14139
|
@property
|
14461
14140
|
def Tag(self):
|
14462
14141
|
"""标签筛选列表
|
14463
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14464
14142
|
:rtype: list of BillTag
|
14465
14143
|
"""
|
14466
14144
|
return self._Tag
|
@@ -14472,7 +14150,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14472
14150
|
@property
|
14473
14151
|
def OwnerUin(self):
|
14474
14152
|
"""使用者 UIN 筛选列表
|
14475
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14476
14153
|
:rtype: list of BillOwnerUin
|
14477
14154
|
"""
|
14478
14155
|
return self._OwnerUin
|
@@ -14484,7 +14161,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14484
14161
|
@property
|
14485
14162
|
def OperateUin(self):
|
14486
14163
|
"""操作者 UIN 筛选列表
|
14487
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14488
14164
|
:rtype: list of BillOperateUin
|
14489
14165
|
"""
|
14490
14166
|
return self._OperateUin
|
@@ -14496,7 +14172,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14496
14172
|
@property
|
14497
14173
|
def BillDay(self):
|
14498
14174
|
"""日期筛选列表
|
14499
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14500
14175
|
:rtype: list of BillDays
|
14501
14176
|
"""
|
14502
14177
|
return self._BillDay
|
@@ -14508,7 +14183,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14508
14183
|
@property
|
14509
14184
|
def ActionType(self):
|
14510
14185
|
"""交易类型筛选列表
|
14511
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14512
14186
|
:rtype: list of BillActionType
|
14513
14187
|
"""
|
14514
14188
|
return self._ActionType
|
@@ -14520,7 +14194,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14520
14194
|
@property
|
14521
14195
|
def Component(self):
|
14522
14196
|
"""组件类型筛选列表
|
14523
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14524
14197
|
:rtype: list of BillComponent
|
14525
14198
|
"""
|
14526
14199
|
return self._Component
|
@@ -14532,7 +14205,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14532
14205
|
@property
|
14533
14206
|
def Zone(self):
|
14534
14207
|
"""可用区筛选列表
|
14535
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14536
14208
|
:rtype: list of BillZoneId
|
14537
14209
|
"""
|
14538
14210
|
return self._Zone
|
@@ -14544,7 +14216,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14544
14216
|
@property
|
14545
14217
|
def AllocationTreeNode(self):
|
14546
14218
|
"""分账单元筛选列表
|
14547
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14548
14219
|
:rtype: list of AllocationTreeNode
|
14549
14220
|
"""
|
14550
14221
|
return self._AllocationTreeNode
|
@@ -14556,7 +14227,6 @@ class DescribeAllocationBillConditionsResponse(AbstractModel):
|
|
14556
14227
|
@property
|
14557
14228
|
def TagKey(self):
|
14558
14229
|
"""分账标签键
|
14559
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14560
14230
|
:rtype: list of str
|
14561
14231
|
"""
|
14562
14232
|
return self._TagKey
|
@@ -15021,10 +14691,8 @@ class DescribeAllocationBillDetailResponse(AbstractModel):
|
|
15021
14691
|
def __init__(self):
|
15022
14692
|
r"""
|
15023
14693
|
:param _RecordNum: 总条数
|
15024
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15025
14694
|
:type RecordNum: int
|
15026
14695
|
:param _Total: 分账账单概览金额汇总
|
15027
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15028
14696
|
:type Total: :class:`tencentcloud.billing.v20180709.models.AllocationOverviewTotal`
|
15029
14697
|
:param _Detail: 分账账单明细
|
15030
14698
|
:type Detail: list of AllocationDetail
|
@@ -15039,7 +14707,6 @@ class DescribeAllocationBillDetailResponse(AbstractModel):
|
|
15039
14707
|
@property
|
15040
14708
|
def RecordNum(self):
|
15041
14709
|
"""总条数
|
15042
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15043
14710
|
:rtype: int
|
15044
14711
|
"""
|
15045
14712
|
return self._RecordNum
|
@@ -15051,7 +14718,6 @@ class DescribeAllocationBillDetailResponse(AbstractModel):
|
|
15051
14718
|
@property
|
15052
14719
|
def Total(self):
|
15053
14720
|
"""分账账单概览金额汇总
|
15054
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15055
14721
|
:rtype: :class:`tencentcloud.billing.v20180709.models.AllocationOverviewTotal`
|
15056
14722
|
"""
|
15057
14723
|
return self._Total
|
@@ -15141,10 +14807,8 @@ class DescribeAllocationMonthOverviewResponse(AbstractModel):
|
|
15141
14807
|
def __init__(self):
|
15142
14808
|
r"""
|
15143
14809
|
:param _Detail: 分账账单月概览详情
|
15144
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15145
14810
|
:type Detail: list of AllocationOverviewNode
|
15146
14811
|
:param _Total: 分账账单概览金额汇总
|
15147
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15148
14812
|
:type Total: :class:`tencentcloud.billing.v20180709.models.AllocationOverviewTotal`
|
15149
14813
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15150
14814
|
:type RequestId: str
|
@@ -15156,7 +14820,6 @@ class DescribeAllocationMonthOverviewResponse(AbstractModel):
|
|
15156
14820
|
@property
|
15157
14821
|
def Detail(self):
|
15158
14822
|
"""分账账单月概览详情
|
15159
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15160
14823
|
:rtype: list of AllocationOverviewNode
|
15161
14824
|
"""
|
15162
14825
|
return self._Detail
|
@@ -15168,7 +14831,6 @@ class DescribeAllocationMonthOverviewResponse(AbstractModel):
|
|
15168
14831
|
@property
|
15169
14832
|
def Total(self):
|
15170
14833
|
"""分账账单概览金额汇总
|
15171
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15172
14834
|
:rtype: :class:`tencentcloud.billing.v20180709.models.AllocationOverviewTotal`
|
15173
14835
|
"""
|
15174
14836
|
return self._Total
|
@@ -15391,13 +15053,10 @@ class DescribeAllocationOverviewResponse(AbstractModel):
|
|
15391
15053
|
def __init__(self):
|
15392
15054
|
r"""
|
15393
15055
|
:param _RecordNum: 总条数
|
15394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15395
15056
|
:type RecordNum: int
|
15396
15057
|
:param _Total: 分账账单概览金额汇总
|
15397
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15398
15058
|
:type Total: :class:`tencentcloud.billing.v20180709.models.AllocationOverviewTotal`
|
15399
15059
|
:param _Detail: 分账概览明细
|
15400
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15401
15060
|
:type Detail: list of AllocationOverviewDetail
|
15402
15061
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15403
15062
|
:type RequestId: str
|
@@ -15410,7 +15069,6 @@ class DescribeAllocationOverviewResponse(AbstractModel):
|
|
15410
15069
|
@property
|
15411
15070
|
def RecordNum(self):
|
15412
15071
|
"""总条数
|
15413
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15414
15072
|
:rtype: int
|
15415
15073
|
"""
|
15416
15074
|
return self._RecordNum
|
@@ -15422,7 +15080,6 @@ class DescribeAllocationOverviewResponse(AbstractModel):
|
|
15422
15080
|
@property
|
15423
15081
|
def Total(self):
|
15424
15082
|
"""分账账单概览金额汇总
|
15425
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15426
15083
|
:rtype: :class:`tencentcloud.billing.v20180709.models.AllocationOverviewTotal`
|
15427
15084
|
"""
|
15428
15085
|
return self._Total
|
@@ -15434,7 +15091,6 @@ class DescribeAllocationOverviewResponse(AbstractModel):
|
|
15434
15091
|
@property
|
15435
15092
|
def Detail(self):
|
15436
15093
|
"""分账概览明细
|
15437
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15438
15094
|
:rtype: list of AllocationOverviewDetail
|
15439
15095
|
"""
|
15440
15096
|
return self._Detail
|
@@ -15702,14 +15358,11 @@ class DescribeAllocationSummaryByBusinessResponse(AbstractModel):
|
|
15702
15358
|
def __init__(self):
|
15703
15359
|
r"""
|
15704
15360
|
:param _RecordNum: 总条数
|
15705
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15706
15361
|
:type RecordNum: int
|
15707
15362
|
:param _Total: 分账账单概览金额汇总
|
15708
15363
|
|
15709
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15710
15364
|
:type Total: :class:`tencentcloud.billing.v20180709.models.AllocationOverviewTotal`
|
15711
15365
|
:param _Detail: 分账账单按产品汇总明细
|
15712
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15713
15366
|
:type Detail: list of AllocationSummaryByBusiness
|
15714
15367
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15715
15368
|
:type RequestId: str
|
@@ -15722,7 +15375,6 @@ class DescribeAllocationSummaryByBusinessResponse(AbstractModel):
|
|
15722
15375
|
@property
|
15723
15376
|
def RecordNum(self):
|
15724
15377
|
"""总条数
|
15725
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15726
15378
|
:rtype: int
|
15727
15379
|
"""
|
15728
15380
|
return self._RecordNum
|
@@ -15735,7 +15387,6 @@ class DescribeAllocationSummaryByBusinessResponse(AbstractModel):
|
|
15735
15387
|
def Total(self):
|
15736
15388
|
"""分账账单概览金额汇总
|
15737
15389
|
|
15738
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15739
15390
|
:rtype: :class:`tencentcloud.billing.v20180709.models.AllocationOverviewTotal`
|
15740
15391
|
"""
|
15741
15392
|
return self._Total
|
@@ -15747,7 +15398,6 @@ class DescribeAllocationSummaryByBusinessResponse(AbstractModel):
|
|
15747
15398
|
@property
|
15748
15399
|
def Detail(self):
|
15749
15400
|
"""分账账单按产品汇总明细
|
15750
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15751
15401
|
:rtype: list of AllocationSummaryByBusiness
|
15752
15402
|
"""
|
15753
15403
|
return self._Detail
|
@@ -16217,14 +15867,11 @@ class DescribeAllocationSummaryByItemResponse(AbstractModel):
|
|
16217
15867
|
r"""
|
16218
15868
|
:param _RecordNum: 总条数
|
16219
15869
|
|
16220
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16221
15870
|
:type RecordNum: int
|
16222
15871
|
:param _Total: 分账账单概览金额汇总
|
16223
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16224
15872
|
:type Total: :class:`tencentcloud.billing.v20180709.models.AllocationOverviewTotal`
|
16225
15873
|
:param _Detail: 分账账单按组件汇总明细
|
16226
15874
|
|
16227
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16228
15875
|
:type Detail: list of AllocationSummaryByItem
|
16229
15876
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16230
15877
|
:type RequestId: str
|
@@ -16238,7 +15885,6 @@ class DescribeAllocationSummaryByItemResponse(AbstractModel):
|
|
16238
15885
|
def RecordNum(self):
|
16239
15886
|
"""总条数
|
16240
15887
|
|
16241
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16242
15888
|
:rtype: int
|
16243
15889
|
"""
|
16244
15890
|
return self._RecordNum
|
@@ -16250,7 +15896,6 @@ class DescribeAllocationSummaryByItemResponse(AbstractModel):
|
|
16250
15896
|
@property
|
16251
15897
|
def Total(self):
|
16252
15898
|
"""分账账单概览金额汇总
|
16253
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16254
15899
|
:rtype: :class:`tencentcloud.billing.v20180709.models.AllocationOverviewTotal`
|
16255
15900
|
"""
|
16256
15901
|
return self._Total
|
@@ -16263,7 +15908,6 @@ class DescribeAllocationSummaryByItemResponse(AbstractModel):
|
|
16263
15908
|
def Detail(self):
|
16264
15909
|
"""分账账单按组件汇总明细
|
16265
15910
|
|
16266
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16267
15911
|
:rtype: list of AllocationSummaryByItem
|
16268
15912
|
"""
|
16269
15913
|
return self._Detail
|
@@ -16677,15 +16321,12 @@ class DescribeAllocationSummaryByResourceResponse(AbstractModel):
|
|
16677
16321
|
r"""
|
16678
16322
|
:param _RecordNum: 总条数
|
16679
16323
|
|
16680
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16681
16324
|
:type RecordNum: int
|
16682
16325
|
:param _Total: 分账账单概览金额汇总
|
16683
16326
|
|
16684
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16685
16327
|
:type Total: :class:`tencentcloud.billing.v20180709.models.AllocationOverviewTotal`
|
16686
16328
|
:param _Detail: 分账账单按资源汇总明细
|
16687
16329
|
|
16688
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16689
16330
|
:type Detail: list of AllocationSummaryByResource
|
16690
16331
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16691
16332
|
:type RequestId: str
|
@@ -16699,7 +16340,6 @@ class DescribeAllocationSummaryByResourceResponse(AbstractModel):
|
|
16699
16340
|
def RecordNum(self):
|
16700
16341
|
"""总条数
|
16701
16342
|
|
16702
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16703
16343
|
:rtype: int
|
16704
16344
|
"""
|
16705
16345
|
return self._RecordNum
|
@@ -16712,7 +16352,6 @@ class DescribeAllocationSummaryByResourceResponse(AbstractModel):
|
|
16712
16352
|
def Total(self):
|
16713
16353
|
"""分账账单概览金额汇总
|
16714
16354
|
|
16715
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16716
16355
|
:rtype: :class:`tencentcloud.billing.v20180709.models.AllocationOverviewTotal`
|
16717
16356
|
"""
|
16718
16357
|
return self._Total
|
@@ -16725,7 +16364,6 @@ class DescribeAllocationSummaryByResourceResponse(AbstractModel):
|
|
16725
16364
|
def Detail(self):
|
16726
16365
|
"""分账账单按资源汇总明细
|
16727
16366
|
|
16728
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16729
16367
|
:rtype: list of AllocationSummaryByResource
|
16730
16368
|
"""
|
16731
16369
|
return self._Detail
|
@@ -16834,13 +16472,10 @@ class DescribeAllocationTrendByMonthResponse(AbstractModel):
|
|
16834
16472
|
def __init__(self):
|
16835
16473
|
r"""
|
16836
16474
|
:param _Current: 当月费用信息
|
16837
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16838
16475
|
:type Current: :class:`tencentcloud.billing.v20180709.models.AllocationBillTrendDetail`
|
16839
16476
|
:param _Previous: 之前月份费用信息
|
16840
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16841
16477
|
:type Previous: list of AllocationBillTrendDetail
|
16842
16478
|
:param _Stat: 费用统计信息
|
16843
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16844
16479
|
:type Stat: :class:`tencentcloud.billing.v20180709.models.AllocationStat`
|
16845
16480
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16846
16481
|
:type RequestId: str
|
@@ -16853,7 +16488,6 @@ class DescribeAllocationTrendByMonthResponse(AbstractModel):
|
|
16853
16488
|
@property
|
16854
16489
|
def Current(self):
|
16855
16490
|
"""当月费用信息
|
16856
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16857
16491
|
:rtype: :class:`tencentcloud.billing.v20180709.models.AllocationBillTrendDetail`
|
16858
16492
|
"""
|
16859
16493
|
return self._Current
|
@@ -16865,7 +16499,6 @@ class DescribeAllocationTrendByMonthResponse(AbstractModel):
|
|
16865
16499
|
@property
|
16866
16500
|
def Previous(self):
|
16867
16501
|
"""之前月份费用信息
|
16868
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16869
16502
|
:rtype: list of AllocationBillTrendDetail
|
16870
16503
|
"""
|
16871
16504
|
return self._Previous
|
@@ -16877,7 +16510,6 @@ class DescribeAllocationTrendByMonthResponse(AbstractModel):
|
|
16877
16510
|
@property
|
16878
16511
|
def Stat(self):
|
16879
16512
|
"""费用统计信息
|
16880
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16881
16513
|
:rtype: :class:`tencentcloud.billing.v20180709.models.AllocationStat`
|
16882
16514
|
"""
|
16883
16515
|
return self._Stat
|
@@ -20669,10 +20301,8 @@ class DescribeCostSummaryByProductResponse(AbstractModel):
|
|
20669
20301
|
:param _Total: 消耗详情
|
20670
20302
|
:type Total: :class:`tencentcloud.billing.v20180709.models.ConsumptionSummaryTotal`
|
20671
20303
|
:param _Data: 消耗按产品汇总详情
|
20672
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20673
20304
|
:type Data: list of ConsumptionBusinessSummaryDataItem
|
20674
20305
|
:param _RecordNum: 记录数量,NeedRecordNum为0时返回null
|
20675
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20676
20306
|
:type RecordNum: int
|
20677
20307
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
20678
20308
|
:type RequestId: str
|
@@ -20708,7 +20338,6 @@ class DescribeCostSummaryByProductResponse(AbstractModel):
|
|
20708
20338
|
@property
|
20709
20339
|
def Data(self):
|
20710
20340
|
"""消耗按产品汇总详情
|
20711
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20712
20341
|
:rtype: list of ConsumptionBusinessSummaryDataItem
|
20713
20342
|
"""
|
20714
20343
|
return self._Data
|
@@ -20720,7 +20349,6 @@ class DescribeCostSummaryByProductResponse(AbstractModel):
|
|
20720
20349
|
@property
|
20721
20350
|
def RecordNum(self):
|
20722
20351
|
"""记录数量,NeedRecordNum为0时返回null
|
20723
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20724
20352
|
:rtype: int
|
20725
20353
|
"""
|
20726
20354
|
return self._RecordNum
|
@@ -21087,7 +20715,6 @@ class DescribeCostSummaryByRegionResponse(AbstractModel):
|
|
21087
20715
|
:param _Data: 消耗按地域汇总详情
|
21088
20716
|
:type Data: list of ConsumptionRegionSummaryDataItem
|
21089
20717
|
:param _RecordNum: 记录数量,NeedRecordNum为0时返回null
|
21090
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21091
20718
|
:type RecordNum: int
|
21092
20719
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21093
20720
|
:type RequestId: str
|
@@ -21134,7 +20761,6 @@ class DescribeCostSummaryByRegionResponse(AbstractModel):
|
|
21134
20761
|
@property
|
21135
20762
|
def RecordNum(self):
|
21136
20763
|
"""记录数量,NeedRecordNum为0时返回null
|
21137
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21138
20764
|
:rtype: int
|
21139
20765
|
"""
|
21140
20766
|
return self._RecordNum
|
@@ -21323,7 +20949,6 @@ class DescribeCostSummaryByResourceResponse(AbstractModel):
|
|
21323
20949
|
:param _Ready: 数据是否准备好,0未准备好,1准备好
|
21324
20950
|
:type Ready: int
|
21325
20951
|
:param _Total: 消耗详情
|
21326
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21327
20952
|
:type Total: :class:`tencentcloud.billing.v20180709.models.ConsumptionSummaryTotal`
|
21328
20953
|
:param _ConditionValue: 过滤条件
|
21329
20954
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -21332,7 +20957,6 @@ class DescribeCostSummaryByResourceResponse(AbstractModel):
|
|
21332
20957
|
注意:此字段可能返回 null,表示取不到有效值。
|
21333
20958
|
:type RecordNum: int
|
21334
20959
|
:param _Data: 资源消耗详情
|
21335
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21336
20960
|
:type Data: list of ConsumptionResourceSummaryDataItem
|
21337
20961
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21338
20962
|
:type RequestId: str
|
@@ -21358,7 +20982,6 @@ class DescribeCostSummaryByResourceResponse(AbstractModel):
|
|
21358
20982
|
@property
|
21359
20983
|
def Total(self):
|
21360
20984
|
"""消耗详情
|
21361
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21362
20985
|
:rtype: :class:`tencentcloud.billing.v20180709.models.ConsumptionSummaryTotal`
|
21363
20986
|
"""
|
21364
20987
|
return self._Total
|
@@ -21394,7 +21017,6 @@ class DescribeCostSummaryByResourceResponse(AbstractModel):
|
|
21394
21017
|
@property
|
21395
21018
|
def Data(self):
|
21396
21019
|
"""资源消耗详情
|
21397
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21398
21020
|
:rtype: list of ConsumptionResourceSummaryDataItem
|
21399
21021
|
"""
|
21400
21022
|
return self._Data
|
@@ -22912,7 +22534,6 @@ class DescribeGatherResourceResponse(AbstractModel):
|
|
22912
22534
|
def __init__(self):
|
22913
22535
|
r"""
|
22914
22536
|
:param _RecordNum: 总条数
|
22915
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22916
22537
|
:type RecordNum: int
|
22917
22538
|
:param _GatherResourceSummary: 资源归集汇总
|
22918
22539
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -22931,7 +22552,6 @@ class DescribeGatherResourceResponse(AbstractModel):
|
|
22931
22552
|
@property
|
22932
22553
|
def RecordNum(self):
|
22933
22554
|
"""总条数
|
22934
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22935
22555
|
:rtype: int
|
22936
22556
|
"""
|
22937
22557
|
return self._RecordNum
|
@@ -24219,39 +23839,28 @@ class DistributionBillDetail(AbstractModel):
|
|
24219
23839
|
:param _OperateUin: 操作者UIN:操作者账号 ID(预付费资源下单或后付费操作开通资源账号的 ID 或者角色 ID )
|
24220
23840
|
:type OperateUin: str
|
24221
23841
|
:param _Tags: 标签信息
|
24222
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24223
23842
|
:type Tags: list of BillTagInfo
|
24224
23843
|
:param _BusinessCode: 产品编码
|
24225
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24226
23844
|
:type BusinessCode: str
|
24227
23845
|
:param _ProductCode: 子产品编码
|
24228
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24229
23846
|
:type ProductCode: str
|
24230
23847
|
:param _ActionType: 交易类型编码
|
24231
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24232
23848
|
:type ActionType: str
|
24233
23849
|
:param _RegionId: 地域ID
|
24234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24235
23850
|
:type RegionId: str
|
24236
23851
|
:param _ProjectId: 项目ID
|
24237
23852
|
:type ProjectId: int
|
24238
23853
|
:param _PriceInfo: 价格属性:该组件除单价、时长外的其他影响折扣定价的属性信息
|
24239
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24240
23854
|
:type PriceInfo: list of str
|
24241
23855
|
:param _AssociatedOrder: 关联交易单据ID:和本笔交易关联单据 ID,如,冲销订单,记录原订单、重结订单,退费单记录对应的原购买订单号
|
24242
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24243
23856
|
:type AssociatedOrder: :class:`tencentcloud.billing.v20180709.models.BillDetailAssociatedOrder`
|
24244
23857
|
:param _Formula: 计算说明:特殊交易类型计费结算的详细计算说明,如退费及变配
|
24245
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24246
23858
|
:type Formula: str
|
24247
23859
|
:param _FormulaUrl: 计费规则:各产品详细的计费规则官网说明链接
|
24248
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24249
23860
|
:type FormulaUrl: str
|
24250
23861
|
:param _BillMonth: 账单归属月
|
24251
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24252
23862
|
:type BillMonth: str
|
24253
23863
|
:param _BillDay: 账单归属日
|
24254
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24255
23864
|
:type BillDay: str
|
24256
23865
|
"""
|
24257
23866
|
self._BusinessCodeName = None
|
@@ -24474,7 +24083,6 @@ class DistributionBillDetail(AbstractModel):
|
|
24474
24083
|
@property
|
24475
24084
|
def Tags(self):
|
24476
24085
|
"""标签信息
|
24477
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24478
24086
|
:rtype: list of BillTagInfo
|
24479
24087
|
"""
|
24480
24088
|
return self._Tags
|
@@ -24486,7 +24094,6 @@ class DistributionBillDetail(AbstractModel):
|
|
24486
24094
|
@property
|
24487
24095
|
def BusinessCode(self):
|
24488
24096
|
"""产品编码
|
24489
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24490
24097
|
:rtype: str
|
24491
24098
|
"""
|
24492
24099
|
return self._BusinessCode
|
@@ -24498,7 +24105,6 @@ class DistributionBillDetail(AbstractModel):
|
|
24498
24105
|
@property
|
24499
24106
|
def ProductCode(self):
|
24500
24107
|
"""子产品编码
|
24501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24502
24108
|
:rtype: str
|
24503
24109
|
"""
|
24504
24110
|
return self._ProductCode
|
@@ -24510,7 +24116,6 @@ class DistributionBillDetail(AbstractModel):
|
|
24510
24116
|
@property
|
24511
24117
|
def ActionType(self):
|
24512
24118
|
"""交易类型编码
|
24513
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24514
24119
|
:rtype: str
|
24515
24120
|
"""
|
24516
24121
|
return self._ActionType
|
@@ -24522,7 +24127,6 @@ class DistributionBillDetail(AbstractModel):
|
|
24522
24127
|
@property
|
24523
24128
|
def RegionId(self):
|
24524
24129
|
"""地域ID
|
24525
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24526
24130
|
:rtype: str
|
24527
24131
|
"""
|
24528
24132
|
return self._RegionId
|
@@ -24545,7 +24149,6 @@ class DistributionBillDetail(AbstractModel):
|
|
24545
24149
|
@property
|
24546
24150
|
def PriceInfo(self):
|
24547
24151
|
"""价格属性:该组件除单价、时长外的其他影响折扣定价的属性信息
|
24548
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24549
24152
|
:rtype: list of str
|
24550
24153
|
"""
|
24551
24154
|
return self._PriceInfo
|
@@ -24557,7 +24160,6 @@ class DistributionBillDetail(AbstractModel):
|
|
24557
24160
|
@property
|
24558
24161
|
def AssociatedOrder(self):
|
24559
24162
|
"""关联交易单据ID:和本笔交易关联单据 ID,如,冲销订单,记录原订单、重结订单,退费单记录对应的原购买订单号
|
24560
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24561
24163
|
:rtype: :class:`tencentcloud.billing.v20180709.models.BillDetailAssociatedOrder`
|
24562
24164
|
"""
|
24563
24165
|
return self._AssociatedOrder
|
@@ -24569,7 +24171,6 @@ class DistributionBillDetail(AbstractModel):
|
|
24569
24171
|
@property
|
24570
24172
|
def Formula(self):
|
24571
24173
|
"""计算说明:特殊交易类型计费结算的详细计算说明,如退费及变配
|
24572
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24573
24174
|
:rtype: str
|
24574
24175
|
"""
|
24575
24176
|
return self._Formula
|
@@ -24581,7 +24182,6 @@ class DistributionBillDetail(AbstractModel):
|
|
24581
24182
|
@property
|
24582
24183
|
def FormulaUrl(self):
|
24583
24184
|
"""计费规则:各产品详细的计费规则官网说明链接
|
24584
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24585
24185
|
:rtype: str
|
24586
24186
|
"""
|
24587
24187
|
return self._FormulaUrl
|
@@ -24593,7 +24193,6 @@ class DistributionBillDetail(AbstractModel):
|
|
24593
24193
|
@property
|
24594
24194
|
def BillMonth(self):
|
24595
24195
|
"""账单归属月
|
24596
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24597
24196
|
:rtype: str
|
24598
24197
|
"""
|
24599
24198
|
return self._BillMonth
|
@@ -24605,7 +24204,6 @@ class DistributionBillDetail(AbstractModel):
|
|
24605
24204
|
@property
|
24606
24205
|
def BillDay(self):
|
24607
24206
|
"""账单归属日
|
24608
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24609
24207
|
:rtype: str
|
24610
24208
|
"""
|
24611
24209
|
return self._BillDay
|
@@ -24726,115 +24324,79 @@ class GatherResourceSummary(AbstractModel):
|
|
24726
24324
|
def __init__(self):
|
24727
24325
|
r"""
|
24728
24326
|
:param _PayerUin: 支付者 UIN:支付者的账号 ID,账号 ID 是用户在腾讯云的唯一账号标识
|
24729
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24730
24327
|
:type PayerUin: str
|
24731
24328
|
:param _OwnerUin: 使用者 UIN:实际使用资源的账号 ID
|
24732
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24733
24329
|
:type OwnerUin: str
|
24734
24330
|
:param _OperateUin: 操作者 UIN:操作者账号 ID(预付费资源下单或后付费操作开通资源账号的ID或者角色 ID)
|
24735
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24736
24331
|
:type OperateUin: str
|
24737
24332
|
:param _InstanceType: 实例类型编码
|
24738
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24739
24333
|
:type InstanceType: str
|
24740
24334
|
:param _InstanceTypeName: 实例类型:购买的产品服务对应的实例类型,包括资源包、RI、SP、竞价实例。常规实例默认展示“-”
|
24741
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24742
24335
|
:type InstanceTypeName: str
|
24743
24336
|
:param _ResourceId: 资源ID:不同产品因资源形态不同,资源内容不完全相同,如云服务器 CVM 为对应的实例 ID; 若该产品被分拆,则展示产品分拆后的分拆项 ID,如 COS 桶 ID,CDN 域名
|
24744
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24745
24337
|
:type ResourceId: str
|
24746
24338
|
:param _ResourceName: 实例名称:用户在控制台为资源设置的名称,如未设置默认为空;若该产品被分拆,则展示分拆产品分拆后的分拆项资源别名
|
24747
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24748
24339
|
:type ResourceName: str
|
24749
24340
|
:param _TreeNodeUniqKey: 分账单元唯一标识
|
24750
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24751
24341
|
:type TreeNodeUniqKey: str
|
24752
24342
|
:param _TreeNodeUniqKeyName: 分账单元名称
|
24753
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24754
24343
|
:type TreeNodeUniqKeyName: str
|
24755
24344
|
:param _RuleId: 资源命中公摊规则ID
|
24756
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24757
24345
|
:type RuleId: int
|
24758
24346
|
:param _RuleName: 资源命中公摊规则名称
|
24759
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24760
24347
|
:type RuleName: str
|
24761
24348
|
:param _BusinessCode: 产品编码
|
24762
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24763
24349
|
:type BusinessCode: str
|
24764
24350
|
:param _BusinessCodeName: 产品名称:用户所采购的各类云产品
|
24765
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24766
24351
|
:type BusinessCodeName: str
|
24767
24352
|
:param _ItemCode: 组件名称编码
|
24768
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24769
24353
|
:type ItemCode: str
|
24770
24354
|
:param _ItemCodeName: 组件名称:用户购买的产品或服务,所包含的具体组件
|
24771
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24772
24355
|
:type ItemCodeName: str
|
24773
24356
|
:param _RegionId: 地域ID
|
24774
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24775
24357
|
:type RegionId: int
|
24776
24358
|
:param _RegionName: 地域名称:资源所属地域
|
24777
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24778
24359
|
:type RegionName: str
|
24779
24360
|
:param _Tag: 分账标签:资源绑定的标签
|
24780
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24781
24361
|
:type Tag: list of BillTag
|
24782
24362
|
:param _RealTotalCost: 优惠后总价:优惠后总价 =(原价 - 预留实例抵扣原价 - 节省计划抵扣原价)* 折扣率
|
24783
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24784
24363
|
:type RealTotalCost: str
|
24785
24364
|
:param _CashPayAmount: 现金账户支出(元):通过现金账户支付的金额
|
24786
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24787
24365
|
:type CashPayAmount: str
|
24788
24366
|
:param _VoucherPayAmount: 代金券支出(元):使用各类优惠券(如代金券、现金券等)支付的金额
|
24789
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24790
24367
|
:type VoucherPayAmount: str
|
24791
24368
|
:param _IncentivePayAmount: 赠送账户支出(元):使用赠送金支付的金额
|
24792
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24793
24369
|
:type IncentivePayAmount: str
|
24794
24370
|
:param _TransferPayAmount: 分成账户支出(元):通过分成金账户支付的金额
|
24795
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24796
24371
|
:type TransferPayAmount: str
|
24797
24372
|
:param _AllocationType: 费用归集类型:费用来源类型,分摊、归集、未分配
|
24798
24373
|
0 - 分摊
|
24799
24374
|
1 - 归集
|
24800
24375
|
-1 - 未分配
|
24801
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24802
24376
|
:type AllocationType: int
|
24803
24377
|
:param _BelongTreeNodeUniqKey: 当前归属单元信息
|
24804
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24805
24378
|
:type BelongTreeNodeUniqKey: :class:`tencentcloud.billing.v20180709.models.AllocationTreeNode`
|
24806
24379
|
:param _BelongRule: 当前资源命中公摊规则信息
|
24807
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24808
24380
|
:type BelongRule: :class:`tencentcloud.billing.v20180709.models.AllocationRule`
|
24809
24381
|
:param _OtherTreeNodeUniqKeys: 其它归属单元信息
|
24810
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24811
24382
|
:type OtherTreeNodeUniqKeys: list of AllocationTreeNode
|
24812
24383
|
:param _OtherRules: 其他命中规则信息
|
24813
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24814
24384
|
:type OtherRules: list of AllocationRule
|
24815
24385
|
:param _ProjectId: 项目ID
|
24816
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24817
24386
|
:type ProjectId: int
|
24818
24387
|
:param _ProjectName: 项目名称:资源归属的项目,用户在控制台给资源自主分配项目,未分配则是默认项目
|
24819
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24820
24388
|
:type ProjectName: str
|
24821
24389
|
:param _ProductCode: 子产品编码
|
24822
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24823
24390
|
:type ProductCode: str
|
24824
24391
|
:param _ProductCodeName: 子产品名称:用户采购的具体产品细分类型
|
24825
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24826
24392
|
:type ProductCodeName: str
|
24827
24393
|
:param _PayMode: 计费模式编码
|
24828
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24829
24394
|
:type PayMode: str
|
24830
24395
|
:param _PayModeName: 计费模式:资源的计费模式,区分为包年包月和按量计费
|
24831
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24832
24396
|
:type PayModeName: str
|
24833
24397
|
:param _ActionType: 交易类型编码
|
24834
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24835
24398
|
:type ActionType: str
|
24836
24399
|
:param _ActionTypeName: 交易类型:明细交易类型
|
24837
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24838
24400
|
:type ActionTypeName: str
|
24839
24401
|
:param _SplitItemId: 分拆项 ID:涉及分拆产品的分拆后的分拆项 ID,如 COS 桶 ID,CDN 域名
|
24840
24402
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -24885,7 +24447,6 @@ class GatherResourceSummary(AbstractModel):
|
|
24885
24447
|
@property
|
24886
24448
|
def PayerUin(self):
|
24887
24449
|
"""支付者 UIN:支付者的账号 ID,账号 ID 是用户在腾讯云的唯一账号标识
|
24888
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24889
24450
|
:rtype: str
|
24890
24451
|
"""
|
24891
24452
|
return self._PayerUin
|
@@ -24897,7 +24458,6 @@ class GatherResourceSummary(AbstractModel):
|
|
24897
24458
|
@property
|
24898
24459
|
def OwnerUin(self):
|
24899
24460
|
"""使用者 UIN:实际使用资源的账号 ID
|
24900
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24901
24461
|
:rtype: str
|
24902
24462
|
"""
|
24903
24463
|
return self._OwnerUin
|
@@ -24909,7 +24469,6 @@ class GatherResourceSummary(AbstractModel):
|
|
24909
24469
|
@property
|
24910
24470
|
def OperateUin(self):
|
24911
24471
|
"""操作者 UIN:操作者账号 ID(预付费资源下单或后付费操作开通资源账号的ID或者角色 ID)
|
24912
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24913
24472
|
:rtype: str
|
24914
24473
|
"""
|
24915
24474
|
return self._OperateUin
|
@@ -24921,7 +24480,6 @@ class GatherResourceSummary(AbstractModel):
|
|
24921
24480
|
@property
|
24922
24481
|
def InstanceType(self):
|
24923
24482
|
"""实例类型编码
|
24924
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24925
24483
|
:rtype: str
|
24926
24484
|
"""
|
24927
24485
|
return self._InstanceType
|
@@ -24933,7 +24491,6 @@ class GatherResourceSummary(AbstractModel):
|
|
24933
24491
|
@property
|
24934
24492
|
def InstanceTypeName(self):
|
24935
24493
|
"""实例类型:购买的产品服务对应的实例类型,包括资源包、RI、SP、竞价实例。常规实例默认展示“-”
|
24936
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24937
24494
|
:rtype: str
|
24938
24495
|
"""
|
24939
24496
|
return self._InstanceTypeName
|
@@ -24945,7 +24502,6 @@ class GatherResourceSummary(AbstractModel):
|
|
24945
24502
|
@property
|
24946
24503
|
def ResourceId(self):
|
24947
24504
|
"""资源ID:不同产品因资源形态不同,资源内容不完全相同,如云服务器 CVM 为对应的实例 ID; 若该产品被分拆,则展示产品分拆后的分拆项 ID,如 COS 桶 ID,CDN 域名
|
24948
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24949
24505
|
:rtype: str
|
24950
24506
|
"""
|
24951
24507
|
return self._ResourceId
|
@@ -24957,7 +24513,6 @@ class GatherResourceSummary(AbstractModel):
|
|
24957
24513
|
@property
|
24958
24514
|
def ResourceName(self):
|
24959
24515
|
"""实例名称:用户在控制台为资源设置的名称,如未设置默认为空;若该产品被分拆,则展示分拆产品分拆后的分拆项资源别名
|
24960
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24961
24516
|
:rtype: str
|
24962
24517
|
"""
|
24963
24518
|
return self._ResourceName
|
@@ -24969,7 +24524,6 @@ class GatherResourceSummary(AbstractModel):
|
|
24969
24524
|
@property
|
24970
24525
|
def TreeNodeUniqKey(self):
|
24971
24526
|
"""分账单元唯一标识
|
24972
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24973
24527
|
:rtype: str
|
24974
24528
|
"""
|
24975
24529
|
return self._TreeNodeUniqKey
|
@@ -24981,7 +24535,6 @@ class GatherResourceSummary(AbstractModel):
|
|
24981
24535
|
@property
|
24982
24536
|
def TreeNodeUniqKeyName(self):
|
24983
24537
|
"""分账单元名称
|
24984
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24985
24538
|
:rtype: str
|
24986
24539
|
"""
|
24987
24540
|
return self._TreeNodeUniqKeyName
|
@@ -24993,7 +24546,6 @@ class GatherResourceSummary(AbstractModel):
|
|
24993
24546
|
@property
|
24994
24547
|
def RuleId(self):
|
24995
24548
|
"""资源命中公摊规则ID
|
24996
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24997
24549
|
:rtype: int
|
24998
24550
|
"""
|
24999
24551
|
return self._RuleId
|
@@ -25005,7 +24557,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25005
24557
|
@property
|
25006
24558
|
def RuleName(self):
|
25007
24559
|
"""资源命中公摊规则名称
|
25008
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25009
24560
|
:rtype: str
|
25010
24561
|
"""
|
25011
24562
|
return self._RuleName
|
@@ -25017,7 +24568,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25017
24568
|
@property
|
25018
24569
|
def BusinessCode(self):
|
25019
24570
|
"""产品编码
|
25020
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25021
24571
|
:rtype: str
|
25022
24572
|
"""
|
25023
24573
|
return self._BusinessCode
|
@@ -25029,7 +24579,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25029
24579
|
@property
|
25030
24580
|
def BusinessCodeName(self):
|
25031
24581
|
"""产品名称:用户所采购的各类云产品
|
25032
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25033
24582
|
:rtype: str
|
25034
24583
|
"""
|
25035
24584
|
return self._BusinessCodeName
|
@@ -25041,7 +24590,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25041
24590
|
@property
|
25042
24591
|
def ItemCode(self):
|
25043
24592
|
"""组件名称编码
|
25044
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25045
24593
|
:rtype: str
|
25046
24594
|
"""
|
25047
24595
|
return self._ItemCode
|
@@ -25053,7 +24601,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25053
24601
|
@property
|
25054
24602
|
def ItemCodeName(self):
|
25055
24603
|
"""组件名称:用户购买的产品或服务,所包含的具体组件
|
25056
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25057
24604
|
:rtype: str
|
25058
24605
|
"""
|
25059
24606
|
return self._ItemCodeName
|
@@ -25065,7 +24612,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25065
24612
|
@property
|
25066
24613
|
def RegionId(self):
|
25067
24614
|
"""地域ID
|
25068
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25069
24615
|
:rtype: int
|
25070
24616
|
"""
|
25071
24617
|
return self._RegionId
|
@@ -25077,7 +24623,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25077
24623
|
@property
|
25078
24624
|
def RegionName(self):
|
25079
24625
|
"""地域名称:资源所属地域
|
25080
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25081
24626
|
:rtype: str
|
25082
24627
|
"""
|
25083
24628
|
return self._RegionName
|
@@ -25089,7 +24634,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25089
24634
|
@property
|
25090
24635
|
def Tag(self):
|
25091
24636
|
"""分账标签:资源绑定的标签
|
25092
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25093
24637
|
:rtype: list of BillTag
|
25094
24638
|
"""
|
25095
24639
|
return self._Tag
|
@@ -25101,7 +24645,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25101
24645
|
@property
|
25102
24646
|
def RealTotalCost(self):
|
25103
24647
|
"""优惠后总价:优惠后总价 =(原价 - 预留实例抵扣原价 - 节省计划抵扣原价)* 折扣率
|
25104
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25105
24648
|
:rtype: str
|
25106
24649
|
"""
|
25107
24650
|
return self._RealTotalCost
|
@@ -25113,7 +24656,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25113
24656
|
@property
|
25114
24657
|
def CashPayAmount(self):
|
25115
24658
|
"""现金账户支出(元):通过现金账户支付的金额
|
25116
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25117
24659
|
:rtype: str
|
25118
24660
|
"""
|
25119
24661
|
return self._CashPayAmount
|
@@ -25125,7 +24667,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25125
24667
|
@property
|
25126
24668
|
def VoucherPayAmount(self):
|
25127
24669
|
"""代金券支出(元):使用各类优惠券(如代金券、现金券等)支付的金额
|
25128
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25129
24670
|
:rtype: str
|
25130
24671
|
"""
|
25131
24672
|
return self._VoucherPayAmount
|
@@ -25137,7 +24678,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25137
24678
|
@property
|
25138
24679
|
def IncentivePayAmount(self):
|
25139
24680
|
"""赠送账户支出(元):使用赠送金支付的金额
|
25140
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25141
24681
|
:rtype: str
|
25142
24682
|
"""
|
25143
24683
|
return self._IncentivePayAmount
|
@@ -25149,7 +24689,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25149
24689
|
@property
|
25150
24690
|
def TransferPayAmount(self):
|
25151
24691
|
"""分成账户支出(元):通过分成金账户支付的金额
|
25152
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25153
24692
|
:rtype: str
|
25154
24693
|
"""
|
25155
24694
|
return self._TransferPayAmount
|
@@ -25164,7 +24703,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25164
24703
|
0 - 分摊
|
25165
24704
|
1 - 归集
|
25166
24705
|
-1 - 未分配
|
25167
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25168
24706
|
:rtype: int
|
25169
24707
|
"""
|
25170
24708
|
return self._AllocationType
|
@@ -25176,7 +24714,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25176
24714
|
@property
|
25177
24715
|
def BelongTreeNodeUniqKey(self):
|
25178
24716
|
"""当前归属单元信息
|
25179
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25180
24717
|
:rtype: :class:`tencentcloud.billing.v20180709.models.AllocationTreeNode`
|
25181
24718
|
"""
|
25182
24719
|
return self._BelongTreeNodeUniqKey
|
@@ -25188,7 +24725,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25188
24725
|
@property
|
25189
24726
|
def BelongRule(self):
|
25190
24727
|
"""当前资源命中公摊规则信息
|
25191
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25192
24728
|
:rtype: :class:`tencentcloud.billing.v20180709.models.AllocationRule`
|
25193
24729
|
"""
|
25194
24730
|
return self._BelongRule
|
@@ -25200,7 +24736,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25200
24736
|
@property
|
25201
24737
|
def OtherTreeNodeUniqKeys(self):
|
25202
24738
|
"""其它归属单元信息
|
25203
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25204
24739
|
:rtype: list of AllocationTreeNode
|
25205
24740
|
"""
|
25206
24741
|
return self._OtherTreeNodeUniqKeys
|
@@ -25212,7 +24747,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25212
24747
|
@property
|
25213
24748
|
def OtherRules(self):
|
25214
24749
|
"""其他命中规则信息
|
25215
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25216
24750
|
:rtype: list of AllocationRule
|
25217
24751
|
"""
|
25218
24752
|
return self._OtherRules
|
@@ -25224,7 +24758,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25224
24758
|
@property
|
25225
24759
|
def ProjectId(self):
|
25226
24760
|
"""项目ID
|
25227
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25228
24761
|
:rtype: int
|
25229
24762
|
"""
|
25230
24763
|
return self._ProjectId
|
@@ -25236,7 +24769,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25236
24769
|
@property
|
25237
24770
|
def ProjectName(self):
|
25238
24771
|
"""项目名称:资源归属的项目,用户在控制台给资源自主分配项目,未分配则是默认项目
|
25239
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25240
24772
|
:rtype: str
|
25241
24773
|
"""
|
25242
24774
|
return self._ProjectName
|
@@ -25248,7 +24780,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25248
24780
|
@property
|
25249
24781
|
def ProductCode(self):
|
25250
24782
|
"""子产品编码
|
25251
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25252
24783
|
:rtype: str
|
25253
24784
|
"""
|
25254
24785
|
return self._ProductCode
|
@@ -25260,7 +24791,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25260
24791
|
@property
|
25261
24792
|
def ProductCodeName(self):
|
25262
24793
|
"""子产品名称:用户采购的具体产品细分类型
|
25263
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25264
24794
|
:rtype: str
|
25265
24795
|
"""
|
25266
24796
|
return self._ProductCodeName
|
@@ -25272,7 +24802,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25272
24802
|
@property
|
25273
24803
|
def PayMode(self):
|
25274
24804
|
"""计费模式编码
|
25275
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25276
24805
|
:rtype: str
|
25277
24806
|
"""
|
25278
24807
|
return self._PayMode
|
@@ -25284,7 +24813,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25284
24813
|
@property
|
25285
24814
|
def PayModeName(self):
|
25286
24815
|
"""计费模式:资源的计费模式,区分为包年包月和按量计费
|
25287
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25288
24816
|
:rtype: str
|
25289
24817
|
"""
|
25290
24818
|
return self._PayModeName
|
@@ -25296,7 +24824,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25296
24824
|
@property
|
25297
24825
|
def ActionType(self):
|
25298
24826
|
"""交易类型编码
|
25299
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25300
24827
|
:rtype: str
|
25301
24828
|
"""
|
25302
24829
|
return self._ActionType
|
@@ -25308,7 +24835,6 @@ class GatherResourceSummary(AbstractModel):
|
|
25308
24835
|
@property
|
25309
24836
|
def ActionTypeName(self):
|
25310
24837
|
"""交易类型:明细交易类型
|
25311
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25312
24838
|
:rtype: str
|
25313
24839
|
"""
|
25314
24840
|
return self._ActionTypeName
|
@@ -25484,11 +25010,17 @@ class PayDealsRequest(AbstractModel):
|
|
25484
25010
|
:type VoucherIds: list of str
|
25485
25011
|
:param _BigDealIds: 需要支付的一个或者多个大订单号,与OrderIds字段两者必须且仅传一个参数
|
25486
25012
|
:type BigDealIds: list of str
|
25013
|
+
:param _AgentPay: 0非代理,1代理商代付,3集团代理,4代理商为代客下产品级代付单,默认0
|
25014
|
+
:type AgentPay: int
|
25015
|
+
:param _CpsUin: 推荐者,用于返利
|
25016
|
+
:type CpsUin: str
|
25487
25017
|
"""
|
25488
25018
|
self._OrderIds = None
|
25489
25019
|
self._AutoVoucher = None
|
25490
25020
|
self._VoucherIds = None
|
25491
25021
|
self._BigDealIds = None
|
25022
|
+
self._AgentPay = None
|
25023
|
+
self._CpsUin = None
|
25492
25024
|
|
25493
25025
|
@property
|
25494
25026
|
def OrderIds(self):
|
@@ -25534,12 +25066,36 @@ class PayDealsRequest(AbstractModel):
|
|
25534
25066
|
def BigDealIds(self, BigDealIds):
|
25535
25067
|
self._BigDealIds = BigDealIds
|
25536
25068
|
|
25069
|
+
@property
|
25070
|
+
def AgentPay(self):
|
25071
|
+
"""0非代理,1代理商代付,3集团代理,4代理商为代客下产品级代付单,默认0
|
25072
|
+
:rtype: int
|
25073
|
+
"""
|
25074
|
+
return self._AgentPay
|
25075
|
+
|
25076
|
+
@AgentPay.setter
|
25077
|
+
def AgentPay(self, AgentPay):
|
25078
|
+
self._AgentPay = AgentPay
|
25079
|
+
|
25080
|
+
@property
|
25081
|
+
def CpsUin(self):
|
25082
|
+
"""推荐者,用于返利
|
25083
|
+
:rtype: str
|
25084
|
+
"""
|
25085
|
+
return self._CpsUin
|
25086
|
+
|
25087
|
+
@CpsUin.setter
|
25088
|
+
def CpsUin(self, CpsUin):
|
25089
|
+
self._CpsUin = CpsUin
|
25090
|
+
|
25537
25091
|
|
25538
25092
|
def _deserialize(self, params):
|
25539
25093
|
self._OrderIds = params.get("OrderIds")
|
25540
25094
|
self._AutoVoucher = params.get("AutoVoucher")
|
25541
25095
|
self._VoucherIds = params.get("VoucherIds")
|
25542
25096
|
self._BigDealIds = params.get("BigDealIds")
|
25097
|
+
self._AgentPay = params.get("AgentPay")
|
25098
|
+
self._CpsUin = params.get("CpsUin")
|
25543
25099
|
memeber_set = set(params.keys())
|
25544
25100
|
for name, value in vars(self).items():
|
25545
25101
|
property_name = name[1:]
|