tencentcloud-sdk-python 3.0.1273__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 -80
- tencentcloud/cls/v20201016/models.py +6 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +46 -0
- tencentcloud/dnspod/v20210323/models.py +188 -0
- 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/hunyuan/v20230901/models.py +17 -0
- 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 +12 -0
- tencentcloud/live/v20180801/live_client.py +142 -0
- tencentcloud/live/v20180801/models.py +619 -0
- tencentcloud/lke/v20231130/models.py +35 -1
- 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/tke/v20220501/models.py +6 -2
- tencentcloud/vod/v20180717/models.py +30 -0
- tencentcloud/vpc/v20170312/models.py +30 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/RECORD +32 -32
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1273.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
|
@@ -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
|
"""
|
@@ -351,6 +351,29 @@ class DnspodClient(AbstractClient):
|
|
351
351
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
352
352
|
|
353
353
|
|
354
|
+
def CreateSubdomainValidateTXTValue(self, request):
|
355
|
+
"""创建添加子域名 Zone 域解析时所需要的 TXT 记录值
|
356
|
+
|
357
|
+
:param request: Request instance for CreateSubdomainValidateTXTValue.
|
358
|
+
:type request: :class:`tencentcloud.dnspod.v20210323.models.CreateSubdomainValidateTXTValueRequest`
|
359
|
+
:rtype: :class:`tencentcloud.dnspod.v20210323.models.CreateSubdomainValidateTXTValueResponse`
|
360
|
+
|
361
|
+
"""
|
362
|
+
try:
|
363
|
+
params = request._serialize()
|
364
|
+
headers = request.headers
|
365
|
+
body = self.call("CreateSubdomainValidateTXTValue", params, headers=headers)
|
366
|
+
response = json.loads(body)
|
367
|
+
model = models.CreateSubdomainValidateTXTValueResponse()
|
368
|
+
model._deserialize(response["Response"])
|
369
|
+
return model
|
370
|
+
except Exception as e:
|
371
|
+
if isinstance(e, TencentCloudSDKException):
|
372
|
+
raise
|
373
|
+
else:
|
374
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
375
|
+
|
376
|
+
|
354
377
|
def CreateTXTRecord(self, request):
|
355
378
|
"""添加TXT记录
|
356
379
|
备注:新添加的解析记录存在短暂的索引延迟,如果查询不到新增记录,请在 30 秒后重试
|
@@ -1303,6 +1326,29 @@ class DnspodClient(AbstractClient):
|
|
1303
1326
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1304
1327
|
|
1305
1328
|
|
1329
|
+
def DescribeSubdomainValidateStatus(self, request):
|
1330
|
+
"""查看添加子域名 Zone 域解析 TXT 记录值验证状态
|
1331
|
+
|
1332
|
+
:param request: Request instance for DescribeSubdomainValidateStatus.
|
1333
|
+
:type request: :class:`tencentcloud.dnspod.v20210323.models.DescribeSubdomainValidateStatusRequest`
|
1334
|
+
:rtype: :class:`tencentcloud.dnspod.v20210323.models.DescribeSubdomainValidateStatusResponse`
|
1335
|
+
|
1336
|
+
"""
|
1337
|
+
try:
|
1338
|
+
params = request._serialize()
|
1339
|
+
headers = request.headers
|
1340
|
+
body = self.call("DescribeSubdomainValidateStatus", params, headers=headers)
|
1341
|
+
response = json.loads(body)
|
1342
|
+
model = models.DescribeSubdomainValidateStatusResponse()
|
1343
|
+
model._deserialize(response["Response"])
|
1344
|
+
return model
|
1345
|
+
except Exception as e:
|
1346
|
+
if isinstance(e, TencentCloudSDKException):
|
1347
|
+
raise
|
1348
|
+
else:
|
1349
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1350
|
+
|
1351
|
+
|
1306
1352
|
def DescribeUserDetail(self, request):
|
1307
1353
|
"""获取账户信息
|
1308
1354
|
|