tencentcloud-sdk-python 3.0.1199__py2.py3-none-any.whl → 3.0.1201__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/aiart/v20221229/aiart_client.py +3 -1
- tencentcloud/apm/v20210622/models.py +12 -0
- tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +437 -0
- tencentcloud/cdwdoris/v20211228/errorcodes.py +3 -0
- tencentcloud/cdwdoris/v20211228/models.py +4980 -1695
- tencentcloud/cfw/v20190904/models.py +15 -2
- tencentcloud/cls/v20201016/models.py +28 -9
- tencentcloud/csip/v20221121/csip_client.py +23 -0
- tencentcloud/csip/v20221121/models.py +163 -0
- tencentcloud/cwp/v20180228/models.py +26 -0
- tencentcloud/dlc/v20210125/dlc_client.py +1 -1
- tencentcloud/dlc/v20210125/models.py +42 -1
- tencentcloud/domain/v20180808/models.py +1 -1
- tencentcloud/ess/v20201111/ess_client.py +21 -3
- tencentcloud/ess/v20201111/models.py +4 -6
- tencentcloud/essbasic/v20210526/models.py +12 -12
- tencentcloud/faceid/v20180301/models.py +1 -1
- tencentcloud/iotexplorer/v20190423/errorcodes.py +3 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
- tencentcloud/iotexplorer/v20190423/models.py +28 -29
- tencentcloud/live/v20180801/models.py +1 -1
- tencentcloud/lke/v20231130/models.py +816 -1
- tencentcloud/organization/v20210331/errorcodes.py +3 -0
- tencentcloud/trro/v20220325/models.py +251 -1
- tencentcloud/trtc/v20190722/models.py +132 -1
- tencentcloud/trtc/v20190722/trtc_client.py +36 -99
- tencentcloud/tsf/v20180326/models.py +12 -12
- tencentcloud/vpc/v20170312/models.py +1 -0
- {tencentcloud_sdk_python-3.0.1199.dist-info → tencentcloud_sdk_python-3.0.1201.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1199.dist-info → tencentcloud_sdk_python-3.0.1201.dist-info}/RECORD +34 -34
- {tencentcloud_sdk_python-3.0.1199.dist-info → tencentcloud_sdk_python-3.0.1201.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1199.dist-info → tencentcloud_sdk_python-3.0.1201.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1199.dist-info → tencentcloud_sdk_python-3.0.1201.dist-info}/top_level.txt +0 -0
@@ -5341,6 +5341,9 @@ class DescAcItem(AbstractModel):
|
|
5341
5341
|
:param _TargetName: 访问目的名称
|
5342
5342
|
注意:此字段可能返回 null,表示取不到有效值。
|
5343
5343
|
:type TargetName: str
|
5344
|
+
:param _LastHitTime: 规则最近命中时间
|
5345
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5346
|
+
:type LastHitTime: str
|
5344
5347
|
"""
|
5345
5348
|
self._SourceContent = None
|
5346
5349
|
self._TargetContent = None
|
@@ -5373,6 +5376,7 @@ class DescAcItem(AbstractModel):
|
|
5373
5376
|
self._ParamTemplateId = None
|
5374
5377
|
self._SourceName = None
|
5375
5378
|
self._TargetName = None
|
5379
|
+
self._LastHitTime = None
|
5376
5380
|
|
5377
5381
|
@property
|
5378
5382
|
def SourceContent(self):
|
@@ -5622,6 +5626,14 @@ class DescAcItem(AbstractModel):
|
|
5622
5626
|
def TargetName(self, TargetName):
|
5623
5627
|
self._TargetName = TargetName
|
5624
5628
|
|
5629
|
+
@property
|
5630
|
+
def LastHitTime(self):
|
5631
|
+
return self._LastHitTime
|
5632
|
+
|
5633
|
+
@LastHitTime.setter
|
5634
|
+
def LastHitTime(self, LastHitTime):
|
5635
|
+
self._LastHitTime = LastHitTime
|
5636
|
+
|
5625
5637
|
|
5626
5638
|
def _deserialize(self, params):
|
5627
5639
|
self._SourceContent = params.get("SourceContent")
|
@@ -5660,6 +5672,7 @@ class DescAcItem(AbstractModel):
|
|
5660
5672
|
self._ParamTemplateId = params.get("ParamTemplateId")
|
5661
5673
|
self._SourceName = params.get("SourceName")
|
5662
5674
|
self._TargetName = params.get("TargetName")
|
5675
|
+
self._LastHitTime = params.get("LastHitTime")
|
5663
5676
|
memeber_set = set(params.keys())
|
5664
5677
|
for name, value in vars(self).items():
|
5665
5678
|
property_name = name[1:]
|
@@ -6366,9 +6379,9 @@ class DescribeAddressTemplateListResponse(AbstractModel):
|
|
6366
6379
|
:type DomainTemplateCount: int
|
6367
6380
|
:param _PortTemplateCount: 协议端口模板数量
|
6368
6381
|
:type PortTemplateCount: int
|
6369
|
-
:param _UsedTemplateCount:
|
6382
|
+
:param _UsedTemplateCount: 已使用的地址模板数
|
6370
6383
|
:type UsedTemplateCount: int
|
6371
|
-
:param _TemplateQuotaCount:
|
6384
|
+
:param _TemplateQuotaCount: 地址模板配额数量
|
6372
6385
|
:type TemplateQuotaCount: int
|
6373
6386
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6374
6387
|
:type RequestId: str
|
@@ -7313,6 +7313,9 @@ class DataTransformTaskInfo(AbstractModel):
|
|
7313
7313
|
:type DstResources: list of DataTransformResouceInfo
|
7314
7314
|
:param _EtlContent: 加工逻辑函数。
|
7315
7315
|
:type EtlContent: str
|
7316
|
+
:param _DataTransformType: 数据加工类型。0:标准加工任务;1:前置加工任务。
|
7317
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7318
|
+
:type DataTransformType: int
|
7316
7319
|
"""
|
7317
7320
|
self._Name = None
|
7318
7321
|
self._TaskId = None
|
@@ -7327,6 +7330,7 @@ class DataTransformTaskInfo(AbstractModel):
|
|
7327
7330
|
self._LogsetId = None
|
7328
7331
|
self._DstResources = None
|
7329
7332
|
self._EtlContent = None
|
7333
|
+
self._DataTransformType = None
|
7330
7334
|
|
7331
7335
|
@property
|
7332
7336
|
def Name(self):
|
@@ -7432,6 +7436,14 @@ class DataTransformTaskInfo(AbstractModel):
|
|
7432
7436
|
def EtlContent(self, EtlContent):
|
7433
7437
|
self._EtlContent = EtlContent
|
7434
7438
|
|
7439
|
+
@property
|
7440
|
+
def DataTransformType(self):
|
7441
|
+
return self._DataTransformType
|
7442
|
+
|
7443
|
+
@DataTransformType.setter
|
7444
|
+
def DataTransformType(self, DataTransformType):
|
7445
|
+
self._DataTransformType = DataTransformType
|
7446
|
+
|
7435
7447
|
|
7436
7448
|
def _deserialize(self, params):
|
7437
7449
|
self._Name = params.get("Name")
|
@@ -7452,6 +7464,7 @@ class DataTransformTaskInfo(AbstractModel):
|
|
7452
7464
|
obj._deserialize(item)
|
7453
7465
|
self._DstResources.append(obj)
|
7454
7466
|
self._EtlContent = params.get("EtlContent")
|
7467
|
+
self._DataTransformType = params.get("DataTransformType")
|
7455
7468
|
memeber_set = set(params.keys())
|
7456
7469
|
for name, value in vars(self).items():
|
7457
7470
|
property_name = name[1:]
|
@@ -9837,25 +9850,31 @@ class DescribeDataTransformInfoRequest(AbstractModel):
|
|
9837
9850
|
|
9838
9851
|
def __init__(self):
|
9839
9852
|
r"""
|
9840
|
-
:param _Filters:
|
9841
|
-
|
9853
|
+
:param _Filters: - taskName
|
9842
9854
|
按照【加工任务名称】进行过滤。
|
9843
9855
|
类型:String
|
9844
|
-
|
9845
9856
|
必选:否
|
9846
9857
|
|
9847
|
-
|
9848
|
-
|
9858
|
+
- taskId
|
9849
9859
|
按照【加工任务id】进行过滤。
|
9850
9860
|
类型:String
|
9851
|
-
|
9852
9861
|
必选:否
|
9853
9862
|
|
9854
|
-
|
9855
|
-
|
9863
|
+
- topicId
|
9856
9864
|
按照【源topicId】进行过滤。
|
9857
9865
|
类型:String
|
9858
|
-
|
9866
|
+
必选:否
|
9867
|
+
- status
|
9868
|
+
按照【 任务运行状态】进行过滤。 1:准备中,2:运行中,3:停止中,4:已停止
|
9869
|
+
类型:String
|
9870
|
+
必选:否
|
9871
|
+
- hasServiceLog
|
9872
|
+
按照【是否开启服务日志】进行过滤。 1:未开启,2:已开启
|
9873
|
+
类型:String
|
9874
|
+
必选:否
|
9875
|
+
- dstTopicType
|
9876
|
+
按照【目标topic类型】进行过滤。 1:固定,2:动态
|
9877
|
+
类型:String
|
9859
9878
|
必选:否
|
9860
9879
|
|
9861
9880
|
每次请求的Filters的上限为10,Filter.Values的上限为100。
|
@@ -187,6 +187,29 @@ class CsipClient(AbstractClient):
|
|
187
187
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
188
188
|
|
189
189
|
|
190
|
+
def DescribeCFWAssetStatistics(self, request):
|
191
|
+
"""云防资产中心统计数据
|
192
|
+
|
193
|
+
:param request: Request instance for DescribeCFWAssetStatistics.
|
194
|
+
:type request: :class:`tencentcloud.csip.v20221121.models.DescribeCFWAssetStatisticsRequest`
|
195
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.DescribeCFWAssetStatisticsResponse`
|
196
|
+
|
197
|
+
"""
|
198
|
+
try:
|
199
|
+
params = request._serialize()
|
200
|
+
headers = request.headers
|
201
|
+
body = self.call("DescribeCFWAssetStatistics", params, headers=headers)
|
202
|
+
response = json.loads(body)
|
203
|
+
model = models.DescribeCFWAssetStatisticsResponse()
|
204
|
+
model._deserialize(response["Response"])
|
205
|
+
return model
|
206
|
+
except Exception as e:
|
207
|
+
if isinstance(e, TencentCloudSDKException):
|
208
|
+
raise
|
209
|
+
else:
|
210
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
211
|
+
|
212
|
+
|
190
213
|
def DescribeCVMAssetInfo(self, request):
|
191
214
|
"""cvm详情
|
192
215
|
|
@@ -6951,6 +6951,169 @@ class DescribeAssetViewVulRiskListResponse(AbstractModel):
|
|
6951
6951
|
self._RequestId = params.get("RequestId")
|
6952
6952
|
|
6953
6953
|
|
6954
|
+
class DescribeCFWAssetStatisticsRequest(AbstractModel):
|
6955
|
+
"""DescribeCFWAssetStatistics请求参数结构体
|
6956
|
+
|
6957
|
+
"""
|
6958
|
+
|
6959
|
+
|
6960
|
+
class DescribeCFWAssetStatisticsResponse(AbstractModel):
|
6961
|
+
"""DescribeCFWAssetStatistics返回参数结构体
|
6962
|
+
|
6963
|
+
"""
|
6964
|
+
|
6965
|
+
def __init__(self):
|
6966
|
+
r"""
|
6967
|
+
:param _NetworkTotal: 网络资产总数
|
6968
|
+
:type NetworkTotal: int
|
6969
|
+
:param _ClbTotal: 资产clb数量
|
6970
|
+
:type ClbTotal: int
|
6971
|
+
:param _NatTotal: nat数量
|
6972
|
+
:type NatTotal: int
|
6973
|
+
:param _PublicAssetTotal: 公网ip数量
|
6974
|
+
:type PublicAssetTotal: int
|
6975
|
+
:param _CVMAssetTotal: 主机数量
|
6976
|
+
:type CVMAssetTotal: int
|
6977
|
+
:param _CFGTotal: 配置风险
|
6978
|
+
:type CFGTotal: int
|
6979
|
+
:param _PortTotal: 端口风险
|
6980
|
+
:type PortTotal: int
|
6981
|
+
:param _WebsiteTotal: 内容风险
|
6982
|
+
:type WebsiteTotal: int
|
6983
|
+
:param _ServerTotal: 风险服务暴露
|
6984
|
+
:type ServerTotal: int
|
6985
|
+
:param _WeakPasswordTotal: 弱口令风险
|
6986
|
+
:type WeakPasswordTotal: int
|
6987
|
+
:param _VULTotal: 漏洞风险
|
6988
|
+
:type VULTotal: int
|
6989
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6990
|
+
:type RequestId: str
|
6991
|
+
"""
|
6992
|
+
self._NetworkTotal = None
|
6993
|
+
self._ClbTotal = None
|
6994
|
+
self._NatTotal = None
|
6995
|
+
self._PublicAssetTotal = None
|
6996
|
+
self._CVMAssetTotal = None
|
6997
|
+
self._CFGTotal = None
|
6998
|
+
self._PortTotal = None
|
6999
|
+
self._WebsiteTotal = None
|
7000
|
+
self._ServerTotal = None
|
7001
|
+
self._WeakPasswordTotal = None
|
7002
|
+
self._VULTotal = None
|
7003
|
+
self._RequestId = None
|
7004
|
+
|
7005
|
+
@property
|
7006
|
+
def NetworkTotal(self):
|
7007
|
+
return self._NetworkTotal
|
7008
|
+
|
7009
|
+
@NetworkTotal.setter
|
7010
|
+
def NetworkTotal(self, NetworkTotal):
|
7011
|
+
self._NetworkTotal = NetworkTotal
|
7012
|
+
|
7013
|
+
@property
|
7014
|
+
def ClbTotal(self):
|
7015
|
+
return self._ClbTotal
|
7016
|
+
|
7017
|
+
@ClbTotal.setter
|
7018
|
+
def ClbTotal(self, ClbTotal):
|
7019
|
+
self._ClbTotal = ClbTotal
|
7020
|
+
|
7021
|
+
@property
|
7022
|
+
def NatTotal(self):
|
7023
|
+
return self._NatTotal
|
7024
|
+
|
7025
|
+
@NatTotal.setter
|
7026
|
+
def NatTotal(self, NatTotal):
|
7027
|
+
self._NatTotal = NatTotal
|
7028
|
+
|
7029
|
+
@property
|
7030
|
+
def PublicAssetTotal(self):
|
7031
|
+
return self._PublicAssetTotal
|
7032
|
+
|
7033
|
+
@PublicAssetTotal.setter
|
7034
|
+
def PublicAssetTotal(self, PublicAssetTotal):
|
7035
|
+
self._PublicAssetTotal = PublicAssetTotal
|
7036
|
+
|
7037
|
+
@property
|
7038
|
+
def CVMAssetTotal(self):
|
7039
|
+
return self._CVMAssetTotal
|
7040
|
+
|
7041
|
+
@CVMAssetTotal.setter
|
7042
|
+
def CVMAssetTotal(self, CVMAssetTotal):
|
7043
|
+
self._CVMAssetTotal = CVMAssetTotal
|
7044
|
+
|
7045
|
+
@property
|
7046
|
+
def CFGTotal(self):
|
7047
|
+
return self._CFGTotal
|
7048
|
+
|
7049
|
+
@CFGTotal.setter
|
7050
|
+
def CFGTotal(self, CFGTotal):
|
7051
|
+
self._CFGTotal = CFGTotal
|
7052
|
+
|
7053
|
+
@property
|
7054
|
+
def PortTotal(self):
|
7055
|
+
return self._PortTotal
|
7056
|
+
|
7057
|
+
@PortTotal.setter
|
7058
|
+
def PortTotal(self, PortTotal):
|
7059
|
+
self._PortTotal = PortTotal
|
7060
|
+
|
7061
|
+
@property
|
7062
|
+
def WebsiteTotal(self):
|
7063
|
+
return self._WebsiteTotal
|
7064
|
+
|
7065
|
+
@WebsiteTotal.setter
|
7066
|
+
def WebsiteTotal(self, WebsiteTotal):
|
7067
|
+
self._WebsiteTotal = WebsiteTotal
|
7068
|
+
|
7069
|
+
@property
|
7070
|
+
def ServerTotal(self):
|
7071
|
+
return self._ServerTotal
|
7072
|
+
|
7073
|
+
@ServerTotal.setter
|
7074
|
+
def ServerTotal(self, ServerTotal):
|
7075
|
+
self._ServerTotal = ServerTotal
|
7076
|
+
|
7077
|
+
@property
|
7078
|
+
def WeakPasswordTotal(self):
|
7079
|
+
return self._WeakPasswordTotal
|
7080
|
+
|
7081
|
+
@WeakPasswordTotal.setter
|
7082
|
+
def WeakPasswordTotal(self, WeakPasswordTotal):
|
7083
|
+
self._WeakPasswordTotal = WeakPasswordTotal
|
7084
|
+
|
7085
|
+
@property
|
7086
|
+
def VULTotal(self):
|
7087
|
+
return self._VULTotal
|
7088
|
+
|
7089
|
+
@VULTotal.setter
|
7090
|
+
def VULTotal(self, VULTotal):
|
7091
|
+
self._VULTotal = VULTotal
|
7092
|
+
|
7093
|
+
@property
|
7094
|
+
def RequestId(self):
|
7095
|
+
return self._RequestId
|
7096
|
+
|
7097
|
+
@RequestId.setter
|
7098
|
+
def RequestId(self, RequestId):
|
7099
|
+
self._RequestId = RequestId
|
7100
|
+
|
7101
|
+
|
7102
|
+
def _deserialize(self, params):
|
7103
|
+
self._NetworkTotal = params.get("NetworkTotal")
|
7104
|
+
self._ClbTotal = params.get("ClbTotal")
|
7105
|
+
self._NatTotal = params.get("NatTotal")
|
7106
|
+
self._PublicAssetTotal = params.get("PublicAssetTotal")
|
7107
|
+
self._CVMAssetTotal = params.get("CVMAssetTotal")
|
7108
|
+
self._CFGTotal = params.get("CFGTotal")
|
7109
|
+
self._PortTotal = params.get("PortTotal")
|
7110
|
+
self._WebsiteTotal = params.get("WebsiteTotal")
|
7111
|
+
self._ServerTotal = params.get("ServerTotal")
|
7112
|
+
self._WeakPasswordTotal = params.get("WeakPasswordTotal")
|
7113
|
+
self._VULTotal = params.get("VULTotal")
|
7114
|
+
self._RequestId = params.get("RequestId")
|
7115
|
+
|
7116
|
+
|
6954
7117
|
class DescribeCVMAssetInfoRequest(AbstractModel):
|
6955
7118
|
"""DescribeCVMAssetInfo请求参数结构体
|
6956
7119
|
|
@@ -10592,6 +10592,9 @@ class BashEvent(AbstractModel):
|
|
10592
10592
|
:param _RegexBashCmd: 自动生成的正则表达式
|
10593
10593
|
注意:此字段可能返回 null,表示取不到有效值。
|
10594
10594
|
:type RegexBashCmd: str
|
10595
|
+
:param _HostName: 主机HostName
|
10596
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10597
|
+
:type HostName: str
|
10595
10598
|
"""
|
10596
10599
|
self._Id = None
|
10597
10600
|
self._Uuid = None
|
@@ -10612,6 +10615,7 @@ class BashEvent(AbstractModel):
|
|
10612
10615
|
self._ModifyTime = None
|
10613
10616
|
self._RuleCategory = None
|
10614
10617
|
self._RegexBashCmd = None
|
10618
|
+
self._HostName = None
|
10615
10619
|
|
10616
10620
|
@property
|
10617
10621
|
def Id(self):
|
@@ -10765,6 +10769,14 @@ class BashEvent(AbstractModel):
|
|
10765
10769
|
def RegexBashCmd(self, RegexBashCmd):
|
10766
10770
|
self._RegexBashCmd = RegexBashCmd
|
10767
10771
|
|
10772
|
+
@property
|
10773
|
+
def HostName(self):
|
10774
|
+
return self._HostName
|
10775
|
+
|
10776
|
+
@HostName.setter
|
10777
|
+
def HostName(self, HostName):
|
10778
|
+
self._HostName = HostName
|
10779
|
+
|
10768
10780
|
|
10769
10781
|
def _deserialize(self, params):
|
10770
10782
|
self._Id = params.get("Id")
|
@@ -10786,6 +10798,7 @@ class BashEvent(AbstractModel):
|
|
10786
10798
|
self._ModifyTime = params.get("ModifyTime")
|
10787
10799
|
self._RuleCategory = params.get("RuleCategory")
|
10788
10800
|
self._RegexBashCmd = params.get("RegexBashCmd")
|
10801
|
+
self._HostName = params.get("HostName")
|
10789
10802
|
memeber_set = set(params.keys())
|
10790
10803
|
for name, value in vars(self).items():
|
10791
10804
|
property_name = name[1:]
|
@@ -11149,6 +11162,9 @@ class BashEventsInfo(AbstractModel):
|
|
11149
11162
|
:param _Pid: 进程号
|
11150
11163
|
注意:此字段可能返回 null,表示取不到有效值。
|
11151
11164
|
:type Pid: str
|
11165
|
+
:param _DetectBy: 数据来源
|
11166
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11167
|
+
:type DetectBy: str
|
11152
11168
|
"""
|
11153
11169
|
self._Id = None
|
11154
11170
|
self._Uuid = None
|
@@ -11175,6 +11191,7 @@ class BashEventsInfo(AbstractModel):
|
|
11175
11191
|
self._MachineStatus = None
|
11176
11192
|
self._User = None
|
11177
11193
|
self._Pid = None
|
11194
|
+
self._DetectBy = None
|
11178
11195
|
|
11179
11196
|
@property
|
11180
11197
|
def Id(self):
|
@@ -11376,6 +11393,14 @@ class BashEventsInfo(AbstractModel):
|
|
11376
11393
|
def Pid(self, Pid):
|
11377
11394
|
self._Pid = Pid
|
11378
11395
|
|
11396
|
+
@property
|
11397
|
+
def DetectBy(self):
|
11398
|
+
return self._DetectBy
|
11399
|
+
|
11400
|
+
@DetectBy.setter
|
11401
|
+
def DetectBy(self, DetectBy):
|
11402
|
+
self._DetectBy = DetectBy
|
11403
|
+
|
11379
11404
|
|
11380
11405
|
def _deserialize(self, params):
|
11381
11406
|
self._Id = params.get("Id")
|
@@ -11403,6 +11428,7 @@ class BashEventsInfo(AbstractModel):
|
|
11403
11428
|
self._MachineStatus = params.get("MachineStatus")
|
11404
11429
|
self._User = params.get("User")
|
11405
11430
|
self._Pid = params.get("Pid")
|
11431
|
+
self._DetectBy = params.get("DetectBy")
|
11406
11432
|
memeber_set = set(params.keys())
|
11407
11433
|
for name, value in vars(self).items():
|
11408
11434
|
property_name = name[1:]
|
@@ -2097,7 +2097,7 @@ class DlcClient(AbstractClient):
|
|
2097
2097
|
|
2098
2098
|
|
2099
2099
|
def DescribeTaskResult(self, request):
|
2100
|
-
"""
|
2100
|
+
"""查询任务结果,仅支持30天以内的任务查询结果,且返回数据大小超过近50M会进行截断。
|
2101
2101
|
|
2102
2102
|
:param request: Request instance for DescribeTaskResult.
|
2103
2103
|
:type request: :class:`tencentcloud.dlc.v20210125.models.DescribeTaskResultRequest`
|
@@ -13100,6 +13100,8 @@ class DescribeNotebookSessionsRequest(AbstractModel):
|
|
13100
13100
|
:type Limit: int
|
13101
13101
|
:param _Offset: 分页参数,默认0
|
13102
13102
|
:type Offset: int
|
13103
|
+
:param _Filters: 过滤类型,支持如下的过滤类型,传参Name应为以下其中一个, engine-generation - String(引擎时代: supersql:supersql引擎,native:标准引擎):notebook-keyword - String(数据引擎名称或sessionid或sessionname的模糊搜索)
|
13104
|
+
:type Filters: list of Filter
|
13103
13105
|
"""
|
13104
13106
|
self._DataEngineName = None
|
13105
13107
|
self._State = None
|
@@ -13107,6 +13109,7 @@ class DescribeNotebookSessionsRequest(AbstractModel):
|
|
13107
13109
|
self._Asc = None
|
13108
13110
|
self._Limit = None
|
13109
13111
|
self._Offset = None
|
13112
|
+
self._Filters = None
|
13110
13113
|
|
13111
13114
|
@property
|
13112
13115
|
def DataEngineName(self):
|
@@ -13156,6 +13159,14 @@ class DescribeNotebookSessionsRequest(AbstractModel):
|
|
13156
13159
|
def Offset(self, Offset):
|
13157
13160
|
self._Offset = Offset
|
13158
13161
|
|
13162
|
+
@property
|
13163
|
+
def Filters(self):
|
13164
|
+
return self._Filters
|
13165
|
+
|
13166
|
+
@Filters.setter
|
13167
|
+
def Filters(self, Filters):
|
13168
|
+
self._Filters = Filters
|
13169
|
+
|
13159
13170
|
|
13160
13171
|
def _deserialize(self, params):
|
13161
13172
|
self._DataEngineName = params.get("DataEngineName")
|
@@ -13164,6 +13175,12 @@ class DescribeNotebookSessionsRequest(AbstractModel):
|
|
13164
13175
|
self._Asc = params.get("Asc")
|
13165
13176
|
self._Limit = params.get("Limit")
|
13166
13177
|
self._Offset = params.get("Offset")
|
13178
|
+
if params.get("Filters") is not None:
|
13179
|
+
self._Filters = []
|
13180
|
+
for item in params.get("Filters"):
|
13181
|
+
obj = Filter()
|
13182
|
+
obj._deserialize(item)
|
13183
|
+
self._Filters.append(obj)
|
13167
13184
|
memeber_set = set(params.keys())
|
13168
13185
|
for name, value in vars(self).items():
|
13169
13186
|
property_name = name[1:]
|
@@ -15175,7 +15192,7 @@ class DescribeTaskResultRequest(AbstractModel):
|
|
15175
15192
|
|
15176
15193
|
def __init__(self):
|
15177
15194
|
r"""
|
15178
|
-
:param _TaskId: 任务唯一ID
|
15195
|
+
:param _TaskId: 任务唯一ID,仅支持30天内的任务
|
15179
15196
|
:type TaskId: str
|
15180
15197
|
:param _NextToken: 上一次请求响应返回的分页信息。第一次可以不带,从头开始返回数据,每次返回MaxResults字段设置的数据量。
|
15181
15198
|
:type NextToken: str
|
@@ -15805,8 +15822,14 @@ class DescribeUpdatableDataEnginesRequest(AbstractModel):
|
|
15805
15822
|
r"""
|
15806
15823
|
:param _DataEngineConfigCommand: 引擎配置操作命令,UpdateSparkSQLLakefsPath 更新托管表路径,UpdateSparkSQLResultPath 更新结果桶路径
|
15807
15824
|
:type DataEngineConfigCommand: str
|
15825
|
+
:param _UseLakeFs: 是否使用托管存储作为结果存储
|
15826
|
+
:type UseLakeFs: bool
|
15827
|
+
:param _CustomResultPath: 用户自定义结果存储路径
|
15828
|
+
:type CustomResultPath: str
|
15808
15829
|
"""
|
15809
15830
|
self._DataEngineConfigCommand = None
|
15831
|
+
self._UseLakeFs = None
|
15832
|
+
self._CustomResultPath = None
|
15810
15833
|
|
15811
15834
|
@property
|
15812
15835
|
def DataEngineConfigCommand(self):
|
@@ -15816,9 +15839,27 @@ class DescribeUpdatableDataEnginesRequest(AbstractModel):
|
|
15816
15839
|
def DataEngineConfigCommand(self, DataEngineConfigCommand):
|
15817
15840
|
self._DataEngineConfigCommand = DataEngineConfigCommand
|
15818
15841
|
|
15842
|
+
@property
|
15843
|
+
def UseLakeFs(self):
|
15844
|
+
return self._UseLakeFs
|
15845
|
+
|
15846
|
+
@UseLakeFs.setter
|
15847
|
+
def UseLakeFs(self, UseLakeFs):
|
15848
|
+
self._UseLakeFs = UseLakeFs
|
15849
|
+
|
15850
|
+
@property
|
15851
|
+
def CustomResultPath(self):
|
15852
|
+
return self._CustomResultPath
|
15853
|
+
|
15854
|
+
@CustomResultPath.setter
|
15855
|
+
def CustomResultPath(self, CustomResultPath):
|
15856
|
+
self._CustomResultPath = CustomResultPath
|
15857
|
+
|
15819
15858
|
|
15820
15859
|
def _deserialize(self, params):
|
15821
15860
|
self._DataEngineConfigCommand = params.get("DataEngineConfigCommand")
|
15861
|
+
self._UseLakeFs = params.get("UseLakeFs")
|
15862
|
+
self._CustomResultPath = params.get("CustomResultPath")
|
15822
15863
|
memeber_set = set(params.keys())
|
15823
15864
|
for name, value in vars(self).items():
|
15824
15865
|
property_name = name[1:]
|
@@ -2422,7 +2422,7 @@ class DescribeAuctionListRequest(AbstractModel):
|
|
2422
2422
|
|
2423
2423
|
def __init__(self):
|
2424
2424
|
r"""
|
2425
|
-
:param _BusinessId: 业务ID
|
2425
|
+
:param _BusinessId: 业务ID,通过接口DescribeBiddingList返回结果中获取
|
2426
2426
|
:type BusinessId: str
|
2427
2427
|
:param _Limit: 条数,默认10条
|
2428
2428
|
:type Limit: int
|
@@ -524,14 +524,32 @@ class EssClient(AbstractClient):
|
|
524
524
|
|
525
525
|
|
526
526
|
def CreateFlowApprovers(self, request):
|
527
|
-
"""
|
527
|
+
"""**适用场景 :**
|
528
528
|
|
529
|
-
|
529
|
+
当通过模板或文件发起合同时, 签署人不制定, 等合同发起后再指定 可以用下面2种方案
|
530
|
+
|
531
|
+
<b><font color="red">1. 或签合同</font>: 若未指定企业签署人信息(只指定企业的名字),合同变成或签合同(个人签署方不支持或签合同)</b>。需调用此接口补充或添加签署人。或签签署人在控制台上的展示样式如下(会带有<b>或签</b>标识):
|
532
|
+

|
533
|
+
<b><font color="red">2. 动态签署人合同</font>: 若未指定具体签署人的信息,则合同变成动态签署人合同</b>。需调用此接口补充或添加签署人。可以参考文档 [动态签署人合同](https://qian.tencent.com/developers/company/dynamic_signer/) 。动态签署人在控制台上的展示样式如下:
|
534
|
+

|
535
|
+
|
536
|
+
实际签署人需要通过[获取跳转至腾讯电子签小程序的签署链接](https://qian.tencent.com/developers/companyApis/startFlows/CreateSchemeUrl/)生成的链接进入小程序,领取合同并签署。同一签署环节可补充多个员工作为或签署人,最终实际签署人取决于谁先领取合同完成签署。
|
537
|
+
|
538
|
+
|
539
|
+
**限制条件**:
|
530
540
|
|
531
541
|
1.本企业(发起方企业)企业微信签署人仅支持通过企业微信UserId或姓名+手机号进行补充。
|
542
|
+
|
532
543
|
2.本企业(发起方企业)非企业微信签署人仅支持通过姓名+手机号进行补充。
|
544
|
+
|
533
545
|
3.他方企业仅支持通过姓名+手机号进行补充。
|
534
|
-
|
546
|
+
|
547
|
+
4.个人签署人支持通过姓名+手机号进行补充(若<b>个人用户已完成实名</b>,动态签署人合同也可以可通过姓名+证件号码进行补充)
|
548
|
+
|
549
|
+
|
550
|
+
**整体流程如下图:**
|
551
|
+
|
552
|
+

|
535
553
|
|
536
554
|
:param request: Request instance for CreateFlowApprovers.
|
537
555
|
:type request: :class:`tencentcloud.ess.v20201111.models.CreateFlowApproversRequest`
|
@@ -4085,11 +4085,9 @@ class CreateFlowApproversRequest(AbstractModel):
|
|
4085
4085
|
:param _Operator: 执行本接口操作的员工信息。
|
4086
4086
|
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
4087
4087
|
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
4088
|
-
:param _Approvers:
|
4088
|
+
:param _Approvers: 补充签署环节签署候选人信息。
|
4089
4089
|
|
4090
|
-
|
4091
|
-
|
4092
|
-
- 如果不指定,则使用姓名和手机号进行补充。
|
4090
|
+
注:` 如果发起方指定的补充签署人是企业微信签署人(ApproverSource=WEWORKAPP),则需要提供企业微信UserId进行补充; 如果不指定,则使用姓名和手机号进行补充。`
|
4093
4091
|
:type Approvers: list of FillApproverInfo
|
4094
4092
|
:param _FlowId: 合同流程ID,为32位字符串。
|
4095
4093
|
建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
|
@@ -4097,9 +4095,9 @@ class CreateFlowApproversRequest(AbstractModel):
|
|
4097
4095
|
:type FlowId: str
|
4098
4096
|
:param _FillApproverType: 签署人信息补充方式
|
4099
4097
|
|
4100
|
-
<ul><li>**0**:
|
4098
|
+
<ul><li>**0**: <font color="red">或签合同</font>添加签署候选人,或签支持一个节点传多个签署人,不传值默认或签。
|
4101
4099
|
注: `或签只支持企业签署方`</li>
|
4102
|
-
<li>**1**:
|
4100
|
+
<li>**1**: <font color="red">动态签署人合同</font>的添加签署候选人,支持企业或个人签署方。</li></ul>
|
4103
4101
|
:type FillApproverType: int
|
4104
4102
|
:param _Initiator: 在可定制的企业微信通知中,发起人可以根据具体需求进行自定义设置。
|
4105
4103
|
:type Initiator: str
|
@@ -730,12 +730,12 @@ class BaseFlowInfo(AbstractModel):
|
|
730
730
|
r"""
|
731
731
|
:param _FlowName: 合同流程的名称(可自定义此名称),长度不能超过200,只能由中文、字母、数字和下划线组成。
|
732
732
|
:type FlowName: str
|
733
|
+
:param _Deadline: 合同流程的签署截止时间,格式为Unix标准时间戳(秒),如果在签署截止时间前未完成签署,则合同状态会变为已过期,导致合同作废。
|
734
|
+
:type Deadline: int
|
733
735
|
:param _FlowType: 合同流程的类别分类(可自定义名称,如销售合同/入职合同等),最大长度为200个字符,仅限中文、字母、数字和下划线组成。
|
734
736
|
:type FlowType: str
|
735
737
|
:param _FlowDescription: 合同流程描述信息(可自定义此描述),最大长度1000个字符。
|
736
738
|
:type FlowDescription: str
|
737
|
-
:param _Deadline: 合同流程的签署截止时间,格式为Unix标准时间戳(秒),如果在签署截止时间前未完成签署,则合同状态会变为已过期,导致合同作废。
|
738
|
-
:type Deadline: int
|
739
739
|
:param _Unordered: 合同流程的签署顺序类型:
|
740
740
|
**false**:(默认)有序签署, 本合同多个参与人需要依次签署
|
741
741
|
**true**:无序签署, 本合同多个参与人没有先后签署限制
|
@@ -769,9 +769,9 @@ class BaseFlowInfo(AbstractModel):
|
|
769
769
|
:type Components: list of Component
|
770
770
|
"""
|
771
771
|
self._FlowName = None
|
772
|
+
self._Deadline = None
|
772
773
|
self._FlowType = None
|
773
774
|
self._FlowDescription = None
|
774
|
-
self._Deadline = None
|
775
775
|
self._Unordered = None
|
776
776
|
self._IntelligentStatus = None
|
777
777
|
self._FormFields = None
|
@@ -789,6 +789,14 @@ class BaseFlowInfo(AbstractModel):
|
|
789
789
|
def FlowName(self, FlowName):
|
790
790
|
self._FlowName = FlowName
|
791
791
|
|
792
|
+
@property
|
793
|
+
def Deadline(self):
|
794
|
+
return self._Deadline
|
795
|
+
|
796
|
+
@Deadline.setter
|
797
|
+
def Deadline(self, Deadline):
|
798
|
+
self._Deadline = Deadline
|
799
|
+
|
792
800
|
@property
|
793
801
|
def FlowType(self):
|
794
802
|
return self._FlowType
|
@@ -805,14 +813,6 @@ class BaseFlowInfo(AbstractModel):
|
|
805
813
|
def FlowDescription(self, FlowDescription):
|
806
814
|
self._FlowDescription = FlowDescription
|
807
815
|
|
808
|
-
@property
|
809
|
-
def Deadline(self):
|
810
|
-
return self._Deadline
|
811
|
-
|
812
|
-
@Deadline.setter
|
813
|
-
def Deadline(self, Deadline):
|
814
|
-
self._Deadline = Deadline
|
815
|
-
|
816
816
|
@property
|
817
817
|
def Unordered(self):
|
818
818
|
return self._Unordered
|
@@ -880,9 +880,9 @@ class BaseFlowInfo(AbstractModel):
|
|
880
880
|
|
881
881
|
def _deserialize(self, params):
|
882
882
|
self._FlowName = params.get("FlowName")
|
883
|
+
self._Deadline = params.get("Deadline")
|
883
884
|
self._FlowType = params.get("FlowType")
|
884
885
|
self._FlowDescription = params.get("FlowDescription")
|
885
|
-
self._Deadline = params.get("Deadline")
|
886
886
|
self._Unordered = params.get("Unordered")
|
887
887
|
self._IntelligentStatus = params.get("IntelligentStatus")
|
888
888
|
if params.get("FormFields") is not None:
|
@@ -2821,7 +2821,7 @@ class Encryption(AbstractModel):
|
|
2821
2821
|
:param _EncryptList: 在使用加密服务时,填入要被加密的字段。本接口中可填入加密后的一个或多个字段
|
2822
2822
|
注意:此字段可能返回 null,表示取不到有效值。
|
2823
2823
|
:type EncryptList: list of str
|
2824
|
-
:param _CiphertextBlob:
|
2824
|
+
:param _CiphertextBlob: 加密后的对称密钥,关于密钥的生成和使用请查阅<a href="https://cloud.tencent.com/document/product/1007/47180">数据加密</a> 文档。
|
2825
2825
|
注意:此字段可能返回 null,表示取不到有效值。
|
2826
2826
|
:type CiphertextBlob: str
|
2827
2827
|
:param _Iv: 有加密需求的用户,传入CBC加密的初始向量(客户自定义字符串,长度16字符)。
|
@@ -47,6 +47,9 @@ FAILEDOPERATION_DEVICEOFFLINE = 'FailedOperation.DeviceOffline'
|
|
47
47
|
# 存在其他升级任务。
|
48
48
|
FAILEDOPERATION_OTHERUPDATETASKEXIST = 'FailedOperation.OtherUpdateTaskExist'
|
49
49
|
|
50
|
+
# 产品未开通 IoT Video 服务
|
51
|
+
FAILEDOPERATION_PRODUCTIOTVIDEOSERVICENOTENABLED = 'FailedOperation.ProductIotVideoServiceNotEnabled'
|
52
|
+
|
50
53
|
# 产品尚未发布。
|
51
54
|
FAILEDOPERATION_PRODUCTNOTRELEASED = 'FailedOperation.ProductNotReleased'
|
52
55
|
|