tencentcloud-sdk-python 3.0.1250__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/batch/v20170312/models.py +8 -1
- tencentcloud/ccc/v20200210/models.py +117 -0
- tencentcloud/cls/v20201016/cls_client.py +92 -0
- tencentcloud/cls/v20201016/models.py +688 -0
- tencentcloud/cynosdb/v20190107/models.py +13 -0
- tencentcloud/dc/v20180410/dc_client.py +23 -0
- tencentcloud/dc/v20180410/models.py +426 -0
- tencentcloud/emr/v20190103/errorcodes.py +1 -1
- tencentcloud/emr/v20190103/models.py +1 -93
- tencentcloud/ess/v20201111/models.py +4 -5
- tencentcloud/essbasic/v20210526/models.py +2 -3
- tencentcloud/faceid/v20180301/models.py +27 -0
- tencentcloud/gwlb/__init__.py +0 -0
- tencentcloud/gwlb/v20240906/__init__.py +0 -0
- tencentcloud/gwlb/v20240906/errorcodes.py +48 -0
- tencentcloud/gwlb/v20240906/gwlb_client.py +448 -0
- tencentcloud/gwlb/v20240906/models.py +2834 -0
- tencentcloud/privatedns/v20201028/errorcodes.py +18 -0
- tencentcloud/privatedns/v20201028/models.py +142 -0
- tencentcloud/privatedns/v20201028/privatedns_client.py +23 -0
- tencentcloud/sms/v20190711/errorcodes.py +3 -0
- tencentcloud/sms/v20210111/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +8 -5
- tencentcloud/tke/v20180525/models.py +2 -2
- tencentcloud/vclm/v20240523/models.py +12 -0
- tencentcloud/vtc/v20240223/models.py +12 -0
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/RECORD +32 -27
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1250.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
|
|
@@ -374,7 +374,7 @@ INVALIDPARAMETER_INVALIDTIMEUNIT = 'InvalidParameter.InvalidTimeUnit'
|
|
374
374
|
# 无效的Tke集群ID,或Tke集群不符合条件。
|
375
375
|
INVALIDPARAMETER_INVALIDTKEINSTANCE = 'InvalidParameter.InvalidTkeInstance'
|
376
376
|
|
377
|
-
#
|
377
|
+
# 父账号uin参数输入异常。
|
378
378
|
INVALIDPARAMETER_INVALIDUINNUM = 'InvalidParameter.InvalidUinNum'
|
379
379
|
|
380
380
|
# 无效的统一元数据库。
|
@@ -8152,99 +8152,7 @@ class DescribeYarnQueueResponse(AbstractModel):
|
|
8152
8152
|
|
8153
8153
|
def __init__(self):
|
8154
8154
|
r"""
|
8155
|
-
:param _Queue: 队列信息。是一个对象转成的json字符串,对应的golang
|
8156
|
-
|
8157
|
-
```
|
8158
|
-
Name string `json:"name"` //队列名称
|
8159
|
-
```
|
8160
|
-
- `Name`:字段名
|
8161
|
-
- `string`:字段类型
|
8162
|
-
- `json:"name"`:表示在序列化和反序列化`json`时,对应的`json key`,下面以`json key`来指代
|
8163
|
-
- `//`:后面的注释内容对应页面上看到的名称
|
8164
|
-
|
8165
|
-
字段类型以`*`开头的表示取值可能为json规范下的null,不同的语言需要使用能表达null的类型来接收,比如java的包装类型;字段类型以`[]`开头的表示是数组类型;`json key`在调用`ModifyYarnQueueV2 `接口也会使用。
|
8166
|
-
|
8167
|
-
- 公平调度器
|
8168
|
-
|
8169
|
-
```
|
8170
|
-
type QueueWithConfigSetForFairScheduler struct {
|
8171
|
-
Name string `json:"name"` //队列名称
|
8172
|
-
MyId string `json:"myId"` // 队列id,用于编辑、删除、克隆时使用
|
8173
|
-
ParentId string `json:"parentId"` // 父队列Id
|
8174
|
-
Type *string `json:"type"` // 队列归属。parent或空,当确定某个队列是父队列,且没有子队列时,才可以设置,通常用来支持放置策略nestedUserQueue
|
8175
|
-
AclSubmitApps *AclForYarnQueue `json:"aclSubmitApps"` // 提交访问控制
|
8176
|
-
AclAdministerApps *AclForYarnQueue `json:"aclAdministerApps"` // 管理访问控制
|
8177
|
-
MinSharePreemptionTimeout *int `json:"minSharePreemptionTimeout"` // 最小共享优先权超时时间
|
8178
|
-
FairSharePreemptionTimeout *int `json:"fairSharePreemptionTimeout"` // 公平份额抢占超时时间
|
8179
|
-
FairSharePreemptionThreshold *float32 `json:"fairSharePreemptionThreshold"` // 公平份额抢占阈值。取值 (0,1]
|
8180
|
-
AllowPreemptionFrom *bool `json:"allowPreemptionFrom"` // 抢占模式
|
8181
|
-
SchedulingPolicy *string `json:"schedulingPolicy"` // 调度策略,取值有drf、fair、fifo
|
8182
|
-
IsDefault *bool `json:"isDefault"` // 是否是root.default队列
|
8183
|
-
IsRoot *bool `json:"isRoot"` // 是否是root队列
|
8184
|
-
ConfigSets []ConfigSetForFairScheduler `json:"configSets"` // 配置集设置
|
8185
|
-
Children []QueueWithConfigSetForFairScheduler `json:"queues"` // 子队列信息。递归
|
8186
|
-
}
|
8187
|
-
|
8188
|
-
type AclForYarnQueue struct {
|
8189
|
-
User *string `json:"user"` //用户名
|
8190
|
-
Group *string `json:"group"`//组名
|
8191
|
-
}
|
8192
|
-
|
8193
|
-
type ConfigSetForFairScheduler struct {
|
8194
|
-
Name string `json:"name"` // 配置集名称
|
8195
|
-
MinResources *YarnResource `json:"minResources"` // 最小资源量
|
8196
|
-
MaxResources *YarnResource `json:"maxResources"` // 最大资源量
|
8197
|
-
MaxChildResources *YarnResource `json:"maxChildResources"` // 能够分配给为未声明子队列的最大资源量
|
8198
|
-
MaxRunningApps *int `json:"maxRunningApps"` // 最高可同时处于运行的App数量
|
8199
|
-
Weight *float32 `json:"weight"` // 权重
|
8200
|
-
MaxAMShare *float32 `json:"maxAMShare"` // App Master最大份额
|
8201
|
-
}
|
8202
|
-
|
8203
|
-
type YarnResource struct {
|
8204
|
-
Vcores *int `json:"vcores"`
|
8205
|
-
Memory *int `json:"memory"`
|
8206
|
-
Type *string `json:"type"` // 当值为`percent`时,表示使用的百分比,否则就是使用的绝对数值
|
8207
|
-
}
|
8208
|
-
```
|
8209
|
-
|
8210
|
-
- 容量调度器
|
8211
|
-
|
8212
|
-
```
|
8213
|
-
type QueueForCapacitySchedulerV3 struct {
|
8214
|
-
Name string `json:"name"` // 队列名称
|
8215
|
-
MyId string `json:"myId"` // 队列id,用于编辑、删除、克隆时使用
|
8216
|
-
ParentId string `json:"parentId"` // 父队列Id
|
8217
|
-
Configs []ConfigForCapacityV3 `json:"configs"` //配置集设置
|
8218
|
-
State *string `json:"state"` // 资源池状态
|
8219
|
-
DefaultNodeLabelExpression *string `json:"default-node-label-expression"` // 默认标签表达式
|
8220
|
-
AclSubmitApps *AclForYarnQueue `json:"acl_submit_applications"` // 提交访问控制
|
8221
|
-
AclAdminQueue *AclForYarnQueue `json:"acl_administer_queue"` //管理访问控制
|
8222
|
-
MaxAllocationMB *int32 `json:"maximum-allocation-mb"` // 分配Container最大内存数量
|
8223
|
-
MaxAllocationVcores *int32 `json:"maximum-allocation-vcores"` // Container最大vCore数量
|
8224
|
-
IsDefault *bool `json:"isDefault"`// 是否是root.default队列
|
8225
|
-
IsRoot *bool `json:"isRoot"` // 是否是root队列
|
8226
|
-
Queues []*QueueForCapacitySchedulerV3 `json:"queues"`//子队列信息。递归
|
8227
|
-
}
|
8228
|
-
type ConfigForCapacityV3 struct {
|
8229
|
-
Name string `json:"configName"` // 配置集名称
|
8230
|
-
Labels []CapacityLabel `json:"labels"` // 标签信息
|
8231
|
-
MinUserLimitPercent *int32 `json:"minimum-user-limit-percent"` // 用户最小容量
|
8232
|
-
UserLimitFactor *float32 `json:"user-limit-factor" valid:"rangeExcludeLeft(0|)"` // 用户资源因子
|
8233
|
-
MaxApps *int32 `json:"maximum-applications" valid:"rangeExcludeLeft(0|)"` // 最大应用数Max-Applications
|
8234
|
-
MaxAmPercent *float32 `json:"maximum-am-resource-percent"` // 最大AM比例
|
8235
|
-
DefaultApplicationPriority *int32 `json:"default-application-priority"` // 资源池优先级
|
8236
|
-
}
|
8237
|
-
type CapacityLabel struct {
|
8238
|
-
Name string `json:"labelName"`
|
8239
|
-
Capacity *float32 `json:"capacity"` // 容量
|
8240
|
-
MaxCapacity *float32 `json:"maximum-capacity"` //最大容量
|
8241
|
-
}
|
8242
|
-
|
8243
|
-
type AclForYarnQueue struct {
|
8244
|
-
User *string `json:"user"` //用户名
|
8245
|
-
Group *string `json:"group"`//组名
|
8246
|
-
}
|
8247
|
-
```
|
8155
|
+
:param _Queue: 队列信息。是一个对象转成的json字符串,对应的golang结构体如下所示,例如`QueueWithConfigSetForFairScheduler`的第一个字段`Name`:```Name string `json:"name"` //队列名称```- `Name`:字段名- `string`:字段类型- `json:"name"`:表示在序列化和反序列化`json`时,对应的`json key`,下面以`json key`来指代- `//`:后面的注释内容对应页面上看到的名称字段类型以`*`开头的表示取值可能为json规范下的null,不同的语言需要使用能表达null的类型来接收,例如java的包装类型;字段类型以`[]`开头的表示是数组类型;`json key`在调用`ModifyYarnQueueV2 `接口也会使用。- 公平调度器```type QueueWithConfigSetForFairScheduler struct { Name string `json:"name"` //队列名称 MyId string `json:"myId"` // 队列id,用于编辑、删除、克隆时使用 ParentId string `json:"parentId"` // 父队列Id Type *string `json:"type"` // 队列归属。parent或空,当确定某个队列是父队列,且没有子队列时,才可以设置,通常用来支持放置策略nestedUserQueue AclSubmitApps *AclForYarnQueue `json:"aclSubmitApps"` // 提交访问控制 AclAdministerApps *AclForYarnQueue `json:"aclAdministerApps"` // 管理访问控制 MinSharePreemptionTimeout *int `json:"minSharePreemptionTimeout"` // 最小共享优先权超时时间 FairSharePreemptionTimeout *int `json:"fairSharePreemptionTimeout"` // 公平份额抢占超时时间 FairSharePreemptionThreshold *float32 `json:"fairSharePreemptionThreshold"` // 公平份额抢占阈值。取值 (0,1] AllowPreemptionFrom *bool `json:"allowPreemptionFrom"` // 抢占模式 SchedulingPolicy *string `json:"schedulingPolicy"` // 调度策略,取值有drf、fair、fifo IsDefault *bool `json:"isDefault"` // 是否是root.default队列 IsRoot *bool `json:"isRoot"` // 是否是root队列 ConfigSets []ConfigSetForFairScheduler `json:"configSets"` // 配置集设置 Children []QueueWithConfigSetForFairScheduler `json:"queues"` // 子队列信息。递归}type AclForYarnQueue struct { User *string `json:"user"` //用户名 Group *string `json:"group"`//组名}type ConfigSetForFairScheduler struct { Name string `json:"name"` // 配置集名称 MinResources *YarnResource `json:"minResources"` // 最小资源量 MaxResources *YarnResource `json:"maxResources"` // 最大资源量 MaxChildResources *YarnResource `json:"maxChildResources"` // 能够分配给为未声明子队列的最大资源量 MaxRunningApps *int `json:"maxRunningApps"` // 最高可同时处于运行的App数量 Weight *float32 `json:"weight"` // 权重 MaxAMShare *float32 `json:"maxAMShare"` // App Master最大份额}type YarnResource struct { Vcores *int `json:"vcores"` Memory *int `json:"memory"` Type *string `json:"type"` // 当值为`percent`时,表示使用的百分比,否则就是使用的绝对数值}```- 容量调度器```type QueueForCapacitySchedulerV3 struct { Name string `json:"name"` // 队列名称 MyId string `json:"myId"` // 队列id,用于编辑、删除、克隆时使用 ParentId string `json:"parentId"` // 父队列Id Configs []ConfigForCapacityV3 `json:"configs"` //配置集设置 State *string `json:"state"` // 资源池状态 DefaultNodeLabelExpression *string `json:"default-node-label-expression"` // 默认标签表达式 AclSubmitApps *AclForYarnQueue `json:"acl_submit_applications"` // 提交访问控制 AclAdminQueue *AclForYarnQueue `json:"acl_administer_queue"` //管理访问控制 MaxAllocationMB *int32 `json:"maximum-allocation-mb"` // 分配Container最大内存数量 MaxAllocationVcores *int32 `json:"maximum-allocation-vcores"` // Container最大vCore数量 IsDefault *bool `json:"isDefault"`// 是否是root.default队列 IsRoot *bool `json:"isRoot"` // 是否是root队列 Queues []*QueueForCapacitySchedulerV3 `json:"queues"`//子队列信息。递归}type ConfigForCapacityV3 struct { Name string `json:"configName"` // 配置集名称 Labels []CapacityLabel `json:"labels"` // 标签信息 MinUserLimitPercent *int32 `json:"minimum-user-limit-percent"` // 用户最小容量 UserLimitFactor *float32 `json:"user-limit-factor" valid:"rangeExcludeLeft(0|)"` // 用户资源因子 MaxApps *int32 `json:"maximum-applications" valid:"rangeExcludeLeft(0|)"` // 最大应用数Max-Applications MaxAmPercent *float32 `json:"maximum-am-resource-percent"` // 最大AM比例 DefaultApplicationPriority *int32 `json:"default-application-priority"` // 资源池优先级}type CapacityLabel struct { Name string `json:"labelName"` Capacity *float32 `json:"capacity"` // 容量 MaxCapacity *float32 `json:"maximum-capacity"` //最大容量}type AclForYarnQueue struct { User *string `json:"user"` //用户名 Group *string `json:"group"`//组名}```
|
8248
8156
|
:type Queue: str
|
8249
8157
|
:param _Version: 版本
|
8250
8158
|
:type Version: str
|
@@ -1263,10 +1263,9 @@ class AutoSignConfig(AbstractModel):
|
|
1263
1263
|
<ul><li>如果是小程序开通链接,支持传 WEIXINAPP / TELECOM。为空默认 WEIXINAPP</li>
|
1264
1264
|
<li>如果是 H5 开通链接,支持传 INSIGHT / TELECOM。为空默认 INSIGHT </li></ul>
|
1265
1265
|
:type VerifyChannels: list of str
|
1266
|
-
:param _LicenseType:
|
1266
|
+
:param _LicenseType: 设置用户自动签合同的扣费方式。
|
1267
1267
|
|
1268
|
-
<ul><li
|
1269
|
-
<li>**1**: 不绑定自动签账号许可开通,后续使用合同份额进行合同发起</li></ul>
|
1268
|
+
<ul><li><b>1</b>: (默认)使用合同份额进行扣减</li></ul>
|
1270
1269
|
:type LicenseType: int
|
1271
1270
|
:param _JumpUrl: 开通成功后前端页面跳转的url,此字段的用法场景请联系客户经理确认。
|
1272
1271
|
|
@@ -20598,8 +20597,8 @@ class ModifyExtendedServiceResponse(AbstractModel):
|
|
20598
20597
|
<li><strong>有跳转链接返回的情况:</strong> 当操作类型为“OPEN”(开通服务),并且扩展服务类型为以下之一时, 系统将返回一个操作链接。当前操作人(超级管理员或法人)需要点击此链接,以完成服务的开通操作。
|
20599
20598
|
|
20600
20599
|
<ul>
|
20601
|
-
<li><strong>OPEN_SERVER_SIGN</strong
|
20602
|
-
<li><strong>OVERSEA_SIGN</strong
|
20600
|
+
<li><strong>OPEN_SERVER_SIGN</strong>(企业自动签署)</li>
|
20601
|
+
<li><strong>OVERSEA_SIGN</strong>(企业与港澳台居民签署合同)</li>
|
20603
20602
|
</ul></li></li>
|
20604
20603
|
</ul>
|
20605
20604
|
:type OperateUrl: str
|
@@ -611,8 +611,7 @@ class AutoSignConfig(AbstractModel):
|
|
611
611
|
:type VerifyChannels: list of str
|
612
612
|
:param _LicenseType: 设置用户开通自动签时是否绑定个人自动签账号许可。
|
613
613
|
|
614
|
-
<ul><li
|
615
|
-
<li>**1**: 不绑定自动签账号许可开通,后续使用合同份额进行合同发起</li></ul>
|
614
|
+
<ul><li><b>1</b>: (默认)不绑定自动签账号许可开通,开通后一直有效, 后续使用合同份额进行合同发起</li></ul>
|
616
615
|
:type LicenseType: int
|
617
616
|
:param _JumpUrl: 开通成功后前端页面跳转的url,此字段的用法场景请联系客户经理确认。
|
618
617
|
|
@@ -17624,7 +17623,7 @@ class ModifyExtendedServiceResponse(AbstractModel):
|
|
17624
17623
|
:param _OperateUrl: 操作跳转链接
|
17625
17624
|
<ul><li><strong>链接有效期:</strong> 跳转链接的有效期为24小时。</li>
|
17626
17625
|
<li><strong>没有返回链接的情形:</strong> 如果在操作时没有返回跳转链接,说明此次操作无需进行跳转,服务将会直接被开通或关闭。</li>
|
17627
|
-
<li><strong>返回链接的情形:</strong>
|
17626
|
+
<li><strong>返回链接的情形:</strong> 当操作类型为<b>OPEN(开通服务)</b>,并且扩展服务类型为<b>AUTO_SIGN( 企业自动签署)</b>、<b>DOWNLOAD_FLOW(授权渠道下载合同)</b>或<b>OVERSEA_SIGN(企业与港澳台居民签署合同)</b>时,系统将返回一个操作链接。收到操作链接后,贵方需主动联系超级管理员(超管)或法人。<font color="red"><b>由超管或法人点击链接</b></font>,以完成服务的开通操作。</li>
|
17628
17627
|
</ul>
|
17629
17628
|
|
17630
17629
|
|