tencentcloud-sdk-python 3.0.1169__py2.py3-none-any.whl → 3.0.1171__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/cdb/v20170320/models.py +4 -2
- tencentcloud/cds/v20180420/cds_client.py +0 -25
- tencentcloud/cds/v20180420/models.py +0 -55
- tencentcloud/cdwch/v20200915/models.py +39 -0
- tencentcloud/csip/v20221121/csip_client.py +46 -0
- tencentcloud/csip/v20221121/models.py +1051 -118
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +3 -1
- tencentcloud/cynosdb/v20190107/models.py +70 -0
- tencentcloud/domain/v20180808/models.py +6 -6
- tencentcloud/ess/v20201111/ess_client.py +2 -2
- tencentcloud/ess/v20201111/models.py +9 -8
- tencentcloud/essbasic/v20210526/essbasic_client.py +6 -2
- tencentcloud/essbasic/v20210526/models.py +3 -2
- tencentcloud/gaap/v20180529/models.py +26 -0
- tencentcloud/lighthouse/v20200324/errorcodes.py +3 -0
- tencentcloud/mongodb/v20190725/models.py +37 -0
- tencentcloud/ocr/v20181119/models.py +22 -16
- tencentcloud/redis/v20180412/models.py +47 -14
- tencentcloud/redis/v20180412/redis_client.py +2 -2
- tencentcloud/tcaplusdb/v20190823/models.py +66 -0
- tencentcloud/trtc/v20190722/models.py +8 -0
- tencentcloud/trtc/v20190722/trtc_client.py +1 -3
- tencentcloud/tse/v20201207/models.py +165 -0
- tencentcloud/tsf/v20180326/models.py +18 -0
- tencentcloud/wedata/v20210820/models.py +125 -3
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1169.dist-info → tencentcloud_sdk_python-3.0.1171.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1169.dist-info → tencentcloud_sdk_python-3.0.1171.dist-info}/RECORD +32 -32
- {tencentcloud_sdk_python-3.0.1169.dist-info → tencentcloud_sdk_python-3.0.1171.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1169.dist-info → tencentcloud_sdk_python-3.0.1171.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1169.dist-info → tencentcloud_sdk_python-3.0.1171.dist-info}/top_level.txt +0 -0
@@ -1312,20 +1312,28 @@ class CompareTablesInfo(AbstractModel):
|
|
1312
1312
|
def __init__(self):
|
1313
1313
|
r"""
|
1314
1314
|
:param _SrcTableClusterId: 源表格的集群id
|
1315
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1315
1316
|
:type SrcTableClusterId: str
|
1316
1317
|
:param _SrcTableGroupId: 源表格的表格组id
|
1318
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1317
1319
|
:type SrcTableGroupId: str
|
1318
1320
|
:param _SrcTableName: 源表格的表名
|
1321
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1319
1322
|
:type SrcTableName: str
|
1320
1323
|
:param _DstTableClusterId: 目标表格的集群id
|
1324
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1321
1325
|
:type DstTableClusterId: str
|
1322
1326
|
:param _DstTableGroupId: 目标表格的表格组id
|
1327
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1323
1328
|
:type DstTableGroupId: str
|
1324
1329
|
:param _DstTableName: 目标表格的表名
|
1330
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1325
1331
|
:type DstTableName: str
|
1326
1332
|
:param _SrcTableInstanceId: 源表格的实例id
|
1333
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1327
1334
|
:type SrcTableInstanceId: str
|
1328
1335
|
:param _DstTableInstanceId: 目标表格的实例id
|
1336
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1329
1337
|
:type DstTableInstanceId: str
|
1330
1338
|
"""
|
1331
1339
|
self._SrcTableClusterId = None
|
@@ -5321,16 +5329,22 @@ class KafkaInfo(AbstractModel):
|
|
5321
5329
|
def __init__(self):
|
5322
5330
|
r"""
|
5323
5331
|
:param _Address: Kafka address
|
5332
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5324
5333
|
:type Address: str
|
5325
5334
|
:param _Topic: Kafka topic
|
5335
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5326
5336
|
:type Topic: str
|
5327
5337
|
:param _User: kafka username
|
5338
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5328
5339
|
:type User: str
|
5329
5340
|
:param _Password: kafka password
|
5341
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5330
5342
|
:type Password: str
|
5331
5343
|
:param _Instance: ckafka实例
|
5344
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5332
5345
|
:type Instance: str
|
5333
5346
|
:param _IsVpc: 是否走VPC
|
5347
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5334
5348
|
:type IsVpc: int
|
5335
5349
|
"""
|
5336
5350
|
self._Address = None
|
@@ -8768,6 +8782,9 @@ class SnapshotResult(AbstractModel):
|
|
8768
8782
|
:param _SnapshotStatus: 快照状态,0 生成中 1 正常 2 删除中 3 已失效 4 回档使用中
|
8769
8783
|
注意:此字段可能返回 null,表示取不到有效值。
|
8770
8784
|
:type SnapshotStatus: int
|
8785
|
+
:param _ApplicationId: 申请单ID
|
8786
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8787
|
+
:type ApplicationId: str
|
8771
8788
|
"""
|
8772
8789
|
self._TableGroupId = None
|
8773
8790
|
self._TableName = None
|
@@ -8779,6 +8796,7 @@ class SnapshotResult(AbstractModel):
|
|
8779
8796
|
self._SnapshotCreateTime = None
|
8780
8797
|
self._SnapshotSize = None
|
8781
8798
|
self._SnapshotStatus = None
|
8799
|
+
self._ApplicationId = None
|
8782
8800
|
|
8783
8801
|
@property
|
8784
8802
|
def TableGroupId(self):
|
@@ -8860,6 +8878,14 @@ class SnapshotResult(AbstractModel):
|
|
8860
8878
|
def SnapshotStatus(self, SnapshotStatus):
|
8861
8879
|
self._SnapshotStatus = SnapshotStatus
|
8862
8880
|
|
8881
|
+
@property
|
8882
|
+
def ApplicationId(self):
|
8883
|
+
return self._ApplicationId
|
8884
|
+
|
8885
|
+
@ApplicationId.setter
|
8886
|
+
def ApplicationId(self, ApplicationId):
|
8887
|
+
self._ApplicationId = ApplicationId
|
8888
|
+
|
8863
8889
|
|
8864
8890
|
def _deserialize(self, params):
|
8865
8891
|
self._TableGroupId = params.get("TableGroupId")
|
@@ -8874,6 +8900,7 @@ class SnapshotResult(AbstractModel):
|
|
8874
8900
|
self._SnapshotCreateTime = params.get("SnapshotCreateTime")
|
8875
8901
|
self._SnapshotSize = params.get("SnapshotSize")
|
8876
8902
|
self._SnapshotStatus = params.get("SnapshotStatus")
|
8903
|
+
self._ApplicationId = params.get("ApplicationId")
|
8877
8904
|
memeber_set = set(params.keys())
|
8878
8905
|
for name, value in vars(self).items():
|
8879
8906
|
property_name = name[1:]
|
@@ -10250,6 +10277,15 @@ class TaskInfoNew(AbstractModel):
|
|
10250
10277
|
:type Operator: str
|
10251
10278
|
:param _Content: 任务详情
|
10252
10279
|
:type Content: str
|
10280
|
+
:param _TableGroupId: 表格组ID
|
10281
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10282
|
+
:type TableGroupId: str
|
10283
|
+
:param _TableGroupName: 表格组名称
|
10284
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10285
|
+
:type TableGroupName: str
|
10286
|
+
:param _TableName: 表名称
|
10287
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10288
|
+
:type TableName: str
|
10253
10289
|
"""
|
10254
10290
|
self._TaskId = None
|
10255
10291
|
self._TaskType = None
|
@@ -10261,6 +10297,9 @@ class TaskInfoNew(AbstractModel):
|
|
10261
10297
|
self._UpdateTime = None
|
10262
10298
|
self._Operator = None
|
10263
10299
|
self._Content = None
|
10300
|
+
self._TableGroupId = None
|
10301
|
+
self._TableGroupName = None
|
10302
|
+
self._TableName = None
|
10264
10303
|
|
10265
10304
|
@property
|
10266
10305
|
def TaskId(self):
|
@@ -10342,6 +10381,30 @@ class TaskInfoNew(AbstractModel):
|
|
10342
10381
|
def Content(self, Content):
|
10343
10382
|
self._Content = Content
|
10344
10383
|
|
10384
|
+
@property
|
10385
|
+
def TableGroupId(self):
|
10386
|
+
return self._TableGroupId
|
10387
|
+
|
10388
|
+
@TableGroupId.setter
|
10389
|
+
def TableGroupId(self, TableGroupId):
|
10390
|
+
self._TableGroupId = TableGroupId
|
10391
|
+
|
10392
|
+
@property
|
10393
|
+
def TableGroupName(self):
|
10394
|
+
return self._TableGroupName
|
10395
|
+
|
10396
|
+
@TableGroupName.setter
|
10397
|
+
def TableGroupName(self, TableGroupName):
|
10398
|
+
self._TableGroupName = TableGroupName
|
10399
|
+
|
10400
|
+
@property
|
10401
|
+
def TableName(self):
|
10402
|
+
return self._TableName
|
10403
|
+
|
10404
|
+
@TableName.setter
|
10405
|
+
def TableName(self, TableName):
|
10406
|
+
self._TableName = TableName
|
10407
|
+
|
10345
10408
|
|
10346
10409
|
def _deserialize(self, params):
|
10347
10410
|
self._TaskId = params.get("TaskId")
|
@@ -10354,6 +10417,9 @@ class TaskInfoNew(AbstractModel):
|
|
10354
10417
|
self._UpdateTime = params.get("UpdateTime")
|
10355
10418
|
self._Operator = params.get("Operator")
|
10356
10419
|
self._Content = params.get("Content")
|
10420
|
+
self._TableGroupId = params.get("TableGroupId")
|
10421
|
+
self._TableGroupName = params.get("TableGroupName")
|
10422
|
+
self._TableName = params.get("TableName")
|
10357
10423
|
memeber_set = set(params.keys())
|
10358
10424
|
for name, value in vars(self).items():
|
10359
10425
|
property_name = name[1:]
|
@@ -10238,18 +10238,26 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
10238
10238
|
|
10239
10239
|
@property
|
10240
10240
|
def IMAdminUserId(self):
|
10241
|
+
warnings.warn("parameter `IMAdminUserId` is deprecated", DeprecationWarning)
|
10242
|
+
|
10241
10243
|
return self._IMAdminUserId
|
10242
10244
|
|
10243
10245
|
@IMAdminUserId.setter
|
10244
10246
|
def IMAdminUserId(self, IMAdminUserId):
|
10247
|
+
warnings.warn("parameter `IMAdminUserId` is deprecated", DeprecationWarning)
|
10248
|
+
|
10245
10249
|
self._IMAdminUserId = IMAdminUserId
|
10246
10250
|
|
10247
10251
|
@property
|
10248
10252
|
def IMAdminUserSig(self):
|
10253
|
+
warnings.warn("parameter `IMAdminUserSig` is deprecated", DeprecationWarning)
|
10254
|
+
|
10249
10255
|
return self._IMAdminUserSig
|
10250
10256
|
|
10251
10257
|
@IMAdminUserSig.setter
|
10252
10258
|
def IMAdminUserSig(self, IMAdminUserSig):
|
10259
|
+
warnings.warn("parameter `IMAdminUserSig` is deprecated", DeprecationWarning)
|
10260
|
+
|
10253
10261
|
self._IMAdminUserSig = IMAdminUserSig
|
10254
10262
|
|
10255
10263
|
@property
|
@@ -974,9 +974,7 @@ class TrtcClient(AbstractClient):
|
|
974
974
|
- 拉取全房间的流。
|
975
975
|
- 拉取特定用户的流。
|
976
976
|
|
977
|
-
|
978
|
-
- 如果填写IMAdminUserId和IMAdminUserSig,服务端会调用IM的[发送群组消息](https://cloud.tencent.com/document/product/269/1629)API来向端上实时下发消息。客户端只需监听群组消息的回调即可,比如[web端回调](https://cloud.tencent.com/document/product/269/75319)。
|
979
|
-
- 如果不填写IMAdminUserId和IMAdminUserSig,服务端使用TRTC自定义消息通道下发消息,CmdId固定是1。客户端只需监听自定义消息的回调即可,比如[c++回调](https://cloud.tencent.com/document/product/647/79637#4cd82f4edb24992a15a25187089e1565)。
|
977
|
+
服务端通过TRTC的自定义消息实时下发字幕和会议记录,CmdId固定是1。客户端只需监听自定义消息的回调即可,比如[c++回调](https://cloud.tencent.com/document/product/647/79637#4cd82f4edb24992a15a25187089e1565)。其他客户端比如安卓、Web等同样可在该链接处找到。
|
980
978
|
|
981
979
|
服务端实时下发的消息是JSON字符串,实时字幕具体格式如下:
|
982
980
|
`{
|
@@ -13338,11 +13338,22 @@ class DescribePublicAddressConfigResponse(AbstractModel):
|
|
13338
13338
|
|
13339
13339
|
def __init__(self):
|
13340
13340
|
r"""
|
13341
|
+
:param _Result: 公网地址信息
|
13342
|
+
:type Result: :class:`tencentcloud.tse.v20201207.models.DescribePublicAddressConfigResult`
|
13341
13343
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13342
13344
|
:type RequestId: str
|
13343
13345
|
"""
|
13346
|
+
self._Result = None
|
13344
13347
|
self._RequestId = None
|
13345
13348
|
|
13349
|
+
@property
|
13350
|
+
def Result(self):
|
13351
|
+
return self._Result
|
13352
|
+
|
13353
|
+
@Result.setter
|
13354
|
+
def Result(self, Result):
|
13355
|
+
self._Result = Result
|
13356
|
+
|
13346
13357
|
@property
|
13347
13358
|
def RequestId(self):
|
13348
13359
|
return self._RequestId
|
@@ -13353,9 +13364,77 @@ class DescribePublicAddressConfigResponse(AbstractModel):
|
|
13353
13364
|
|
13354
13365
|
|
13355
13366
|
def _deserialize(self, params):
|
13367
|
+
if params.get("Result") is not None:
|
13368
|
+
self._Result = DescribePublicAddressConfigResult()
|
13369
|
+
self._Result._deserialize(params.get("Result"))
|
13356
13370
|
self._RequestId = params.get("RequestId")
|
13357
13371
|
|
13358
13372
|
|
13373
|
+
class DescribePublicAddressConfigResult(AbstractModel):
|
13374
|
+
"""获取云原生api网关公网地址信息响应结果
|
13375
|
+
|
13376
|
+
"""
|
13377
|
+
|
13378
|
+
def __init__(self):
|
13379
|
+
r"""
|
13380
|
+
:param _GatewayId: 网关实例id
|
13381
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13382
|
+
:type GatewayId: str
|
13383
|
+
:param _ConfigList: 公网地址信息
|
13384
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13385
|
+
:type ConfigList: list of PublicAddressConfig
|
13386
|
+
:param _TotalCount: 总个数
|
13387
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13388
|
+
:type TotalCount: int
|
13389
|
+
"""
|
13390
|
+
self._GatewayId = None
|
13391
|
+
self._ConfigList = None
|
13392
|
+
self._TotalCount = None
|
13393
|
+
|
13394
|
+
@property
|
13395
|
+
def GatewayId(self):
|
13396
|
+
return self._GatewayId
|
13397
|
+
|
13398
|
+
@GatewayId.setter
|
13399
|
+
def GatewayId(self, GatewayId):
|
13400
|
+
self._GatewayId = GatewayId
|
13401
|
+
|
13402
|
+
@property
|
13403
|
+
def ConfigList(self):
|
13404
|
+
return self._ConfigList
|
13405
|
+
|
13406
|
+
@ConfigList.setter
|
13407
|
+
def ConfigList(self, ConfigList):
|
13408
|
+
self._ConfigList = ConfigList
|
13409
|
+
|
13410
|
+
@property
|
13411
|
+
def TotalCount(self):
|
13412
|
+
return self._TotalCount
|
13413
|
+
|
13414
|
+
@TotalCount.setter
|
13415
|
+
def TotalCount(self, TotalCount):
|
13416
|
+
self._TotalCount = TotalCount
|
13417
|
+
|
13418
|
+
|
13419
|
+
def _deserialize(self, params):
|
13420
|
+
self._GatewayId = params.get("GatewayId")
|
13421
|
+
if params.get("ConfigList") is not None:
|
13422
|
+
self._ConfigList = []
|
13423
|
+
for item in params.get("ConfigList"):
|
13424
|
+
obj = PublicAddressConfig()
|
13425
|
+
obj._deserialize(item)
|
13426
|
+
self._ConfigList.append(obj)
|
13427
|
+
self._TotalCount = params.get("TotalCount")
|
13428
|
+
memeber_set = set(params.keys())
|
13429
|
+
for name, value in vars(self).items():
|
13430
|
+
property_name = name[1:]
|
13431
|
+
if property_name in memeber_set:
|
13432
|
+
memeber_set.remove(property_name)
|
13433
|
+
if len(memeber_set) > 0:
|
13434
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13435
|
+
|
13436
|
+
|
13437
|
+
|
13359
13438
|
class DescribePublicNetworkRequest(AbstractModel):
|
13360
13439
|
"""DescribePublicNetwork请求参数结构体
|
13361
13440
|
|
@@ -22004,6 +22083,92 @@ class PolarisLimiterAddress(AbstractModel):
|
|
22004
22083
|
|
22005
22084
|
|
22006
22085
|
|
22086
|
+
class PublicAddressConfig(AbstractModel):
|
22087
|
+
"""公网地址信息
|
22088
|
+
|
22089
|
+
"""
|
22090
|
+
|
22091
|
+
def __init__(self):
|
22092
|
+
r"""
|
22093
|
+
:param _Vip: 公网 ip
|
22094
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22095
|
+
:type Vip: str
|
22096
|
+
:param _InternetMaxBandwidthOut: 公网最大带宽
|
22097
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22098
|
+
:type InternetMaxBandwidthOut: int
|
22099
|
+
:param _GroupId: 公网所属分组 id
|
22100
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22101
|
+
:type GroupId: str
|
22102
|
+
:param _GroupName: 公网所属分组名
|
22103
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22104
|
+
:type GroupName: str
|
22105
|
+
:param _NetworkId: 公网负载均衡 id
|
22106
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22107
|
+
:type NetworkId: str
|
22108
|
+
"""
|
22109
|
+
self._Vip = None
|
22110
|
+
self._InternetMaxBandwidthOut = None
|
22111
|
+
self._GroupId = None
|
22112
|
+
self._GroupName = None
|
22113
|
+
self._NetworkId = None
|
22114
|
+
|
22115
|
+
@property
|
22116
|
+
def Vip(self):
|
22117
|
+
return self._Vip
|
22118
|
+
|
22119
|
+
@Vip.setter
|
22120
|
+
def Vip(self, Vip):
|
22121
|
+
self._Vip = Vip
|
22122
|
+
|
22123
|
+
@property
|
22124
|
+
def InternetMaxBandwidthOut(self):
|
22125
|
+
return self._InternetMaxBandwidthOut
|
22126
|
+
|
22127
|
+
@InternetMaxBandwidthOut.setter
|
22128
|
+
def InternetMaxBandwidthOut(self, InternetMaxBandwidthOut):
|
22129
|
+
self._InternetMaxBandwidthOut = InternetMaxBandwidthOut
|
22130
|
+
|
22131
|
+
@property
|
22132
|
+
def GroupId(self):
|
22133
|
+
return self._GroupId
|
22134
|
+
|
22135
|
+
@GroupId.setter
|
22136
|
+
def GroupId(self, GroupId):
|
22137
|
+
self._GroupId = GroupId
|
22138
|
+
|
22139
|
+
@property
|
22140
|
+
def GroupName(self):
|
22141
|
+
return self._GroupName
|
22142
|
+
|
22143
|
+
@GroupName.setter
|
22144
|
+
def GroupName(self, GroupName):
|
22145
|
+
self._GroupName = GroupName
|
22146
|
+
|
22147
|
+
@property
|
22148
|
+
def NetworkId(self):
|
22149
|
+
return self._NetworkId
|
22150
|
+
|
22151
|
+
@NetworkId.setter
|
22152
|
+
def NetworkId(self, NetworkId):
|
22153
|
+
self._NetworkId = NetworkId
|
22154
|
+
|
22155
|
+
|
22156
|
+
def _deserialize(self, params):
|
22157
|
+
self._Vip = params.get("Vip")
|
22158
|
+
self._InternetMaxBandwidthOut = params.get("InternetMaxBandwidthOut")
|
22159
|
+
self._GroupId = params.get("GroupId")
|
22160
|
+
self._GroupName = params.get("GroupName")
|
22161
|
+
self._NetworkId = params.get("NetworkId")
|
22162
|
+
memeber_set = set(params.keys())
|
22163
|
+
for name, value in vars(self).items():
|
22164
|
+
property_name = name[1:]
|
22165
|
+
if property_name in memeber_set:
|
22166
|
+
memeber_set.remove(property_name)
|
22167
|
+
if len(memeber_set) > 0:
|
22168
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
22169
|
+
|
22170
|
+
|
22171
|
+
|
22007
22172
|
class PublishConfigFilesRequest(AbstractModel):
|
22008
22173
|
"""PublishConfigFiles请求参数结构体
|
22009
22174
|
|
@@ -26781,6 +26781,9 @@ class FileConfigRelease(AbstractModel):
|
|
26781
26781
|
:param _ClusterName: 集群名称
|
26782
26782
|
注意:此字段可能返回 null,表示取不到有效值。
|
26783
26783
|
:type ClusterName: str
|
26784
|
+
:param _ConfigCenters: 配置中心发布详情
|
26785
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
26786
|
+
:type ConfigCenters: list of TsfConfigCenter
|
26784
26787
|
"""
|
26785
26788
|
self._ConfigReleaseId = None
|
26786
26789
|
self._ConfigId = None
|
@@ -26794,6 +26797,7 @@ class FileConfigRelease(AbstractModel):
|
|
26794
26797
|
self._NamespaceName = None
|
26795
26798
|
self._ClusterId = None
|
26796
26799
|
self._ClusterName = None
|
26800
|
+
self._ConfigCenters = None
|
26797
26801
|
|
26798
26802
|
@property
|
26799
26803
|
def ConfigReleaseId(self):
|
@@ -26891,6 +26895,14 @@ class FileConfigRelease(AbstractModel):
|
|
26891
26895
|
def ClusterName(self, ClusterName):
|
26892
26896
|
self._ClusterName = ClusterName
|
26893
26897
|
|
26898
|
+
@property
|
26899
|
+
def ConfigCenters(self):
|
26900
|
+
return self._ConfigCenters
|
26901
|
+
|
26902
|
+
@ConfigCenters.setter
|
26903
|
+
def ConfigCenters(self, ConfigCenters):
|
26904
|
+
self._ConfigCenters = ConfigCenters
|
26905
|
+
|
26894
26906
|
|
26895
26907
|
def _deserialize(self, params):
|
26896
26908
|
self._ConfigReleaseId = params.get("ConfigReleaseId")
|
@@ -26905,6 +26917,12 @@ class FileConfigRelease(AbstractModel):
|
|
26905
26917
|
self._NamespaceName = params.get("NamespaceName")
|
26906
26918
|
self._ClusterId = params.get("ClusterId")
|
26907
26919
|
self._ClusterName = params.get("ClusterName")
|
26920
|
+
if params.get("ConfigCenters") is not None:
|
26921
|
+
self._ConfigCenters = []
|
26922
|
+
for item in params.get("ConfigCenters"):
|
26923
|
+
obj = TsfConfigCenter()
|
26924
|
+
obj._deserialize(item)
|
26925
|
+
self._ConfigCenters.append(obj)
|
26908
26926
|
memeber_set = set(params.keys())
|
26909
26927
|
for name, value in vars(self).items():
|
26910
26928
|
property_name = name[1:]
|
@@ -41172,6 +41172,125 @@ class ModifyWorkflowScheduleResponse(AbstractModel):
|
|
41172
41172
|
self._RequestId = params.get("RequestId")
|
41173
41173
|
|
41174
41174
|
|
41175
|
+
class MoveTasksToFolderRequest(AbstractModel):
|
41176
|
+
"""MoveTasksToFolder请求参数结构体
|
41177
|
+
|
41178
|
+
"""
|
41179
|
+
|
41180
|
+
def __init__(self):
|
41181
|
+
r"""
|
41182
|
+
:param _ProjectId: 项目Id
|
41183
|
+
:type ProjectId: str
|
41184
|
+
:param _WorkflowId: 工作流ID
|
41185
|
+
:type WorkflowId: str
|
41186
|
+
:param _TaskFolderId: 任务文件夹ID
|
41187
|
+
:type TaskFolderId: str
|
41188
|
+
:param _TaskIds: 任务ID
|
41189
|
+
:type TaskIds: list of str
|
41190
|
+
:param _VirtualTaskIds: 虚拟任务ID
|
41191
|
+
:type VirtualTaskIds: list of str
|
41192
|
+
"""
|
41193
|
+
self._ProjectId = None
|
41194
|
+
self._WorkflowId = None
|
41195
|
+
self._TaskFolderId = None
|
41196
|
+
self._TaskIds = None
|
41197
|
+
self._VirtualTaskIds = None
|
41198
|
+
|
41199
|
+
@property
|
41200
|
+
def ProjectId(self):
|
41201
|
+
return self._ProjectId
|
41202
|
+
|
41203
|
+
@ProjectId.setter
|
41204
|
+
def ProjectId(self, ProjectId):
|
41205
|
+
self._ProjectId = ProjectId
|
41206
|
+
|
41207
|
+
@property
|
41208
|
+
def WorkflowId(self):
|
41209
|
+
return self._WorkflowId
|
41210
|
+
|
41211
|
+
@WorkflowId.setter
|
41212
|
+
def WorkflowId(self, WorkflowId):
|
41213
|
+
self._WorkflowId = WorkflowId
|
41214
|
+
|
41215
|
+
@property
|
41216
|
+
def TaskFolderId(self):
|
41217
|
+
return self._TaskFolderId
|
41218
|
+
|
41219
|
+
@TaskFolderId.setter
|
41220
|
+
def TaskFolderId(self, TaskFolderId):
|
41221
|
+
self._TaskFolderId = TaskFolderId
|
41222
|
+
|
41223
|
+
@property
|
41224
|
+
def TaskIds(self):
|
41225
|
+
return self._TaskIds
|
41226
|
+
|
41227
|
+
@TaskIds.setter
|
41228
|
+
def TaskIds(self, TaskIds):
|
41229
|
+
self._TaskIds = TaskIds
|
41230
|
+
|
41231
|
+
@property
|
41232
|
+
def VirtualTaskIds(self):
|
41233
|
+
return self._VirtualTaskIds
|
41234
|
+
|
41235
|
+
@VirtualTaskIds.setter
|
41236
|
+
def VirtualTaskIds(self, VirtualTaskIds):
|
41237
|
+
self._VirtualTaskIds = VirtualTaskIds
|
41238
|
+
|
41239
|
+
|
41240
|
+
def _deserialize(self, params):
|
41241
|
+
self._ProjectId = params.get("ProjectId")
|
41242
|
+
self._WorkflowId = params.get("WorkflowId")
|
41243
|
+
self._TaskFolderId = params.get("TaskFolderId")
|
41244
|
+
self._TaskIds = params.get("TaskIds")
|
41245
|
+
self._VirtualTaskIds = params.get("VirtualTaskIds")
|
41246
|
+
memeber_set = set(params.keys())
|
41247
|
+
for name, value in vars(self).items():
|
41248
|
+
property_name = name[1:]
|
41249
|
+
if property_name in memeber_set:
|
41250
|
+
memeber_set.remove(property_name)
|
41251
|
+
if len(memeber_set) > 0:
|
41252
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
41253
|
+
|
41254
|
+
|
41255
|
+
|
41256
|
+
class MoveTasksToFolderResponse(AbstractModel):
|
41257
|
+
"""MoveTasksToFolder返回参数结构体
|
41258
|
+
|
41259
|
+
"""
|
41260
|
+
|
41261
|
+
def __init__(self):
|
41262
|
+
r"""
|
41263
|
+
:param _Data: true代表成功
|
41264
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
41265
|
+
:type Data: bool
|
41266
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
41267
|
+
:type RequestId: str
|
41268
|
+
"""
|
41269
|
+
self._Data = None
|
41270
|
+
self._RequestId = None
|
41271
|
+
|
41272
|
+
@property
|
41273
|
+
def Data(self):
|
41274
|
+
return self._Data
|
41275
|
+
|
41276
|
+
@Data.setter
|
41277
|
+
def Data(self, Data):
|
41278
|
+
self._Data = Data
|
41279
|
+
|
41280
|
+
@property
|
41281
|
+
def RequestId(self):
|
41282
|
+
return self._RequestId
|
41283
|
+
|
41284
|
+
@RequestId.setter
|
41285
|
+
def RequestId(self, RequestId):
|
41286
|
+
self._RequestId = RequestId
|
41287
|
+
|
41288
|
+
|
41289
|
+
def _deserialize(self, params):
|
41290
|
+
self._Data = params.get("Data")
|
41291
|
+
self._RequestId = params.get("RequestId")
|
41292
|
+
|
41293
|
+
|
41175
41294
|
class OfflineInstance(AbstractModel):
|
41176
41295
|
"""离线实例
|
41177
41296
|
|
@@ -42226,7 +42345,7 @@ class OpsTaskCanvasInfoList(AbstractModel):
|
|
42226
42345
|
:type LinksList: list of OpsTaskLinkInfoDto
|
42227
42346
|
:param _CirculateTaskList: 画布循环依赖任务信息
|
42228
42347
|
注意:此字段可能返回 null,表示取不到有效值。
|
42229
|
-
:type CirculateTaskList:
|
42348
|
+
:type CirculateTaskList: list of OpsTaskCanvasDto
|
42230
42349
|
"""
|
42231
42350
|
self._TasksList = None
|
42232
42351
|
self._LinksList = None
|
@@ -42271,8 +42390,11 @@ class OpsTaskCanvasInfoList(AbstractModel):
|
|
42271
42390
|
obj._deserialize(item)
|
42272
42391
|
self._LinksList.append(obj)
|
42273
42392
|
if params.get("CirculateTaskList") is not None:
|
42274
|
-
self._CirculateTaskList =
|
42275
|
-
|
42393
|
+
self._CirculateTaskList = []
|
42394
|
+
for item in params.get("CirculateTaskList"):
|
42395
|
+
obj = OpsTaskCanvasDto()
|
42396
|
+
obj._deserialize(item)
|
42397
|
+
self._CirculateTaskList.append(obj)
|
42276
42398
|
memeber_set = set(params.keys())
|
42277
42399
|
for name, value in vars(self).items():
|
42278
42400
|
property_name = name[1:]
|
@@ -4563,6 +4563,29 @@ class WedataClient(AbstractClient):
|
|
4563
4563
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
4564
4564
|
|
4565
4565
|
|
4566
|
+
def MoveTasksToFolder(self, request):
|
4567
|
+
"""编排空间-工作流-移动任务到工作流文件夹
|
4568
|
+
|
4569
|
+
:param request: Request instance for MoveTasksToFolder.
|
4570
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.MoveTasksToFolderRequest`
|
4571
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.MoveTasksToFolderResponse`
|
4572
|
+
|
4573
|
+
"""
|
4574
|
+
try:
|
4575
|
+
params = request._serialize()
|
4576
|
+
headers = request.headers
|
4577
|
+
body = self.call("MoveTasksToFolder", params, headers=headers)
|
4578
|
+
response = json.loads(body)
|
4579
|
+
model = models.MoveTasksToFolderResponse()
|
4580
|
+
model._deserialize(response["Response"])
|
4581
|
+
return model
|
4582
|
+
except Exception as e:
|
4583
|
+
if isinstance(e, TencentCloudSDKException):
|
4584
|
+
raise
|
4585
|
+
else:
|
4586
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
4587
|
+
|
4588
|
+
|
4566
4589
|
def RegisterEvent(self, request):
|
4567
4590
|
"""<p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
4568
4591
|
注册事件
|