tencentcloud-sdk-python 3.0.1216__py2.py3-none-any.whl → 3.0.1218__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 +13 -1
- tencentcloud/ccc/v20200210/models.py +18 -0
- tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +24 -1
- tencentcloud/cdwdoris/v20211228/models.py +196 -4
- tencentcloud/cfg/v20210820/models.py +1 -1
- tencentcloud/cls/v20201016/models.py +14 -1
- tencentcloud/cwp/v20180228/models.py +84 -0
- tencentcloud/cynosdb/v20190107/models.py +26 -0
- tencentcloud/essbasic/v20210526/models.py +3 -1
- tencentcloud/facefusion/v20220927/models.py +13 -4
- tencentcloud/lcic/v20220817/lcic_client.py +23 -0
- tencentcloud/lcic/v20220817/models.py +261 -0
- tencentcloud/lke/v20231130/models.py +2 -2
- tencentcloud/mna/v20210119/models.py +26 -0
- tencentcloud/mongodb/v20190725/models.py +13 -5
- tencentcloud/monitor/v20180724/models.py +13 -0
- tencentcloud/ocr/v20181119/models.py +14 -0
- tencentcloud/rum/v20210622/models.py +12 -0
- tencentcloud/scf/v20180416/models.py +3 -3
- tencentcloud/ssl/v20191205/errorcodes.py +3 -0
- tencentcloud/ssl/v20191205/ssl_client.py +1 -1
- tencentcloud/tag/v20180813/models.py +33 -33
- tencentcloud/tmt/v20180321/models.py +6 -6
- tencentcloud/vod/v20180717/models.py +5 -5
- tencentcloud/vod/v20180717/vod_client.py +2 -2
- {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/RECORD +31 -31
- {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1216.dist-info → tencentcloud_sdk_python-3.0.1218.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -1423,7 +1423,7 @@ class BGPInstance(AbstractModel):
|
|
1423
1423
|
:param _BasicPlusFlag: 是否是基础防护加强版 0: 不是 1: 是
|
1424
1424
|
注意:此字段可能返回 null,表示取不到有效值。
|
1425
1425
|
:type BasicPlusFlag: int
|
1426
|
-
:param _PlanCntFlag:
|
1426
|
+
:param _PlanCntFlag: 是否标准版2.0 0: 包含标准版2.0 1: 只查询标准版2.0 2: 不查标准版2.0
|
1427
1427
|
注意:此字段可能返回 null,表示取不到有效值。
|
1428
1428
|
:type PlanCntFlag: int
|
1429
1429
|
:param _TransRegionFlag: 是否跨区域产品 0: 不包含跨区域产品 1: 中国大陆跨区域产品 2: 非中国大陆跨区域产品
|
@@ -6663,6 +6663,8 @@ class DescribeBGPIPL7RulesRequest(AbstractModel):
|
|
6663
6663
|
:type Cname: str
|
6664
6664
|
:param _Export: 默认为false,当为true时,将不对各个规则做策略检查,直接导出所有规则
|
6665
6665
|
:type Export: bool
|
6666
|
+
:param _Source: 源站,模糊查询
|
6667
|
+
:type Source: str
|
6666
6668
|
"""
|
6667
6669
|
self._Business = None
|
6668
6670
|
self._StatusList = None
|
@@ -6673,6 +6675,7 @@ class DescribeBGPIPL7RulesRequest(AbstractModel):
|
|
6673
6675
|
self._ProtocolList = None
|
6674
6676
|
self._Cname = None
|
6675
6677
|
self._Export = None
|
6678
|
+
self._Source = None
|
6676
6679
|
|
6677
6680
|
@property
|
6678
6681
|
def Business(self):
|
@@ -6746,6 +6749,14 @@ class DescribeBGPIPL7RulesRequest(AbstractModel):
|
|
6746
6749
|
def Export(self, Export):
|
6747
6750
|
self._Export = Export
|
6748
6751
|
|
6752
|
+
@property
|
6753
|
+
def Source(self):
|
6754
|
+
return self._Source
|
6755
|
+
|
6756
|
+
@Source.setter
|
6757
|
+
def Source(self, Source):
|
6758
|
+
self._Source = Source
|
6759
|
+
|
6749
6760
|
|
6750
6761
|
def _deserialize(self, params):
|
6751
6762
|
self._Business = params.get("Business")
|
@@ -6757,6 +6768,7 @@ class DescribeBGPIPL7RulesRequest(AbstractModel):
|
|
6757
6768
|
self._ProtocolList = params.get("ProtocolList")
|
6758
6769
|
self._Cname = params.get("Cname")
|
6759
6770
|
self._Export = params.get("Export")
|
6771
|
+
self._Source = params.get("Source")
|
6760
6772
|
memeber_set = set(params.keys())
|
6761
6773
|
for name, value in vars(self).items():
|
6762
6774
|
property_name = name[1:]
|
@@ -10444,6 +10444,14 @@ class TelCdrInfo(AbstractModel):
|
|
10444
10444
|
:param _AsrUrl: 获取录音ASR文本信息地址
|
10445
10445
|
注意:此字段可能返回 null,表示取不到有效值。
|
10446
10446
|
:type AsrUrl: str
|
10447
|
+
:param _AsrStatus: AsrUrl的状态:Complete
|
10448
|
+
已完成;
|
10449
|
+
Processing
|
10450
|
+
正在生成中;
|
10451
|
+
NotExists
|
10452
|
+
无记录(未开启生成离线asr或者无套餐包)
|
10453
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10454
|
+
:type AsrStatus: str
|
10447
10455
|
:param _CustomRecordURL: 录音转存第三方COS地址
|
10448
10456
|
注意:此字段可能返回 null,表示取不到有效值。
|
10449
10457
|
:type CustomRecordURL: str
|
@@ -10491,6 +10499,7 @@ class TelCdrInfo(AbstractModel):
|
|
10491
10499
|
self._UUI = None
|
10492
10500
|
self._IVRKeyPressedEx = None
|
10493
10501
|
self._AsrUrl = None
|
10502
|
+
self._AsrStatus = None
|
10494
10503
|
self._CustomRecordURL = None
|
10495
10504
|
self._Remark = None
|
10496
10505
|
self._QueuedSkillGroupName = None
|
@@ -10749,6 +10758,14 @@ class TelCdrInfo(AbstractModel):
|
|
10749
10758
|
def AsrUrl(self, AsrUrl):
|
10750
10759
|
self._AsrUrl = AsrUrl
|
10751
10760
|
|
10761
|
+
@property
|
10762
|
+
def AsrStatus(self):
|
10763
|
+
return self._AsrStatus
|
10764
|
+
|
10765
|
+
@AsrStatus.setter
|
10766
|
+
def AsrStatus(self, AsrStatus):
|
10767
|
+
self._AsrStatus = AsrStatus
|
10768
|
+
|
10752
10769
|
@property
|
10753
10770
|
def CustomRecordURL(self):
|
10754
10771
|
return self._CustomRecordURL
|
@@ -10839,6 +10856,7 @@ class TelCdrInfo(AbstractModel):
|
|
10839
10856
|
obj._deserialize(item)
|
10840
10857
|
self._IVRKeyPressedEx.append(obj)
|
10841
10858
|
self._AsrUrl = params.get("AsrUrl")
|
10859
|
+
self._AsrStatus = params.get("AsrStatus")
|
10842
10860
|
self._CustomRecordURL = params.get("CustomRecordURL")
|
10843
10861
|
self._Remark = params.get("Remark")
|
10844
10862
|
self._QueuedSkillGroupName = params.get("QueuedSkillGroupName")
|
@@ -832,7 +832,7 @@ class CdwdorisClient(AbstractClient):
|
|
832
832
|
|
833
833
|
|
834
834
|
def DescribeSqlApis(self, request):
|
835
|
-
"""针对驱动sql
|
835
|
+
"""针对驱动sql命令查询集群接口
|
836
836
|
|
837
837
|
:param request: Request instance for DescribeSqlApis.
|
838
838
|
:type request: :class:`tencentcloud.cdwdoris.v20211228.models.DescribeSqlApisRequest`
|
@@ -946,6 +946,29 @@ class CdwdorisClient(AbstractClient):
|
|
946
946
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
947
947
|
|
948
948
|
|
949
|
+
def ModifyClusterConfigs(self, request):
|
950
|
+
"""在集群配置页面修改集群配置文件接口,xml模式
|
951
|
+
|
952
|
+
:param request: Request instance for ModifyClusterConfigs.
|
953
|
+
:type request: :class:`tencentcloud.cdwdoris.v20211228.models.ModifyClusterConfigsRequest`
|
954
|
+
:rtype: :class:`tencentcloud.cdwdoris.v20211228.models.ModifyClusterConfigsResponse`
|
955
|
+
|
956
|
+
"""
|
957
|
+
try:
|
958
|
+
params = request._serialize()
|
959
|
+
headers = request.headers
|
960
|
+
body = self.call("ModifyClusterConfigs", params, headers=headers)
|
961
|
+
response = json.loads(body)
|
962
|
+
model = models.ModifyClusterConfigsResponse()
|
963
|
+
model._deserialize(response["Response"])
|
964
|
+
return model
|
965
|
+
except Exception as e:
|
966
|
+
if isinstance(e, TencentCloudSDKException):
|
967
|
+
raise
|
968
|
+
else:
|
969
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
970
|
+
|
971
|
+
|
949
972
|
def ModifyCoolDownPolicy(self, request):
|
950
973
|
"""修改冷热分层策略
|
951
974
|
|
@@ -1329,6 +1329,75 @@ class ConfigKeyValue(AbstractModel):
|
|
1329
1329
|
|
1330
1330
|
|
1331
1331
|
|
1332
|
+
class ConfigSubmitContext(AbstractModel):
|
1333
|
+
"""配置文件修改信息
|
1334
|
+
|
1335
|
+
"""
|
1336
|
+
|
1337
|
+
def __init__(self):
|
1338
|
+
r"""
|
1339
|
+
:param _FileName: 配置文件名称
|
1340
|
+
:type FileName: str
|
1341
|
+
:param _NewConfValue: 配置文件新内容,base64编码
|
1342
|
+
:type NewConfValue: str
|
1343
|
+
:param _OldConfValue: 配置文件旧内容,base64编码
|
1344
|
+
:type OldConfValue: str
|
1345
|
+
:param _FilePath: 文件路径
|
1346
|
+
:type FilePath: str
|
1347
|
+
"""
|
1348
|
+
self._FileName = None
|
1349
|
+
self._NewConfValue = None
|
1350
|
+
self._OldConfValue = None
|
1351
|
+
self._FilePath = None
|
1352
|
+
|
1353
|
+
@property
|
1354
|
+
def FileName(self):
|
1355
|
+
return self._FileName
|
1356
|
+
|
1357
|
+
@FileName.setter
|
1358
|
+
def FileName(self, FileName):
|
1359
|
+
self._FileName = FileName
|
1360
|
+
|
1361
|
+
@property
|
1362
|
+
def NewConfValue(self):
|
1363
|
+
return self._NewConfValue
|
1364
|
+
|
1365
|
+
@NewConfValue.setter
|
1366
|
+
def NewConfValue(self, NewConfValue):
|
1367
|
+
self._NewConfValue = NewConfValue
|
1368
|
+
|
1369
|
+
@property
|
1370
|
+
def OldConfValue(self):
|
1371
|
+
return self._OldConfValue
|
1372
|
+
|
1373
|
+
@OldConfValue.setter
|
1374
|
+
def OldConfValue(self, OldConfValue):
|
1375
|
+
self._OldConfValue = OldConfValue
|
1376
|
+
|
1377
|
+
@property
|
1378
|
+
def FilePath(self):
|
1379
|
+
return self._FilePath
|
1380
|
+
|
1381
|
+
@FilePath.setter
|
1382
|
+
def FilePath(self, FilePath):
|
1383
|
+
self._FilePath = FilePath
|
1384
|
+
|
1385
|
+
|
1386
|
+
def _deserialize(self, params):
|
1387
|
+
self._FileName = params.get("FileName")
|
1388
|
+
self._NewConfValue = params.get("NewConfValue")
|
1389
|
+
self._OldConfValue = params.get("OldConfValue")
|
1390
|
+
self._FilePath = params.get("FilePath")
|
1391
|
+
memeber_set = set(params.keys())
|
1392
|
+
for name, value in vars(self).items():
|
1393
|
+
property_name = name[1:]
|
1394
|
+
if property_name in memeber_set:
|
1395
|
+
memeber_set.remove(property_name)
|
1396
|
+
if len(memeber_set) > 0:
|
1397
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1398
|
+
|
1399
|
+
|
1400
|
+
|
1332
1401
|
class CoolDownBackend(AbstractModel):
|
1333
1402
|
"""冷热分层backend节点信息
|
1334
1403
|
|
@@ -2499,7 +2568,7 @@ class DeleteBackUpDataRequest(AbstractModel):
|
|
2499
2568
|
:type InstanceId: str
|
2500
2569
|
:param _BackUpJobId: 任务id
|
2501
2570
|
:type BackUpJobId: int
|
2502
|
-
:param _IsDeleteAll:
|
2571
|
+
:param _IsDeleteAll: 是否删除所有实例
|
2503
2572
|
:type IsDeleteAll: bool
|
2504
2573
|
"""
|
2505
2574
|
self._InstanceId = None
|
@@ -5072,7 +5141,7 @@ class DescribeInstancesHealthStateRequest(AbstractModel):
|
|
5072
5141
|
r"""
|
5073
5142
|
:param _InstanceID: 集群Id
|
5074
5143
|
:type InstanceID: str
|
5075
|
-
:param _Input:
|
5144
|
+
:param _Input: 为空:代表当前appId下所有集群 或者 某个集群Id
|
5076
5145
|
:type Input: str
|
5077
5146
|
"""
|
5078
5147
|
self._InstanceID = None
|
@@ -5119,7 +5188,7 @@ class DescribeInstancesHealthStateResponse(AbstractModel):
|
|
5119
5188
|
|
5120
5189
|
def __init__(self):
|
5121
5190
|
r"""
|
5122
|
-
:param _Data:
|
5191
|
+
:param _Data: base64编码后的数据,包含了集群的健康信息
|
5123
5192
|
注意:此字段可能返回 null,表示取不到有效值。
|
5124
5193
|
:type Data: str
|
5125
5194
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -7798,6 +7867,117 @@ class InstanceOperation(AbstractModel):
|
|
7798
7867
|
|
7799
7868
|
|
7800
7869
|
|
7870
|
+
class ModifyClusterConfigsRequest(AbstractModel):
|
7871
|
+
"""ModifyClusterConfigs请求参数结构体
|
7872
|
+
|
7873
|
+
"""
|
7874
|
+
|
7875
|
+
def __init__(self):
|
7876
|
+
r"""
|
7877
|
+
:param _InstanceId: 集群ID,例如cdwch-xxxx
|
7878
|
+
:type InstanceId: str
|
7879
|
+
:param _ModifyConfContext: 配置文件修改信息
|
7880
|
+
:type ModifyConfContext: list of ConfigSubmitContext
|
7881
|
+
:param _Remark: 修改原因
|
7882
|
+
:type Remark: str
|
7883
|
+
"""
|
7884
|
+
self._InstanceId = None
|
7885
|
+
self._ModifyConfContext = None
|
7886
|
+
self._Remark = None
|
7887
|
+
|
7888
|
+
@property
|
7889
|
+
def InstanceId(self):
|
7890
|
+
return self._InstanceId
|
7891
|
+
|
7892
|
+
@InstanceId.setter
|
7893
|
+
def InstanceId(self, InstanceId):
|
7894
|
+
self._InstanceId = InstanceId
|
7895
|
+
|
7896
|
+
@property
|
7897
|
+
def ModifyConfContext(self):
|
7898
|
+
return self._ModifyConfContext
|
7899
|
+
|
7900
|
+
@ModifyConfContext.setter
|
7901
|
+
def ModifyConfContext(self, ModifyConfContext):
|
7902
|
+
self._ModifyConfContext = ModifyConfContext
|
7903
|
+
|
7904
|
+
@property
|
7905
|
+
def Remark(self):
|
7906
|
+
return self._Remark
|
7907
|
+
|
7908
|
+
@Remark.setter
|
7909
|
+
def Remark(self, Remark):
|
7910
|
+
self._Remark = Remark
|
7911
|
+
|
7912
|
+
|
7913
|
+
def _deserialize(self, params):
|
7914
|
+
self._InstanceId = params.get("InstanceId")
|
7915
|
+
if params.get("ModifyConfContext") is not None:
|
7916
|
+
self._ModifyConfContext = []
|
7917
|
+
for item in params.get("ModifyConfContext"):
|
7918
|
+
obj = ConfigSubmitContext()
|
7919
|
+
obj._deserialize(item)
|
7920
|
+
self._ModifyConfContext.append(obj)
|
7921
|
+
self._Remark = params.get("Remark")
|
7922
|
+
memeber_set = set(params.keys())
|
7923
|
+
for name, value in vars(self).items():
|
7924
|
+
property_name = name[1:]
|
7925
|
+
if property_name in memeber_set:
|
7926
|
+
memeber_set.remove(property_name)
|
7927
|
+
if len(memeber_set) > 0:
|
7928
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7929
|
+
|
7930
|
+
|
7931
|
+
|
7932
|
+
class ModifyClusterConfigsResponse(AbstractModel):
|
7933
|
+
"""ModifyClusterConfigs返回参数结构体
|
7934
|
+
|
7935
|
+
"""
|
7936
|
+
|
7937
|
+
def __init__(self):
|
7938
|
+
r"""
|
7939
|
+
:param _FlowId: 流程相关信息
|
7940
|
+
:type FlowId: int
|
7941
|
+
:param _ErrorMsg: 错误信息
|
7942
|
+
:type ErrorMsg: str
|
7943
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7944
|
+
:type RequestId: str
|
7945
|
+
"""
|
7946
|
+
self._FlowId = None
|
7947
|
+
self._ErrorMsg = None
|
7948
|
+
self._RequestId = None
|
7949
|
+
|
7950
|
+
@property
|
7951
|
+
def FlowId(self):
|
7952
|
+
return self._FlowId
|
7953
|
+
|
7954
|
+
@FlowId.setter
|
7955
|
+
def FlowId(self, FlowId):
|
7956
|
+
self._FlowId = FlowId
|
7957
|
+
|
7958
|
+
@property
|
7959
|
+
def ErrorMsg(self):
|
7960
|
+
return self._ErrorMsg
|
7961
|
+
|
7962
|
+
@ErrorMsg.setter
|
7963
|
+
def ErrorMsg(self, ErrorMsg):
|
7964
|
+
self._ErrorMsg = ErrorMsg
|
7965
|
+
|
7966
|
+
@property
|
7967
|
+
def RequestId(self):
|
7968
|
+
return self._RequestId
|
7969
|
+
|
7970
|
+
@RequestId.setter
|
7971
|
+
def RequestId(self, RequestId):
|
7972
|
+
self._RequestId = RequestId
|
7973
|
+
|
7974
|
+
|
7975
|
+
def _deserialize(self, params):
|
7976
|
+
self._FlowId = params.get("FlowId")
|
7977
|
+
self._ErrorMsg = params.get("ErrorMsg")
|
7978
|
+
self._RequestId = params.get("RequestId")
|
7979
|
+
|
7980
|
+
|
7801
7981
|
class ModifyCoolDownPolicyRequest(AbstractModel):
|
7802
7982
|
"""ModifyCoolDownPolicy请求参数结构体
|
7803
7983
|
|
@@ -8971,7 +9151,7 @@ class NodeInfos(AbstractModel):
|
|
8971
9151
|
|
8972
9152
|
def __init__(self):
|
8973
9153
|
r"""
|
8974
|
-
:param _NodeName:
|
9154
|
+
:param _NodeName: 节点名称
|
8975
9155
|
:type NodeName: str
|
8976
9156
|
:param _Status: 节点状态
|
8977
9157
|
:type Status: int
|
@@ -11486,6 +11666,8 @@ class UserInfo(AbstractModel):
|
|
11486
11666
|
:type Describe: str
|
11487
11667
|
:param _OldPwd: 旧密码
|
11488
11668
|
:type OldPwd: str
|
11669
|
+
:param _CamUin: 绑定的子用户uin
|
11670
|
+
:type CamUin: str
|
11489
11671
|
"""
|
11490
11672
|
self._InstanceId = None
|
11491
11673
|
self._UserName = None
|
@@ -11494,6 +11676,7 @@ class UserInfo(AbstractModel):
|
|
11494
11676
|
self._OldWhiteHost = None
|
11495
11677
|
self._Describe = None
|
11496
11678
|
self._OldPwd = None
|
11679
|
+
self._CamUin = None
|
11497
11680
|
|
11498
11681
|
@property
|
11499
11682
|
def InstanceId(self):
|
@@ -11551,6 +11734,14 @@ class UserInfo(AbstractModel):
|
|
11551
11734
|
def OldPwd(self, OldPwd):
|
11552
11735
|
self._OldPwd = OldPwd
|
11553
11736
|
|
11737
|
+
@property
|
11738
|
+
def CamUin(self):
|
11739
|
+
return self._CamUin
|
11740
|
+
|
11741
|
+
@CamUin.setter
|
11742
|
+
def CamUin(self, CamUin):
|
11743
|
+
self._CamUin = CamUin
|
11744
|
+
|
11554
11745
|
|
11555
11746
|
def _deserialize(self, params):
|
11556
11747
|
self._InstanceId = params.get("InstanceId")
|
@@ -11560,6 +11751,7 @@ class UserInfo(AbstractModel):
|
|
11560
11751
|
self._OldWhiteHost = params.get("OldWhiteHost")
|
11561
11752
|
self._Describe = params.get("Describe")
|
11562
11753
|
self._OldPwd = params.get("OldPwd")
|
11754
|
+
self._CamUin = params.get("CamUin")
|
11563
11755
|
memeber_set = set(params.keys())
|
11564
11756
|
for name, value in vars(self).items():
|
11565
11757
|
property_name = name[1:]
|
@@ -312,7 +312,7 @@ class ActionLibraryListResult(AbstractModel):
|
|
312
312
|
:type RelationActionId: int
|
313
313
|
:param _ActionCommand: 操作命令
|
314
314
|
:type ActionCommand: str
|
315
|
-
:param _ActionCommandType:
|
315
|
+
:param _ActionCommandType: 动作类型(0 -- tat 1 -- 云API)
|
316
316
|
:type ActionCommandType: int
|
317
317
|
:param _ActionContent: 自定义动作的参数,json string
|
318
318
|
:type ActionContent: str
|
@@ -5385,6 +5385,8 @@ class CreateDataTransformRequest(AbstractModel):
|
|
5385
5385
|
:type EnableFlag: int
|
5386
5386
|
:param _PreviewLogStatistics: 用于预览加工结果的测试数据
|
5387
5387
|
:type PreviewLogStatistics: list of PreviewLogStatistic
|
5388
|
+
:param _DataTransformType: 数据加工类型。0:标准加工任务; 1:前置加工任务。前置加工任务将采集的日志处理完成后,再写入日志主题。
|
5389
|
+
:type DataTransformType: int
|
5388
5390
|
"""
|
5389
5391
|
self._FuncType = None
|
5390
5392
|
self._SrcTopicId = None
|
@@ -5394,6 +5396,7 @@ class CreateDataTransformRequest(AbstractModel):
|
|
5394
5396
|
self._DstResources = None
|
5395
5397
|
self._EnableFlag = None
|
5396
5398
|
self._PreviewLogStatistics = None
|
5399
|
+
self._DataTransformType = None
|
5397
5400
|
|
5398
5401
|
@property
|
5399
5402
|
def FuncType(self):
|
@@ -5459,6 +5462,14 @@ class CreateDataTransformRequest(AbstractModel):
|
|
5459
5462
|
def PreviewLogStatistics(self, PreviewLogStatistics):
|
5460
5463
|
self._PreviewLogStatistics = PreviewLogStatistics
|
5461
5464
|
|
5465
|
+
@property
|
5466
|
+
def DataTransformType(self):
|
5467
|
+
return self._DataTransformType
|
5468
|
+
|
5469
|
+
@DataTransformType.setter
|
5470
|
+
def DataTransformType(self, DataTransformType):
|
5471
|
+
self._DataTransformType = DataTransformType
|
5472
|
+
|
5462
5473
|
|
5463
5474
|
def _deserialize(self, params):
|
5464
5475
|
self._FuncType = params.get("FuncType")
|
@@ -5479,6 +5490,7 @@ class CreateDataTransformRequest(AbstractModel):
|
|
5479
5490
|
obj = PreviewLogStatistic()
|
5480
5491
|
obj._deserialize(item)
|
5481
5492
|
self._PreviewLogStatistics.append(obj)
|
5493
|
+
self._DataTransformType = params.get("DataTransformType")
|
5482
5494
|
memeber_set = set(params.keys())
|
5483
5495
|
for name, value in vars(self).items():
|
5484
5496
|
property_name = name[1:]
|
@@ -18677,10 +18689,11 @@ class MonitorTime(AbstractModel):
|
|
18677
18689
|
|
18678
18690
|
def __init__(self):
|
18679
18691
|
r"""
|
18680
|
-
:param _Type: 执行周期, 可选值:`Period`、`Fixed`。
|
18692
|
+
:param _Type: 执行周期, 可选值:`Period`、`Fixed`、`Cron`。
|
18681
18693
|
|
18682
18694
|
- Period:固定频率
|
18683
18695
|
- Fixed:固定时间
|
18696
|
+
- Cron:Cron表达式
|
18684
18697
|
:type Type: str
|
18685
18698
|
:param _Time: 执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440。
|
18686
18699
|
当type为`Period`,`Fixed`时,time字段生效。
|