tencentcloud-sdk-python 3.0.1297__py2.py3-none-any.whl → 3.0.1299__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/aca/v20210323/models.py +2 -2
- tencentcloud/autoscaling/v20180419/models.py +21 -0
- tencentcloud/bh/v20230418/models.py +4 -4
- tencentcloud/billing/v20180709/models.py +90 -0
- tencentcloud/cam/v20190116/models.py +2 -2
- tencentcloud/ccc/v20200210/models.py +121 -0
- tencentcloud/cfs/v20190719/errorcodes.py +1 -1
- tencentcloud/clb/v20180317/models.py +68 -0
- tencentcloud/cloudapp/v20220530/errorcodes.py +3 -0
- tencentcloud/cloudapp/v20220530/models.py +66 -17
- tencentcloud/cls/v20201016/models.py +24 -2
- tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
- tencentcloud/cynosdb/v20190107/models.py +113 -0
- tencentcloud/dbbrain/v20210527/models.py +17 -2
- tencentcloud/dc/v20180410/models.py +50 -121
- tencentcloud/drm/v20181115/models.py +17 -0
- tencentcloud/dts/v20211206/models.py +68 -2
- tencentcloud/emr/v20190103/models.py +136 -340
- tencentcloud/ess/v20201111/models.py +96 -156
- tencentcloud/essbasic/v20210526/models.py +44 -108
- tencentcloud/gaap/v20180529/gaap_client.py +9 -3
- tencentcloud/gwlb/v20240906/models.py +2 -2
- tencentcloud/hai/v20230812/errorcodes.py +6 -0
- tencentcloud/hai/v20230812/hai_client.py +23 -0
- tencentcloud/hai/v20230812/models.py +109 -0
- tencentcloud/hunyuan/v20230901/models.py +7 -7
- tencentcloud/keewidb/v20220308/models.py +1 -1
- tencentcloud/lcic/v20220817/models.py +12 -6
- tencentcloud/lkeap/v20240522/lkeap_client.py +24 -0
- tencentcloud/lkeap/v20240522/models.py +167 -0
- tencentcloud/mongodb/v20180408/errorcodes.py +3 -0
- tencentcloud/mongodb/v20180408/models.py +36 -20
- tencentcloud/mongodb/v20180408/mongodb_client.py +1 -1
- tencentcloud/mongodb/v20190725/models.py +45 -112
- tencentcloud/ocr/v20181119/models.py +14 -14
- tencentcloud/ocr/v20181119/ocr_client.py +3 -3
- tencentcloud/postgres/v20170312/models.py +233 -0
- tencentcloud/postgres/v20170312/postgres_client.py +46 -0
- tencentcloud/redis/v20180412/models.py +6 -6
- tencentcloud/redis/v20180412/redis_client.py +8 -8
- tencentcloud/scf/v20180416/models.py +44 -4
- tencentcloud/ssl/v20191205/models.py +66 -10
- tencentcloud/ssl/v20191205/ssl_client.py +8 -1
- tencentcloud/tcb/v20180608/models.py +219 -345
- tencentcloud/tcb/v20180608/tcb_client.py +1 -1
- tencentcloud/tcbr/v20220217/models.py +51 -6
- tencentcloud/tdmq/v20200217/models.py +205 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/tione/v20211111/models.py +34 -0
- tencentcloud/trtc/v20190722/models.py +4 -16
- tencentcloud/vpc/v20170312/models.py +63 -29
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/RECORD +57 -57
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/top_level.txt +0 -0
@@ -740,7 +740,7 @@ class TcbClient(AbstractClient):
|
|
740
740
|
|
741
741
|
|
742
742
|
def DescribeCloudBaseRunPodList(self, request):
|
743
|
-
"""
|
743
|
+
"""查询云托管服务版本容器列表
|
744
744
|
|
745
745
|
:param request: Request instance for DescribeCloudBaseRunPodList.
|
746
746
|
:type request: :class:`tencentcloud.tcb.v20180608.models.DescribeCloudBaseRunPodListRequest`
|
@@ -33,11 +33,14 @@ class BuildPacksInfo(AbstractModel):
|
|
33
33
|
:type RepoLanguage: str
|
34
34
|
:param _UploadFilename: 上传文件名
|
35
35
|
:type UploadFilename: str
|
36
|
+
:param _LanguageVersion: 语言版本
|
37
|
+
:type LanguageVersion: str
|
36
38
|
"""
|
37
39
|
self._BaseImage = None
|
38
40
|
self._EntryPoint = None
|
39
41
|
self._RepoLanguage = None
|
40
42
|
self._UploadFilename = None
|
43
|
+
self._LanguageVersion = None
|
41
44
|
|
42
45
|
@property
|
43
46
|
def BaseImage(self):
|
@@ -83,12 +86,24 @@ class BuildPacksInfo(AbstractModel):
|
|
83
86
|
def UploadFilename(self, UploadFilename):
|
84
87
|
self._UploadFilename = UploadFilename
|
85
88
|
|
89
|
+
@property
|
90
|
+
def LanguageVersion(self):
|
91
|
+
"""语言版本
|
92
|
+
:rtype: str
|
93
|
+
"""
|
94
|
+
return self._LanguageVersion
|
95
|
+
|
96
|
+
@LanguageVersion.setter
|
97
|
+
def LanguageVersion(self, LanguageVersion):
|
98
|
+
self._LanguageVersion = LanguageVersion
|
99
|
+
|
86
100
|
|
87
101
|
def _deserialize(self, params):
|
88
102
|
self._BaseImage = params.get("BaseImage")
|
89
103
|
self._EntryPoint = params.get("EntryPoint")
|
90
104
|
self._RepoLanguage = params.get("RepoLanguage")
|
91
105
|
self._UploadFilename = params.get("UploadFilename")
|
106
|
+
self._LanguageVersion = params.get("LanguageVersion")
|
92
107
|
memeber_set = set(params.keys())
|
93
108
|
for name, value in vars(self).items():
|
94
109
|
property_name = name[1:]
|
@@ -203,11 +218,11 @@ Activity:活动来源
|
|
203
218
|
:type SubNetIds: list of str
|
204
219
|
:param _ReqKey: 请求key 用于防重
|
205
220
|
:type ReqKey: str
|
206
|
-
:param _Source: 来源:wechat | cloud
|
221
|
+
:param _Source: 来源:wechat | cloud | weda
|
207
222
|
:type Source: str
|
208
|
-
:param _Channel: 渠道:wechat | cloud
|
223
|
+
:param _Channel: 渠道:wechat | cloud | weda
|
209
224
|
:type Channel: str
|
210
|
-
:param _EnvId: 环境ID
|
225
|
+
:param _EnvId: 环境ID 云开发平台必填
|
211
226
|
:type EnvId: str
|
212
227
|
"""
|
213
228
|
self._PackageType = None
|
@@ -302,7 +317,7 @@ Activity:活动来源
|
|
302
317
|
|
303
318
|
@property
|
304
319
|
def Source(self):
|
305
|
-
"""来源:wechat | cloud
|
320
|
+
"""来源:wechat | cloud | weda
|
306
321
|
:rtype: str
|
307
322
|
"""
|
308
323
|
return self._Source
|
@@ -313,7 +328,7 @@ Activity:活动来源
|
|
313
328
|
|
314
329
|
@property
|
315
330
|
def Channel(self):
|
316
|
-
"""渠道:wechat | cloud
|
331
|
+
"""渠道:wechat | cloud | weda
|
317
332
|
:rtype: str
|
318
333
|
"""
|
319
334
|
return self._Channel
|
@@ -324,7 +339,7 @@ Activity:活动来源
|
|
324
339
|
|
325
340
|
@property
|
326
341
|
def EnvId(self):
|
327
|
-
"""环境ID
|
342
|
+
"""环境ID 云开发平台必填
|
328
343
|
:rtype: str
|
329
344
|
"""
|
330
345
|
return self._EnvId
|
@@ -1189,10 +1204,13 @@ class DescribeEnvBaseInfoResponse(AbstractModel):
|
|
1189
1204
|
r"""
|
1190
1205
|
:param _EnvBaseInfo: 环境基础信息
|
1191
1206
|
:type EnvBaseInfo: :class:`tencentcloud.tcbr.v20220217.models.EnvBaseInfo`
|
1207
|
+
:param _IsExist: 是否存在
|
1208
|
+
:type IsExist: bool
|
1192
1209
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1193
1210
|
:type RequestId: str
|
1194
1211
|
"""
|
1195
1212
|
self._EnvBaseInfo = None
|
1213
|
+
self._IsExist = None
|
1196
1214
|
self._RequestId = None
|
1197
1215
|
|
1198
1216
|
@property
|
@@ -1206,6 +1224,17 @@ class DescribeEnvBaseInfoResponse(AbstractModel):
|
|
1206
1224
|
def EnvBaseInfo(self, EnvBaseInfo):
|
1207
1225
|
self._EnvBaseInfo = EnvBaseInfo
|
1208
1226
|
|
1227
|
+
@property
|
1228
|
+
def IsExist(self):
|
1229
|
+
"""是否存在
|
1230
|
+
:rtype: bool
|
1231
|
+
"""
|
1232
|
+
return self._IsExist
|
1233
|
+
|
1234
|
+
@IsExist.setter
|
1235
|
+
def IsExist(self, IsExist):
|
1236
|
+
self._IsExist = IsExist
|
1237
|
+
|
1209
1238
|
@property
|
1210
1239
|
def RequestId(self):
|
1211
1240
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -1222,6 +1251,7 @@ class DescribeEnvBaseInfoResponse(AbstractModel):
|
|
1222
1251
|
if params.get("EnvBaseInfo") is not None:
|
1223
1252
|
self._EnvBaseInfo = EnvBaseInfo()
|
1224
1253
|
self._EnvBaseInfo._deserialize(params.get("EnvBaseInfo"))
|
1254
|
+
self._IsExist = params.get("IsExist")
|
1225
1255
|
self._RequestId = params.get("RequestId")
|
1226
1256
|
|
1227
1257
|
|
@@ -2933,6 +2963,8 @@ class ServerBaseInfo(AbstractModel):
|
|
2933
2963
|
:type AccessTypes: list of str
|
2934
2964
|
:param _CustomDomainNames: 展示自定义域名
|
2935
2965
|
:type CustomDomainNames: list of str
|
2966
|
+
:param _ServerType: 服务类型: function 云函数2.0;container 容器服务
|
2967
|
+
:type ServerType: str
|
2936
2968
|
"""
|
2937
2969
|
self._ServerName = None
|
2938
2970
|
self._DefaultDomainName = None
|
@@ -2941,6 +2973,7 @@ class ServerBaseInfo(AbstractModel):
|
|
2941
2973
|
self._UpdateTime = None
|
2942
2974
|
self._AccessTypes = None
|
2943
2975
|
self._CustomDomainNames = None
|
2976
|
+
self._ServerType = None
|
2944
2977
|
|
2945
2978
|
@property
|
2946
2979
|
def ServerName(self):
|
@@ -3019,6 +3052,17 @@ class ServerBaseInfo(AbstractModel):
|
|
3019
3052
|
def CustomDomainNames(self, CustomDomainNames):
|
3020
3053
|
self._CustomDomainNames = CustomDomainNames
|
3021
3054
|
|
3055
|
+
@property
|
3056
|
+
def ServerType(self):
|
3057
|
+
"""服务类型: function 云函数2.0;container 容器服务
|
3058
|
+
:rtype: str
|
3059
|
+
"""
|
3060
|
+
return self._ServerType
|
3061
|
+
|
3062
|
+
@ServerType.setter
|
3063
|
+
def ServerType(self, ServerType):
|
3064
|
+
self._ServerType = ServerType
|
3065
|
+
|
3022
3066
|
|
3023
3067
|
def _deserialize(self, params):
|
3024
3068
|
self._ServerName = params.get("ServerName")
|
@@ -3028,6 +3072,7 @@ class ServerBaseInfo(AbstractModel):
|
|
3028
3072
|
self._UpdateTime = params.get("UpdateTime")
|
3029
3073
|
self._AccessTypes = params.get("AccessTypes")
|
3030
3074
|
self._CustomDomainNames = params.get("CustomDomainNames")
|
3075
|
+
self._ServerType = params.get("ServerType")
|
3031
3076
|
memeber_set = set(params.keys())
|
3032
3077
|
for name, value in vars(self).items():
|
3033
3078
|
property_name = name[1:]
|
@@ -21419,6 +21419,150 @@ class FilterSubscription(AbstractModel):
|
|
21419
21419
|
|
21420
21420
|
|
21421
21421
|
|
21422
|
+
class GetTopicListRequest(AbstractModel):
|
21423
|
+
"""GetTopicList请求参数结构体
|
21424
|
+
|
21425
|
+
"""
|
21426
|
+
|
21427
|
+
def __init__(self):
|
21428
|
+
r"""
|
21429
|
+
:param _EnvironmentId: 环境(命名空间)名称。
|
21430
|
+
:type EnvironmentId: str
|
21431
|
+
:param _ClusterId: Pulsar 集群的ID
|
21432
|
+
:type ClusterId: str
|
21433
|
+
:param _Offset: 起始下标,不填默认为0。
|
21434
|
+
:type Offset: int
|
21435
|
+
:param _Limit: 返回数量,不填则默认为10,最大值为20。
|
21436
|
+
:type Limit: int
|
21437
|
+
"""
|
21438
|
+
self._EnvironmentId = None
|
21439
|
+
self._ClusterId = None
|
21440
|
+
self._Offset = None
|
21441
|
+
self._Limit = None
|
21442
|
+
|
21443
|
+
@property
|
21444
|
+
def EnvironmentId(self):
|
21445
|
+
"""环境(命名空间)名称。
|
21446
|
+
:rtype: str
|
21447
|
+
"""
|
21448
|
+
return self._EnvironmentId
|
21449
|
+
|
21450
|
+
@EnvironmentId.setter
|
21451
|
+
def EnvironmentId(self, EnvironmentId):
|
21452
|
+
self._EnvironmentId = EnvironmentId
|
21453
|
+
|
21454
|
+
@property
|
21455
|
+
def ClusterId(self):
|
21456
|
+
"""Pulsar 集群的ID
|
21457
|
+
:rtype: str
|
21458
|
+
"""
|
21459
|
+
return self._ClusterId
|
21460
|
+
|
21461
|
+
@ClusterId.setter
|
21462
|
+
def ClusterId(self, ClusterId):
|
21463
|
+
self._ClusterId = ClusterId
|
21464
|
+
|
21465
|
+
@property
|
21466
|
+
def Offset(self):
|
21467
|
+
"""起始下标,不填默认为0。
|
21468
|
+
:rtype: int
|
21469
|
+
"""
|
21470
|
+
return self._Offset
|
21471
|
+
|
21472
|
+
@Offset.setter
|
21473
|
+
def Offset(self, Offset):
|
21474
|
+
self._Offset = Offset
|
21475
|
+
|
21476
|
+
@property
|
21477
|
+
def Limit(self):
|
21478
|
+
"""返回数量,不填则默认为10,最大值为20。
|
21479
|
+
:rtype: int
|
21480
|
+
"""
|
21481
|
+
return self._Limit
|
21482
|
+
|
21483
|
+
@Limit.setter
|
21484
|
+
def Limit(self, Limit):
|
21485
|
+
self._Limit = Limit
|
21486
|
+
|
21487
|
+
|
21488
|
+
def _deserialize(self, params):
|
21489
|
+
self._EnvironmentId = params.get("EnvironmentId")
|
21490
|
+
self._ClusterId = params.get("ClusterId")
|
21491
|
+
self._Offset = params.get("Offset")
|
21492
|
+
self._Limit = params.get("Limit")
|
21493
|
+
memeber_set = set(params.keys())
|
21494
|
+
for name, value in vars(self).items():
|
21495
|
+
property_name = name[1:]
|
21496
|
+
if property_name in memeber_set:
|
21497
|
+
memeber_set.remove(property_name)
|
21498
|
+
if len(memeber_set) > 0:
|
21499
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
21500
|
+
|
21501
|
+
|
21502
|
+
|
21503
|
+
class GetTopicListResponse(AbstractModel):
|
21504
|
+
"""GetTopicList返回参数结构体
|
21505
|
+
|
21506
|
+
"""
|
21507
|
+
|
21508
|
+
def __init__(self):
|
21509
|
+
r"""
|
21510
|
+
:param _TotalCount: 主题数量。
|
21511
|
+
:type TotalCount: int
|
21512
|
+
:param _TopicList: 主题列表
|
21513
|
+
:type TopicList: list of Topic_Simplification
|
21514
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21515
|
+
:type RequestId: str
|
21516
|
+
"""
|
21517
|
+
self._TotalCount = None
|
21518
|
+
self._TopicList = None
|
21519
|
+
self._RequestId = None
|
21520
|
+
|
21521
|
+
@property
|
21522
|
+
def TotalCount(self):
|
21523
|
+
"""主题数量。
|
21524
|
+
:rtype: int
|
21525
|
+
"""
|
21526
|
+
return self._TotalCount
|
21527
|
+
|
21528
|
+
@TotalCount.setter
|
21529
|
+
def TotalCount(self, TotalCount):
|
21530
|
+
self._TotalCount = TotalCount
|
21531
|
+
|
21532
|
+
@property
|
21533
|
+
def TopicList(self):
|
21534
|
+
"""主题列表
|
21535
|
+
:rtype: list of Topic_Simplification
|
21536
|
+
"""
|
21537
|
+
return self._TopicList
|
21538
|
+
|
21539
|
+
@TopicList.setter
|
21540
|
+
def TopicList(self, TopicList):
|
21541
|
+
self._TopicList = TopicList
|
21542
|
+
|
21543
|
+
@property
|
21544
|
+
def RequestId(self):
|
21545
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21546
|
+
:rtype: str
|
21547
|
+
"""
|
21548
|
+
return self._RequestId
|
21549
|
+
|
21550
|
+
@RequestId.setter
|
21551
|
+
def RequestId(self, RequestId):
|
21552
|
+
self._RequestId = RequestId
|
21553
|
+
|
21554
|
+
|
21555
|
+
def _deserialize(self, params):
|
21556
|
+
self._TotalCount = params.get("TotalCount")
|
21557
|
+
if params.get("TopicList") is not None:
|
21558
|
+
self._TopicList = []
|
21559
|
+
for item in params.get("TopicList"):
|
21560
|
+
obj = Topic_Simplification()
|
21561
|
+
obj._deserialize(item)
|
21562
|
+
self._TopicList.append(obj)
|
21563
|
+
self._RequestId = params.get("RequestId")
|
21564
|
+
|
21565
|
+
|
21422
21566
|
class ImportRocketMQConsumerGroupsRequest(AbstractModel):
|
21423
21567
|
"""ImportRocketMQConsumerGroups请求参数结构体
|
21424
21568
|
|
@@ -36702,6 +36846,67 @@ class TopicStats(AbstractModel):
|
|
36702
36846
|
|
36703
36847
|
|
36704
36848
|
|
36849
|
+
class Topic_Simplification(AbstractModel):
|
36850
|
+
"""主题实例
|
36851
|
+
|
36852
|
+
"""
|
36853
|
+
|
36854
|
+
def __init__(self):
|
36855
|
+
r"""
|
36856
|
+
:param _TopicName: 主题名称。
|
36857
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
36858
|
+
:type TopicName: str
|
36859
|
+
:param _PulsarTopicType: 0: 非持久非分区
|
36860
|
+
1: 非持久分区
|
36861
|
+
2: 持久非分区
|
36862
|
+
3: 持久分区
|
36863
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
36864
|
+
:type PulsarTopicType: int
|
36865
|
+
"""
|
36866
|
+
self._TopicName = None
|
36867
|
+
self._PulsarTopicType = None
|
36868
|
+
|
36869
|
+
@property
|
36870
|
+
def TopicName(self):
|
36871
|
+
"""主题名称。
|
36872
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
36873
|
+
:rtype: str
|
36874
|
+
"""
|
36875
|
+
return self._TopicName
|
36876
|
+
|
36877
|
+
@TopicName.setter
|
36878
|
+
def TopicName(self, TopicName):
|
36879
|
+
self._TopicName = TopicName
|
36880
|
+
|
36881
|
+
@property
|
36882
|
+
def PulsarTopicType(self):
|
36883
|
+
"""0: 非持久非分区
|
36884
|
+
1: 非持久分区
|
36885
|
+
2: 持久非分区
|
36886
|
+
3: 持久分区
|
36887
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
36888
|
+
:rtype: int
|
36889
|
+
"""
|
36890
|
+
return self._PulsarTopicType
|
36891
|
+
|
36892
|
+
@PulsarTopicType.setter
|
36893
|
+
def PulsarTopicType(self, PulsarTopicType):
|
36894
|
+
self._PulsarTopicType = PulsarTopicType
|
36895
|
+
|
36896
|
+
|
36897
|
+
def _deserialize(self, params):
|
36898
|
+
self._TopicName = params.get("TopicName")
|
36899
|
+
self._PulsarTopicType = params.get("PulsarTopicType")
|
36900
|
+
memeber_set = set(params.keys())
|
36901
|
+
for name, value in vars(self).items():
|
36902
|
+
property_name = name[1:]
|
36903
|
+
if property_name in memeber_set:
|
36904
|
+
memeber_set.remove(property_name)
|
36905
|
+
if len(memeber_set) > 0:
|
36906
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
36907
|
+
|
36908
|
+
|
36909
|
+
|
36705
36910
|
class TraceResult(AbstractModel):
|
36706
36911
|
"""消息轨迹结果
|
36707
36912
|
|
@@ -2560,6 +2560,29 @@ class TdmqClient(AbstractClient):
|
|
2560
2560
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2561
2561
|
|
2562
2562
|
|
2563
|
+
def GetTopicList(self, request):
|
2564
|
+
"""获取环境下主题列表
|
2565
|
+
|
2566
|
+
:param request: Request instance for GetTopicList.
|
2567
|
+
:type request: :class:`tencentcloud.tdmq.v20200217.models.GetTopicListRequest`
|
2568
|
+
:rtype: :class:`tencentcloud.tdmq.v20200217.models.GetTopicListResponse`
|
2569
|
+
|
2570
|
+
"""
|
2571
|
+
try:
|
2572
|
+
params = request._serialize()
|
2573
|
+
headers = request.headers
|
2574
|
+
body = self.call("GetTopicList", params, headers=headers)
|
2575
|
+
response = json.loads(body)
|
2576
|
+
model = models.GetTopicListResponse()
|
2577
|
+
model._deserialize(response["Response"])
|
2578
|
+
return model
|
2579
|
+
except Exception as e:
|
2580
|
+
if isinstance(e, TencentCloudSDKException):
|
2581
|
+
raise
|
2582
|
+
else:
|
2583
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2584
|
+
|
2585
|
+
|
2563
2586
|
def ImportRocketMQConsumerGroups(self, request):
|
2564
2587
|
"""输入迁移任务id和要导入的Group,导入后台
|
2565
2588
|
|
@@ -12116,6 +12116,9 @@ class NotebookDetail(AbstractModel):
|
|
12116
12116
|
:type SubUinName: str
|
12117
12117
|
:param _JobCreateTime: 任务实例创建时间
|
12118
12118
|
:type JobCreateTime: str
|
12119
|
+
:param _AppId: Appid
|
12120
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
12121
|
+
:type AppId: str
|
12119
12122
|
"""
|
12120
12123
|
self._Id = None
|
12121
12124
|
self._Name = None
|
@@ -12160,6 +12163,7 @@ class NotebookDetail(AbstractModel):
|
|
12160
12163
|
self._ResourceGroupInstanceId = None
|
12161
12164
|
self._SubUinName = None
|
12162
12165
|
self._JobCreateTime = None
|
12166
|
+
self._AppId = None
|
12163
12167
|
|
12164
12168
|
@property
|
12165
12169
|
def Id(self):
|
@@ -12665,6 +12669,18 @@ class NotebookDetail(AbstractModel):
|
|
12665
12669
|
def JobCreateTime(self, JobCreateTime):
|
12666
12670
|
self._JobCreateTime = JobCreateTime
|
12667
12671
|
|
12672
|
+
@property
|
12673
|
+
def AppId(self):
|
12674
|
+
"""Appid
|
12675
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
12676
|
+
:rtype: str
|
12677
|
+
"""
|
12678
|
+
return self._AppId
|
12679
|
+
|
12680
|
+
@AppId.setter
|
12681
|
+
def AppId(self, AppId):
|
12682
|
+
self._AppId = AppId
|
12683
|
+
|
12668
12684
|
|
12669
12685
|
def _deserialize(self, params):
|
12670
12686
|
self._Id = params.get("Id")
|
@@ -12732,6 +12748,7 @@ class NotebookDetail(AbstractModel):
|
|
12732
12748
|
self._ResourceGroupInstanceId = params.get("ResourceGroupInstanceId")
|
12733
12749
|
self._SubUinName = params.get("SubUinName")
|
12734
12750
|
self._JobCreateTime = params.get("JobCreateTime")
|
12751
|
+
self._AppId = params.get("AppId")
|
12735
12752
|
memeber_set = set(params.keys())
|
12736
12753
|
for name, value in vars(self).items():
|
12737
12754
|
property_name = name[1:]
|
@@ -12828,6 +12845,9 @@ class NotebookSetItem(AbstractModel):
|
|
12828
12845
|
:type VolumeSourceGooseFS: :class:`tencentcloud.tione.v20211111.models.GooseFS`
|
12829
12846
|
:param _SubUinName: 子用户名称
|
12830
12847
|
:type SubUinName: str
|
12848
|
+
:param _AppId: AppId
|
12849
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
12850
|
+
:type AppId: str
|
12831
12851
|
"""
|
12832
12852
|
self._Id = None
|
12833
12853
|
self._Name = None
|
@@ -12857,6 +12877,7 @@ class NotebookSetItem(AbstractModel):
|
|
12857
12877
|
self._SSHConfig = None
|
12858
12878
|
self._VolumeSourceGooseFS = None
|
12859
12879
|
self._SubUinName = None
|
12880
|
+
self._AppId = None
|
12860
12881
|
|
12861
12882
|
@property
|
12862
12883
|
def Id(self):
|
@@ -13189,6 +13210,18 @@ class NotebookSetItem(AbstractModel):
|
|
13189
13210
|
def SubUinName(self, SubUinName):
|
13190
13211
|
self._SubUinName = SubUinName
|
13191
13212
|
|
13213
|
+
@property
|
13214
|
+
def AppId(self):
|
13215
|
+
"""AppId
|
13216
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13217
|
+
:rtype: str
|
13218
|
+
"""
|
13219
|
+
return self._AppId
|
13220
|
+
|
13221
|
+
@AppId.setter
|
13222
|
+
def AppId(self, AppId):
|
13223
|
+
self._AppId = AppId
|
13224
|
+
|
13192
13225
|
|
13193
13226
|
def _deserialize(self, params):
|
13194
13227
|
self._Id = params.get("Id")
|
@@ -13232,6 +13265,7 @@ class NotebookSetItem(AbstractModel):
|
|
13232
13265
|
self._VolumeSourceGooseFS = GooseFS()
|
13233
13266
|
self._VolumeSourceGooseFS._deserialize(params.get("VolumeSourceGooseFS"))
|
13234
13267
|
self._SubUinName = params.get("SubUinName")
|
13268
|
+
self._AppId = params.get("AppId")
|
13235
13269
|
memeber_set = set(params.keys())
|
13236
13270
|
for name, value in vars(self).items():
|
13237
13271
|
property_name = name[1:]
|
@@ -1642,7 +1642,7 @@ class DeleteBasicModerationRequest(AbstractModel):
|
|
1642
1642
|
|
1643
1643
|
def __init__(self):
|
1644
1644
|
r"""
|
1645
|
-
:param _SdkAppId: TRTC的SDKAppId,和TRTC
|
1645
|
+
:param _SdkAppId: TRTC的SDKAppId,和TRTC的房间所使用的SDKAppId相同。
|
1646
1646
|
:type SdkAppId: int
|
1647
1647
|
:param _TaskId: 审核任务的唯一Id,在启动审核任务成功后会返回。
|
1648
1648
|
:type TaskId: str
|
@@ -1652,7 +1652,7 @@ class DeleteBasicModerationRequest(AbstractModel):
|
|
1652
1652
|
|
1653
1653
|
@property
|
1654
1654
|
def SdkAppId(self):
|
1655
|
-
"""TRTC的SDKAppId,和TRTC
|
1655
|
+
"""TRTC的SDKAppId,和TRTC的房间所使用的SDKAppId相同。
|
1656
1656
|
:rtype: int
|
1657
1657
|
"""
|
1658
1658
|
return self._SdkAppId
|
@@ -1693,7 +1693,7 @@ class DeleteBasicModerationResponse(AbstractModel):
|
|
1693
1693
|
|
1694
1694
|
def __init__(self):
|
1695
1695
|
r"""
|
1696
|
-
:param _TaskId: 审核任务的唯一Id
|
1696
|
+
:param _TaskId: 审核任务的唯一Id。
|
1697
1697
|
:type TaskId: str
|
1698
1698
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1699
1699
|
:type RequestId: str
|
@@ -1703,7 +1703,7 @@ class DeleteBasicModerationResponse(AbstractModel):
|
|
1703
1703
|
|
1704
1704
|
@property
|
1705
1705
|
def TaskId(self):
|
1706
|
-
"""审核任务的唯一Id
|
1706
|
+
"""审核任务的唯一Id。
|
1707
1707
|
:rtype: str
|
1708
1708
|
"""
|
1709
1709
|
return self._TaskId
|
@@ -2421,10 +2421,8 @@ class DescribeCallDetailInfoResponse(AbstractModel):
|
|
2421
2421
|
:param _Total: 返回的用户总条数
|
2422
2422
|
:type Total: int
|
2423
2423
|
:param _UserList: 用户信息列表
|
2424
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2425
2424
|
:type UserList: list of UserInformation
|
2426
2425
|
:param _Data: 质量数据
|
2427
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2428
2426
|
:type Data: list of QualityData
|
2429
2427
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2430
2428
|
:type RequestId: str
|
@@ -2448,7 +2446,6 @@ class DescribeCallDetailInfoResponse(AbstractModel):
|
|
2448
2446
|
@property
|
2449
2447
|
def UserList(self):
|
2450
2448
|
"""用户信息列表
|
2451
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2452
2449
|
:rtype: list of UserInformation
|
2453
2450
|
"""
|
2454
2451
|
return self._UserList
|
@@ -2460,7 +2457,6 @@ class DescribeCallDetailInfoResponse(AbstractModel):
|
|
2460
2457
|
@property
|
2461
2458
|
def Data(self):
|
2462
2459
|
"""质量数据
|
2463
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2464
2460
|
:rtype: list of QualityData
|
2465
2461
|
"""
|
2466
2462
|
return self._Data
|
@@ -3561,7 +3557,6 @@ class DescribeScaleInfoResponse(AbstractModel):
|
|
3561
3557
|
:param _Total: 返回的数据条数
|
3562
3558
|
:type Total: int
|
3563
3559
|
:param _ScaleList: 返回的数据
|
3564
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3565
3560
|
:type ScaleList: list of ScaleInfomation
|
3566
3561
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3567
3562
|
:type RequestId: str
|
@@ -3584,7 +3579,6 @@ class DescribeScaleInfoResponse(AbstractModel):
|
|
3584
3579
|
@property
|
3585
3580
|
def ScaleList(self):
|
3586
3581
|
"""返回的数据
|
3587
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3588
3582
|
:rtype: list of ScaleInfomation
|
3589
3583
|
"""
|
3590
3584
|
return self._ScaleList
|
@@ -5567,7 +5561,6 @@ class DescribeUserInfoResponse(AbstractModel):
|
|
5567
5561
|
:param _Total: 返回的用户总条数
|
5568
5562
|
:type Total: int
|
5569
5563
|
:param _UserList: 用户信息列表
|
5570
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5571
5564
|
:type UserList: list of UserInformation
|
5572
5565
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5573
5566
|
:type RequestId: str
|
@@ -5590,7 +5583,6 @@ class DescribeUserInfoResponse(AbstractModel):
|
|
5590
5583
|
@property
|
5591
5584
|
def UserList(self):
|
5592
5585
|
"""用户信息列表
|
5593
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5594
5586
|
:rtype: list of UserInformation
|
5595
5587
|
"""
|
5596
5588
|
return self._UserList
|
@@ -5698,10 +5690,8 @@ class DescribeWebRecordResponse(AbstractModel):
|
|
5698
5690
|
:param _Status: 1: 正在录制中
|
5699
5691
|
:type Status: int
|
5700
5692
|
:param _TaskId: 在使用RecordId查询时返回
|
5701
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5702
5693
|
:type TaskId: str
|
5703
5694
|
:param _RecordId: 在使用TaskId查询时返回
|
5704
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5705
5695
|
:type RecordId: str
|
5706
5696
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5707
5697
|
:type RequestId: str
|
@@ -5725,7 +5715,6 @@ class DescribeWebRecordResponse(AbstractModel):
|
|
5725
5715
|
@property
|
5726
5716
|
def TaskId(self):
|
5727
5717
|
"""在使用RecordId查询时返回
|
5728
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5729
5718
|
:rtype: str
|
5730
5719
|
"""
|
5731
5720
|
return self._TaskId
|
@@ -5737,7 +5726,6 @@ class DescribeWebRecordResponse(AbstractModel):
|
|
5737
5726
|
@property
|
5738
5727
|
def RecordId(self):
|
5739
5728
|
"""在使用TaskId查询时返回
|
5740
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5741
5729
|
:rtype: str
|
5742
5730
|
"""
|
5743
5731
|
return self._RecordId
|