tencentcloud-sdk-python 3.0.1144__py2.py3-none-any.whl → 3.0.1146__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/antiddos/v20200309/models.py +2 -2
- tencentcloud/asr/v20190614/models.py +5 -5
- tencentcloud/cdb/v20170320/models.py +23 -2
- tencentcloud/cdwdoris/v20211228/models.py +96 -0
- tencentcloud/clb/v20180317/models.py +12 -0
- tencentcloud/cynosdb/v20190107/models.py +511 -0
- tencentcloud/dsgc/v20190723/models.py +1 -1
- tencentcloud/dts/v20211206/models.py +1 -1
- tencentcloud/emr/v20190103/models.py +39 -0
- tencentcloud/es/v20180416/models.py +13 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +6 -79
- tencentcloud/essbasic/v20210526/models.py +2 -47
- tencentcloud/faceid/v20180301/models.py +2 -0
- tencentcloud/ocr/v20181119/errorcodes.py +3 -0
- tencentcloud/ocr/v20181119/models.py +101 -13
- tencentcloud/tione/v20191022/models.py +0 -84
- tencentcloud/tione/v20191022/tione_client.py +0 -23
- tencentcloud/tione/v20211111/errorcodes.py +6 -0
- tencentcloud/tione/v20211111/models.py +49 -0
- tencentcloud/tke/v20220501/models.py +1 -1
- tencentcloud/trtc/v20190722/models.py +12 -0
- tencentcloud/tse/v20201207/models.py +64 -0
- tencentcloud/vod/v20180717/models.py +3 -2
- {tencentcloud_sdk_python-3.0.1144.dist-info → tencentcloud_sdk_python-3.0.1146.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1144.dist-info → tencentcloud_sdk_python-3.0.1146.dist-info}/RECORD +29 -29
- {tencentcloud_sdk_python-3.0.1144.dist-info → tencentcloud_sdk_python-3.0.1146.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1144.dist-info → tencentcloud_sdk_python-3.0.1146.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1144.dist-info → tencentcloud_sdk_python-3.0.1146.dist-info}/top_level.txt +0 -0
@@ -2755,6 +2755,117 @@ class BizTaskModifyParamsData(AbstractModel):
|
|
2755
2755
|
|
2756
2756
|
|
2757
2757
|
|
2758
|
+
class CLSInfo(AbstractModel):
|
2759
|
+
"""CLS日志投递配置
|
2760
|
+
|
2761
|
+
"""
|
2762
|
+
|
2763
|
+
def __init__(self):
|
2764
|
+
r"""
|
2765
|
+
:param _TopicOperation: 日志主题操作:可选create,reuse。
|
2766
|
+
create:新增日志主题,使用TopicName创建日志主题。
|
2767
|
+
reuse:使用已有日志主题,使用TopicId指定日志主题。
|
2768
|
+
不允许使用已有日志主题且新建日志集的组合。
|
2769
|
+
:type TopicOperation: str
|
2770
|
+
:param _GroupOperation: 日志集操作:可选create,reuse。
|
2771
|
+
create:新增日志集,使用GroupName创建日志集。
|
2772
|
+
reuse:使用已有日志集,使用GroupId指定日志集。
|
2773
|
+
不允许使用已有日志主题且新建日志集的组合。
|
2774
|
+
:type GroupOperation: str
|
2775
|
+
:param _Region: 日志投递地域
|
2776
|
+
:type Region: str
|
2777
|
+
:param _TopicId: 日志主题id
|
2778
|
+
:type TopicId: str
|
2779
|
+
:param _TopicName: 日志主题name
|
2780
|
+
:type TopicName: str
|
2781
|
+
:param _GroupId: 日志集id
|
2782
|
+
:type GroupId: str
|
2783
|
+
:param _GroupName: 日志集name
|
2784
|
+
:type GroupName: str
|
2785
|
+
"""
|
2786
|
+
self._TopicOperation = None
|
2787
|
+
self._GroupOperation = None
|
2788
|
+
self._Region = None
|
2789
|
+
self._TopicId = None
|
2790
|
+
self._TopicName = None
|
2791
|
+
self._GroupId = None
|
2792
|
+
self._GroupName = None
|
2793
|
+
|
2794
|
+
@property
|
2795
|
+
def TopicOperation(self):
|
2796
|
+
return self._TopicOperation
|
2797
|
+
|
2798
|
+
@TopicOperation.setter
|
2799
|
+
def TopicOperation(self, TopicOperation):
|
2800
|
+
self._TopicOperation = TopicOperation
|
2801
|
+
|
2802
|
+
@property
|
2803
|
+
def GroupOperation(self):
|
2804
|
+
return self._GroupOperation
|
2805
|
+
|
2806
|
+
@GroupOperation.setter
|
2807
|
+
def GroupOperation(self, GroupOperation):
|
2808
|
+
self._GroupOperation = GroupOperation
|
2809
|
+
|
2810
|
+
@property
|
2811
|
+
def Region(self):
|
2812
|
+
return self._Region
|
2813
|
+
|
2814
|
+
@Region.setter
|
2815
|
+
def Region(self, Region):
|
2816
|
+
self._Region = Region
|
2817
|
+
|
2818
|
+
@property
|
2819
|
+
def TopicId(self):
|
2820
|
+
return self._TopicId
|
2821
|
+
|
2822
|
+
@TopicId.setter
|
2823
|
+
def TopicId(self, TopicId):
|
2824
|
+
self._TopicId = TopicId
|
2825
|
+
|
2826
|
+
@property
|
2827
|
+
def TopicName(self):
|
2828
|
+
return self._TopicName
|
2829
|
+
|
2830
|
+
@TopicName.setter
|
2831
|
+
def TopicName(self, TopicName):
|
2832
|
+
self._TopicName = TopicName
|
2833
|
+
|
2834
|
+
@property
|
2835
|
+
def GroupId(self):
|
2836
|
+
return self._GroupId
|
2837
|
+
|
2838
|
+
@GroupId.setter
|
2839
|
+
def GroupId(self, GroupId):
|
2840
|
+
self._GroupId = GroupId
|
2841
|
+
|
2842
|
+
@property
|
2843
|
+
def GroupName(self):
|
2844
|
+
return self._GroupName
|
2845
|
+
|
2846
|
+
@GroupName.setter
|
2847
|
+
def GroupName(self, GroupName):
|
2848
|
+
self._GroupName = GroupName
|
2849
|
+
|
2850
|
+
|
2851
|
+
def _deserialize(self, params):
|
2852
|
+
self._TopicOperation = params.get("TopicOperation")
|
2853
|
+
self._GroupOperation = params.get("GroupOperation")
|
2854
|
+
self._Region = params.get("Region")
|
2855
|
+
self._TopicId = params.get("TopicId")
|
2856
|
+
self._TopicName = params.get("TopicName")
|
2857
|
+
self._GroupId = params.get("GroupId")
|
2858
|
+
self._GroupName = params.get("GroupName")
|
2859
|
+
memeber_set = set(params.keys())
|
2860
|
+
for name, value in vars(self).items():
|
2861
|
+
property_name = name[1:]
|
2862
|
+
if property_name in memeber_set:
|
2863
|
+
memeber_set.remove(property_name)
|
2864
|
+
if len(memeber_set) > 0:
|
2865
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2866
|
+
|
2867
|
+
|
2868
|
+
|
2758
2869
|
class CloseAuditServiceRequest(AbstractModel):
|
2759
2870
|
"""CloseAuditService请求参数结构体
|
2760
2871
|
|
@@ -4055,6 +4166,50 @@ class CreateCLSDeliveryRequest(AbstractModel):
|
|
4055
4166
|
|
4056
4167
|
"""
|
4057
4168
|
|
4169
|
+
def __init__(self):
|
4170
|
+
r"""
|
4171
|
+
:param _InstanceId: 实例id
|
4172
|
+
:type InstanceId: str
|
4173
|
+
:param _CLSInfoList: 日志投递配置
|
4174
|
+
:type CLSInfoList: list of CLSInfo
|
4175
|
+
"""
|
4176
|
+
self._InstanceId = None
|
4177
|
+
self._CLSInfoList = None
|
4178
|
+
|
4179
|
+
@property
|
4180
|
+
def InstanceId(self):
|
4181
|
+
return self._InstanceId
|
4182
|
+
|
4183
|
+
@InstanceId.setter
|
4184
|
+
def InstanceId(self, InstanceId):
|
4185
|
+
self._InstanceId = InstanceId
|
4186
|
+
|
4187
|
+
@property
|
4188
|
+
def CLSInfoList(self):
|
4189
|
+
return self._CLSInfoList
|
4190
|
+
|
4191
|
+
@CLSInfoList.setter
|
4192
|
+
def CLSInfoList(self, CLSInfoList):
|
4193
|
+
self._CLSInfoList = CLSInfoList
|
4194
|
+
|
4195
|
+
|
4196
|
+
def _deserialize(self, params):
|
4197
|
+
self._InstanceId = params.get("InstanceId")
|
4198
|
+
if params.get("CLSInfoList") is not None:
|
4199
|
+
self._CLSInfoList = []
|
4200
|
+
for item in params.get("CLSInfoList"):
|
4201
|
+
obj = CLSInfo()
|
4202
|
+
obj._deserialize(item)
|
4203
|
+
self._CLSInfoList.append(obj)
|
4204
|
+
memeber_set = set(params.keys())
|
4205
|
+
for name, value in vars(self).items():
|
4206
|
+
property_name = name[1:]
|
4207
|
+
if property_name in memeber_set:
|
4208
|
+
memeber_set.remove(property_name)
|
4209
|
+
if len(memeber_set) > 0:
|
4210
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
4211
|
+
|
4212
|
+
|
4058
4213
|
|
4059
4214
|
class CreateCLSDeliveryResponse(AbstractModel):
|
4060
4215
|
"""CreateCLSDelivery返回参数结构体
|
@@ -4063,11 +4218,22 @@ class CreateCLSDeliveryResponse(AbstractModel):
|
|
4063
4218
|
|
4064
4219
|
def __init__(self):
|
4065
4220
|
r"""
|
4221
|
+
:param _TaskId: 异步任务id
|
4222
|
+
:type TaskId: int
|
4066
4223
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4067
4224
|
:type RequestId: str
|
4068
4225
|
"""
|
4226
|
+
self._TaskId = None
|
4069
4227
|
self._RequestId = None
|
4070
4228
|
|
4229
|
+
@property
|
4230
|
+
def TaskId(self):
|
4231
|
+
return self._TaskId
|
4232
|
+
|
4233
|
+
@TaskId.setter
|
4234
|
+
def TaskId(self, TaskId):
|
4235
|
+
self._TaskId = TaskId
|
4236
|
+
|
4071
4237
|
@property
|
4072
4238
|
def RequestId(self):
|
4073
4239
|
return self._RequestId
|
@@ -4078,6 +4244,7 @@ class CreateCLSDeliveryResponse(AbstractModel):
|
|
4078
4244
|
|
4079
4245
|
|
4080
4246
|
def _deserialize(self, params):
|
4247
|
+
self._TaskId = params.get("TaskId")
|
4081
4248
|
self._RequestId = params.get("RequestId")
|
4082
4249
|
|
4083
4250
|
|
@@ -9411,6 +9578,45 @@ class DeleteCLSDeliveryRequest(AbstractModel):
|
|
9411
9578
|
|
9412
9579
|
"""
|
9413
9580
|
|
9581
|
+
def __init__(self):
|
9582
|
+
r"""
|
9583
|
+
:param _InstanceId: 实例id
|
9584
|
+
:type InstanceId: str
|
9585
|
+
:param _CLSTopicIds: 日志主题id
|
9586
|
+
:type CLSTopicIds: list of str
|
9587
|
+
"""
|
9588
|
+
self._InstanceId = None
|
9589
|
+
self._CLSTopicIds = None
|
9590
|
+
|
9591
|
+
@property
|
9592
|
+
def InstanceId(self):
|
9593
|
+
return self._InstanceId
|
9594
|
+
|
9595
|
+
@InstanceId.setter
|
9596
|
+
def InstanceId(self, InstanceId):
|
9597
|
+
self._InstanceId = InstanceId
|
9598
|
+
|
9599
|
+
@property
|
9600
|
+
def CLSTopicIds(self):
|
9601
|
+
return self._CLSTopicIds
|
9602
|
+
|
9603
|
+
@CLSTopicIds.setter
|
9604
|
+
def CLSTopicIds(self, CLSTopicIds):
|
9605
|
+
self._CLSTopicIds = CLSTopicIds
|
9606
|
+
|
9607
|
+
|
9608
|
+
def _deserialize(self, params):
|
9609
|
+
self._InstanceId = params.get("InstanceId")
|
9610
|
+
self._CLSTopicIds = params.get("CLSTopicIds")
|
9611
|
+
memeber_set = set(params.keys())
|
9612
|
+
for name, value in vars(self).items():
|
9613
|
+
property_name = name[1:]
|
9614
|
+
if property_name in memeber_set:
|
9615
|
+
memeber_set.remove(property_name)
|
9616
|
+
if len(memeber_set) > 0:
|
9617
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
9618
|
+
|
9619
|
+
|
9414
9620
|
|
9415
9621
|
class DeleteCLSDeliveryResponse(AbstractModel):
|
9416
9622
|
"""DeleteCLSDelivery返回参数结构体
|
@@ -9419,11 +9625,23 @@ class DeleteCLSDeliveryResponse(AbstractModel):
|
|
9419
9625
|
|
9420
9626
|
def __init__(self):
|
9421
9627
|
r"""
|
9628
|
+
:param _TaskId: 异步任务id
|
9629
|
+
|
9630
|
+
:type TaskId: int
|
9422
9631
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9423
9632
|
:type RequestId: str
|
9424
9633
|
"""
|
9634
|
+
self._TaskId = None
|
9425
9635
|
self._RequestId = None
|
9426
9636
|
|
9637
|
+
@property
|
9638
|
+
def TaskId(self):
|
9639
|
+
return self._TaskId
|
9640
|
+
|
9641
|
+
@TaskId.setter
|
9642
|
+
def TaskId(self, TaskId):
|
9643
|
+
self._TaskId = TaskId
|
9644
|
+
|
9427
9645
|
@property
|
9428
9646
|
def RequestId(self):
|
9429
9647
|
return self._RequestId
|
@@ -9434,6 +9652,7 @@ class DeleteCLSDeliveryResponse(AbstractModel):
|
|
9434
9652
|
|
9435
9653
|
|
9436
9654
|
def _deserialize(self, params):
|
9655
|
+
self._TaskId = params.get("TaskId")
|
9437
9656
|
self._RequestId = params.get("RequestId")
|
9438
9657
|
|
9439
9658
|
|
@@ -12807,6 +13026,33 @@ class DescribeInstanceCLSLogDeliveryRequest(AbstractModel):
|
|
12807
13026
|
|
12808
13027
|
"""
|
12809
13028
|
|
13029
|
+
def __init__(self):
|
13030
|
+
r"""
|
13031
|
+
:param _InstanceId: 实例id
|
13032
|
+
:type InstanceId: str
|
13033
|
+
"""
|
13034
|
+
self._InstanceId = None
|
13035
|
+
|
13036
|
+
@property
|
13037
|
+
def InstanceId(self):
|
13038
|
+
return self._InstanceId
|
13039
|
+
|
13040
|
+
@InstanceId.setter
|
13041
|
+
def InstanceId(self, InstanceId):
|
13042
|
+
self._InstanceId = InstanceId
|
13043
|
+
|
13044
|
+
|
13045
|
+
def _deserialize(self, params):
|
13046
|
+
self._InstanceId = params.get("InstanceId")
|
13047
|
+
memeber_set = set(params.keys())
|
13048
|
+
for name, value in vars(self).items():
|
13049
|
+
property_name = name[1:]
|
13050
|
+
if property_name in memeber_set:
|
13051
|
+
memeber_set.remove(property_name)
|
13052
|
+
if len(memeber_set) > 0:
|
13053
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13054
|
+
|
13055
|
+
|
12810
13056
|
|
12811
13057
|
class DescribeInstanceCLSLogDeliveryResponse(AbstractModel):
|
12812
13058
|
"""DescribeInstanceCLSLogDelivery返回参数结构体
|
@@ -12815,11 +13061,35 @@ class DescribeInstanceCLSLogDeliveryResponse(AbstractModel):
|
|
12815
13061
|
|
12816
13062
|
def __init__(self):
|
12817
13063
|
r"""
|
13064
|
+
:param _TotalCount: 总数量
|
13065
|
+
|
13066
|
+
:type TotalCount: int
|
13067
|
+
:param _InstanceCLSDeliveryInfos: 实例投递信息
|
13068
|
+
|
13069
|
+
:type InstanceCLSDeliveryInfos: list of InstanceCLSDeliveryInfo
|
12818
13070
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12819
13071
|
:type RequestId: str
|
12820
13072
|
"""
|
13073
|
+
self._TotalCount = None
|
13074
|
+
self._InstanceCLSDeliveryInfos = None
|
12821
13075
|
self._RequestId = None
|
12822
13076
|
|
13077
|
+
@property
|
13078
|
+
def TotalCount(self):
|
13079
|
+
return self._TotalCount
|
13080
|
+
|
13081
|
+
@TotalCount.setter
|
13082
|
+
def TotalCount(self, TotalCount):
|
13083
|
+
self._TotalCount = TotalCount
|
13084
|
+
|
13085
|
+
@property
|
13086
|
+
def InstanceCLSDeliveryInfos(self):
|
13087
|
+
return self._InstanceCLSDeliveryInfos
|
13088
|
+
|
13089
|
+
@InstanceCLSDeliveryInfos.setter
|
13090
|
+
def InstanceCLSDeliveryInfos(self, InstanceCLSDeliveryInfos):
|
13091
|
+
self._InstanceCLSDeliveryInfos = InstanceCLSDeliveryInfos
|
13092
|
+
|
12823
13093
|
@property
|
12824
13094
|
def RequestId(self):
|
12825
13095
|
return self._RequestId
|
@@ -12830,6 +13100,13 @@ class DescribeInstanceCLSLogDeliveryResponse(AbstractModel):
|
|
12830
13100
|
|
12831
13101
|
|
12832
13102
|
def _deserialize(self, params):
|
13103
|
+
self._TotalCount = params.get("TotalCount")
|
13104
|
+
if params.get("InstanceCLSDeliveryInfos") is not None:
|
13105
|
+
self._InstanceCLSDeliveryInfos = []
|
13106
|
+
for item in params.get("InstanceCLSDeliveryInfos"):
|
13107
|
+
obj = InstanceCLSDeliveryInfo()
|
13108
|
+
obj._deserialize(item)
|
13109
|
+
self._InstanceCLSDeliveryInfos.append(obj)
|
12833
13110
|
self._RequestId = params.get("RequestId")
|
12834
13111
|
|
12835
13112
|
|
@@ -17151,6 +17428,137 @@ class InstanceAuditStatus(AbstractModel):
|
|
17151
17428
|
|
17152
17429
|
|
17153
17430
|
|
17431
|
+
class InstanceCLSDeliveryInfo(AbstractModel):
|
17432
|
+
"""实例日志投递信息
|
17433
|
+
|
17434
|
+
"""
|
17435
|
+
|
17436
|
+
def __init__(self):
|
17437
|
+
r"""
|
17438
|
+
:param _InstanceId: 实例id
|
17439
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
17440
|
+
:type InstanceId: str
|
17441
|
+
:param _InstanceName: 实例name
|
17442
|
+
|
17443
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
17444
|
+
:type InstanceName: str
|
17445
|
+
:param _TopicId: 日志主题id
|
17446
|
+
|
17447
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
17448
|
+
:type TopicId: str
|
17449
|
+
:param _TopicName: 日志主题name
|
17450
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
17451
|
+
:type TopicName: str
|
17452
|
+
:param _GroupId: 日志集id
|
17453
|
+
|
17454
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
17455
|
+
:type GroupId: str
|
17456
|
+
:param _GroupName: 日志集name
|
17457
|
+
|
17458
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
17459
|
+
:type GroupName: str
|
17460
|
+
:param _Region: 日志投递地域
|
17461
|
+
|
17462
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
17463
|
+
:type Region: str
|
17464
|
+
:param _Status: 投递状态creating,running,offlining,offlined
|
17465
|
+
|
17466
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
17467
|
+
:type Status: str
|
17468
|
+
"""
|
17469
|
+
self._InstanceId = None
|
17470
|
+
self._InstanceName = None
|
17471
|
+
self._TopicId = None
|
17472
|
+
self._TopicName = None
|
17473
|
+
self._GroupId = None
|
17474
|
+
self._GroupName = None
|
17475
|
+
self._Region = None
|
17476
|
+
self._Status = None
|
17477
|
+
|
17478
|
+
@property
|
17479
|
+
def InstanceId(self):
|
17480
|
+
return self._InstanceId
|
17481
|
+
|
17482
|
+
@InstanceId.setter
|
17483
|
+
def InstanceId(self, InstanceId):
|
17484
|
+
self._InstanceId = InstanceId
|
17485
|
+
|
17486
|
+
@property
|
17487
|
+
def InstanceName(self):
|
17488
|
+
return self._InstanceName
|
17489
|
+
|
17490
|
+
@InstanceName.setter
|
17491
|
+
def InstanceName(self, InstanceName):
|
17492
|
+
self._InstanceName = InstanceName
|
17493
|
+
|
17494
|
+
@property
|
17495
|
+
def TopicId(self):
|
17496
|
+
return self._TopicId
|
17497
|
+
|
17498
|
+
@TopicId.setter
|
17499
|
+
def TopicId(self, TopicId):
|
17500
|
+
self._TopicId = TopicId
|
17501
|
+
|
17502
|
+
@property
|
17503
|
+
def TopicName(self):
|
17504
|
+
return self._TopicName
|
17505
|
+
|
17506
|
+
@TopicName.setter
|
17507
|
+
def TopicName(self, TopicName):
|
17508
|
+
self._TopicName = TopicName
|
17509
|
+
|
17510
|
+
@property
|
17511
|
+
def GroupId(self):
|
17512
|
+
return self._GroupId
|
17513
|
+
|
17514
|
+
@GroupId.setter
|
17515
|
+
def GroupId(self, GroupId):
|
17516
|
+
self._GroupId = GroupId
|
17517
|
+
|
17518
|
+
@property
|
17519
|
+
def GroupName(self):
|
17520
|
+
return self._GroupName
|
17521
|
+
|
17522
|
+
@GroupName.setter
|
17523
|
+
def GroupName(self, GroupName):
|
17524
|
+
self._GroupName = GroupName
|
17525
|
+
|
17526
|
+
@property
|
17527
|
+
def Region(self):
|
17528
|
+
return self._Region
|
17529
|
+
|
17530
|
+
@Region.setter
|
17531
|
+
def Region(self, Region):
|
17532
|
+
self._Region = Region
|
17533
|
+
|
17534
|
+
@property
|
17535
|
+
def Status(self):
|
17536
|
+
return self._Status
|
17537
|
+
|
17538
|
+
@Status.setter
|
17539
|
+
def Status(self, Status):
|
17540
|
+
self._Status = Status
|
17541
|
+
|
17542
|
+
|
17543
|
+
def _deserialize(self, params):
|
17544
|
+
self._InstanceId = params.get("InstanceId")
|
17545
|
+
self._InstanceName = params.get("InstanceName")
|
17546
|
+
self._TopicId = params.get("TopicId")
|
17547
|
+
self._TopicName = params.get("TopicName")
|
17548
|
+
self._GroupId = params.get("GroupId")
|
17549
|
+
self._GroupName = params.get("GroupName")
|
17550
|
+
self._Region = params.get("Region")
|
17551
|
+
self._Status = params.get("Status")
|
17552
|
+
memeber_set = set(params.keys())
|
17553
|
+
for name, value in vars(self).items():
|
17554
|
+
property_name = name[1:]
|
17555
|
+
if property_name in memeber_set:
|
17556
|
+
memeber_set.remove(property_name)
|
17557
|
+
if len(memeber_set) > 0:
|
17558
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
17559
|
+
|
17560
|
+
|
17561
|
+
|
17154
17562
|
class InstanceInitInfo(AbstractModel):
|
17155
17563
|
"""实例初始化配置信息
|
17156
17564
|
|
@@ -27391,6 +27799,45 @@ class StartCLSDeliveryRequest(AbstractModel):
|
|
27391
27799
|
|
27392
27800
|
"""
|
27393
27801
|
|
27802
|
+
def __init__(self):
|
27803
|
+
r"""
|
27804
|
+
:param _InstanceId: 实例id
|
27805
|
+
:type InstanceId: str
|
27806
|
+
:param _CLSTopicIds: 开通的日志主题id
|
27807
|
+
:type CLSTopicIds: list of str
|
27808
|
+
"""
|
27809
|
+
self._InstanceId = None
|
27810
|
+
self._CLSTopicIds = None
|
27811
|
+
|
27812
|
+
@property
|
27813
|
+
def InstanceId(self):
|
27814
|
+
return self._InstanceId
|
27815
|
+
|
27816
|
+
@InstanceId.setter
|
27817
|
+
def InstanceId(self, InstanceId):
|
27818
|
+
self._InstanceId = InstanceId
|
27819
|
+
|
27820
|
+
@property
|
27821
|
+
def CLSTopicIds(self):
|
27822
|
+
return self._CLSTopicIds
|
27823
|
+
|
27824
|
+
@CLSTopicIds.setter
|
27825
|
+
def CLSTopicIds(self, CLSTopicIds):
|
27826
|
+
self._CLSTopicIds = CLSTopicIds
|
27827
|
+
|
27828
|
+
|
27829
|
+
def _deserialize(self, params):
|
27830
|
+
self._InstanceId = params.get("InstanceId")
|
27831
|
+
self._CLSTopicIds = params.get("CLSTopicIds")
|
27832
|
+
memeber_set = set(params.keys())
|
27833
|
+
for name, value in vars(self).items():
|
27834
|
+
property_name = name[1:]
|
27835
|
+
if property_name in memeber_set:
|
27836
|
+
memeber_set.remove(property_name)
|
27837
|
+
if len(memeber_set) > 0:
|
27838
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
27839
|
+
|
27840
|
+
|
27394
27841
|
|
27395
27842
|
class StartCLSDeliveryResponse(AbstractModel):
|
27396
27843
|
"""StartCLSDelivery返回参数结构体
|
@@ -27399,11 +27846,22 @@ class StartCLSDeliveryResponse(AbstractModel):
|
|
27399
27846
|
|
27400
27847
|
def __init__(self):
|
27401
27848
|
r"""
|
27849
|
+
:param _TaskId: 异步任务id
|
27850
|
+
:type TaskId: int
|
27402
27851
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
27403
27852
|
:type RequestId: str
|
27404
27853
|
"""
|
27854
|
+
self._TaskId = None
|
27405
27855
|
self._RequestId = None
|
27406
27856
|
|
27857
|
+
@property
|
27858
|
+
def TaskId(self):
|
27859
|
+
return self._TaskId
|
27860
|
+
|
27861
|
+
@TaskId.setter
|
27862
|
+
def TaskId(self, TaskId):
|
27863
|
+
self._TaskId = TaskId
|
27864
|
+
|
27407
27865
|
@property
|
27408
27866
|
def RequestId(self):
|
27409
27867
|
return self._RequestId
|
@@ -27414,6 +27872,7 @@ class StartCLSDeliveryResponse(AbstractModel):
|
|
27414
27872
|
|
27415
27873
|
|
27416
27874
|
def _deserialize(self, params):
|
27875
|
+
self._TaskId = params.get("TaskId")
|
27417
27876
|
self._RequestId = params.get("RequestId")
|
27418
27877
|
|
27419
27878
|
|
@@ -27422,6 +27881,45 @@ class StopCLSDeliveryRequest(AbstractModel):
|
|
27422
27881
|
|
27423
27882
|
"""
|
27424
27883
|
|
27884
|
+
def __init__(self):
|
27885
|
+
r"""
|
27886
|
+
:param _InstanceId: 实例id
|
27887
|
+
:type InstanceId: str
|
27888
|
+
:param _CLSTopicIds: 日志主题id
|
27889
|
+
:type CLSTopicIds: list of str
|
27890
|
+
"""
|
27891
|
+
self._InstanceId = None
|
27892
|
+
self._CLSTopicIds = None
|
27893
|
+
|
27894
|
+
@property
|
27895
|
+
def InstanceId(self):
|
27896
|
+
return self._InstanceId
|
27897
|
+
|
27898
|
+
@InstanceId.setter
|
27899
|
+
def InstanceId(self, InstanceId):
|
27900
|
+
self._InstanceId = InstanceId
|
27901
|
+
|
27902
|
+
@property
|
27903
|
+
def CLSTopicIds(self):
|
27904
|
+
return self._CLSTopicIds
|
27905
|
+
|
27906
|
+
@CLSTopicIds.setter
|
27907
|
+
def CLSTopicIds(self, CLSTopicIds):
|
27908
|
+
self._CLSTopicIds = CLSTopicIds
|
27909
|
+
|
27910
|
+
|
27911
|
+
def _deserialize(self, params):
|
27912
|
+
self._InstanceId = params.get("InstanceId")
|
27913
|
+
self._CLSTopicIds = params.get("CLSTopicIds")
|
27914
|
+
memeber_set = set(params.keys())
|
27915
|
+
for name, value in vars(self).items():
|
27916
|
+
property_name = name[1:]
|
27917
|
+
if property_name in memeber_set:
|
27918
|
+
memeber_set.remove(property_name)
|
27919
|
+
if len(memeber_set) > 0:
|
27920
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
27921
|
+
|
27922
|
+
|
27425
27923
|
|
27426
27924
|
class StopCLSDeliveryResponse(AbstractModel):
|
27427
27925
|
"""StopCLSDelivery返回参数结构体
|
@@ -27430,11 +27928,23 @@ class StopCLSDeliveryResponse(AbstractModel):
|
|
27430
27928
|
|
27431
27929
|
def __init__(self):
|
27432
27930
|
r"""
|
27931
|
+
:param _TaskId: 异步任务id
|
27932
|
+
|
27933
|
+
:type TaskId: int
|
27433
27934
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
27434
27935
|
:type RequestId: str
|
27435
27936
|
"""
|
27937
|
+
self._TaskId = None
|
27436
27938
|
self._RequestId = None
|
27437
27939
|
|
27940
|
+
@property
|
27941
|
+
def TaskId(self):
|
27942
|
+
return self._TaskId
|
27943
|
+
|
27944
|
+
@TaskId.setter
|
27945
|
+
def TaskId(self, TaskId):
|
27946
|
+
self._TaskId = TaskId
|
27947
|
+
|
27438
27948
|
@property
|
27439
27949
|
def RequestId(self):
|
27440
27950
|
return self._RequestId
|
@@ -27445,6 +27955,7 @@ class StopCLSDeliveryResponse(AbstractModel):
|
|
27445
27955
|
|
27446
27956
|
|
27447
27957
|
def _deserialize(self, params):
|
27958
|
+
self._TaskId = params.get("TaskId")
|
27448
27959
|
self._RequestId = params.get("RequestId")
|
27449
27960
|
|
27450
27961
|
|
@@ -18709,7 +18709,7 @@ class DspaDiscoveryTaskDataSource(AbstractModel):
|
|
18709
18709
|
:param _ResourceRegion: 资源所在地域
|
18710
18710
|
注意:此字段可能返回 null,表示取不到有效值。
|
18711
18711
|
:type ResourceRegion: str
|
18712
|
-
:param _DataSourceType:
|
18712
|
+
:param _DataSourceType: 数据源类型
|
18713
18713
|
注意:此字段可能返回 null,表示取不到有效值。
|
18714
18714
|
:type DataSourceType: str
|
18715
18715
|
"""
|
@@ -2063,7 +2063,7 @@ class CreateCompareTaskRequest(AbstractModel):
|
|
2063
2063
|
:type TaskName: str
|
2064
2064
|
:param _ObjectMode: 数据对比对象模式,sameAsMigrate(全部迁移对象, 默认为此项配置),custom(自定义模式)
|
2065
2065
|
:type ObjectMode: str
|
2066
|
-
:param _Objects:
|
2066
|
+
:param _Objects: 数据对比对象,当ObjectMode为custom时,此项需要填写。
|
2067
2067
|
:type Objects: :class:`tencentcloud.dts.v20211206.models.CompareObject`
|
2068
2068
|
:param _Options: 一致性校验选项
|
2069
2069
|
:type Options: :class:`tencentcloud.dts.v20211206.models.CompareOptions`
|