tencentcloud-sdk-python 3.0.1182__py2.py3-none-any.whl → 3.0.1183__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/bpaas/v20181217/models.py +52 -0
- tencentcloud/cls/v20201016/models.py +81 -0
- tencentcloud/cwp/v20180228/models.py +80 -17
- tencentcloud/dbbrain/v20210527/models.py +1 -1
- tencentcloud/fmu/v20191213/fmu_client.py +9 -3
- tencentcloud/hunyuan/v20230901/models.py +427 -4
- tencentcloud/iotexplorer/v20190423/models.py +79 -1
- tencentcloud/ocr/v20181119/models.py +2 -2
- tencentcloud/postgres/v20170312/errorcodes.py +3 -0
- tencentcloud/postgres/v20170312/models.py +20 -8
- tencentcloud/ssl/v20191205/models.py +39 -0
- tencentcloud/tiia/v20190529/tiia_client.py +3 -1
- tencentcloud/trocket/v20230308/models.py +37 -24
- tencentcloud/trocket/v20230308/trocket_client.py +4 -4
- tencentcloud/vod/v20180717/errorcodes.py +12 -0
- tencentcloud/vod/v20180717/models.py +25 -1
- tencentcloud/vod/v20180717/vod_client.py +3 -3
- {tencentcloud_sdk_python-3.0.1182.dist-info → tencentcloud_sdk_python-3.0.1183.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1182.dist-info → tencentcloud_sdk_python-3.0.1183.dist-info}/RECORD +23 -23
- {tencentcloud_sdk_python-3.0.1182.dist-info → tencentcloud_sdk_python-3.0.1183.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1182.dist-info → tencentcloud_sdk_python-3.0.1183.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1182.dist-info → tencentcloud_sdk_python-3.0.1183.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -144,12 +144,28 @@ class ApproveUser(AbstractModel):
|
|
144
144
|
:param _Scf: 动态获取Scf
|
145
145
|
注意:此字段可能返回 null,表示取不到有效值。
|
146
146
|
:type Scf: :class:`tencentcloud.bpaas.v20181217.models.Scf`
|
147
|
+
:param _ApproveStatus: 审批状态 (取值范围 0:待审批 1:审批通过 2:拒绝 6:其他人已审批)
|
148
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
149
|
+
:type ApproveStatus: int
|
150
|
+
:param _ApproveMsg: 审批意见
|
151
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
152
|
+
:type ApproveMsg: str
|
153
|
+
:param _ApproveTime: 审批时间
|
154
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
155
|
+
:type ApproveTime: str
|
156
|
+
:param _ApproveGroup: 审批组名称
|
157
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
158
|
+
:type ApproveGroup: str
|
147
159
|
"""
|
148
160
|
self._Uin = None
|
149
161
|
self._Type = None
|
150
162
|
self._Desc = None
|
151
163
|
self._Nick = None
|
152
164
|
self._Scf = None
|
165
|
+
self._ApproveStatus = None
|
166
|
+
self._ApproveMsg = None
|
167
|
+
self._ApproveTime = None
|
168
|
+
self._ApproveGroup = None
|
153
169
|
|
154
170
|
@property
|
155
171
|
def Uin(self):
|
@@ -191,6 +207,38 @@ class ApproveUser(AbstractModel):
|
|
191
207
|
def Scf(self, Scf):
|
192
208
|
self._Scf = Scf
|
193
209
|
|
210
|
+
@property
|
211
|
+
def ApproveStatus(self):
|
212
|
+
return self._ApproveStatus
|
213
|
+
|
214
|
+
@ApproveStatus.setter
|
215
|
+
def ApproveStatus(self, ApproveStatus):
|
216
|
+
self._ApproveStatus = ApproveStatus
|
217
|
+
|
218
|
+
@property
|
219
|
+
def ApproveMsg(self):
|
220
|
+
return self._ApproveMsg
|
221
|
+
|
222
|
+
@ApproveMsg.setter
|
223
|
+
def ApproveMsg(self, ApproveMsg):
|
224
|
+
self._ApproveMsg = ApproveMsg
|
225
|
+
|
226
|
+
@property
|
227
|
+
def ApproveTime(self):
|
228
|
+
return self._ApproveTime
|
229
|
+
|
230
|
+
@ApproveTime.setter
|
231
|
+
def ApproveTime(self, ApproveTime):
|
232
|
+
self._ApproveTime = ApproveTime
|
233
|
+
|
234
|
+
@property
|
235
|
+
def ApproveGroup(self):
|
236
|
+
return self._ApproveGroup
|
237
|
+
|
238
|
+
@ApproveGroup.setter
|
239
|
+
def ApproveGroup(self, ApproveGroup):
|
240
|
+
self._ApproveGroup = ApproveGroup
|
241
|
+
|
194
242
|
|
195
243
|
def _deserialize(self, params):
|
196
244
|
self._Uin = params.get("Uin")
|
@@ -200,6 +248,10 @@ class ApproveUser(AbstractModel):
|
|
200
248
|
if params.get("Scf") is not None:
|
201
249
|
self._Scf = Scf()
|
202
250
|
self._Scf._deserialize(params.get("Scf"))
|
251
|
+
self._ApproveStatus = params.get("ApproveStatus")
|
252
|
+
self._ApproveMsg = params.get("ApproveMsg")
|
253
|
+
self._ApproveTime = params.get("ApproveTime")
|
254
|
+
self._ApproveGroup = params.get("ApproveGroup")
|
203
255
|
memeber_set = set(params.keys())
|
204
256
|
for name, value in vars(self).items():
|
205
257
|
property_name = name[1:]
|
@@ -11189,8 +11189,44 @@ class DescribeMachinesRequest(AbstractModel):
|
|
11189
11189
|
r"""
|
11190
11190
|
:param _GroupId: 查询的机器组ID
|
11191
11191
|
:type GroupId: str
|
11192
|
+
:param _Filters: ip
|
11193
|
+
- 按照【ip】进行过滤。
|
11194
|
+
- 类型:String
|
11195
|
+
- 必选:否
|
11196
|
+
|
11197
|
+
instance
|
11198
|
+
- 按照【instance】进行过滤。
|
11199
|
+
- 类型:String
|
11200
|
+
- 必选:否
|
11201
|
+
|
11202
|
+
version
|
11203
|
+
- 按照【LogListener版本】进行过滤。
|
11204
|
+
- 类型:String
|
11205
|
+
- 必选:否
|
11206
|
+
|
11207
|
+
status
|
11208
|
+
- 按照【状态】进行过滤。
|
11209
|
+
- 类型:String
|
11210
|
+
- 必选:否
|
11211
|
+
- 可选值:0:离线,1:正常
|
11212
|
+
|
11213
|
+
offlineTime
|
11214
|
+
- 按照【机器离线时间】进行过滤。
|
11215
|
+
- 类型:String
|
11216
|
+
- 必选:否
|
11217
|
+
- - 可选值:0:无离线时间,12:12小时内,24:一天内,48:两天内,99:两天前
|
11218
|
+
|
11219
|
+
每次请求的Filters的上限为10,Filter.Values的上限为100。
|
11220
|
+
:type Filters: list of Filter
|
11221
|
+
:param _Offset: 分页的偏移量。
|
11222
|
+
:type Offset: int
|
11223
|
+
:param _Limit: 分页单页限制数目。最大支持100
|
11224
|
+
:type Limit: int
|
11192
11225
|
"""
|
11193
11226
|
self._GroupId = None
|
11227
|
+
self._Filters = None
|
11228
|
+
self._Offset = None
|
11229
|
+
self._Limit = None
|
11194
11230
|
|
11195
11231
|
@property
|
11196
11232
|
def GroupId(self):
|
@@ -11200,9 +11236,41 @@ class DescribeMachinesRequest(AbstractModel):
|
|
11200
11236
|
def GroupId(self, GroupId):
|
11201
11237
|
self._GroupId = GroupId
|
11202
11238
|
|
11239
|
+
@property
|
11240
|
+
def Filters(self):
|
11241
|
+
return self._Filters
|
11242
|
+
|
11243
|
+
@Filters.setter
|
11244
|
+
def Filters(self, Filters):
|
11245
|
+
self._Filters = Filters
|
11246
|
+
|
11247
|
+
@property
|
11248
|
+
def Offset(self):
|
11249
|
+
return self._Offset
|
11250
|
+
|
11251
|
+
@Offset.setter
|
11252
|
+
def Offset(self, Offset):
|
11253
|
+
self._Offset = Offset
|
11254
|
+
|
11255
|
+
@property
|
11256
|
+
def Limit(self):
|
11257
|
+
return self._Limit
|
11258
|
+
|
11259
|
+
@Limit.setter
|
11260
|
+
def Limit(self, Limit):
|
11261
|
+
self._Limit = Limit
|
11262
|
+
|
11203
11263
|
|
11204
11264
|
def _deserialize(self, params):
|
11205
11265
|
self._GroupId = params.get("GroupId")
|
11266
|
+
if params.get("Filters") is not None:
|
11267
|
+
self._Filters = []
|
11268
|
+
for item in params.get("Filters"):
|
11269
|
+
obj = Filter()
|
11270
|
+
obj._deserialize(item)
|
11271
|
+
self._Filters.append(obj)
|
11272
|
+
self._Offset = params.get("Offset")
|
11273
|
+
self._Limit = params.get("Limit")
|
11206
11274
|
memeber_set = set(params.keys())
|
11207
11275
|
for name, value in vars(self).items():
|
11208
11276
|
property_name = name[1:]
|
@@ -11232,6 +11300,9 @@ class DescribeMachinesResponse(AbstractModel):
|
|
11232
11300
|
:type LatestAgentVersion: str
|
11233
11301
|
:param _ServiceLogging: 是否开启服务日志
|
11234
11302
|
:type ServiceLogging: bool
|
11303
|
+
:param _TotalCount: 总数目
|
11304
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11305
|
+
:type TotalCount: int
|
11235
11306
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11236
11307
|
:type RequestId: str
|
11237
11308
|
"""
|
@@ -11241,6 +11312,7 @@ class DescribeMachinesResponse(AbstractModel):
|
|
11241
11312
|
self._UpdateEndTime = None
|
11242
11313
|
self._LatestAgentVersion = None
|
11243
11314
|
self._ServiceLogging = None
|
11315
|
+
self._TotalCount = None
|
11244
11316
|
self._RequestId = None
|
11245
11317
|
|
11246
11318
|
@property
|
@@ -11291,6 +11363,14 @@ class DescribeMachinesResponse(AbstractModel):
|
|
11291
11363
|
def ServiceLogging(self, ServiceLogging):
|
11292
11364
|
self._ServiceLogging = ServiceLogging
|
11293
11365
|
|
11366
|
+
@property
|
11367
|
+
def TotalCount(self):
|
11368
|
+
return self._TotalCount
|
11369
|
+
|
11370
|
+
@TotalCount.setter
|
11371
|
+
def TotalCount(self, TotalCount):
|
11372
|
+
self._TotalCount = TotalCount
|
11373
|
+
|
11294
11374
|
@property
|
11295
11375
|
def RequestId(self):
|
11296
11376
|
return self._RequestId
|
@@ -11312,6 +11392,7 @@ class DescribeMachinesResponse(AbstractModel):
|
|
11312
11392
|
self._UpdateEndTime = params.get("UpdateEndTime")
|
11313
11393
|
self._LatestAgentVersion = params.get("LatestAgentVersion")
|
11314
11394
|
self._ServiceLogging = params.get("ServiceLogging")
|
11395
|
+
self._TotalCount = params.get("TotalCount")
|
11315
11396
|
self._RequestId = params.get("RequestId")
|
11316
11397
|
|
11317
11398
|
|
@@ -18966,13 +18966,13 @@ class DeliverTypeDetails(AbstractModel):
|
|
18966
18966
|
|
18967
18967
|
def __init__(self):
|
18968
18968
|
r"""
|
18969
|
-
:param _SecurityType: 安全模块类型 1: 入侵检测 2: 漏洞管理 3: 基线管理 4: 高级防御 5:客户端相关 6: 资产指纹
|
18969
|
+
:param _SecurityType: 安全模块类型 1: 入侵检测 2: 漏洞管理 3: 基线管理 4: 高级防御 5:客户端相关 6: 资产指纹 7 主机列表 8 客户端上报
|
18970
18970
|
:type SecurityType: int
|
18971
|
-
:param _LogType:
|
18971
|
+
:param _LogType: 安全模块下的日志类型
|
18972
18972
|
:type LogType: list of int
|
18973
|
-
:param _TopicId:
|
18973
|
+
:param _TopicId: 主题ID
|
18974
18974
|
:type TopicId: str
|
18975
|
-
:param _TopicName:
|
18975
|
+
:param _TopicName: 主题名
|
18976
18976
|
:type TopicName: str
|
18977
18977
|
:param _Switch: 投递开关 0关闭 1开启
|
18978
18978
|
:type Switch: int
|
@@ -18980,8 +18980,14 @@ class DeliverTypeDetails(AbstractModel):
|
|
18980
18980
|
:type Status: int
|
18981
18981
|
:param _ErrInfo: 错误信息
|
18982
18982
|
:type ErrInfo: str
|
18983
|
-
:param _StatusTime:
|
18983
|
+
:param _StatusTime: 最近一次状态上报时间戳
|
18984
18984
|
:type StatusTime: int
|
18985
|
+
:param _LogName: 日志集名
|
18986
|
+
:type LogName: str
|
18987
|
+
:param _LogSetId: 日志集ID
|
18988
|
+
:type LogSetId: str
|
18989
|
+
:param _Region: 日志集所在地域
|
18990
|
+
:type Region: str
|
18985
18991
|
"""
|
18986
18992
|
self._SecurityType = None
|
18987
18993
|
self._LogType = None
|
@@ -18991,6 +18997,9 @@ class DeliverTypeDetails(AbstractModel):
|
|
18991
18997
|
self._Status = None
|
18992
18998
|
self._ErrInfo = None
|
18993
18999
|
self._StatusTime = None
|
19000
|
+
self._LogName = None
|
19001
|
+
self._LogSetId = None
|
19002
|
+
self._Region = None
|
18994
19003
|
|
18995
19004
|
@property
|
18996
19005
|
def SecurityType(self):
|
@@ -19056,6 +19065,30 @@ class DeliverTypeDetails(AbstractModel):
|
|
19056
19065
|
def StatusTime(self, StatusTime):
|
19057
19066
|
self._StatusTime = StatusTime
|
19058
19067
|
|
19068
|
+
@property
|
19069
|
+
def LogName(self):
|
19070
|
+
return self._LogName
|
19071
|
+
|
19072
|
+
@LogName.setter
|
19073
|
+
def LogName(self, LogName):
|
19074
|
+
self._LogName = LogName
|
19075
|
+
|
19076
|
+
@property
|
19077
|
+
def LogSetId(self):
|
19078
|
+
return self._LogSetId
|
19079
|
+
|
19080
|
+
@LogSetId.setter
|
19081
|
+
def LogSetId(self, LogSetId):
|
19082
|
+
self._LogSetId = LogSetId
|
19083
|
+
|
19084
|
+
@property
|
19085
|
+
def Region(self):
|
19086
|
+
return self._Region
|
19087
|
+
|
19088
|
+
@Region.setter
|
19089
|
+
def Region(self, Region):
|
19090
|
+
self._Region = Region
|
19091
|
+
|
19059
19092
|
|
19060
19093
|
def _deserialize(self, params):
|
19061
19094
|
self._SecurityType = params.get("SecurityType")
|
@@ -19066,6 +19099,9 @@ class DeliverTypeDetails(AbstractModel):
|
|
19066
19099
|
self._Status = params.get("Status")
|
19067
19100
|
self._ErrInfo = params.get("ErrInfo")
|
19068
19101
|
self._StatusTime = params.get("StatusTime")
|
19102
|
+
self._LogName = params.get("LogName")
|
19103
|
+
self._LogSetId = params.get("LogSetId")
|
19104
|
+
self._Region = params.get("Region")
|
19069
19105
|
memeber_set = set(params.keys())
|
19070
19106
|
for name, value in vars(self).items():
|
19071
19107
|
property_name = name[1:]
|
@@ -56950,17 +56986,16 @@ class ExportBaselineHostDetectListRequest(AbstractModel):
|
|
56950
56986
|
|
56951
56987
|
def __init__(self):
|
56952
56988
|
r"""
|
56953
|
-
:param _Filters: <li>HostTag - string - 是否必填:否 - 主机标签</
|
56954
|
-
<li>ItemId - int64 - 是否必填:否 - 项Id</i>
|
56955
|
-
<li>RuleId - int64 - 是否必填:否 - 规则Id</li>
|
56956
|
-
<li>IsPassed - int - 是否必填:否 - 是否通过</li>
|
56957
|
-
<li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
56989
|
+
:param _Filters: <li>HostTag - string - 是否必填:否 - 主机标签</li><li>ItemId - int64 - 是否必填:否 - 项Id</li><li>RuleId - int64 - 是否必填:否 - 规则Id</li><li>IsPassed - int - 是否必填:否 - 是否通过</li><li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
56958
56990
|
:type Filters: list of Filter
|
56959
56991
|
:param _ExportAll: 0:过滤的结果导出;1:全部导出
|
56960
56992
|
:type ExportAll: int
|
56993
|
+
:param _IsExportDetail: 0:导出界面展示;1:导出全部结果事件
|
56994
|
+
:type IsExportDetail: int
|
56961
56995
|
"""
|
56962
56996
|
self._Filters = None
|
56963
56997
|
self._ExportAll = None
|
56998
|
+
self._IsExportDetail = None
|
56964
56999
|
|
56965
57000
|
@property
|
56966
57001
|
def Filters(self):
|
@@ -56978,6 +57013,14 @@ class ExportBaselineHostDetectListRequest(AbstractModel):
|
|
56978
57013
|
def ExportAll(self, ExportAll):
|
56979
57014
|
self._ExportAll = ExportAll
|
56980
57015
|
|
57016
|
+
@property
|
57017
|
+
def IsExportDetail(self):
|
57018
|
+
return self._IsExportDetail
|
57019
|
+
|
57020
|
+
@IsExportDetail.setter
|
57021
|
+
def IsExportDetail(self, IsExportDetail):
|
57022
|
+
self._IsExportDetail = IsExportDetail
|
57023
|
+
|
56981
57024
|
|
56982
57025
|
def _deserialize(self, params):
|
56983
57026
|
if params.get("Filters") is not None:
|
@@ -56987,6 +57030,7 @@ class ExportBaselineHostDetectListRequest(AbstractModel):
|
|
56987
57030
|
obj._deserialize(item)
|
56988
57031
|
self._Filters.append(obj)
|
56989
57032
|
self._ExportAll = params.get("ExportAll")
|
57033
|
+
self._IsExportDetail = params.get("IsExportDetail")
|
56990
57034
|
memeber_set = set(params.keys())
|
56991
57035
|
for name, value in vars(self).items():
|
56992
57036
|
property_name = name[1:]
|
@@ -57029,16 +57073,16 @@ class ExportBaselineItemDetectListRequest(AbstractModel):
|
|
57029
57073
|
|
57030
57074
|
def __init__(self):
|
57031
57075
|
r"""
|
57032
|
-
:param _Filters: <li>HostId - string - 是否必填:否 - 主机Id</
|
57033
|
-
<li>RuleId - int64 - 是否必填:否 - 规则Id</i>
|
57034
|
-
<li>IsPassed - int - 是否必填:否 - 是否通过</li>
|
57035
|
-
<li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
57076
|
+
:param _Filters: <li>HostId - string - 是否必填:否 - 主机Id</li><li>RuleId - int64 - 是否必填:否 - 规则Id</li><li>IsPassed - int - 是否必填:否 - 是否通过</li><li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
57036
57077
|
:type Filters: list of Filter
|
57037
57078
|
:param _ExportAll: 0:过滤的结果导出;1:全部导出
|
57038
57079
|
:type ExportAll: int
|
57080
|
+
:param _IsExportDetail: 0:导出界面展示;1:导出全部结果事件
|
57081
|
+
:type IsExportDetail: int
|
57039
57082
|
"""
|
57040
57083
|
self._Filters = None
|
57041
57084
|
self._ExportAll = None
|
57085
|
+
self._IsExportDetail = None
|
57042
57086
|
|
57043
57087
|
@property
|
57044
57088
|
def Filters(self):
|
@@ -57056,6 +57100,14 @@ class ExportBaselineItemDetectListRequest(AbstractModel):
|
|
57056
57100
|
def ExportAll(self, ExportAll):
|
57057
57101
|
self._ExportAll = ExportAll
|
57058
57102
|
|
57103
|
+
@property
|
57104
|
+
def IsExportDetail(self):
|
57105
|
+
return self._IsExportDetail
|
57106
|
+
|
57107
|
+
@IsExportDetail.setter
|
57108
|
+
def IsExportDetail(self, IsExportDetail):
|
57109
|
+
self._IsExportDetail = IsExportDetail
|
57110
|
+
|
57059
57111
|
|
57060
57112
|
def _deserialize(self, params):
|
57061
57113
|
if params.get("Filters") is not None:
|
@@ -57065,6 +57117,7 @@ class ExportBaselineItemDetectListRequest(AbstractModel):
|
|
57065
57117
|
obj._deserialize(item)
|
57066
57118
|
self._Filters.append(obj)
|
57067
57119
|
self._ExportAll = params.get("ExportAll")
|
57120
|
+
self._IsExportDetail = params.get("IsExportDetail")
|
57068
57121
|
memeber_set = set(params.keys())
|
57069
57122
|
for name, value in vars(self).items():
|
57070
57123
|
property_name = name[1:]
|
@@ -57297,15 +57350,16 @@ class ExportBaselineRuleDetectListRequest(AbstractModel):
|
|
57297
57350
|
|
57298
57351
|
def __init__(self):
|
57299
57352
|
r"""
|
57300
|
-
:param _Filters: <li>RuleName - string - 是否必填:否 - 规则名称</
|
57301
|
-
<li>IsPassed - int - 是否必填:否 - 是否通过</li>
|
57302
|
-
<li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
57353
|
+
:param _Filters: <li>RuleName - string - 是否必填:否 - 规则名称</li><li>IsPassed - int - 是否必填:否 - 是否通过</li><li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
57303
57354
|
:type Filters: list of Filter
|
57304
57355
|
:param _ExportAll: 0:过滤的结果导出;1:全部导出
|
57305
57356
|
:type ExportAll: int
|
57357
|
+
:param _IsExportDetail: 0:导出界面展示;1:导出全部结果事件
|
57358
|
+
:type IsExportDetail: int
|
57306
57359
|
"""
|
57307
57360
|
self._Filters = None
|
57308
57361
|
self._ExportAll = None
|
57362
|
+
self._IsExportDetail = None
|
57309
57363
|
|
57310
57364
|
@property
|
57311
57365
|
def Filters(self):
|
@@ -57323,6 +57377,14 @@ class ExportBaselineRuleDetectListRequest(AbstractModel):
|
|
57323
57377
|
def ExportAll(self, ExportAll):
|
57324
57378
|
self._ExportAll = ExportAll
|
57325
57379
|
|
57380
|
+
@property
|
57381
|
+
def IsExportDetail(self):
|
57382
|
+
return self._IsExportDetail
|
57383
|
+
|
57384
|
+
@IsExportDetail.setter
|
57385
|
+
def IsExportDetail(self, IsExportDetail):
|
57386
|
+
self._IsExportDetail = IsExportDetail
|
57387
|
+
|
57326
57388
|
|
57327
57389
|
def _deserialize(self, params):
|
57328
57390
|
if params.get("Filters") is not None:
|
@@ -57332,6 +57394,7 @@ class ExportBaselineRuleDetectListRequest(AbstractModel):
|
|
57332
57394
|
obj._deserialize(item)
|
57333
57395
|
self._Filters.append(obj)
|
57334
57396
|
self._ExportAll = params.get("ExportAll")
|
57397
|
+
self._IsExportDetail = params.get("IsExportDetail")
|
57335
57398
|
memeber_set = set(params.keys())
|
57336
57399
|
for name, value in vars(self).items():
|
57337
57400
|
property_name = name[1:]
|
@@ -27,7 +27,7 @@ class AddUserContactRequest(AbstractModel):
|
|
27
27
|
r"""
|
28
28
|
:param _Name: 联系人姓名,由中英文、数字、空格、!@#$%^&*()_+-=()组成,不能以下划线开头,长度在20以内。
|
29
29
|
:type Name: str
|
30
|
-
:param _ContactInfo:
|
30
|
+
:param _ContactInfo: 邮箱地址,支持大小写字母、数字、下划线、连字符及@字符, 只能以数字或字母开头,邮箱地址不可重复。
|
31
31
|
:type ContactInfo: str
|
32
32
|
:param _Product: 服务产品类型,固定值:"mysql"。
|
33
33
|
:type Product: str
|
@@ -50,7 +50,9 @@ class FmuClient(AbstractClient):
|
|
50
50
|
|
51
51
|
|
52
52
|
def BeautifyVideo(self, request):
|
53
|
-
"""
|
53
|
+
"""产品不再维护,准备下线。
|
54
|
+
|
55
|
+
视频美颜(此接口目前已下线)
|
54
56
|
|
55
57
|
:param request: Request instance for BeautifyVideo.
|
56
58
|
:type request: :class:`tencentcloud.fmu.v20191213.models.BeautifyVideoRequest`
|
@@ -73,7 +75,9 @@ class FmuClient(AbstractClient):
|
|
73
75
|
|
74
76
|
|
75
77
|
def CancelBeautifyVideoJob(self, request):
|
76
|
-
"""
|
78
|
+
"""产品不再维护,准备下线。
|
79
|
+
|
80
|
+
撤销视频美颜任务请求
|
77
81
|
|
78
82
|
:param request: Request instance for CancelBeautifyVideoJob.
|
79
83
|
:type request: :class:`tencentcloud.fmu.v20191213.models.CancelBeautifyVideoJobRequest`
|
@@ -167,7 +171,9 @@ class FmuClient(AbstractClient):
|
|
167
171
|
|
168
172
|
|
169
173
|
def QueryBeautifyVideoJob(self, request):
|
170
|
-
"""
|
174
|
+
"""产品不再维护,准备下线。
|
175
|
+
|
176
|
+
查询视频美颜处理进度
|
171
177
|
|
172
178
|
:param request: Request instance for QueryBeautifyVideoJob.
|
173
179
|
:type request: :class:`tencentcloud.fmu.v20191213.models.QueryBeautifyVideoJobRequest`
|