tencentcloud-sdk-python 3.0.1249__py2.py3-none-any.whl → 3.0.1251__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 (40) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/models.py +8 -1
  3. tencentcloud/ccc/v20200210/models.py +117 -0
  4. tencentcloud/cls/v20201016/cls_client.py +92 -0
  5. tencentcloud/cls/v20201016/models.py +797 -28
  6. tencentcloud/cynosdb/v20190107/models.py +13 -0
  7. tencentcloud/dc/v20180410/dc_client.py +23 -0
  8. tencentcloud/dc/v20180410/models.py +426 -0
  9. tencentcloud/dlc/v20210125/dlc_client.py +23 -0
  10. tencentcloud/dlc/v20210125/models.py +388 -0
  11. tencentcloud/emr/v20190103/errorcodes.py +1 -1
  12. tencentcloud/emr/v20190103/models.py +2 -94
  13. tencentcloud/ess/v20201111/ess_client.py +35 -6
  14. tencentcloud/ess/v20201111/models.py +32 -10
  15. tencentcloud/essbasic/v20210526/models.py +2 -3
  16. tencentcloud/faceid/v20180301/models.py +28 -1
  17. tencentcloud/gwlb/__init__.py +0 -0
  18. tencentcloud/gwlb/v20240906/__init__.py +0 -0
  19. tencentcloud/gwlb/v20240906/errorcodes.py +48 -0
  20. tencentcloud/gwlb/v20240906/gwlb_client.py +448 -0
  21. tencentcloud/gwlb/v20240906/models.py +2834 -0
  22. tencentcloud/privatedns/v20201028/errorcodes.py +18 -0
  23. tencentcloud/privatedns/v20201028/models.py +142 -0
  24. tencentcloud/privatedns/v20201028/privatedns_client.py +23 -0
  25. tencentcloud/sms/v20190711/errorcodes.py +3 -0
  26. tencentcloud/sms/v20210111/errorcodes.py +3 -0
  27. tencentcloud/teo/v20220901/models.py +8 -5
  28. tencentcloud/tke/v20180525/models.py +2 -108
  29. tencentcloud/tke/v20180525/tke_client.py +0 -25
  30. tencentcloud/vclm/v20240523/models.py +12 -0
  31. tencentcloud/vod/v20180717/vod_client.py +1 -0
  32. tencentcloud/vpc/v20170312/errorcodes.py +6 -0
  33. tencentcloud/vpc/v20170312/models.py +16 -4
  34. tencentcloud/vpc/v20170312/vpc_client.py +1 -1
  35. tencentcloud/vtc/v20240223/models.py +12 -0
  36. {tencentcloud_sdk_python-3.0.1249.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/METADATA +1 -1
  37. {tencentcloud_sdk_python-3.0.1249.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/RECORD +40 -35
  38. {tencentcloud_sdk_python-3.0.1249.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/LICENSE +0 -0
  39. {tencentcloud_sdk_python-3.0.1249.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/WHEEL +0 -0
  40. {tencentcloud_sdk_python-3.0.1249.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/top_level.txt +0 -0
@@ -44,6 +44,9 @@ class Ability(AbstractModel):
44
44
  :param _NoSupportTransparentDataEncryptionReason: 不支持透明数据加密原因
45
45
  注意:此字段可能返回 null,表示取不到有效值。
46
46
  :type NoSupportTransparentDataEncryptionReason: str
47
+ :param _IsSupportManualLogic: 是否支持手动发起逻辑备份
48
+ 注意:此字段可能返回 null,表示取不到有效值。
49
+ :type IsSupportManualLogic: str
47
50
  """
48
51
  self._IsSupportSlaveZone = None
49
52
  self._NonsupportSlaveZoneReason = None
@@ -52,6 +55,7 @@ class Ability(AbstractModel):
52
55
  self._IsSupportManualSnapshot = None
53
56
  self._IsSupportTransparentDataEncryption = None
54
57
  self._NoSupportTransparentDataEncryptionReason = None
58
+ self._IsSupportManualLogic = None
55
59
 
56
60
  @property
57
61
  def IsSupportSlaveZone(self):
@@ -109,6 +113,14 @@ class Ability(AbstractModel):
109
113
  def NoSupportTransparentDataEncryptionReason(self, NoSupportTransparentDataEncryptionReason):
110
114
  self._NoSupportTransparentDataEncryptionReason = NoSupportTransparentDataEncryptionReason
111
115
 
116
+ @property
117
+ def IsSupportManualLogic(self):
118
+ return self._IsSupportManualLogic
119
+
120
+ @IsSupportManualLogic.setter
121
+ def IsSupportManualLogic(self, IsSupportManualLogic):
122
+ self._IsSupportManualLogic = IsSupportManualLogic
123
+
112
124
 
113
125
  def _deserialize(self, params):
114
126
  self._IsSupportSlaveZone = params.get("IsSupportSlaveZone")
@@ -118,6 +130,7 @@ class Ability(AbstractModel):
118
130
  self._IsSupportManualSnapshot = params.get("IsSupportManualSnapshot")
119
131
  self._IsSupportTransparentDataEncryption = params.get("IsSupportTransparentDataEncryption")
120
132
  self._NoSupportTransparentDataEncryptionReason = params.get("NoSupportTransparentDataEncryptionReason")
133
+ self._IsSupportManualLogic = params.get("IsSupportManualLogic")
121
134
  memeber_set = set(params.keys())
122
135
  for name, value in vars(self).items():
123
136
  property_name = name[1:]
@@ -72,6 +72,29 @@ class DcClient(AbstractClient):
72
72
  raise TencentCloudSDKException(type(e).__name__, str(e))
73
73
 
74
74
 
75
+ def CreateCloudAttachService(self, request):
76
+ """创建敏捷上云服务
77
+
78
+ :param request: Request instance for CreateCloudAttachService.
79
+ :type request: :class:`tencentcloud.dc.v20180410.models.CreateCloudAttachServiceRequest`
80
+ :rtype: :class:`tencentcloud.dc.v20180410.models.CreateCloudAttachServiceResponse`
81
+
82
+ """
83
+ try:
84
+ params = request._serialize()
85
+ headers = request.headers
86
+ body = self.call("CreateCloudAttachService", params, headers=headers)
87
+ response = json.loads(body)
88
+ model = models.CreateCloudAttachServiceResponse()
89
+ model._deserialize(response["Response"])
90
+ return model
91
+ except Exception as e:
92
+ if isinstance(e, TencentCloudSDKException):
93
+ raise
94
+ else:
95
+ raise TencentCloudSDKException(type(e).__name__, str(e))
96
+
97
+
75
98
  def CreateDirectConnect(self, request):
76
99
  """申请物理专线接入。
77
100
  调用该接口时,请注意:
@@ -472,6 +472,265 @@ class BgpPeer(AbstractModel):
472
472
 
473
473
 
474
474
 
475
+ class CloudAttachInfo(AbstractModel):
476
+ """敏捷上云服务信息
477
+
478
+ """
479
+
480
+ def __init__(self):
481
+ r"""
482
+ :param _InstanceId: 敏捷上云实例id
483
+ :type InstanceId: str
484
+ :param _Name: 敏捷上云名称
485
+ :type Name: str
486
+ :param _IapId: 合作伙伴的AppId
487
+ :type IapId: str
488
+ :param _IdcAddress: 需要接入敏捷上云的IDC的地址
489
+ :type IdcAddress: str
490
+ :param _IdcType: 需要接入敏捷上云的IDC的互联网服务提供商类型
491
+ :type IdcType: str
492
+ :param _Bandwidth: 敏捷上云的带宽,单位为MB
493
+ :type Bandwidth: int
494
+ :param _Telephone: 联系电话
495
+ :type Telephone: str
496
+ :param _Status: 敏捷上云的状态
497
+ available:就绪状态
498
+ applying:申请,待审核状态
499
+ pendingpay:代付款状态
500
+ building:建设中状态
501
+ confirming:待确认状态
502
+ isolate: 隔离状态
503
+ stoped:终止状态
504
+ :type Status: str
505
+ :param _ApplyTime: 敏捷上云申请的时间
506
+ :type ApplyTime: str
507
+ :param _ReadyTime: 敏捷上云建设完成的时间
508
+ 注意:此字段可能返回 null,表示取不到有效值。
509
+ :type ReadyTime: str
510
+ :param _ExpireTime: 敏捷上云过期时间
511
+ :type ExpireTime: str
512
+ :param _Remarks: 备注信息
513
+ :type Remarks: str
514
+ :param _RegionStatus: 敏捷上云的地域状态。
515
+ same-region:同地域
516
+ cross-region:跨地域
517
+ :type RegionStatus: str
518
+ :param _AppId: 用户的AppId
519
+ :type AppId: str
520
+ :param _Uin: 用户的Uin
521
+ :type Uin: str
522
+ :param _CustomerAuthName: 用户注册名称
523
+ :type CustomerAuthName: str
524
+ :param _DirectConnectId: 物理专线实例ID
525
+ :type DirectConnectId: str
526
+ :param _CloudAttachServiceGatewaysSupport: 敏捷上云是否支持创建高速上云专线网关
527
+ :type CloudAttachServiceGatewaysSupport: bool
528
+ :param _BUpdateBandwidth: 敏捷上云服务是否处于升降配中
529
+ :type BUpdateBandwidth: bool
530
+ """
531
+ self._InstanceId = None
532
+ self._Name = None
533
+ self._IapId = None
534
+ self._IdcAddress = None
535
+ self._IdcType = None
536
+ self._Bandwidth = None
537
+ self._Telephone = None
538
+ self._Status = None
539
+ self._ApplyTime = None
540
+ self._ReadyTime = None
541
+ self._ExpireTime = None
542
+ self._Remarks = None
543
+ self._RegionStatus = None
544
+ self._AppId = None
545
+ self._Uin = None
546
+ self._CustomerAuthName = None
547
+ self._DirectConnectId = None
548
+ self._CloudAttachServiceGatewaysSupport = None
549
+ self._BUpdateBandwidth = None
550
+
551
+ @property
552
+ def InstanceId(self):
553
+ return self._InstanceId
554
+
555
+ @InstanceId.setter
556
+ def InstanceId(self, InstanceId):
557
+ self._InstanceId = InstanceId
558
+
559
+ @property
560
+ def Name(self):
561
+ return self._Name
562
+
563
+ @Name.setter
564
+ def Name(self, Name):
565
+ self._Name = Name
566
+
567
+ @property
568
+ def IapId(self):
569
+ return self._IapId
570
+
571
+ @IapId.setter
572
+ def IapId(self, IapId):
573
+ self._IapId = IapId
574
+
575
+ @property
576
+ def IdcAddress(self):
577
+ return self._IdcAddress
578
+
579
+ @IdcAddress.setter
580
+ def IdcAddress(self, IdcAddress):
581
+ self._IdcAddress = IdcAddress
582
+
583
+ @property
584
+ def IdcType(self):
585
+ return self._IdcType
586
+
587
+ @IdcType.setter
588
+ def IdcType(self, IdcType):
589
+ self._IdcType = IdcType
590
+
591
+ @property
592
+ def Bandwidth(self):
593
+ return self._Bandwidth
594
+
595
+ @Bandwidth.setter
596
+ def Bandwidth(self, Bandwidth):
597
+ self._Bandwidth = Bandwidth
598
+
599
+ @property
600
+ def Telephone(self):
601
+ return self._Telephone
602
+
603
+ @Telephone.setter
604
+ def Telephone(self, Telephone):
605
+ self._Telephone = Telephone
606
+
607
+ @property
608
+ def Status(self):
609
+ return self._Status
610
+
611
+ @Status.setter
612
+ def Status(self, Status):
613
+ self._Status = Status
614
+
615
+ @property
616
+ def ApplyTime(self):
617
+ return self._ApplyTime
618
+
619
+ @ApplyTime.setter
620
+ def ApplyTime(self, ApplyTime):
621
+ self._ApplyTime = ApplyTime
622
+
623
+ @property
624
+ def ReadyTime(self):
625
+ return self._ReadyTime
626
+
627
+ @ReadyTime.setter
628
+ def ReadyTime(self, ReadyTime):
629
+ self._ReadyTime = ReadyTime
630
+
631
+ @property
632
+ def ExpireTime(self):
633
+ return self._ExpireTime
634
+
635
+ @ExpireTime.setter
636
+ def ExpireTime(self, ExpireTime):
637
+ self._ExpireTime = ExpireTime
638
+
639
+ @property
640
+ def Remarks(self):
641
+ return self._Remarks
642
+
643
+ @Remarks.setter
644
+ def Remarks(self, Remarks):
645
+ self._Remarks = Remarks
646
+
647
+ @property
648
+ def RegionStatus(self):
649
+ return self._RegionStatus
650
+
651
+ @RegionStatus.setter
652
+ def RegionStatus(self, RegionStatus):
653
+ self._RegionStatus = RegionStatus
654
+
655
+ @property
656
+ def AppId(self):
657
+ return self._AppId
658
+
659
+ @AppId.setter
660
+ def AppId(self, AppId):
661
+ self._AppId = AppId
662
+
663
+ @property
664
+ def Uin(self):
665
+ return self._Uin
666
+
667
+ @Uin.setter
668
+ def Uin(self, Uin):
669
+ self._Uin = Uin
670
+
671
+ @property
672
+ def CustomerAuthName(self):
673
+ return self._CustomerAuthName
674
+
675
+ @CustomerAuthName.setter
676
+ def CustomerAuthName(self, CustomerAuthName):
677
+ self._CustomerAuthName = CustomerAuthName
678
+
679
+ @property
680
+ def DirectConnectId(self):
681
+ return self._DirectConnectId
682
+
683
+ @DirectConnectId.setter
684
+ def DirectConnectId(self, DirectConnectId):
685
+ self._DirectConnectId = DirectConnectId
686
+
687
+ @property
688
+ def CloudAttachServiceGatewaysSupport(self):
689
+ return self._CloudAttachServiceGatewaysSupport
690
+
691
+ @CloudAttachServiceGatewaysSupport.setter
692
+ def CloudAttachServiceGatewaysSupport(self, CloudAttachServiceGatewaysSupport):
693
+ self._CloudAttachServiceGatewaysSupport = CloudAttachServiceGatewaysSupport
694
+
695
+ @property
696
+ def BUpdateBandwidth(self):
697
+ return self._BUpdateBandwidth
698
+
699
+ @BUpdateBandwidth.setter
700
+ def BUpdateBandwidth(self, BUpdateBandwidth):
701
+ self._BUpdateBandwidth = BUpdateBandwidth
702
+
703
+
704
+ def _deserialize(self, params):
705
+ self._InstanceId = params.get("InstanceId")
706
+ self._Name = params.get("Name")
707
+ self._IapId = params.get("IapId")
708
+ self._IdcAddress = params.get("IdcAddress")
709
+ self._IdcType = params.get("IdcType")
710
+ self._Bandwidth = params.get("Bandwidth")
711
+ self._Telephone = params.get("Telephone")
712
+ self._Status = params.get("Status")
713
+ self._ApplyTime = params.get("ApplyTime")
714
+ self._ReadyTime = params.get("ReadyTime")
715
+ self._ExpireTime = params.get("ExpireTime")
716
+ self._Remarks = params.get("Remarks")
717
+ self._RegionStatus = params.get("RegionStatus")
718
+ self._AppId = params.get("AppId")
719
+ self._Uin = params.get("Uin")
720
+ self._CustomerAuthName = params.get("CustomerAuthName")
721
+ self._DirectConnectId = params.get("DirectConnectId")
722
+ self._CloudAttachServiceGatewaysSupport = params.get("CloudAttachServiceGatewaysSupport")
723
+ self._BUpdateBandwidth = params.get("BUpdateBandwidth")
724
+ memeber_set = set(params.keys())
725
+ for name, value in vars(self).items():
726
+ property_name = name[1:]
727
+ if property_name in memeber_set:
728
+ memeber_set.remove(property_name)
729
+ if len(memeber_set) > 0:
730
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
731
+
732
+
733
+
475
734
  class Coordinate(AbstractModel):
476
735
  """坐标,经维度描述
477
736
 
@@ -517,6 +776,173 @@ class Coordinate(AbstractModel):
517
776
 
518
777
 
519
778
 
779
+ class CreateCasInput(AbstractModel):
780
+ """创建敏捷上云入参
781
+
782
+ """
783
+
784
+ def __init__(self):
785
+ r"""
786
+ :param _Name: 敏捷上云名称
787
+ :type Name: str
788
+ :param _IdcAddress: 需要接入敏捷上云的IDC的地址
789
+ :type IdcAddress: str
790
+ :param _IdcType: 需要接入敏捷上云的IDC的互联网服务提供商类型
791
+ :type IdcType: str
792
+ :param _Bandwidth: 敏捷上云的带宽,单位为MB
793
+ :type Bandwidth: int
794
+ :param _Telephone: 联系电话
795
+ :type Telephone: str
796
+ :param _Remarks: 备注信息
797
+ :type Remarks: str
798
+ """
799
+ self._Name = None
800
+ self._IdcAddress = None
801
+ self._IdcType = None
802
+ self._Bandwidth = None
803
+ self._Telephone = None
804
+ self._Remarks = None
805
+
806
+ @property
807
+ def Name(self):
808
+ return self._Name
809
+
810
+ @Name.setter
811
+ def Name(self, Name):
812
+ self._Name = Name
813
+
814
+ @property
815
+ def IdcAddress(self):
816
+ return self._IdcAddress
817
+
818
+ @IdcAddress.setter
819
+ def IdcAddress(self, IdcAddress):
820
+ self._IdcAddress = IdcAddress
821
+
822
+ @property
823
+ def IdcType(self):
824
+ return self._IdcType
825
+
826
+ @IdcType.setter
827
+ def IdcType(self, IdcType):
828
+ self._IdcType = IdcType
829
+
830
+ @property
831
+ def Bandwidth(self):
832
+ return self._Bandwidth
833
+
834
+ @Bandwidth.setter
835
+ def Bandwidth(self, Bandwidth):
836
+ self._Bandwidth = Bandwidth
837
+
838
+ @property
839
+ def Telephone(self):
840
+ return self._Telephone
841
+
842
+ @Telephone.setter
843
+ def Telephone(self, Telephone):
844
+ self._Telephone = Telephone
845
+
846
+ @property
847
+ def Remarks(self):
848
+ return self._Remarks
849
+
850
+ @Remarks.setter
851
+ def Remarks(self, Remarks):
852
+ self._Remarks = Remarks
853
+
854
+
855
+ def _deserialize(self, params):
856
+ self._Name = params.get("Name")
857
+ self._IdcAddress = params.get("IdcAddress")
858
+ self._IdcType = params.get("IdcType")
859
+ self._Bandwidth = params.get("Bandwidth")
860
+ self._Telephone = params.get("Telephone")
861
+ self._Remarks = params.get("Remarks")
862
+ memeber_set = set(params.keys())
863
+ for name, value in vars(self).items():
864
+ property_name = name[1:]
865
+ if property_name in memeber_set:
866
+ memeber_set.remove(property_name)
867
+ if len(memeber_set) > 0:
868
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
869
+
870
+
871
+
872
+ class CreateCloudAttachServiceRequest(AbstractModel):
873
+ """CreateCloudAttachService请求参数结构体
874
+
875
+ """
876
+
877
+ def __init__(self):
878
+ r"""
879
+ :param _Data: 创建敏捷上云入参
880
+ :type Data: :class:`tencentcloud.dc.v20180410.models.CreateCasInput`
881
+ """
882
+ self._Data = None
883
+
884
+ @property
885
+ def Data(self):
886
+ return self._Data
887
+
888
+ @Data.setter
889
+ def Data(self, Data):
890
+ self._Data = Data
891
+
892
+
893
+ def _deserialize(self, params):
894
+ if params.get("Data") is not None:
895
+ self._Data = CreateCasInput()
896
+ self._Data._deserialize(params.get("Data"))
897
+ memeber_set = set(params.keys())
898
+ for name, value in vars(self).items():
899
+ property_name = name[1:]
900
+ if property_name in memeber_set:
901
+ memeber_set.remove(property_name)
902
+ if len(memeber_set) > 0:
903
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
904
+
905
+
906
+
907
+ class CreateCloudAttachServiceResponse(AbstractModel):
908
+ """CreateCloudAttachService返回参数结构体
909
+
910
+ """
911
+
912
+ def __init__(self):
913
+ r"""
914
+ :param _CloudAttach: 敏捷上云服务详情
915
+ :type CloudAttach: :class:`tencentcloud.dc.v20180410.models.CloudAttachInfo`
916
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
917
+ :type RequestId: str
918
+ """
919
+ self._CloudAttach = None
920
+ self._RequestId = None
921
+
922
+ @property
923
+ def CloudAttach(self):
924
+ return self._CloudAttach
925
+
926
+ @CloudAttach.setter
927
+ def CloudAttach(self, CloudAttach):
928
+ self._CloudAttach = CloudAttach
929
+
930
+ @property
931
+ def RequestId(self):
932
+ return self._RequestId
933
+
934
+ @RequestId.setter
935
+ def RequestId(self, RequestId):
936
+ self._RequestId = RequestId
937
+
938
+
939
+ def _deserialize(self, params):
940
+ if params.get("CloudAttach") is not None:
941
+ self._CloudAttach = CloudAttachInfo()
942
+ self._CloudAttach._deserialize(params.get("CloudAttach"))
943
+ self._RequestId = params.get("RequestId")
944
+
945
+
520
946
  class CreateDirectConnectRequest(AbstractModel):
521
947
  """CreateDirectConnect请求参数结构体
522
948
 
@@ -2165,6 +2165,29 @@ class DlcClient(AbstractClient):
2165
2165
  raise TencentCloudSDKException(type(e).__name__, str(e))
2166
2166
 
2167
2167
 
2168
+ def DescribeTasksAnalysis(self, request):
2169
+ """该接口用于洞察分析列表
2170
+
2171
+ :param request: Request instance for DescribeTasksAnalysis.
2172
+ :type request: :class:`tencentcloud.dlc.v20210125.models.DescribeTasksAnalysisRequest`
2173
+ :rtype: :class:`tencentcloud.dlc.v20210125.models.DescribeTasksAnalysisResponse`
2174
+
2175
+ """
2176
+ try:
2177
+ params = request._serialize()
2178
+ headers = request.headers
2179
+ body = self.call("DescribeTasksAnalysis", params, headers=headers)
2180
+ response = json.loads(body)
2181
+ model = models.DescribeTasksAnalysisResponse()
2182
+ model._deserialize(response["Response"])
2183
+ return model
2184
+ except Exception as e:
2185
+ if isinstance(e, TencentCloudSDKException):
2186
+ raise
2187
+ else:
2188
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2189
+
2190
+
2168
2191
  def DescribeTasksCostInfo(self, request):
2169
2192
  """该接口(DescribeTasksCostInfo)用于查询任务消耗
2170
2193