tencentcloud-sdk-python 3.0.1166__py2.py3-none-any.whl → 3.0.1168__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/asr/v20190614/asr_client.py +8 -7
- tencentcloud/asr/v20190614/models.py +9 -3
- tencentcloud/billing/v20180709/models.py +2 -2
- tencentcloud/ccc/v20200210/models.py +1 -1
- tencentcloud/cdwdoris/v20211228/models.py +26 -0
- tencentcloud/cls/v20201016/models.py +12 -0
- tencentcloud/dc/v20180410/dc_client.py +1 -1
- tencentcloud/dc/v20180410/models.py +24 -8
- tencentcloud/domain/v20180808/errorcodes.py +3 -0
- tencentcloud/domain/v20180808/models.py +6 -6
- tencentcloud/dsgc/v20190723/models.py +12 -0
- tencentcloud/dts/v20180330/dts_client.py +3 -1
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +556 -0
- tencentcloud/es/v20180416/models.py +13 -0
- tencentcloud/ess/v20201111/ess_client.py +3 -4
- tencentcloud/ess/v20201111/models.py +19 -4
- tencentcloud/essbasic/v20210526/essbasic_client.py +6 -4
- tencentcloud/essbasic/v20210526/models.py +100 -5
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +0 -48
- tencentcloud/hunyuan/v20230901/models.py +2 -446
- tencentcloud/iotexplorer/v20190423/models.py +12 -0
- tencentcloud/monitor/v20180724/monitor_client.py +8 -4
- tencentcloud/mps/v20190612/models.py +198 -0
- tencentcloud/mrs/v20200910/models.py +325 -0
- tencentcloud/ocr/v20181119/models.py +1 -0
- tencentcloud/organization/v20210331/errorcodes.py +3 -0
- tencentcloud/organization/v20210331/models.py +37 -0
- tencentcloud/rce/v20201103/models.py +21 -13
- tencentcloud/redis/v20180412/models.py +25 -13
- tencentcloud/redis/v20180412/redis_client.py +1 -1
- tencentcloud/tke/v20180525/models.py +9 -2
- tencentcloud/tmt/v20180321/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +139 -0
- tencentcloud/waf/v20180125/waf_client.py +46 -0
- tencentcloud/wedata/v20210820/models.py +172 -0
- {tencentcloud_sdk_python-3.0.1166.dist-info → tencentcloud_sdk_python-3.0.1168.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1166.dist-info → tencentcloud_sdk_python-3.0.1168.dist-info}/RECORD +42 -42
- {tencentcloud_sdk_python-3.0.1166.dist-info → tencentcloud_sdk_python-3.0.1168.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1166.dist-info → tencentcloud_sdk_python-3.0.1168.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1166.dist-info → tencentcloud_sdk_python-3.0.1168.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -140,7 +140,7 @@ class AsrClient(AbstractClient):
|
|
140
140
|
• 音频提交方式:本接口支持**音频 URL 、本地音频文件**两种请求方式。推荐使用 [腾讯云COS](https://cloud.tencent.com/document/product/436/38484) 来存储、生成URL并提交任务,此种方式将不产生外网和流量下行费用,可节约成本、提升任务速度(COS桶权限需要设置公有读私有写,或URL设置外部可访问)
|
141
141
|
• 音频限制:音频 URL 时长不能大于5小时,文件大小不超过1GB;本地音频文件不能大于5MB
|
142
142
|
• 如何获取识别结果:支持**回调或轮询**的方式获取结果,具体请参考 [录音文件识别结果查询](https://cloud.tencent.com/document/product/1093/37822)
|
143
|
-
•
|
143
|
+
• 识别结果有效时间:识别结果在服务端保存24小时
|
144
144
|
• 签名方法参考 [公共参数](https://cloud.tencent.com/document/api/1093/35640) 中签名方法 v3
|
145
145
|
|
146
146
|
:param request: Request instance for CreateRecTask.
|
@@ -234,12 +234,13 @@ class AsrClient(AbstractClient):
|
|
234
234
|
|
235
235
|
|
236
236
|
def DescribeTaskStatus(self, request):
|
237
|
-
"""
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
237
|
+
"""调用录音文件识别请求接口后,有回调和轮询两种方式获取识别结果。
|
238
|
+
• **注意任务有效期为24小时,超过24小时的任务请不要再查询,且不要依赖TaskId作为业务唯一ID,不同日期可能出现重复TaskId。**
|
239
|
+
• 当采用回调方式时,识别完成后会将结果通过 POST 请求的形式通知到用户在请求时填写的回调 URL,具体请参见[ 录音识别结果回调 ](https://cloud.tencent.com/document/product/1093/52632)。
|
240
|
+
• 当采用轮询方式时,需要主动提交任务ID来轮询识别结果,共有任务成功、等待、执行中和失败四种结果,具体信息请参见下文说明。
|
241
|
+
• 请求方法为 HTTP POST , Content-Type为"application/json; charset=utf-8"
|
242
|
+
• 签名方法参考 [公共参数](https://cloud.tencent.com/document/api/1093/35640) 中签名方法v3。
|
243
|
+
• 默认接口请求频率限制:50次/秒,如您有提高请求频率限制的需求,请提[工单](https://console.cloud.tencent.com/workorder/category)进行咨询。
|
243
244
|
|
244
245
|
:param request: Request instance for DescribeTaskStatus.
|
245
246
|
:type request: :class:`tencentcloud.asr.v20190614.models.DescribeTaskStatusRequest`
|
@@ -675,7 +675,9 @@ class CreateRecTaskRequest(AbstractModel):
|
|
675
675
|
回调格式和内容详见:[录音识别回调说明](https://cloud.tencent.com/document/product/1093/52632)
|
676
676
|
|
677
677
|
注意:
|
678
|
-
|
678
|
+
|
679
|
+
- 如果用户使用轮询方式获取识别结果,则无需提交该参数
|
680
|
+
- 建议在回调URL中带上您的业务ID等信息,以便处理业务逻辑
|
679
681
|
:type CallbackUrl: str
|
680
682
|
:param _SpeakerDiarization: 是否开启说话人分离
|
681
683
|
0:不开启;
|
@@ -991,7 +993,9 @@ class CreateRecTaskResponse(AbstractModel):
|
|
991
993
|
|
992
994
|
def __init__(self):
|
993
995
|
r"""
|
994
|
-
:param _Data: 录音文件识别的请求返回结果,包含结果查询需要的TaskId
|
996
|
+
:param _Data: 录音文件识别的请求返回结果,包含结果查询需要的TaskId。
|
997
|
+
**注意:TaskId有效期为24小时,不同日期可能出现重复TaskId,请不要依赖TaskId作为您业务系统里的唯一ID。**
|
998
|
+
|
995
999
|
:type Data: :class:`tencentcloud.asr.v20190614.models.Task`
|
996
1000
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
997
1001
|
:type RequestId: str
|
@@ -1193,6 +1197,7 @@ class DescribeTaskStatusRequest(AbstractModel):
|
|
1193
1197
|
def __init__(self):
|
1194
1198
|
r"""
|
1195
1199
|
:param _TaskId: 从CreateRecTask接口获取的TaskId,用于获取任务状态与结果。
|
1200
|
+
**注意:TaskId有效期为24小时,超过24小时的TaskId请不要再查询。**
|
1196
1201
|
:type TaskId: int
|
1197
1202
|
"""
|
1198
1203
|
self._TaskId = None
|
@@ -2970,7 +2975,8 @@ class Task(AbstractModel):
|
|
2970
2975
|
|
2971
2976
|
def __init__(self):
|
2972
2977
|
r"""
|
2973
|
-
:param _TaskId: 任务ID,可通过此ID
|
2978
|
+
:param _TaskId: 任务ID,可通过此ID在轮询接口获取识别状态与结果。TaskId数据类型为**uint64**。
|
2979
|
+
**注意:TaskId有效期为24小时,不同日期可能出现重复TaskId,请不要依赖TaskId作为您业务系统里的唯一ID。**
|
2974
2980
|
:type TaskId: int
|
2975
2981
|
"""
|
2976
2982
|
self._TaskId = None
|
@@ -17163,9 +17163,9 @@ class DescribeDosageCosDetailByDateRequest(AbstractModel):
|
|
17163
17163
|
|
17164
17164
|
def __init__(self):
|
17165
17165
|
r"""
|
17166
|
-
:param _StartDate:
|
17166
|
+
:param _StartDate: 查询用量开始时间,格式为yyyy-mm-dd,例如:2020-09-01
|
17167
17167
|
:type StartDate: str
|
17168
|
-
:param _EndDate:
|
17168
|
+
:param _EndDate: 查询用量结束时间,格式为yyyy-mm-dd,例如:2020-09-30(与开始时间同月,不支持跨月查询)
|
17169
17169
|
:type EndDate: str
|
17170
17170
|
:param _BucketName: COS 存储桶名称,可通过Get Service 接口是用来获取请求者名下的所有存储空间列表(Bucket list)https://cloud.tencent.com/document/product/436/8291
|
17171
17171
|
:type BucketName: str
|
@@ -1595,7 +1595,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
|
|
1595
1595
|
:type Description: str
|
1596
1596
|
:param _NotAfter: 任务停止时间戳,Unix 秒级时间戳
|
1597
1597
|
:type NotAfter: int
|
1598
|
-
:param _Tries:
|
1598
|
+
:param _Tries: 最大尝试次数,1-3 次
|
1599
1599
|
:type Tries: int
|
1600
1600
|
:param _Variables: 自定义变量(仅高级版支持)
|
1601
1601
|
:type Variables: list of Variable
|
@@ -2806,6 +2806,12 @@ Modify 集群变更中;
|
|
2806
2806
|
:param _UserNetworkInfos: 用户可用区和子网信息
|
2807
2807
|
注意:此字段可能返回 null,表示取不到有效值。
|
2808
2808
|
:type UserNetworkInfos: str
|
2809
|
+
:param _EnableCoolDown: 是否启用冷热分层。0:未开启 1:已开启
|
2810
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2811
|
+
:type EnableCoolDown: int
|
2812
|
+
:param _CoolDownBucket: 冷热分层使用COS桶
|
2813
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2814
|
+
:type CoolDownBucket: str
|
2809
2815
|
"""
|
2810
2816
|
self._InstanceId = None
|
2811
2817
|
self._InstanceName = None
|
@@ -2852,6 +2858,8 @@ Modify 集群变更中;
|
|
2852
2858
|
self._BindSGs = None
|
2853
2859
|
self._EnableMultiZones = None
|
2854
2860
|
self._UserNetworkInfos = None
|
2861
|
+
self._EnableCoolDown = None
|
2862
|
+
self._CoolDownBucket = None
|
2855
2863
|
|
2856
2864
|
@property
|
2857
2865
|
def InstanceId(self):
|
@@ -3217,6 +3225,22 @@ Modify 集群变更中;
|
|
3217
3225
|
def UserNetworkInfos(self, UserNetworkInfos):
|
3218
3226
|
self._UserNetworkInfos = UserNetworkInfos
|
3219
3227
|
|
3228
|
+
@property
|
3229
|
+
def EnableCoolDown(self):
|
3230
|
+
return self._EnableCoolDown
|
3231
|
+
|
3232
|
+
@EnableCoolDown.setter
|
3233
|
+
def EnableCoolDown(self, EnableCoolDown):
|
3234
|
+
self._EnableCoolDown = EnableCoolDown
|
3235
|
+
|
3236
|
+
@property
|
3237
|
+
def CoolDownBucket(self):
|
3238
|
+
return self._CoolDownBucket
|
3239
|
+
|
3240
|
+
@CoolDownBucket.setter
|
3241
|
+
def CoolDownBucket(self, CoolDownBucket):
|
3242
|
+
self._CoolDownBucket = CoolDownBucket
|
3243
|
+
|
3220
3244
|
|
3221
3245
|
def _deserialize(self, params):
|
3222
3246
|
self._InstanceId = params.get("InstanceId")
|
@@ -3273,6 +3297,8 @@ Modify 集群变更中;
|
|
3273
3297
|
self._BindSGs = params.get("BindSGs")
|
3274
3298
|
self._EnableMultiZones = params.get("EnableMultiZones")
|
3275
3299
|
self._UserNetworkInfos = params.get("UserNetworkInfos")
|
3300
|
+
self._EnableCoolDown = params.get("EnableCoolDown")
|
3301
|
+
self._CoolDownBucket = params.get("CoolDownBucket")
|
3276
3302
|
memeber_set = set(params.keys())
|
3277
3303
|
for name, value in vars(self).items():
|
3278
3304
|
property_name = name[1:]
|
@@ -17528,6 +17528,8 @@ class ModifyTopicRequest(AbstractModel):
|
|
17528
17528
|
:param _IsWebTracking: 免鉴权开关。 false:关闭; true:开启。
|
17529
17529
|
开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
|
17530
17530
|
:type IsWebTracking: bool
|
17531
|
+
:param _PartitionCount: 日志主题分区数量
|
17532
|
+
:type PartitionCount: int
|
17531
17533
|
"""
|
17532
17534
|
self._TopicId = None
|
17533
17535
|
self._TopicName = None
|
@@ -17539,6 +17541,7 @@ class ModifyTopicRequest(AbstractModel):
|
|
17539
17541
|
self._Describes = None
|
17540
17542
|
self._HotPeriod = None
|
17541
17543
|
self._IsWebTracking = None
|
17544
|
+
self._PartitionCount = None
|
17542
17545
|
|
17543
17546
|
@property
|
17544
17547
|
def TopicId(self):
|
@@ -17620,6 +17623,14 @@ class ModifyTopicRequest(AbstractModel):
|
|
17620
17623
|
def IsWebTracking(self, IsWebTracking):
|
17621
17624
|
self._IsWebTracking = IsWebTracking
|
17622
17625
|
|
17626
|
+
@property
|
17627
|
+
def PartitionCount(self):
|
17628
|
+
return self._PartitionCount
|
17629
|
+
|
17630
|
+
@PartitionCount.setter
|
17631
|
+
def PartitionCount(self, PartitionCount):
|
17632
|
+
self._PartitionCount = PartitionCount
|
17633
|
+
|
17623
17634
|
|
17624
17635
|
def _deserialize(self, params):
|
17625
17636
|
self._TopicId = params.get("TopicId")
|
@@ -17637,6 +17648,7 @@ class ModifyTopicRequest(AbstractModel):
|
|
17637
17648
|
self._Describes = params.get("Describes")
|
17638
17649
|
self._HotPeriod = params.get("HotPeriod")
|
17639
17650
|
self._IsWebTracking = params.get("IsWebTracking")
|
17651
|
+
self._PartitionCount = params.get("PartitionCount")
|
17640
17652
|
memeber_set = set(params.keys())
|
17641
17653
|
for name, value in vars(self).items():
|
17642
17654
|
property_name = name[1:]
|
@@ -215,7 +215,7 @@ class DcClient(AbstractClient):
|
|
215
215
|
|
216
216
|
|
217
217
|
def DescribeDirectConnectTunnels(self, request):
|
218
|
-
"""
|
218
|
+
"""查询专用通道列表。
|
219
219
|
|
220
220
|
:param request: Request instance for DescribeDirectConnectTunnels.
|
221
221
|
:type request: :class:`tencentcloud.dc.v20180410.models.DescribeDirectConnectTunnelsRequest`
|
@@ -433,8 +433,10 @@ class BgpPeer(AbstractModel):
|
|
433
433
|
def __init__(self):
|
434
434
|
r"""
|
435
435
|
:param _Asn: 用户侧BGP ASN
|
436
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
436
437
|
:type Asn: int
|
437
438
|
:param _AuthKey: 用户侧BGP密钥
|
439
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
438
440
|
:type AuthKey: str
|
439
441
|
"""
|
440
442
|
self._Asn = None
|
@@ -1410,15 +1412,15 @@ class DescribeDirectConnectTunnelsRequest(AbstractModel):
|
|
1410
1412
|
r"""
|
1411
1413
|
:param _Filters: 过滤条件:
|
1412
1414
|
参数不支持同时指定DirectConnectTunnelIds和Filters。
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1415
|
+
direct-connect-tunnel-name, 专用通道名称。
|
1416
|
+
direct-connect-tunnel-id, 专用通道实例ID,如:dcx-abcdefgh。
|
1417
|
+
direct-connect-id, 物理专线实例ID,如:dc-abcdefgh。
|
1416
1418
|
:type Filters: list of Filter
|
1417
|
-
:param _DirectConnectTunnelIds: 专用通道
|
1419
|
+
:param _DirectConnectTunnelIds: 专用通道ID数组。
|
1418
1420
|
:type DirectConnectTunnelIds: list of str
|
1419
|
-
:param _Offset: 偏移量,默认为0
|
1421
|
+
:param _Offset: 偏移量,默认为0。
|
1420
1422
|
:type Offset: int
|
1421
|
-
:param _Limit: 返回数量,默认为20,最大值为100
|
1423
|
+
:param _Limit: 返回数量,默认为20,最大值为100。
|
1422
1424
|
:type Limit: int
|
1423
1425
|
"""
|
1424
1426
|
self._Filters = None
|
@@ -1486,9 +1488,9 @@ class DescribeDirectConnectTunnelsResponse(AbstractModel):
|
|
1486
1488
|
|
1487
1489
|
def __init__(self):
|
1488
1490
|
r"""
|
1489
|
-
:param _DirectConnectTunnelSet:
|
1491
|
+
:param _DirectConnectTunnelSet: 专用通道列表。
|
1490
1492
|
:type DirectConnectTunnelSet: list of DirectConnectTunnel
|
1491
|
-
:param _TotalCount:
|
1493
|
+
:param _TotalCount: 专用通道总数量。
|
1492
1494
|
:type TotalCount: int
|
1493
1495
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1494
1496
|
:type RequestId: str
|
@@ -2609,6 +2611,9 @@ REJECTED:拒绝
|
|
2609
2611
|
:param _CloudAttachId: 高速上云服务ID
|
2610
2612
|
注意:此字段可能返回 null,表示取不到有效值。
|
2611
2613
|
:type CloudAttachId: str
|
2614
|
+
:param _ShareOrNot: 是否共享通道
|
2615
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2616
|
+
:type ShareOrNot: int
|
2612
2617
|
"""
|
2613
2618
|
self._DirectConnectTunnelId = None
|
2614
2619
|
self._DirectConnectId = None
|
@@ -2640,6 +2645,7 @@ REJECTED:拒绝
|
|
2640
2645
|
self._TencentBackupAddress = None
|
2641
2646
|
self._SignLaw = None
|
2642
2647
|
self._CloudAttachId = None
|
2648
|
+
self._ShareOrNot = None
|
2643
2649
|
|
2644
2650
|
@property
|
2645
2651
|
def DirectConnectTunnelId(self):
|
@@ -2881,6 +2887,14 @@ REJECTED:拒绝
|
|
2881
2887
|
def CloudAttachId(self, CloudAttachId):
|
2882
2888
|
self._CloudAttachId = CloudAttachId
|
2883
2889
|
|
2890
|
+
@property
|
2891
|
+
def ShareOrNot(self):
|
2892
|
+
return self._ShareOrNot
|
2893
|
+
|
2894
|
+
@ShareOrNot.setter
|
2895
|
+
def ShareOrNot(self, ShareOrNot):
|
2896
|
+
self._ShareOrNot = ShareOrNot
|
2897
|
+
|
2884
2898
|
|
2885
2899
|
def _deserialize(self, params):
|
2886
2900
|
self._DirectConnectTunnelId = params.get("DirectConnectTunnelId")
|
@@ -2925,6 +2939,7 @@ REJECTED:拒绝
|
|
2925
2939
|
self._TencentBackupAddress = params.get("TencentBackupAddress")
|
2926
2940
|
self._SignLaw = params.get("SignLaw")
|
2927
2941
|
self._CloudAttachId = params.get("CloudAttachId")
|
2942
|
+
self._ShareOrNot = params.get("ShareOrNot")
|
2928
2943
|
memeber_set = set(params.keys())
|
2929
2944
|
for name, value in vars(self).items():
|
2930
2945
|
property_name = name[1:]
|
@@ -4774,6 +4789,7 @@ class RouteFilterPrefix(AbstractModel):
|
|
4774
4789
|
def __init__(self):
|
4775
4790
|
r"""
|
4776
4791
|
:param _Cidr: 用户侧网段地址
|
4792
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4777
4793
|
:type Cidr: str
|
4778
4794
|
"""
|
4779
4795
|
self._Cidr = None
|
@@ -293,6 +293,9 @@ RESOURCENOTFOUND_DOMAINNOTFOUND = 'ResourceNotFound.DomainNotFound'
|
|
293
293
|
# 模板信息有误,请输入正确的信息。
|
294
294
|
RESOURCENOTFOUND_TEMPLATENOTFOUND = 'ResourceNotFound.TemplateNotFound'
|
295
295
|
|
296
|
+
# 模板不支持
|
297
|
+
RESOURCENOTFOUND_TEMPLATETOBESUPPLEMENTED = 'ResourceNotFound.TemplateToBeSupplemented'
|
298
|
+
|
296
299
|
# 该域名已有同类型操作未完成,无法执行该操作。
|
297
300
|
RESOURCEUNAVAILABLE_DOMAINISMODIFYINGDNS = 'ResourceUnavailable.DomainIsModifyingDNS'
|
298
301
|
|
@@ -100,7 +100,7 @@ class BatchModifyDomainInfoRequest(AbstractModel):
|
|
100
100
|
r"""
|
101
101
|
:param _Domains: 批量修改的域名。
|
102
102
|
:type Domains: list of str
|
103
|
-
:param _TemplateId: 模板ID
|
103
|
+
:param _TemplateId: 模板ID(可从模板列表接口获取)
|
104
104
|
:type TemplateId: str
|
105
105
|
:param _LockTransfer: true: 开启60天内禁止转移注册商锁定
|
106
106
|
false:关闭60天内禁止转移注册商锁定
|
@@ -1885,7 +1885,7 @@ class CreatePhoneEmailRequest(AbstractModel):
|
|
1885
1885
|
:type Code: str
|
1886
1886
|
:param _Type: 1:手机 2:邮箱
|
1887
1887
|
:type Type: int
|
1888
|
-
:param _VerifyCode: 验证码
|
1888
|
+
:param _VerifyCode: 验证码(通过SendPhoneEmailCode发送到手机或邮箱的验证码)
|
1889
1889
|
:type VerifyCode: str
|
1890
1890
|
"""
|
1891
1891
|
self._Code = None
|
@@ -2364,7 +2364,7 @@ class DeleteTemplateRequest(AbstractModel):
|
|
2364
2364
|
|
2365
2365
|
def __init__(self):
|
2366
2366
|
r"""
|
2367
|
-
:param _TemplateId: 模板ID
|
2367
|
+
:param _TemplateId: 模板ID(可通过模板信息列表获取)
|
2368
2368
|
:type TemplateId: str
|
2369
2369
|
"""
|
2370
2370
|
self._TemplateId = None
|
@@ -3784,7 +3784,7 @@ class DescribeCustomDnsHostSetRequest(AbstractModel):
|
|
3784
3784
|
|
3785
3785
|
def __init__(self):
|
3786
3786
|
r"""
|
3787
|
-
:param _DomainId: 域名实例ID
|
3787
|
+
:param _DomainId: 域名实例ID(域名基本信息或我的域名列表接口可获取)
|
3788
3788
|
:type DomainId: str
|
3789
3789
|
:param _Limit: 返回数量,默认为20,取值范围[1,100]
|
3790
3790
|
:type Limit: int
|
@@ -4618,9 +4618,9 @@ class DescribePreDomainListRequest(AbstractModel):
|
|
4618
4618
|
|
4619
4619
|
def __init__(self):
|
4620
4620
|
r"""
|
4621
|
-
:param _Page:
|
4621
|
+
:param _Page: 页码,默认为1
|
4622
4622
|
:type Page: int
|
4623
|
-
:param _Size:
|
4623
|
+
:param _Size: 条数,默认为20
|
4624
4624
|
:type Size: int
|
4625
4625
|
:param _EndTime: 用于结束时间筛选
|
4626
4626
|
:type EndTime: str
|
@@ -21510,11 +21510,14 @@ ResourceRegion 资源所在地域
|
|
21510
21510
|
DataSourceType 数据源类型,不填默认过滤非自建的所有关系型数据源类型,填selfbuilt-db只过滤自建类型
|
21511
21511
|
注意:每个name默认支持最多5个values。
|
21512
21512
|
:type Filters: list of Filter
|
21513
|
+
:param _CasbId: casbId
|
21514
|
+
:type CasbId: str
|
21513
21515
|
"""
|
21514
21516
|
self._DspaId = None
|
21515
21517
|
self._ComplianceId = None
|
21516
21518
|
self._MetaDataType = None
|
21517
21519
|
self._Filters = None
|
21520
|
+
self._CasbId = None
|
21518
21521
|
|
21519
21522
|
@property
|
21520
21523
|
def DspaId(self):
|
@@ -21548,6 +21551,14 @@ DataSourceType 数据源类型,不填默认过滤非自建的所有关系型
|
|
21548
21551
|
def Filters(self, Filters):
|
21549
21552
|
self._Filters = Filters
|
21550
21553
|
|
21554
|
+
@property
|
21555
|
+
def CasbId(self):
|
21556
|
+
return self._CasbId
|
21557
|
+
|
21558
|
+
@CasbId.setter
|
21559
|
+
def CasbId(self, CasbId):
|
21560
|
+
self._CasbId = CasbId
|
21561
|
+
|
21551
21562
|
|
21552
21563
|
def _deserialize(self, params):
|
21553
21564
|
self._DspaId = params.get("DspaId")
|
@@ -21559,6 +21570,7 @@ DataSourceType 数据源类型,不填默认过滤非自建的所有关系型
|
|
21559
21570
|
obj = Filter()
|
21560
21571
|
obj._deserialize(item)
|
21561
21572
|
self._Filters.append(obj)
|
21573
|
+
self._CasbId = params.get("CasbId")
|
21562
21574
|
memeber_set = set(params.keys())
|
21563
21575
|
for name, value in vars(self).items():
|
21564
21576
|
property_name = name[1:]
|
@@ -245,7 +245,9 @@ class DtsClient(AbstractClient):
|
|
245
245
|
|
246
246
|
|
247
247
|
def DescribeRegionConf(self, request):
|
248
|
-
"""
|
248
|
+
"""接口不再使用
|
249
|
+
|
250
|
+
本接口(DescribeRegionConf)用于查询可售卖订阅实例的地域
|
249
251
|
|
250
252
|
:param request: Request instance for DescribeRegionConf.
|
251
253
|
:type request: :class:`tencentcloud.dts.v20180330.models.DescribeRegionConfRequest`
|
@@ -234,6 +234,29 @@ class EmrClient(AbstractClient):
|
|
234
234
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
235
235
|
|
236
236
|
|
237
|
+
def DescribeClusterFlowStatusDetail(self, request):
|
238
|
+
"""查询EMR任务运行详情状态
|
239
|
+
|
240
|
+
:param request: Request instance for DescribeClusterFlowStatusDetail.
|
241
|
+
:type request: :class:`tencentcloud.emr.v20190103.models.DescribeClusterFlowStatusDetailRequest`
|
242
|
+
:rtype: :class:`tencentcloud.emr.v20190103.models.DescribeClusterFlowStatusDetailResponse`
|
243
|
+
|
244
|
+
"""
|
245
|
+
try:
|
246
|
+
params = request._serialize()
|
247
|
+
headers = request.headers
|
248
|
+
body = self.call("DescribeClusterFlowStatusDetail", params, headers=headers)
|
249
|
+
response = json.loads(body)
|
250
|
+
model = models.DescribeClusterFlowStatusDetailResponse()
|
251
|
+
model._deserialize(response["Response"])
|
252
|
+
return model
|
253
|
+
except Exception as e:
|
254
|
+
if isinstance(e, TencentCloudSDKException):
|
255
|
+
raise
|
256
|
+
else:
|
257
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
258
|
+
|
259
|
+
|
237
260
|
def DescribeClusterNodes(self, request):
|
238
261
|
"""查询集群节点信息
|
239
262
|
|