tencentcloud-sdk-python 3.0.1272__py2.py3-none-any.whl → 3.0.1274__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/billing/v20180709/models.py +0 -86
- tencentcloud/bsca/v20210811/models.py +17 -2
- tencentcloud/cfs/v20190719/models.py +4 -4
- tencentcloud/cls/v20201016/models.py +6 -0
- tencentcloud/cvm/v20170312/models.py +2 -2
- tencentcloud/cynosdb/v20190107/models.py +2 -2
- tencentcloud/dnspod/v20210323/dnspod_client.py +46 -0
- tencentcloud/dnspod/v20210323/models.py +190 -2
- tencentcloud/dts/v20211206/models.py +2 -2
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/ess/v20201111/models.py +18 -10
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/essbasic/v20210526/models.py +10 -6
- tencentcloud/goosefs/v20220519/models.py +15 -0
- tencentcloud/gwlb/v20240906/errorcodes.py +3 -0
- tencentcloud/gwlb/v20240906/models.py +2 -2
- tencentcloud/hunyuan/v20230901/models.py +17 -0
- tencentcloud/iotexplorer/v20190423/models.py +17 -17
- tencentcloud/lcic/v20220817/models.py +15 -0
- tencentcloud/lighthouse/v20200324/errorcodes.py +3 -0
- tencentcloud/lighthouse/v20200324/models.py +24 -4
- tencentcloud/live/v20180801/errorcodes.py +69 -0
- tencentcloud/live/v20180801/live_client.py +444 -0
- tencentcloud/live/v20180801/models.py +2452 -0
- tencentcloud/lke/v20231130/models.py +1229 -171
- tencentcloud/mps/v20190612/models.py +17 -0
- tencentcloud/oceanus/v20190422/models.py +15 -0
- tencentcloud/ocr/v20181119/models.py +45 -0
- tencentcloud/privatedns/v20201028/errorcodes.py +0 -42
- tencentcloud/privatedns/v20201028/models.py +712 -2358
- tencentcloud/privatedns/v20201028/privatedns_client.py +0 -230
- tencentcloud/svp/v20240125/models.py +0 -2
- tencentcloud/tke/v20180525/models.py +15 -0
- tencentcloud/tke/v20220501/models.py +6 -2
- tencentcloud/trtc/v20190722/models.py +44 -2
- tencentcloud/tse/v20201207/models.py +6 -6
- tencentcloud/vod/v20180717/models.py +30 -0
- tencentcloud/vpc/v20170312/models.py +30 -0
- tencentcloud/wedata/v20210820/models.py +6 -6
- {tencentcloud_sdk_python-3.0.1272.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1272.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/RECORD +45 -45
- {tencentcloud_sdk_python-3.0.1272.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1272.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1272.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -328,13 +328,10 @@ class AllocationAverageData(AbstractModel):
|
|
328
328
|
def __init__(self):
|
329
329
|
r"""
|
330
330
|
:param _BeginMonth: 起始月份
|
331
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
332
331
|
:type BeginMonth: str
|
333
332
|
:param _EndMonth: 结束月份
|
334
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
335
333
|
:type EndMonth: str
|
336
334
|
:param _RealTotalCost: 合计费用(折后总额)平均值
|
337
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
338
335
|
:type RealTotalCost: str
|
339
336
|
"""
|
340
337
|
self._BeginMonth = None
|
@@ -344,7 +341,6 @@ class AllocationAverageData(AbstractModel):
|
|
344
341
|
@property
|
345
342
|
def BeginMonth(self):
|
346
343
|
"""起始月份
|
347
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
348
344
|
:rtype: str
|
349
345
|
"""
|
350
346
|
return self._BeginMonth
|
@@ -356,7 +352,6 @@ class AllocationAverageData(AbstractModel):
|
|
356
352
|
@property
|
357
353
|
def EndMonth(self):
|
358
354
|
"""结束月份
|
359
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
360
355
|
:rtype: str
|
361
356
|
"""
|
362
357
|
return self._EndMonth
|
@@ -368,7 +363,6 @@ class AllocationAverageData(AbstractModel):
|
|
368
363
|
@property
|
369
364
|
def RealTotalCost(self):
|
370
365
|
"""合计费用(折后总额)平均值
|
371
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
372
366
|
:rtype: str
|
373
367
|
"""
|
374
368
|
return self._RealTotalCost
|
@@ -400,13 +394,10 @@ class AllocationBillTrendDetail(AbstractModel):
|
|
400
394
|
def __init__(self):
|
401
395
|
r"""
|
402
396
|
:param _Month: 账单月份
|
403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
404
397
|
:type Month: str
|
405
398
|
:param _Name: 账单月份展示名称
|
406
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
407
399
|
:type Name: str
|
408
400
|
:param _RealTotalCost: 合计费用(折后总额):分账单元总费用,归集费用(折后总额) + 分摊费用(折后总额)
|
409
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
410
401
|
:type RealTotalCost: str
|
411
402
|
"""
|
412
403
|
self._Month = None
|
@@ -416,7 +407,6 @@ class AllocationBillTrendDetail(AbstractModel):
|
|
416
407
|
@property
|
417
408
|
def Month(self):
|
418
409
|
"""账单月份
|
419
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
420
410
|
:rtype: str
|
421
411
|
"""
|
422
412
|
return self._Month
|
@@ -428,7 +418,6 @@ class AllocationBillTrendDetail(AbstractModel):
|
|
428
418
|
@property
|
429
419
|
def Name(self):
|
430
420
|
"""账单月份展示名称
|
431
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
432
421
|
:rtype: str
|
433
422
|
"""
|
434
423
|
return self._Name
|
@@ -440,7 +429,6 @@ class AllocationBillTrendDetail(AbstractModel):
|
|
440
429
|
@property
|
441
430
|
def RealTotalCost(self):
|
442
431
|
"""合计费用(折后总额):分账单元总费用,归集费用(折后总额) + 分摊费用(折后总额)
|
443
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
444
432
|
:rtype: str
|
445
433
|
"""
|
446
434
|
return self._RealTotalCost
|
@@ -5283,10 +5271,8 @@ class AnalyseActionTypeDetail(AbstractModel):
|
|
5283
5271
|
def __init__(self):
|
5284
5272
|
r"""
|
5285
5273
|
:param _ActionType: 交易类型code
|
5286
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5287
5274
|
:type ActionType: str
|
5288
5275
|
:param _ActionTypeName: 交易类型Name
|
5289
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5290
5276
|
:type ActionTypeName: str
|
5291
5277
|
"""
|
5292
5278
|
self._ActionType = None
|
@@ -5295,7 +5281,6 @@ class AnalyseActionTypeDetail(AbstractModel):
|
|
5295
5281
|
@property
|
5296
5282
|
def ActionType(self):
|
5297
5283
|
"""交易类型code
|
5298
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5299
5284
|
:rtype: str
|
5300
5285
|
"""
|
5301
5286
|
return self._ActionType
|
@@ -5307,7 +5292,6 @@ class AnalyseActionTypeDetail(AbstractModel):
|
|
5307
5292
|
@property
|
5308
5293
|
def ActionTypeName(self):
|
5309
5294
|
"""交易类型Name
|
5310
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5311
5295
|
:rtype: str
|
5312
5296
|
"""
|
5313
5297
|
return self._ActionTypeName
|
@@ -5338,10 +5322,8 @@ class AnalyseAmountDetail(AbstractModel):
|
|
5338
5322
|
def __init__(self):
|
5339
5323
|
r"""
|
5340
5324
|
:param _Key: 费用类型
|
5341
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5342
5325
|
:type Key: str
|
5343
5326
|
:param _Display: 是否展示
|
5344
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5345
5327
|
:type Display: int
|
5346
5328
|
"""
|
5347
5329
|
self._Key = None
|
@@ -5350,7 +5332,6 @@ class AnalyseAmountDetail(AbstractModel):
|
|
5350
5332
|
@property
|
5351
5333
|
def Key(self):
|
5352
5334
|
"""费用类型
|
5353
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5354
5335
|
:rtype: str
|
5355
5336
|
"""
|
5356
5337
|
return self._Key
|
@@ -5362,7 +5343,6 @@ class AnalyseAmountDetail(AbstractModel):
|
|
5362
5343
|
@property
|
5363
5344
|
def Display(self):
|
5364
5345
|
"""是否展示
|
5365
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5366
5346
|
:rtype: int
|
5367
5347
|
"""
|
5368
5348
|
return self._Display
|
@@ -5393,10 +5373,8 @@ class AnalyseBusinessDetail(AbstractModel):
|
|
5393
5373
|
def __init__(self):
|
5394
5374
|
r"""
|
5395
5375
|
:param _BusinessCode: 产品码code
|
5396
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5397
5376
|
:type BusinessCode: str
|
5398
5377
|
:param _BusinessCodeName: 产品名称
|
5399
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5400
5378
|
:type BusinessCodeName: str
|
5401
5379
|
"""
|
5402
5380
|
self._BusinessCode = None
|
@@ -5405,7 +5383,6 @@ class AnalyseBusinessDetail(AbstractModel):
|
|
5405
5383
|
@property
|
5406
5384
|
def BusinessCode(self):
|
5407
5385
|
"""产品码code
|
5408
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5409
5386
|
:rtype: str
|
5410
5387
|
"""
|
5411
5388
|
return self._BusinessCode
|
@@ -5417,7 +5394,6 @@ class AnalyseBusinessDetail(AbstractModel):
|
|
5417
5394
|
@property
|
5418
5395
|
def BusinessCodeName(self):
|
5419
5396
|
"""产品名称
|
5420
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5421
5397
|
:rtype: str
|
5422
5398
|
"""
|
5423
5399
|
return self._BusinessCodeName
|
@@ -5645,31 +5621,22 @@ class AnalyseConditions(AbstractModel):
|
|
5645
5621
|
def __init__(self):
|
5646
5622
|
r"""
|
5647
5623
|
:param _BusinessCodes: 产品名称代码
|
5648
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5649
5624
|
:type BusinessCodes: str
|
5650
5625
|
:param _ProductCodes: 子产品名称代码
|
5651
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5652
5626
|
:type ProductCodes: str
|
5653
5627
|
:param _ComponentCode: 组件类型代码
|
5654
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5655
5628
|
:type ComponentCode: str
|
5656
5629
|
:param _ZoneIds: 可用区ID:资源所属可用区ID
|
5657
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5658
5630
|
:type ZoneIds: str
|
5659
5631
|
:param _RegionIds: 地域ID:资源所属地域ID
|
5660
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5661
5632
|
:type RegionIds: str
|
5662
5633
|
:param _ProjectIds: 项目ID:资源所属项目ID
|
5663
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5664
5634
|
:type ProjectIds: str
|
5665
5635
|
:param _PayModes: 计费模式 prePay(表示包年包月)/postPay(表示按量计费)
|
5666
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5667
5636
|
:type PayModes: str
|
5668
5637
|
:param _ActionTypes: 交易类型,查询交易类型(请使用交易类型code入参)
|
5669
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5670
5638
|
:type ActionTypes: str
|
5671
5639
|
:param _Tags: 分账标签键
|
5672
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5673
5640
|
:type Tags: str
|
5674
5641
|
:param _FeeType: 费用类型,查询费用类型(请使用费用类型code入参)入参枚举如下:
|
5675
5642
|
cashPayAmount:现金
|
@@ -5677,16 +5644,12 @@ incentivePayAmount:赠送金
|
|
5677
5644
|
voucherPayAmount:优惠券
|
5678
5645
|
tax:税金
|
5679
5646
|
costBeforeTax:税前价
|
5680
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5681
5647
|
:type FeeType: str
|
5682
5648
|
:param _PayerUins: 查询成本分析数据的用户UIN
|
5683
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5684
5649
|
:type PayerUins: str
|
5685
5650
|
:param _OwnerUins: 使用资源的用户UIN
|
5686
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5687
5651
|
:type OwnerUins: str
|
5688
5652
|
:param _ConsumptionTypes: 消耗类型,查询消耗类型(请使用消耗类型code入参)
|
5689
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5690
5653
|
:type ConsumptionTypes: str
|
5691
5654
|
"""
|
5692
5655
|
self._BusinessCodes = None
|
@@ -5706,7 +5669,6 @@ costBeforeTax:税前价
|
|
5706
5669
|
@property
|
5707
5670
|
def BusinessCodes(self):
|
5708
5671
|
"""产品名称代码
|
5709
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5710
5672
|
:rtype: str
|
5711
5673
|
"""
|
5712
5674
|
return self._BusinessCodes
|
@@ -5718,7 +5680,6 @@ costBeforeTax:税前价
|
|
5718
5680
|
@property
|
5719
5681
|
def ProductCodes(self):
|
5720
5682
|
"""子产品名称代码
|
5721
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5722
5683
|
:rtype: str
|
5723
5684
|
"""
|
5724
5685
|
return self._ProductCodes
|
@@ -5730,7 +5691,6 @@ costBeforeTax:税前价
|
|
5730
5691
|
@property
|
5731
5692
|
def ComponentCode(self):
|
5732
5693
|
"""组件类型代码
|
5733
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5734
5694
|
:rtype: str
|
5735
5695
|
"""
|
5736
5696
|
return self._ComponentCode
|
@@ -5742,7 +5702,6 @@ costBeforeTax:税前价
|
|
5742
5702
|
@property
|
5743
5703
|
def ZoneIds(self):
|
5744
5704
|
"""可用区ID:资源所属可用区ID
|
5745
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5746
5705
|
:rtype: str
|
5747
5706
|
"""
|
5748
5707
|
return self._ZoneIds
|
@@ -5754,7 +5713,6 @@ costBeforeTax:税前价
|
|
5754
5713
|
@property
|
5755
5714
|
def RegionIds(self):
|
5756
5715
|
"""地域ID:资源所属地域ID
|
5757
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5758
5716
|
:rtype: str
|
5759
5717
|
"""
|
5760
5718
|
return self._RegionIds
|
@@ -5766,7 +5724,6 @@ costBeforeTax:税前价
|
|
5766
5724
|
@property
|
5767
5725
|
def ProjectIds(self):
|
5768
5726
|
"""项目ID:资源所属项目ID
|
5769
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5770
5727
|
:rtype: str
|
5771
5728
|
"""
|
5772
5729
|
return self._ProjectIds
|
@@ -5778,7 +5735,6 @@ costBeforeTax:税前价
|
|
5778
5735
|
@property
|
5779
5736
|
def PayModes(self):
|
5780
5737
|
"""计费模式 prePay(表示包年包月)/postPay(表示按量计费)
|
5781
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5782
5738
|
:rtype: str
|
5783
5739
|
"""
|
5784
5740
|
return self._PayModes
|
@@ -5790,7 +5746,6 @@ costBeforeTax:税前价
|
|
5790
5746
|
@property
|
5791
5747
|
def ActionTypes(self):
|
5792
5748
|
"""交易类型,查询交易类型(请使用交易类型code入参)
|
5793
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5794
5749
|
:rtype: str
|
5795
5750
|
"""
|
5796
5751
|
return self._ActionTypes
|
@@ -5802,7 +5757,6 @@ costBeforeTax:税前价
|
|
5802
5757
|
@property
|
5803
5758
|
def Tags(self):
|
5804
5759
|
"""分账标签键
|
5805
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5806
5760
|
:rtype: str
|
5807
5761
|
"""
|
5808
5762
|
return self._Tags
|
@@ -5819,7 +5773,6 @@ incentivePayAmount:赠送金
|
|
5819
5773
|
voucherPayAmount:优惠券
|
5820
5774
|
tax:税金
|
5821
5775
|
costBeforeTax:税前价
|
5822
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5823
5776
|
:rtype: str
|
5824
5777
|
"""
|
5825
5778
|
return self._FeeType
|
@@ -5831,7 +5784,6 @@ costBeforeTax:税前价
|
|
5831
5784
|
@property
|
5832
5785
|
def PayerUins(self):
|
5833
5786
|
"""查询成本分析数据的用户UIN
|
5834
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5835
5787
|
:rtype: str
|
5836
5788
|
"""
|
5837
5789
|
return self._PayerUins
|
@@ -5843,7 +5795,6 @@ costBeforeTax:税前价
|
|
5843
5795
|
@property
|
5844
5796
|
def OwnerUins(self):
|
5845
5797
|
"""使用资源的用户UIN
|
5846
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5847
5798
|
:rtype: str
|
5848
5799
|
"""
|
5849
5800
|
return self._OwnerUins
|
@@ -5855,7 +5806,6 @@ costBeforeTax:税前价
|
|
5855
5806
|
@property
|
5856
5807
|
def ConsumptionTypes(self):
|
5857
5808
|
"""消耗类型,查询消耗类型(请使用消耗类型code入参)
|
5858
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5859
5809
|
:rtype: str
|
5860
5810
|
"""
|
5861
5811
|
return self._ConsumptionTypes
|
@@ -5970,13 +5920,10 @@ class AnalyseHeaderDetail(AbstractModel):
|
|
5970
5920
|
def __init__(self):
|
5971
5921
|
r"""
|
5972
5922
|
:param _HeadDetail: 表头日期
|
5973
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5974
5923
|
:type HeadDetail: list of AnalyseHeaderTimeDetail
|
5975
5924
|
:param _Name: 时间
|
5976
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5977
5925
|
:type Name: str
|
5978
5926
|
:param _Total: 总计
|
5979
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5980
5927
|
:type Total: str
|
5981
5928
|
"""
|
5982
5929
|
self._HeadDetail = None
|
@@ -5986,7 +5933,6 @@ class AnalyseHeaderDetail(AbstractModel):
|
|
5986
5933
|
@property
|
5987
5934
|
def HeadDetail(self):
|
5988
5935
|
"""表头日期
|
5989
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5990
5936
|
:rtype: list of AnalyseHeaderTimeDetail
|
5991
5937
|
"""
|
5992
5938
|
return self._HeadDetail
|
@@ -5998,7 +5944,6 @@ class AnalyseHeaderDetail(AbstractModel):
|
|
5998
5944
|
@property
|
5999
5945
|
def Name(self):
|
6000
5946
|
"""时间
|
6001
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6002
5947
|
:rtype: str
|
6003
5948
|
"""
|
6004
5949
|
return self._Name
|
@@ -6010,7 +5955,6 @@ class AnalyseHeaderDetail(AbstractModel):
|
|
6010
5955
|
@property
|
6011
5956
|
def Total(self):
|
6012
5957
|
"""总计
|
6013
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6014
5958
|
:rtype: str
|
6015
5959
|
"""
|
6016
5960
|
return self._Total
|
@@ -6047,7 +5991,6 @@ class AnalyseHeaderTimeDetail(AbstractModel):
|
|
6047
5991
|
def __init__(self):
|
6048
5992
|
r"""
|
6049
5993
|
:param _Name: 日期
|
6050
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6051
5994
|
:type Name: str
|
6052
5995
|
"""
|
6053
5996
|
self._Name = None
|
@@ -6055,7 +5998,6 @@ class AnalyseHeaderTimeDetail(AbstractModel):
|
|
6055
5998
|
@property
|
6056
5999
|
def Name(self):
|
6057
6000
|
"""日期
|
6058
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6059
6001
|
:rtype: str
|
6060
6002
|
"""
|
6061
6003
|
return self._Name
|
@@ -6085,7 +6027,6 @@ class AnalyseOwnerUinDetail(AbstractModel):
|
|
6085
6027
|
def __init__(self):
|
6086
6028
|
r"""
|
6087
6029
|
:param _OwnerUin: 使用者uin
|
6088
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6089
6030
|
:type OwnerUin: str
|
6090
6031
|
"""
|
6091
6032
|
self._OwnerUin = None
|
@@ -6093,7 +6034,6 @@ class AnalyseOwnerUinDetail(AbstractModel):
|
|
6093
6034
|
@property
|
6094
6035
|
def OwnerUin(self):
|
6095
6036
|
"""使用者uin
|
6096
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6097
6037
|
:rtype: str
|
6098
6038
|
"""
|
6099
6039
|
return self._OwnerUin
|
@@ -6123,10 +6063,8 @@ class AnalysePayModeDetail(AbstractModel):
|
|
6123
6063
|
def __init__(self):
|
6124
6064
|
r"""
|
6125
6065
|
:param _PayMode: 计费模式code
|
6126
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6127
6066
|
:type PayMode: str
|
6128
6067
|
:param _PayModeName: 计费模式Name
|
6129
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6130
6068
|
:type PayModeName: str
|
6131
6069
|
"""
|
6132
6070
|
self._PayMode = None
|
@@ -6135,7 +6073,6 @@ class AnalysePayModeDetail(AbstractModel):
|
|
6135
6073
|
@property
|
6136
6074
|
def PayMode(self):
|
6137
6075
|
"""计费模式code
|
6138
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6139
6076
|
:rtype: str
|
6140
6077
|
"""
|
6141
6078
|
return self._PayMode
|
@@ -6147,7 +6084,6 @@ class AnalysePayModeDetail(AbstractModel):
|
|
6147
6084
|
@property
|
6148
6085
|
def PayModeName(self):
|
6149
6086
|
"""计费模式Name
|
6150
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6151
6087
|
:rtype: str
|
6152
6088
|
"""
|
6153
6089
|
return self._PayModeName
|
@@ -6178,10 +6114,8 @@ class AnalyseProjectDetail(AbstractModel):
|
|
6178
6114
|
def __init__(self):
|
6179
6115
|
r"""
|
6180
6116
|
:param _ProjectId: 项目id
|
6181
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6182
6117
|
:type ProjectId: str
|
6183
6118
|
:param _ProjectName: 默认项目
|
6184
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6185
6119
|
:type ProjectName: str
|
6186
6120
|
"""
|
6187
6121
|
self._ProjectId = None
|
@@ -6190,7 +6124,6 @@ class AnalyseProjectDetail(AbstractModel):
|
|
6190
6124
|
@property
|
6191
6125
|
def ProjectId(self):
|
6192
6126
|
"""项目id
|
6193
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6194
6127
|
:rtype: str
|
6195
6128
|
"""
|
6196
6129
|
return self._ProjectId
|
@@ -6202,7 +6135,6 @@ class AnalyseProjectDetail(AbstractModel):
|
|
6202
6135
|
@property
|
6203
6136
|
def ProjectName(self):
|
6204
6137
|
"""默认项目
|
6205
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6206
6138
|
:rtype: str
|
6207
6139
|
"""
|
6208
6140
|
return self._ProjectName
|
@@ -6233,10 +6165,8 @@ class AnalyseRegionDetail(AbstractModel):
|
|
6233
6165
|
def __init__(self):
|
6234
6166
|
r"""
|
6235
6167
|
:param _RegionId: 地域id
|
6236
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6237
6168
|
:type RegionId: str
|
6238
6169
|
:param _RegionName: 地域名称
|
6239
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6240
6170
|
:type RegionName: str
|
6241
6171
|
"""
|
6242
6172
|
self._RegionId = None
|
@@ -6245,7 +6175,6 @@ class AnalyseRegionDetail(AbstractModel):
|
|
6245
6175
|
@property
|
6246
6176
|
def RegionId(self):
|
6247
6177
|
"""地域id
|
6248
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6249
6178
|
:rtype: str
|
6250
6179
|
"""
|
6251
6180
|
return self._RegionId
|
@@ -6257,7 +6186,6 @@ class AnalyseRegionDetail(AbstractModel):
|
|
6257
6186
|
@property
|
6258
6187
|
def RegionName(self):
|
6259
6188
|
"""地域名称
|
6260
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6261
6189
|
:rtype: str
|
6262
6190
|
"""
|
6263
6191
|
return self._RegionName
|
@@ -6288,10 +6216,8 @@ class AnalyseTimeDetail(AbstractModel):
|
|
6288
6216
|
def __init__(self):
|
6289
6217
|
r"""
|
6290
6218
|
:param _Time: 日期
|
6291
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6292
6219
|
:type Time: str
|
6293
6220
|
:param _Money: 金额
|
6294
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6295
6221
|
:type Money: str
|
6296
6222
|
"""
|
6297
6223
|
self._Time = None
|
@@ -6300,7 +6226,6 @@ class AnalyseTimeDetail(AbstractModel):
|
|
6300
6226
|
@property
|
6301
6227
|
def Time(self):
|
6302
6228
|
"""日期
|
6303
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6304
6229
|
:rtype: str
|
6305
6230
|
"""
|
6306
6231
|
return self._Time
|
@@ -6312,7 +6237,6 @@ class AnalyseTimeDetail(AbstractModel):
|
|
6312
6237
|
@property
|
6313
6238
|
def Money(self):
|
6314
6239
|
"""金额
|
6315
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6316
6240
|
:rtype: str
|
6317
6241
|
"""
|
6318
6242
|
return self._Money
|
@@ -6343,10 +6267,8 @@ class AnalyseZoneDetail(AbstractModel):
|
|
6343
6267
|
def __init__(self):
|
6344
6268
|
r"""
|
6345
6269
|
:param _ZoneId: 可用区id
|
6346
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6347
6270
|
:type ZoneId: str
|
6348
6271
|
:param _ZoneName: 可用区Name
|
6349
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6350
6272
|
:type ZoneName: str
|
6351
6273
|
"""
|
6352
6274
|
self._ZoneId = None
|
@@ -6355,7 +6277,6 @@ class AnalyseZoneDetail(AbstractModel):
|
|
6355
6277
|
@property
|
6356
6278
|
def ZoneId(self):
|
6357
6279
|
"""可用区id
|
6358
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6359
6280
|
:rtype: str
|
6360
6281
|
"""
|
6361
6282
|
return self._ZoneId
|
@@ -6367,7 +6288,6 @@ class AnalyseZoneDetail(AbstractModel):
|
|
6367
6288
|
@property
|
6368
6289
|
def ZoneName(self):
|
6369
6290
|
"""可用区Name
|
6370
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6371
6291
|
:rtype: str
|
6372
6292
|
"""
|
6373
6293
|
return self._ZoneName
|
@@ -24166,7 +24086,6 @@ class DescribeVoucherInfoResponse(AbstractModel):
|
|
24166
24086
|
:param _TotalBalance: 总余额(微分)
|
24167
24087
|
:type TotalBalance: int
|
24168
24088
|
:param _VoucherInfos: 代金券相关信息
|
24169
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24170
24089
|
:type VoucherInfos: list of VoucherInfos
|
24171
24090
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
24172
24091
|
:type RequestId: str
|
@@ -24201,7 +24120,6 @@ class DescribeVoucherInfoResponse(AbstractModel):
|
|
24201
24120
|
@property
|
24202
24121
|
def VoucherInfos(self):
|
24203
24122
|
"""代金券相关信息
|
24204
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24205
24123
|
:rtype: list of VoucherInfos
|
24206
24124
|
"""
|
24207
24125
|
return self._VoucherInfos
|
@@ -27913,10 +27831,8 @@ class VoucherInfos(AbstractModel):
|
|
27913
27831
|
:param _EndTime: 有效期截止时间
|
27914
27832
|
:type EndTime: str
|
27915
27833
|
:param _ApplicableProducts: 适用商品信息
|
27916
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27917
27834
|
:type ApplicableProducts: :class:`tencentcloud.billing.v20180709.models.ApplicableProducts`
|
27918
27835
|
:param _ExcludedProducts: 不适用商品信息
|
27919
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27920
27836
|
:type ExcludedProducts: list of ExcludedProducts
|
27921
27837
|
"""
|
27922
27838
|
self._OwnerUin = None
|
@@ -28033,7 +27949,6 @@ class VoucherInfos(AbstractModel):
|
|
28033
27949
|
@property
|
28034
27950
|
def ApplicableProducts(self):
|
28035
27951
|
"""适用商品信息
|
28036
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28037
27952
|
:rtype: :class:`tencentcloud.billing.v20180709.models.ApplicableProducts`
|
28038
27953
|
"""
|
28039
27954
|
return self._ApplicableProducts
|
@@ -28045,7 +27960,6 @@ class VoucherInfos(AbstractModel):
|
|
28045
27960
|
@property
|
28046
27961
|
def ExcludedProducts(self):
|
28047
27962
|
"""不适用商品信息
|
28048
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28049
27963
|
:rtype: list of ExcludedProducts
|
28050
27964
|
"""
|
28051
27965
|
return self._ExcludedProducts
|
@@ -1340,14 +1340,17 @@ class DescribeKBComponentVulnerabilityResponse(AbstractModel):
|
|
1340
1340
|
:type VulnerabilityList: list of ComponentVulnerabilityUnion
|
1341
1341
|
:param _PURL: 组件purl
|
1342
1342
|
:type PURL: :class:`tencentcloud.bsca.v20210811.models.PURL`
|
1343
|
-
:param _RecommendedVersion:
|
1343
|
+
:param _RecommendedVersion: 推荐版本,最小无高危/严重漏洞的版本。无法升级到安全版本时的备选方案。
|
1344
1344
|
:type RecommendedVersion: str
|
1345
|
+
:param _SecureVersion: 安全版本(首选),最小无漏洞的版本。当无法升级到安全版本时可考虑使用推荐版本。
|
1346
|
+
:type SecureVersion: str
|
1345
1347
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1346
1348
|
:type RequestId: str
|
1347
1349
|
"""
|
1348
1350
|
self._VulnerabilityList = None
|
1349
1351
|
self._PURL = None
|
1350
1352
|
self._RecommendedVersion = None
|
1353
|
+
self._SecureVersion = None
|
1351
1354
|
self._RequestId = None
|
1352
1355
|
|
1353
1356
|
@property
|
@@ -1375,7 +1378,7 @@ class DescribeKBComponentVulnerabilityResponse(AbstractModel):
|
|
1375
1378
|
|
1376
1379
|
@property
|
1377
1380
|
def RecommendedVersion(self):
|
1378
|
-
"""
|
1381
|
+
"""推荐版本,最小无高危/严重漏洞的版本。无法升级到安全版本时的备选方案。
|
1379
1382
|
:rtype: str
|
1380
1383
|
"""
|
1381
1384
|
return self._RecommendedVersion
|
@@ -1384,6 +1387,17 @@ class DescribeKBComponentVulnerabilityResponse(AbstractModel):
|
|
1384
1387
|
def RecommendedVersion(self, RecommendedVersion):
|
1385
1388
|
self._RecommendedVersion = RecommendedVersion
|
1386
1389
|
|
1390
|
+
@property
|
1391
|
+
def SecureVersion(self):
|
1392
|
+
"""安全版本(首选),最小无漏洞的版本。当无法升级到安全版本时可考虑使用推荐版本。
|
1393
|
+
:rtype: str
|
1394
|
+
"""
|
1395
|
+
return self._SecureVersion
|
1396
|
+
|
1397
|
+
@SecureVersion.setter
|
1398
|
+
def SecureVersion(self, SecureVersion):
|
1399
|
+
self._SecureVersion = SecureVersion
|
1400
|
+
|
1387
1401
|
@property
|
1388
1402
|
def RequestId(self):
|
1389
1403
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -1407,6 +1421,7 @@ class DescribeKBComponentVulnerabilityResponse(AbstractModel):
|
|
1407
1421
|
self._PURL = PURL()
|
1408
1422
|
self._PURL._deserialize(params.get("PURL"))
|
1409
1423
|
self._RecommendedVersion = params.get("RecommendedVersion")
|
1424
|
+
self._SecureVersion = params.get("SecureVersion")
|
1410
1425
|
self._RequestId = params.get("RequestId")
|
1411
1426
|
|
1412
1427
|
|
@@ -4414,8 +4414,8 @@ class DescribeUserQuotaRequest(AbstractModel):
|
|
4414
4414
|
:param _FileSystemId: 文件系统 ID
|
4415
4415
|
:type FileSystemId: str
|
4416
4416
|
:param _Filters: 过滤条件。
|
4417
|
-
|
4418
|
-
|
4417
|
+
UserType - Array of String - 是否必填:否 -(过滤条件)按配额类型过滤。(Uid|Gid|Dir )
|
4418
|
+
UserId- Array of String - 是否必填:否 -(过滤条件)按id过滤。
|
4419
4419
|
:type Filters: list of Filter
|
4420
4420
|
:param _Offset: Offset 分页码
|
4421
4421
|
:type Offset: int
|
@@ -4441,8 +4441,8 @@ class DescribeUserQuotaRequest(AbstractModel):
|
|
4441
4441
|
@property
|
4442
4442
|
def Filters(self):
|
4443
4443
|
"""过滤条件。
|
4444
|
-
|
4445
|
-
|
4444
|
+
UserType - Array of String - 是否必填:否 -(过滤条件)按配额类型过滤。(Uid|Gid|Dir )
|
4445
|
+
UserId- Array of String - 是否必填:否 -(过滤条件)按id过滤。
|
4446
4446
|
:rtype: list of Filter
|
4447
4447
|
"""
|
4448
4448
|
return self._Filters
|
@@ -29323,6 +29323,9 @@ class TopicInfo(AbstractModel):
|
|
29323
29323
|
注意:此字段可能返回 null,表示取不到有效值。
|
29324
29324
|
:type MaxSplitPartitions: int
|
29325
29325
|
:param _StorageType: 主题的存储类型
|
29326
|
+
|
29327
|
+
- hot: 标准存储
|
29328
|
+
- cold: 低频存储
|
29326
29329
|
注意:此字段可能返回 null,表示取不到有效值。
|
29327
29330
|
:type StorageType: str
|
29328
29331
|
:param _Period: 生命周期,单位天,可取值范围1~3600。取值为3640时代表永久保存
|
@@ -29514,6 +29517,9 @@ HotPeriod=0为没有开启日志沉降。
|
|
29514
29517
|
@property
|
29515
29518
|
def StorageType(self):
|
29516
29519
|
"""主题的存储类型
|
29520
|
+
|
29521
|
+
- hot: 标准存储
|
29522
|
+
- cold: 低频存储
|
29517
29523
|
注意:此字段可能返回 null,表示取不到有效值。
|
29518
29524
|
:rtype: str
|
29519
29525
|
"""
|
@@ -16673,7 +16673,7 @@ class ModifyInstancesProjectRequest(AbstractModel):
|
|
16673
16673
|
r"""
|
16674
16674
|
:param _InstanceIds: 一个或多个待操作的实例ID。可通过 [DescribeInstances](https://cloud.tencent.com/document/api/213/15728) API返回值中的`InstanceId`获取。每次请求允许操作的实例数量上限是100。
|
16675
16675
|
:type InstanceIds: list of str
|
16676
|
-
:param _ProjectId: 项目ID。项目可以使用[AddProject](https://cloud.tencent.com/document/
|
16676
|
+
:param _ProjectId: 项目ID。项目可以使用[AddProject](https://cloud.tencent.com/document/api/651/81952)接口创建。可通过[`DescribeProject`](https://cloud.tencent.com/document/api/651/78725) API返回值中的`projectId`获取。后续使用[DescribeInstances](https://cloud.tencent.com/document/api/213/15728)接口查询实例时,项目ID可用于过滤结果。
|
16677
16677
|
:type ProjectId: int
|
16678
16678
|
"""
|
16679
16679
|
self._InstanceIds = None
|
@@ -16692,7 +16692,7 @@ class ModifyInstancesProjectRequest(AbstractModel):
|
|
16692
16692
|
|
16693
16693
|
@property
|
16694
16694
|
def ProjectId(self):
|
16695
|
-
"""项目ID。项目可以使用[AddProject](https://cloud.tencent.com/document/
|
16695
|
+
"""项目ID。项目可以使用[AddProject](https://cloud.tencent.com/document/api/651/81952)接口创建。可通过[`DescribeProject`](https://cloud.tencent.com/document/api/651/78725) API返回值中的`projectId`获取。后续使用[DescribeInstances](https://cloud.tencent.com/document/api/213/15728)接口查询实例时,项目ID可用于过滤结果。
|
16696
16696
|
:rtype: int
|
16697
16697
|
"""
|
16698
16698
|
return self._ProjectId
|
@@ -29010,7 +29010,7 @@ class OpenClusterReadOnlyInstanceGroupAccessResponse(AbstractModel):
|
|
29010
29010
|
def __init__(self):
|
29011
29011
|
r"""
|
29012
29012
|
:param _FlowId: 开启流程ID
|
29013
|
-
:type FlowId:
|
29013
|
+
:type FlowId: int
|
29014
29014
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29015
29015
|
:type RequestId: str
|
29016
29016
|
"""
|
@@ -29020,7 +29020,7 @@ class OpenClusterReadOnlyInstanceGroupAccessResponse(AbstractModel):
|
|
29020
29020
|
@property
|
29021
29021
|
def FlowId(self):
|
29022
29022
|
"""开启流程ID
|
29023
|
-
:rtype:
|
29023
|
+
:rtype: int
|
29024
29024
|
"""
|
29025
29025
|
return self._FlowId
|
29026
29026
|
|