tencentcloud-sdk-python 3.0.1378__py2.py3-none-any.whl → 3.0.1380__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.
Files changed (56) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/autoscaling_client.py +5 -6
  3. tencentcloud/autoscaling/v20180419/models.py +398 -294
  4. tencentcloud/batch/v20170312/batch_client.py +3 -3
  5. tencentcloud/batch/v20170312/models.py +230 -168
  6. tencentcloud/bh/v20230418/models.py +235 -2
  7. tencentcloud/bi/v20220105/models.py +32 -0
  8. tencentcloud/cbs/v20170312/cbs_client.py +1 -1
  9. tencentcloud/cbs/v20170312/models.py +18 -18
  10. tencentcloud/cdb/v20170320/errorcodes.py +6 -0
  11. tencentcloud/cdb/v20170320/models.py +32 -2
  12. tencentcloud/cfw/v20190904/models.py +24 -24
  13. tencentcloud/clb/v20180317/clb_client.py +7 -7
  14. tencentcloud/clb/v20180317/models.py +57 -47
  15. tencentcloud/cynosdb/v20190107/errorcodes.py +9 -0
  16. tencentcloud/cynosdb/v20190107/models.py +21 -2
  17. tencentcloud/dbbrain/v20210527/dbbrain_client.py +46 -0
  18. tencentcloud/dbbrain/v20210527/models.py +368 -0
  19. tencentcloud/dnspod/v20210323/dnspod_client.py +23 -0
  20. tencentcloud/dnspod/v20210323/models.py +503 -0
  21. tencentcloud/domain/v20180808/errorcodes.py +3 -0
  22. tencentcloud/domain/v20180808/models.py +68 -44
  23. tencentcloud/emr/v20190103/models.py +30 -0
  24. tencentcloud/ess/v20201111/models.py +15 -0
  25. tencentcloud/essbasic/v20210526/models.py +2 -2
  26. tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
  27. tencentcloud/mps/v20190612/models.py +211 -2
  28. tencentcloud/postgres/v20170312/models.py +12 -83
  29. tencentcloud/postgres/v20170312/postgres_client.py +12 -29
  30. tencentcloud/tbaas/v20180416/models.py +0 -234
  31. tencentcloud/tbaas/v20180416/tbaas_client.py +0 -23
  32. tencentcloud/tcb/v20180608/models.py +4 -4
  33. tencentcloud/tdmq/v20200217/errorcodes.py +33 -0
  34. tencentcloud/teo/v20220901/models.py +589 -92
  35. tencentcloud/teo/v20220901/teo_client.py +23 -0
  36. tencentcloud/thpc/v20211109/models.py +2 -2
  37. tencentcloud/thpc/v20220401/models.py +4 -4
  38. tencentcloud/thpc/v20230321/errorcodes.py +9 -0
  39. tencentcloud/thpc/v20230321/models.py +79 -0
  40. tencentcloud/thpc/v20230321/thpc_client.py +23 -0
  41. tencentcloud/tke/v20180525/models.py +242 -184
  42. tencentcloud/tmt/v20180321/errorcodes.py +3 -0
  43. tencentcloud/tmt/v20180321/models.py +443 -1
  44. tencentcloud/tmt/v20180321/tmt_client.py +28 -0
  45. tencentcloud/trtc/v20190722/trtc_client.py +2 -3
  46. tencentcloud/vpc/v20170312/models.py +162 -118
  47. tencentcloud/vpc/v20170312/vpc_client.py +1 -1
  48. tencentcloud/waf/v20180125/models.py +15 -0
  49. tencentcloud/wedata/v20210820/errorcodes.py +9 -0
  50. tencentcloud/wedata/v20210820/models.py +1839 -161
  51. tencentcloud/wedata/v20210820/wedata_client.py +115 -0
  52. {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/METADATA +1 -1
  53. {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/RECORD +56 -56
  54. {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/LICENSE +0 -0
  55. {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/WHEEL +0 -0
  56. {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/top_level.txt +0 -0
@@ -446,6 +446,284 @@ class BatchRecordInfo(AbstractModel):
446
446
 
447
447
 
448
448
 
449
+ class BatchSearchDomainInfo(AbstractModel):
450
+ """批量操作筛选域名信息
451
+
452
+ """
453
+
454
+ def __init__(self):
455
+ r"""
456
+ :param _Domain: 域名
457
+ :type Domain: str
458
+ :param _DomainId: 域名 ID
459
+ :type DomainId: int
460
+ :param _DomainGrade: 域名套餐等级
461
+ :type DomainGrade: str
462
+ :param _RecordList: 记录信息列表
463
+ :type RecordList: list of BatchSearchRecordInfo
464
+ """
465
+ self._Domain = None
466
+ self._DomainId = None
467
+ self._DomainGrade = None
468
+ self._RecordList = None
469
+
470
+ @property
471
+ def Domain(self):
472
+ """域名
473
+ :rtype: str
474
+ """
475
+ return self._Domain
476
+
477
+ @Domain.setter
478
+ def Domain(self, Domain):
479
+ self._Domain = Domain
480
+
481
+ @property
482
+ def DomainId(self):
483
+ """域名 ID
484
+ :rtype: int
485
+ """
486
+ return self._DomainId
487
+
488
+ @DomainId.setter
489
+ def DomainId(self, DomainId):
490
+ self._DomainId = DomainId
491
+
492
+ @property
493
+ def DomainGrade(self):
494
+ """域名套餐等级
495
+ :rtype: str
496
+ """
497
+ return self._DomainGrade
498
+
499
+ @DomainGrade.setter
500
+ def DomainGrade(self, DomainGrade):
501
+ self._DomainGrade = DomainGrade
502
+
503
+ @property
504
+ def RecordList(self):
505
+ """记录信息列表
506
+ :rtype: list of BatchSearchRecordInfo
507
+ """
508
+ return self._RecordList
509
+
510
+ @RecordList.setter
511
+ def RecordList(self, RecordList):
512
+ self._RecordList = RecordList
513
+
514
+
515
+ def _deserialize(self, params):
516
+ self._Domain = params.get("Domain")
517
+ self._DomainId = params.get("DomainId")
518
+ self._DomainGrade = params.get("DomainGrade")
519
+ if params.get("RecordList") is not None:
520
+ self._RecordList = []
521
+ for item in params.get("RecordList"):
522
+ obj = BatchSearchRecordInfo()
523
+ obj._deserialize(item)
524
+ self._RecordList.append(obj)
525
+ memeber_set = set(params.keys())
526
+ for name, value in vars(self).items():
527
+ property_name = name[1:]
528
+ if property_name in memeber_set:
529
+ memeber_set.remove(property_name)
530
+ if len(memeber_set) > 0:
531
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
532
+
533
+
534
+
535
+ class BatchSearchRecordInfo(AbstractModel):
536
+ """批量操作筛选记录信息
537
+
538
+ """
539
+
540
+ def __init__(self):
541
+ r"""
542
+ :param _RecordId: 解析记录 ID
543
+ :type RecordId: int
544
+ :param _Area: 解析线路
545
+ :type Area: str
546
+ :param _Remark: 记录备注
547
+ 注意:此字段可能返回 null,表示取不到有效值。
548
+ :type Remark: str
549
+ :param _TTL: TTL(秒)
550
+ :type TTL: int
551
+ :param _RecordType: 记录类型
552
+ :type RecordType: str
553
+ :param _Enabled: 记录是否启用
554
+ :type Enabled: int
555
+ :param _Weight: 权重
556
+ 注意:此字段可能返回 null,表示取不到有效值。
557
+ :type Weight: int
558
+ :param _GroupId: 记录分组 ID
559
+ :type GroupId: int
560
+ :param _SubDomain: 子域名
561
+ :type SubDomain: str
562
+ :param _Value: 解析值
563
+ :type Value: str
564
+ :param _MX: MX优先级
565
+ 注意:此字段可能返回 null,表示取不到有效值。
566
+ :type MX: int
567
+ """
568
+ self._RecordId = None
569
+ self._Area = None
570
+ self._Remark = None
571
+ self._TTL = None
572
+ self._RecordType = None
573
+ self._Enabled = None
574
+ self._Weight = None
575
+ self._GroupId = None
576
+ self._SubDomain = None
577
+ self._Value = None
578
+ self._MX = None
579
+
580
+ @property
581
+ def RecordId(self):
582
+ """解析记录 ID
583
+ :rtype: int
584
+ """
585
+ return self._RecordId
586
+
587
+ @RecordId.setter
588
+ def RecordId(self, RecordId):
589
+ self._RecordId = RecordId
590
+
591
+ @property
592
+ def Area(self):
593
+ """解析线路
594
+ :rtype: str
595
+ """
596
+ return self._Area
597
+
598
+ @Area.setter
599
+ def Area(self, Area):
600
+ self._Area = Area
601
+
602
+ @property
603
+ def Remark(self):
604
+ """记录备注
605
+ 注意:此字段可能返回 null,表示取不到有效值。
606
+ :rtype: str
607
+ """
608
+ return self._Remark
609
+
610
+ @Remark.setter
611
+ def Remark(self, Remark):
612
+ self._Remark = Remark
613
+
614
+ @property
615
+ def TTL(self):
616
+ """TTL(秒)
617
+ :rtype: int
618
+ """
619
+ return self._TTL
620
+
621
+ @TTL.setter
622
+ def TTL(self, TTL):
623
+ self._TTL = TTL
624
+
625
+ @property
626
+ def RecordType(self):
627
+ """记录类型
628
+ :rtype: str
629
+ """
630
+ return self._RecordType
631
+
632
+ @RecordType.setter
633
+ def RecordType(self, RecordType):
634
+ self._RecordType = RecordType
635
+
636
+ @property
637
+ def Enabled(self):
638
+ """记录是否启用
639
+ :rtype: int
640
+ """
641
+ return self._Enabled
642
+
643
+ @Enabled.setter
644
+ def Enabled(self, Enabled):
645
+ self._Enabled = Enabled
646
+
647
+ @property
648
+ def Weight(self):
649
+ """权重
650
+ 注意:此字段可能返回 null,表示取不到有效值。
651
+ :rtype: int
652
+ """
653
+ return self._Weight
654
+
655
+ @Weight.setter
656
+ def Weight(self, Weight):
657
+ self._Weight = Weight
658
+
659
+ @property
660
+ def GroupId(self):
661
+ """记录分组 ID
662
+ :rtype: int
663
+ """
664
+ return self._GroupId
665
+
666
+ @GroupId.setter
667
+ def GroupId(self, GroupId):
668
+ self._GroupId = GroupId
669
+
670
+ @property
671
+ def SubDomain(self):
672
+ """子域名
673
+ :rtype: str
674
+ """
675
+ return self._SubDomain
676
+
677
+ @SubDomain.setter
678
+ def SubDomain(self, SubDomain):
679
+ self._SubDomain = SubDomain
680
+
681
+ @property
682
+ def Value(self):
683
+ """解析值
684
+ :rtype: str
685
+ """
686
+ return self._Value
687
+
688
+ @Value.setter
689
+ def Value(self, Value):
690
+ self._Value = Value
691
+
692
+ @property
693
+ def MX(self):
694
+ """MX优先级
695
+ 注意:此字段可能返回 null,表示取不到有效值。
696
+ :rtype: int
697
+ """
698
+ return self._MX
699
+
700
+ @MX.setter
701
+ def MX(self, MX):
702
+ self._MX = MX
703
+
704
+
705
+ def _deserialize(self, params):
706
+ self._RecordId = params.get("RecordId")
707
+ self._Area = params.get("Area")
708
+ self._Remark = params.get("Remark")
709
+ self._TTL = params.get("TTL")
710
+ self._RecordType = params.get("RecordType")
711
+ self._Enabled = params.get("Enabled")
712
+ self._Weight = params.get("Weight")
713
+ self._GroupId = params.get("GroupId")
714
+ self._SubDomain = params.get("SubDomain")
715
+ self._Value = params.get("Value")
716
+ self._MX = params.get("MX")
717
+ memeber_set = set(params.keys())
718
+ for name, value in vars(self).items():
719
+ property_name = name[1:]
720
+ if property_name in memeber_set:
721
+ memeber_set.remove(property_name)
722
+ if len(memeber_set) > 0:
723
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
724
+
725
+
726
+
449
727
  class CheckRecordSnapshotRollbackRequest(AbstractModel):
450
728
  """CheckRecordSnapshotRollback请求参数结构体
451
729
 
@@ -5503,6 +5781,231 @@ class DescribeDomainAnalyticsResponse(AbstractModel):
5503
5781
  self._RequestId = params.get("RequestId")
5504
5782
 
5505
5783
 
5784
+ class DescribeDomainAndRecordListRequest(AbstractModel):
5785
+ """DescribeDomainAndRecordList请求参数结构体
5786
+
5787
+ """
5788
+
5789
+ def __init__(self):
5790
+ r"""
5791
+ :param _AllDomain: 搜索所有域名。AllDomain、GroupIdList、DomainList、DomainIdList 参数传任一个即可。优先级为:AllDomain > GroupIdList > DomainList > DomainIdList。
5792
+ :type AllDomain: str
5793
+ :param _DomainList: 要搜索的域名列表。
5794
+ :type DomainList: list of str
5795
+ :param _DomainIdList: 要搜索的域名 ID 列表。
5796
+ :type DomainIdList: list of int non-negative
5797
+ :param _GroupIdList: 要搜索的域名分组 ID 列表。
5798
+ :type GroupIdList: list of int non-negative
5799
+ :param _RecordType: 记录类型筛选
5800
+ :type RecordType: str
5801
+ :param _SubKeyword: 子域名筛选
5802
+ :type SubKeyword: str
5803
+ :param _ValueKeyword: 记录值筛选
5804
+ :type ValueKeyword: str
5805
+ :param _Area: 线路筛选
5806
+ :type Area: str
5807
+ :param _Remark: 备注筛选
5808
+ :type Remark: str
5809
+ :param _Enabled: 记录状态筛选
5810
+ 1:正常
5811
+ 0:暂停
5812
+
5813
+ :type Enabled: str
5814
+ """
5815
+ self._AllDomain = None
5816
+ self._DomainList = None
5817
+ self._DomainIdList = None
5818
+ self._GroupIdList = None
5819
+ self._RecordType = None
5820
+ self._SubKeyword = None
5821
+ self._ValueKeyword = None
5822
+ self._Area = None
5823
+ self._Remark = None
5824
+ self._Enabled = None
5825
+
5826
+ @property
5827
+ def AllDomain(self):
5828
+ """搜索所有域名。AllDomain、GroupIdList、DomainList、DomainIdList 参数传任一个即可。优先级为:AllDomain > GroupIdList > DomainList > DomainIdList。
5829
+ :rtype: str
5830
+ """
5831
+ return self._AllDomain
5832
+
5833
+ @AllDomain.setter
5834
+ def AllDomain(self, AllDomain):
5835
+ self._AllDomain = AllDomain
5836
+
5837
+ @property
5838
+ def DomainList(self):
5839
+ """要搜索的域名列表。
5840
+ :rtype: list of str
5841
+ """
5842
+ return self._DomainList
5843
+
5844
+ @DomainList.setter
5845
+ def DomainList(self, DomainList):
5846
+ self._DomainList = DomainList
5847
+
5848
+ @property
5849
+ def DomainIdList(self):
5850
+ """要搜索的域名 ID 列表。
5851
+ :rtype: list of int non-negative
5852
+ """
5853
+ return self._DomainIdList
5854
+
5855
+ @DomainIdList.setter
5856
+ def DomainIdList(self, DomainIdList):
5857
+ self._DomainIdList = DomainIdList
5858
+
5859
+ @property
5860
+ def GroupIdList(self):
5861
+ """要搜索的域名分组 ID 列表。
5862
+ :rtype: list of int non-negative
5863
+ """
5864
+ return self._GroupIdList
5865
+
5866
+ @GroupIdList.setter
5867
+ def GroupIdList(self, GroupIdList):
5868
+ self._GroupIdList = GroupIdList
5869
+
5870
+ @property
5871
+ def RecordType(self):
5872
+ """记录类型筛选
5873
+ :rtype: str
5874
+ """
5875
+ return self._RecordType
5876
+
5877
+ @RecordType.setter
5878
+ def RecordType(self, RecordType):
5879
+ self._RecordType = RecordType
5880
+
5881
+ @property
5882
+ def SubKeyword(self):
5883
+ """子域名筛选
5884
+ :rtype: str
5885
+ """
5886
+ return self._SubKeyword
5887
+
5888
+ @SubKeyword.setter
5889
+ def SubKeyword(self, SubKeyword):
5890
+ self._SubKeyword = SubKeyword
5891
+
5892
+ @property
5893
+ def ValueKeyword(self):
5894
+ """记录值筛选
5895
+ :rtype: str
5896
+ """
5897
+ return self._ValueKeyword
5898
+
5899
+ @ValueKeyword.setter
5900
+ def ValueKeyword(self, ValueKeyword):
5901
+ self._ValueKeyword = ValueKeyword
5902
+
5903
+ @property
5904
+ def Area(self):
5905
+ """线路筛选
5906
+ :rtype: str
5907
+ """
5908
+ return self._Area
5909
+
5910
+ @Area.setter
5911
+ def Area(self, Area):
5912
+ self._Area = Area
5913
+
5914
+ @property
5915
+ def Remark(self):
5916
+ """备注筛选
5917
+ :rtype: str
5918
+ """
5919
+ return self._Remark
5920
+
5921
+ @Remark.setter
5922
+ def Remark(self, Remark):
5923
+ self._Remark = Remark
5924
+
5925
+ @property
5926
+ def Enabled(self):
5927
+ """记录状态筛选
5928
+ 1:正常
5929
+ 0:暂停
5930
+
5931
+ :rtype: str
5932
+ """
5933
+ return self._Enabled
5934
+
5935
+ @Enabled.setter
5936
+ def Enabled(self, Enabled):
5937
+ self._Enabled = Enabled
5938
+
5939
+
5940
+ def _deserialize(self, params):
5941
+ self._AllDomain = params.get("AllDomain")
5942
+ self._DomainList = params.get("DomainList")
5943
+ self._DomainIdList = params.get("DomainIdList")
5944
+ self._GroupIdList = params.get("GroupIdList")
5945
+ self._RecordType = params.get("RecordType")
5946
+ self._SubKeyword = params.get("SubKeyword")
5947
+ self._ValueKeyword = params.get("ValueKeyword")
5948
+ self._Area = params.get("Area")
5949
+ self._Remark = params.get("Remark")
5950
+ self._Enabled = params.get("Enabled")
5951
+ memeber_set = set(params.keys())
5952
+ for name, value in vars(self).items():
5953
+ property_name = name[1:]
5954
+ if property_name in memeber_set:
5955
+ memeber_set.remove(property_name)
5956
+ if len(memeber_set) > 0:
5957
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
5958
+
5959
+
5960
+
5961
+ class DescribeDomainAndRecordListResponse(AbstractModel):
5962
+ """DescribeDomainAndRecordList返回参数结构体
5963
+
5964
+ """
5965
+
5966
+ def __init__(self):
5967
+ r"""
5968
+ :param _DetailList: 域名列表
5969
+ :type DetailList: list of BatchSearchDomainInfo
5970
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5971
+ :type RequestId: str
5972
+ """
5973
+ self._DetailList = None
5974
+ self._RequestId = None
5975
+
5976
+ @property
5977
+ def DetailList(self):
5978
+ """域名列表
5979
+ :rtype: list of BatchSearchDomainInfo
5980
+ """
5981
+ return self._DetailList
5982
+
5983
+ @DetailList.setter
5984
+ def DetailList(self, DetailList):
5985
+ self._DetailList = DetailList
5986
+
5987
+ @property
5988
+ def RequestId(self):
5989
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5990
+ :rtype: str
5991
+ """
5992
+ return self._RequestId
5993
+
5994
+ @RequestId.setter
5995
+ def RequestId(self, RequestId):
5996
+ self._RequestId = RequestId
5997
+
5998
+
5999
+ def _deserialize(self, params):
6000
+ if params.get("DetailList") is not None:
6001
+ self._DetailList = []
6002
+ for item in params.get("DetailList"):
6003
+ obj = BatchSearchDomainInfo()
6004
+ obj._deserialize(item)
6005
+ self._DetailList.append(obj)
6006
+ self._RequestId = params.get("RequestId")
6007
+
6008
+
5506
6009
  class DescribeDomainCustomLineListRequest(AbstractModel):
5507
6010
  """DescribeDomainCustomLineList请求参数结构体
5508
6011
 
@@ -56,6 +56,9 @@ FAILEDOPERATION_DESCRIBEDOMAINLISTFAILED = 'FailedOperation.DescribeDomainListFa
56
56
  # 查询模板操作失败。
57
57
  FAILEDOPERATION_DESCRIBETEMPLATEFAILED = 'FailedOperation.DescribeTemplateFailed'
58
58
 
59
+ # 当前域名已经不属于预约状态
60
+ FAILEDOPERATION_DESCRIBEUNPREDOMAINDETAILERR = 'FailedOperation.DescribeUnPreDomainDetailErr'
61
+
59
62
  # 域名已过期,不允许操作。
60
63
  FAILEDOPERATION_DOMAINEXPIREDUNSUPPORTED = 'FailedOperation.DomainExpiredUnsupported'
61
64