tencentcloud-sdk-python 3.0.1464__py2.py3-none-any.whl → 3.0.1466__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/ai3d/v20250513/ai3d_client.py +2 -2
- tencentcloud/ai3d/v20250513/models.py +2 -2
- tencentcloud/billing/v20180709/models.py +2 -2
- tencentcloud/ccc/v20200210/ccc_client.py +23 -0
- tencentcloud/ccc/v20200210/models.py +184 -0
- tencentcloud/cdn/v20180606/cdn_client.py +0 -74
- tencentcloud/cdn/v20180606/models.py +0 -546
- tencentcloud/cfw/v20190904/models.py +167 -2
- tencentcloud/ckafka/v20190819/models.py +50 -2
- tencentcloud/ctem/v20231128/models.py +441 -0
- tencentcloud/emr/v20190103/models.py +49 -0
- tencentcloud/ess/v20201111/ess_client.py +3 -3
- tencentcloud/ess/v20201111/models.py +7 -7
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
- tencentcloud/iotexplorer/v20190423/models.py +165 -0
- tencentcloud/lcic/v20220817/models.py +24 -6
- tencentcloud/lighthouse/v20200324/errorcodes.py +3 -0
- tencentcloud/lighthouse/v20200324/models.py +280 -10
- tencentcloud/lke/v20231130/lke_client.py +0 -46
- tencentcloud/lke/v20231130/models.py +0 -192
- tencentcloud/lkeap/v20240522/lkeap_client.py +5 -2
- tencentcloud/mongodb/v20190725/models.py +76 -48
- tencentcloud/mongodb/v20190725/mongodb_client.py +1 -1
- tencentcloud/mps/v20190612/errorcodes.py +42 -0
- tencentcloud/mps/v20190612/models.py +810 -43
- tencentcloud/mps/v20190612/mps_client.py +92 -0
- tencentcloud/organization/v20210331/models.py +6 -6
- tencentcloud/redis/v20180412/models.py +16 -12
- tencentcloud/redis/v20180412/redis_client.py +2 -2
- tencentcloud/tcss/v20201101/models.py +30 -0
- tencentcloud/teo/v20220901/models.py +15 -0
- tencentcloud/trtc/v20190722/models.py +28 -12
- tencentcloud/tse/v20201207/models.py +76 -0
- tencentcloud/tse/v20201207/tse_client.py +1 -1
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +1176 -101
- tencentcloud/waf/v20180125/waf_client.py +1 -1
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/RECORD +44 -44
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/top_level.txt +0 -0
@@ -10974,11 +10974,44 @@ class DisplayLeakageCode(AbstractModel):
|
|
10974
10974
|
r"""
|
10975
10975
|
:param _Id: 主键ID
|
10976
10976
|
:type Id: int
|
10977
|
+
:param _DisplayToolCommon: 公共字段
|
10978
|
+
:type DisplayToolCommon: :class:`tencentcloud.ctem.v20231128.models.DisplayToolCommon`
|
10979
|
+
:param _Name: 事件名称
|
10980
|
+
:type Name: str
|
10981
|
+
:param _Description: 事件描述
|
10982
|
+
:type Description: str
|
10983
|
+
:param _Source: 数据源
|
10984
|
+
:type Source: str
|
10985
|
+
:param _RiskLevel: 风险等级:1-低危 2-中危 3-高危 4-严重 5-误报
|
10986
|
+
:type RiskLevel: int
|
10987
|
+
:param _HubName: 仓库名称
|
10988
|
+
:type HubName: str
|
10977
10989
|
:param _Url: 链接
|
10978
10990
|
:type Url: str
|
10991
|
+
:param _Screenshot: 截图
|
10992
|
+
:type Screenshot: str
|
10993
|
+
:param _Suggestion: 建议
|
10994
|
+
:type Suggestion: str
|
10995
|
+
:param _Keyword: 关键词
|
10996
|
+
:type Keyword: str
|
10997
|
+
:param _HandlingStatus: 处置状态:0-待处理 1-处理中 2-已处理
|
10998
|
+
:type HandlingStatus: int
|
10999
|
+
:param _Remark: 备注
|
11000
|
+
:type Remark: str
|
10979
11001
|
"""
|
10980
11002
|
self._Id = None
|
11003
|
+
self._DisplayToolCommon = None
|
11004
|
+
self._Name = None
|
11005
|
+
self._Description = None
|
11006
|
+
self._Source = None
|
11007
|
+
self._RiskLevel = None
|
11008
|
+
self._HubName = None
|
10981
11009
|
self._Url = None
|
11010
|
+
self._Screenshot = None
|
11011
|
+
self._Suggestion = None
|
11012
|
+
self._Keyword = None
|
11013
|
+
self._HandlingStatus = None
|
11014
|
+
self._Remark = None
|
10982
11015
|
|
10983
11016
|
@property
|
10984
11017
|
def Id(self):
|
@@ -10991,6 +11024,72 @@ class DisplayLeakageCode(AbstractModel):
|
|
10991
11024
|
def Id(self, Id):
|
10992
11025
|
self._Id = Id
|
10993
11026
|
|
11027
|
+
@property
|
11028
|
+
def DisplayToolCommon(self):
|
11029
|
+
r"""公共字段
|
11030
|
+
:rtype: :class:`tencentcloud.ctem.v20231128.models.DisplayToolCommon`
|
11031
|
+
"""
|
11032
|
+
return self._DisplayToolCommon
|
11033
|
+
|
11034
|
+
@DisplayToolCommon.setter
|
11035
|
+
def DisplayToolCommon(self, DisplayToolCommon):
|
11036
|
+
self._DisplayToolCommon = DisplayToolCommon
|
11037
|
+
|
11038
|
+
@property
|
11039
|
+
def Name(self):
|
11040
|
+
r"""事件名称
|
11041
|
+
:rtype: str
|
11042
|
+
"""
|
11043
|
+
return self._Name
|
11044
|
+
|
11045
|
+
@Name.setter
|
11046
|
+
def Name(self, Name):
|
11047
|
+
self._Name = Name
|
11048
|
+
|
11049
|
+
@property
|
11050
|
+
def Description(self):
|
11051
|
+
r"""事件描述
|
11052
|
+
:rtype: str
|
11053
|
+
"""
|
11054
|
+
return self._Description
|
11055
|
+
|
11056
|
+
@Description.setter
|
11057
|
+
def Description(self, Description):
|
11058
|
+
self._Description = Description
|
11059
|
+
|
11060
|
+
@property
|
11061
|
+
def Source(self):
|
11062
|
+
r"""数据源
|
11063
|
+
:rtype: str
|
11064
|
+
"""
|
11065
|
+
return self._Source
|
11066
|
+
|
11067
|
+
@Source.setter
|
11068
|
+
def Source(self, Source):
|
11069
|
+
self._Source = Source
|
11070
|
+
|
11071
|
+
@property
|
11072
|
+
def RiskLevel(self):
|
11073
|
+
r"""风险等级:1-低危 2-中危 3-高危 4-严重 5-误报
|
11074
|
+
:rtype: int
|
11075
|
+
"""
|
11076
|
+
return self._RiskLevel
|
11077
|
+
|
11078
|
+
@RiskLevel.setter
|
11079
|
+
def RiskLevel(self, RiskLevel):
|
11080
|
+
self._RiskLevel = RiskLevel
|
11081
|
+
|
11082
|
+
@property
|
11083
|
+
def HubName(self):
|
11084
|
+
r"""仓库名称
|
11085
|
+
:rtype: str
|
11086
|
+
"""
|
11087
|
+
return self._HubName
|
11088
|
+
|
11089
|
+
@HubName.setter
|
11090
|
+
def HubName(self, HubName):
|
11091
|
+
self._HubName = HubName
|
11092
|
+
|
10994
11093
|
@property
|
10995
11094
|
def Url(self):
|
10996
11095
|
r"""链接
|
@@ -11002,10 +11101,78 @@ class DisplayLeakageCode(AbstractModel):
|
|
11002
11101
|
def Url(self, Url):
|
11003
11102
|
self._Url = Url
|
11004
11103
|
|
11104
|
+
@property
|
11105
|
+
def Screenshot(self):
|
11106
|
+
r"""截图
|
11107
|
+
:rtype: str
|
11108
|
+
"""
|
11109
|
+
return self._Screenshot
|
11110
|
+
|
11111
|
+
@Screenshot.setter
|
11112
|
+
def Screenshot(self, Screenshot):
|
11113
|
+
self._Screenshot = Screenshot
|
11114
|
+
|
11115
|
+
@property
|
11116
|
+
def Suggestion(self):
|
11117
|
+
r"""建议
|
11118
|
+
:rtype: str
|
11119
|
+
"""
|
11120
|
+
return self._Suggestion
|
11121
|
+
|
11122
|
+
@Suggestion.setter
|
11123
|
+
def Suggestion(self, Suggestion):
|
11124
|
+
self._Suggestion = Suggestion
|
11125
|
+
|
11126
|
+
@property
|
11127
|
+
def Keyword(self):
|
11128
|
+
r"""关键词
|
11129
|
+
:rtype: str
|
11130
|
+
"""
|
11131
|
+
return self._Keyword
|
11132
|
+
|
11133
|
+
@Keyword.setter
|
11134
|
+
def Keyword(self, Keyword):
|
11135
|
+
self._Keyword = Keyword
|
11136
|
+
|
11137
|
+
@property
|
11138
|
+
def HandlingStatus(self):
|
11139
|
+
r"""处置状态:0-待处理 1-处理中 2-已处理
|
11140
|
+
:rtype: int
|
11141
|
+
"""
|
11142
|
+
return self._HandlingStatus
|
11143
|
+
|
11144
|
+
@HandlingStatus.setter
|
11145
|
+
def HandlingStatus(self, HandlingStatus):
|
11146
|
+
self._HandlingStatus = HandlingStatus
|
11147
|
+
|
11148
|
+
@property
|
11149
|
+
def Remark(self):
|
11150
|
+
r"""备注
|
11151
|
+
:rtype: str
|
11152
|
+
"""
|
11153
|
+
return self._Remark
|
11154
|
+
|
11155
|
+
@Remark.setter
|
11156
|
+
def Remark(self, Remark):
|
11157
|
+
self._Remark = Remark
|
11158
|
+
|
11005
11159
|
|
11006
11160
|
def _deserialize(self, params):
|
11007
11161
|
self._Id = params.get("Id")
|
11162
|
+
if params.get("DisplayToolCommon") is not None:
|
11163
|
+
self._DisplayToolCommon = DisplayToolCommon()
|
11164
|
+
self._DisplayToolCommon._deserialize(params.get("DisplayToolCommon"))
|
11165
|
+
self._Name = params.get("Name")
|
11166
|
+
self._Description = params.get("Description")
|
11167
|
+
self._Source = params.get("Source")
|
11168
|
+
self._RiskLevel = params.get("RiskLevel")
|
11169
|
+
self._HubName = params.get("HubName")
|
11008
11170
|
self._Url = params.get("Url")
|
11171
|
+
self._Screenshot = params.get("Screenshot")
|
11172
|
+
self._Suggestion = params.get("Suggestion")
|
11173
|
+
self._Keyword = params.get("Keyword")
|
11174
|
+
self._HandlingStatus = params.get("HandlingStatus")
|
11175
|
+
self._Remark = params.get("Remark")
|
11009
11176
|
memeber_set = set(params.keys())
|
11010
11177
|
for name, value in vars(self).items():
|
11011
11178
|
property_name = name[1:]
|
@@ -11025,11 +11192,41 @@ class DisplayLeakageData(AbstractModel):
|
|
11025
11192
|
r"""
|
11026
11193
|
:param _Id: 主键ID
|
11027
11194
|
:type Id: int
|
11195
|
+
:param _DisplayToolCommon: 公共字段
|
11196
|
+
:type DisplayToolCommon: :class:`tencentcloud.ctem.v20231128.models.DisplayToolCommon`
|
11197
|
+
:param _Name: 事件名称
|
11198
|
+
:type Name: str
|
11199
|
+
:param _Description: 事件描述
|
11200
|
+
:type Description: str
|
11201
|
+
:param _Source: 数据源
|
11202
|
+
:type Source: str
|
11203
|
+
:param _RiskLevel: 风险等级:1-低危 2-中危 3-高危 4-严重 5-误报
|
11204
|
+
:type RiskLevel: int
|
11028
11205
|
:param _Url: 链接
|
11029
11206
|
:type Url: str
|
11207
|
+
:param _Screenshot: 截图
|
11208
|
+
:type Screenshot: str
|
11209
|
+
:param _Suggestion: 建议
|
11210
|
+
:type Suggestion: str
|
11211
|
+
:param _Keyword: 关键词
|
11212
|
+
:type Keyword: str
|
11213
|
+
:param _HandlingStatus: 处置状态:0-待处理 1-处理中 2-已处理
|
11214
|
+
:type HandlingStatus: int
|
11215
|
+
:param _Remark: 备注
|
11216
|
+
:type Remark: str
|
11030
11217
|
"""
|
11031
11218
|
self._Id = None
|
11219
|
+
self._DisplayToolCommon = None
|
11220
|
+
self._Name = None
|
11221
|
+
self._Description = None
|
11222
|
+
self._Source = None
|
11223
|
+
self._RiskLevel = None
|
11032
11224
|
self._Url = None
|
11225
|
+
self._Screenshot = None
|
11226
|
+
self._Suggestion = None
|
11227
|
+
self._Keyword = None
|
11228
|
+
self._HandlingStatus = None
|
11229
|
+
self._Remark = None
|
11033
11230
|
|
11034
11231
|
@property
|
11035
11232
|
def Id(self):
|
@@ -11042,6 +11239,61 @@ class DisplayLeakageData(AbstractModel):
|
|
11042
11239
|
def Id(self, Id):
|
11043
11240
|
self._Id = Id
|
11044
11241
|
|
11242
|
+
@property
|
11243
|
+
def DisplayToolCommon(self):
|
11244
|
+
r"""公共字段
|
11245
|
+
:rtype: :class:`tencentcloud.ctem.v20231128.models.DisplayToolCommon`
|
11246
|
+
"""
|
11247
|
+
return self._DisplayToolCommon
|
11248
|
+
|
11249
|
+
@DisplayToolCommon.setter
|
11250
|
+
def DisplayToolCommon(self, DisplayToolCommon):
|
11251
|
+
self._DisplayToolCommon = DisplayToolCommon
|
11252
|
+
|
11253
|
+
@property
|
11254
|
+
def Name(self):
|
11255
|
+
r"""事件名称
|
11256
|
+
:rtype: str
|
11257
|
+
"""
|
11258
|
+
return self._Name
|
11259
|
+
|
11260
|
+
@Name.setter
|
11261
|
+
def Name(self, Name):
|
11262
|
+
self._Name = Name
|
11263
|
+
|
11264
|
+
@property
|
11265
|
+
def Description(self):
|
11266
|
+
r"""事件描述
|
11267
|
+
:rtype: str
|
11268
|
+
"""
|
11269
|
+
return self._Description
|
11270
|
+
|
11271
|
+
@Description.setter
|
11272
|
+
def Description(self, Description):
|
11273
|
+
self._Description = Description
|
11274
|
+
|
11275
|
+
@property
|
11276
|
+
def Source(self):
|
11277
|
+
r"""数据源
|
11278
|
+
:rtype: str
|
11279
|
+
"""
|
11280
|
+
return self._Source
|
11281
|
+
|
11282
|
+
@Source.setter
|
11283
|
+
def Source(self, Source):
|
11284
|
+
self._Source = Source
|
11285
|
+
|
11286
|
+
@property
|
11287
|
+
def RiskLevel(self):
|
11288
|
+
r"""风险等级:1-低危 2-中危 3-高危 4-严重 5-误报
|
11289
|
+
:rtype: int
|
11290
|
+
"""
|
11291
|
+
return self._RiskLevel
|
11292
|
+
|
11293
|
+
@RiskLevel.setter
|
11294
|
+
def RiskLevel(self, RiskLevel):
|
11295
|
+
self._RiskLevel = RiskLevel
|
11296
|
+
|
11045
11297
|
@property
|
11046
11298
|
def Url(self):
|
11047
11299
|
r"""链接
|
@@ -11053,10 +11305,77 @@ class DisplayLeakageData(AbstractModel):
|
|
11053
11305
|
def Url(self, Url):
|
11054
11306
|
self._Url = Url
|
11055
11307
|
|
11308
|
+
@property
|
11309
|
+
def Screenshot(self):
|
11310
|
+
r"""截图
|
11311
|
+
:rtype: str
|
11312
|
+
"""
|
11313
|
+
return self._Screenshot
|
11314
|
+
|
11315
|
+
@Screenshot.setter
|
11316
|
+
def Screenshot(self, Screenshot):
|
11317
|
+
self._Screenshot = Screenshot
|
11318
|
+
|
11319
|
+
@property
|
11320
|
+
def Suggestion(self):
|
11321
|
+
r"""建议
|
11322
|
+
:rtype: str
|
11323
|
+
"""
|
11324
|
+
return self._Suggestion
|
11325
|
+
|
11326
|
+
@Suggestion.setter
|
11327
|
+
def Suggestion(self, Suggestion):
|
11328
|
+
self._Suggestion = Suggestion
|
11329
|
+
|
11330
|
+
@property
|
11331
|
+
def Keyword(self):
|
11332
|
+
r"""关键词
|
11333
|
+
:rtype: str
|
11334
|
+
"""
|
11335
|
+
return self._Keyword
|
11336
|
+
|
11337
|
+
@Keyword.setter
|
11338
|
+
def Keyword(self, Keyword):
|
11339
|
+
self._Keyword = Keyword
|
11340
|
+
|
11341
|
+
@property
|
11342
|
+
def HandlingStatus(self):
|
11343
|
+
r"""处置状态:0-待处理 1-处理中 2-已处理
|
11344
|
+
:rtype: int
|
11345
|
+
"""
|
11346
|
+
return self._HandlingStatus
|
11347
|
+
|
11348
|
+
@HandlingStatus.setter
|
11349
|
+
def HandlingStatus(self, HandlingStatus):
|
11350
|
+
self._HandlingStatus = HandlingStatus
|
11351
|
+
|
11352
|
+
@property
|
11353
|
+
def Remark(self):
|
11354
|
+
r"""备注
|
11355
|
+
:rtype: str
|
11356
|
+
"""
|
11357
|
+
return self._Remark
|
11358
|
+
|
11359
|
+
@Remark.setter
|
11360
|
+
def Remark(self, Remark):
|
11361
|
+
self._Remark = Remark
|
11362
|
+
|
11056
11363
|
|
11057
11364
|
def _deserialize(self, params):
|
11058
11365
|
self._Id = params.get("Id")
|
11366
|
+
if params.get("DisplayToolCommon") is not None:
|
11367
|
+
self._DisplayToolCommon = DisplayToolCommon()
|
11368
|
+
self._DisplayToolCommon._deserialize(params.get("DisplayToolCommon"))
|
11369
|
+
self._Name = params.get("Name")
|
11370
|
+
self._Description = params.get("Description")
|
11371
|
+
self._Source = params.get("Source")
|
11372
|
+
self._RiskLevel = params.get("RiskLevel")
|
11059
11373
|
self._Url = params.get("Url")
|
11374
|
+
self._Screenshot = params.get("Screenshot")
|
11375
|
+
self._Suggestion = params.get("Suggestion")
|
11376
|
+
self._Keyword = params.get("Keyword")
|
11377
|
+
self._HandlingStatus = params.get("HandlingStatus")
|
11378
|
+
self._Remark = params.get("Remark")
|
11060
11379
|
memeber_set = set(params.keys())
|
11061
11380
|
for name, value in vars(self).items():
|
11062
11381
|
property_name = name[1:]
|
@@ -11076,11 +11395,35 @@ class DisplayLeakageEmail(AbstractModel):
|
|
11076
11395
|
r"""
|
11077
11396
|
:param _Id: 主键ID
|
11078
11397
|
:type Id: int
|
11398
|
+
:param _DisplayToolCommon: 公共字段
|
11399
|
+
:type DisplayToolCommon: :class:`tencentcloud.ctem.v20231128.models.DisplayToolCommon`
|
11079
11400
|
:param _Email: 邮箱
|
11080
11401
|
:type Email: str
|
11402
|
+
:param _Username: 用户名
|
11403
|
+
:type Username: str
|
11404
|
+
:param _Source: 数据源
|
11405
|
+
:type Source: str
|
11406
|
+
:param _RiskLevel: 风险等级:1-低危 2-中危 3-高危 4-严重 5-误报
|
11407
|
+
:type RiskLevel: int
|
11408
|
+
:param _Suggestion: 建议
|
11409
|
+
:type Suggestion: str
|
11410
|
+
:param _Keyword: 关键词
|
11411
|
+
:type Keyword: str
|
11412
|
+
:param _HandlingStatus: 处置状态:0-待处理 1-处理中 2-已处理
|
11413
|
+
:type HandlingStatus: int
|
11414
|
+
:param _Remark: 备注
|
11415
|
+
:type Remark: str
|
11081
11416
|
"""
|
11082
11417
|
self._Id = None
|
11418
|
+
self._DisplayToolCommon = None
|
11083
11419
|
self._Email = None
|
11420
|
+
self._Username = None
|
11421
|
+
self._Source = None
|
11422
|
+
self._RiskLevel = None
|
11423
|
+
self._Suggestion = None
|
11424
|
+
self._Keyword = None
|
11425
|
+
self._HandlingStatus = None
|
11426
|
+
self._Remark = None
|
11084
11427
|
|
11085
11428
|
@property
|
11086
11429
|
def Id(self):
|
@@ -11093,6 +11436,17 @@ class DisplayLeakageEmail(AbstractModel):
|
|
11093
11436
|
def Id(self, Id):
|
11094
11437
|
self._Id = Id
|
11095
11438
|
|
11439
|
+
@property
|
11440
|
+
def DisplayToolCommon(self):
|
11441
|
+
r"""公共字段
|
11442
|
+
:rtype: :class:`tencentcloud.ctem.v20231128.models.DisplayToolCommon`
|
11443
|
+
"""
|
11444
|
+
return self._DisplayToolCommon
|
11445
|
+
|
11446
|
+
@DisplayToolCommon.setter
|
11447
|
+
def DisplayToolCommon(self, DisplayToolCommon):
|
11448
|
+
self._DisplayToolCommon = DisplayToolCommon
|
11449
|
+
|
11096
11450
|
@property
|
11097
11451
|
def Email(self):
|
11098
11452
|
r"""邮箱
|
@@ -11104,10 +11458,97 @@ class DisplayLeakageEmail(AbstractModel):
|
|
11104
11458
|
def Email(self, Email):
|
11105
11459
|
self._Email = Email
|
11106
11460
|
|
11461
|
+
@property
|
11462
|
+
def Username(self):
|
11463
|
+
r"""用户名
|
11464
|
+
:rtype: str
|
11465
|
+
"""
|
11466
|
+
return self._Username
|
11467
|
+
|
11468
|
+
@Username.setter
|
11469
|
+
def Username(self, Username):
|
11470
|
+
self._Username = Username
|
11471
|
+
|
11472
|
+
@property
|
11473
|
+
def Source(self):
|
11474
|
+
r"""数据源
|
11475
|
+
:rtype: str
|
11476
|
+
"""
|
11477
|
+
return self._Source
|
11478
|
+
|
11479
|
+
@Source.setter
|
11480
|
+
def Source(self, Source):
|
11481
|
+
self._Source = Source
|
11482
|
+
|
11483
|
+
@property
|
11484
|
+
def RiskLevel(self):
|
11485
|
+
r"""风险等级:1-低危 2-中危 3-高危 4-严重 5-误报
|
11486
|
+
:rtype: int
|
11487
|
+
"""
|
11488
|
+
return self._RiskLevel
|
11489
|
+
|
11490
|
+
@RiskLevel.setter
|
11491
|
+
def RiskLevel(self, RiskLevel):
|
11492
|
+
self._RiskLevel = RiskLevel
|
11493
|
+
|
11494
|
+
@property
|
11495
|
+
def Suggestion(self):
|
11496
|
+
r"""建议
|
11497
|
+
:rtype: str
|
11498
|
+
"""
|
11499
|
+
return self._Suggestion
|
11500
|
+
|
11501
|
+
@Suggestion.setter
|
11502
|
+
def Suggestion(self, Suggestion):
|
11503
|
+
self._Suggestion = Suggestion
|
11504
|
+
|
11505
|
+
@property
|
11506
|
+
def Keyword(self):
|
11507
|
+
r"""关键词
|
11508
|
+
:rtype: str
|
11509
|
+
"""
|
11510
|
+
return self._Keyword
|
11511
|
+
|
11512
|
+
@Keyword.setter
|
11513
|
+
def Keyword(self, Keyword):
|
11514
|
+
self._Keyword = Keyword
|
11515
|
+
|
11516
|
+
@property
|
11517
|
+
def HandlingStatus(self):
|
11518
|
+
r"""处置状态:0-待处理 1-处理中 2-已处理
|
11519
|
+
:rtype: int
|
11520
|
+
"""
|
11521
|
+
return self._HandlingStatus
|
11522
|
+
|
11523
|
+
@HandlingStatus.setter
|
11524
|
+
def HandlingStatus(self, HandlingStatus):
|
11525
|
+
self._HandlingStatus = HandlingStatus
|
11526
|
+
|
11527
|
+
@property
|
11528
|
+
def Remark(self):
|
11529
|
+
r"""备注
|
11530
|
+
:rtype: str
|
11531
|
+
"""
|
11532
|
+
return self._Remark
|
11533
|
+
|
11534
|
+
@Remark.setter
|
11535
|
+
def Remark(self, Remark):
|
11536
|
+
self._Remark = Remark
|
11537
|
+
|
11107
11538
|
|
11108
11539
|
def _deserialize(self, params):
|
11109
11540
|
self._Id = params.get("Id")
|
11541
|
+
if params.get("DisplayToolCommon") is not None:
|
11542
|
+
self._DisplayToolCommon = DisplayToolCommon()
|
11543
|
+
self._DisplayToolCommon._deserialize(params.get("DisplayToolCommon"))
|
11110
11544
|
self._Email = params.get("Email")
|
11545
|
+
self._Username = params.get("Username")
|
11546
|
+
self._Source = params.get("Source")
|
11547
|
+
self._RiskLevel = params.get("RiskLevel")
|
11548
|
+
self._Suggestion = params.get("Suggestion")
|
11549
|
+
self._Keyword = params.get("Keyword")
|
11550
|
+
self._HandlingStatus = params.get("HandlingStatus")
|
11551
|
+
self._Remark = params.get("Remark")
|
11111
11552
|
memeber_set = set(params.keys())
|
11112
11553
|
for name, value in vars(self).items():
|
11113
11554
|
property_name = name[1:]
|
@@ -1049,6 +1049,7 @@ class AutoScaleGroupAdvanceAttrs(AbstractModel):
|
|
1049
1049
|
def __init__(self):
|
1050
1050
|
r"""
|
1051
1051
|
:param _ComputeResourceAdvanceParams: 计算资源高级设置
|
1052
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1052
1053
|
:type ComputeResourceAdvanceParams: :class:`tencentcloud.emr.v20190103.models.ComputeResourceAdvanceParams`
|
1053
1054
|
"""
|
1054
1055
|
self._ComputeResourceAdvanceParams = None
|
@@ -1056,6 +1057,7 @@ class AutoScaleGroupAdvanceAttrs(AbstractModel):
|
|
1056
1057
|
@property
|
1057
1058
|
def ComputeResourceAdvanceParams(self):
|
1058
1059
|
r"""计算资源高级设置
|
1060
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1059
1061
|
:rtype: :class:`tencentcloud.emr.v20190103.models.ComputeResourceAdvanceParams`
|
1060
1062
|
"""
|
1061
1063
|
return self._ComputeResourceAdvanceParams
|
@@ -1358,6 +1360,8 @@ class AutoScaleResourceConf(AbstractModel):
|
|
1358
1360
|
:type GroupName: str
|
1359
1361
|
:param _YarnNodeLabel: 标签
|
1360
1362
|
:type YarnNodeLabel: str
|
1363
|
+
:param _WarehouseName: 对应的计算组
|
1364
|
+
:type WarehouseName: str
|
1361
1365
|
:param _GroupStatus: 伸缩组状态
|
1362
1366
|
:type GroupStatus: int
|
1363
1367
|
:param _Parallel: 并行伸缩 0关闭;1开启
|
@@ -1365,6 +1369,7 @@ class AutoScaleResourceConf(AbstractModel):
|
|
1365
1369
|
:param _EnableMNode: 是否支持MNode
|
1366
1370
|
:type EnableMNode: int
|
1367
1371
|
:param _ExtraAdvanceAttrs: 伸缩组更多设置
|
1372
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1368
1373
|
:type ExtraAdvanceAttrs: :class:`tencentcloud.emr.v20190103.models.AutoScaleGroupAdvanceAttrs`
|
1369
1374
|
"""
|
1370
1375
|
self._Id = None
|
@@ -1380,6 +1385,7 @@ class AutoScaleResourceConf(AbstractModel):
|
|
1380
1385
|
self._ChangeToPod = None
|
1381
1386
|
self._GroupName = None
|
1382
1387
|
self._YarnNodeLabel = None
|
1388
|
+
self._WarehouseName = None
|
1383
1389
|
self._GroupStatus = None
|
1384
1390
|
self._Parallel = None
|
1385
1391
|
self._EnableMNode = None
|
@@ -1528,6 +1534,17 @@ class AutoScaleResourceConf(AbstractModel):
|
|
1528
1534
|
def YarnNodeLabel(self, YarnNodeLabel):
|
1529
1535
|
self._YarnNodeLabel = YarnNodeLabel
|
1530
1536
|
|
1537
|
+
@property
|
1538
|
+
def WarehouseName(self):
|
1539
|
+
r"""对应的计算组
|
1540
|
+
:rtype: str
|
1541
|
+
"""
|
1542
|
+
return self._WarehouseName
|
1543
|
+
|
1544
|
+
@WarehouseName.setter
|
1545
|
+
def WarehouseName(self, WarehouseName):
|
1546
|
+
self._WarehouseName = WarehouseName
|
1547
|
+
|
1531
1548
|
@property
|
1532
1549
|
def GroupStatus(self):
|
1533
1550
|
r"""伸缩组状态
|
@@ -1564,6 +1581,7 @@ class AutoScaleResourceConf(AbstractModel):
|
|
1564
1581
|
@property
|
1565
1582
|
def ExtraAdvanceAttrs(self):
|
1566
1583
|
r"""伸缩组更多设置
|
1584
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1567
1585
|
:rtype: :class:`tencentcloud.emr.v20190103.models.AutoScaleGroupAdvanceAttrs`
|
1568
1586
|
"""
|
1569
1587
|
return self._ExtraAdvanceAttrs
|
@@ -1587,6 +1605,7 @@ class AutoScaleResourceConf(AbstractModel):
|
|
1587
1605
|
self._ChangeToPod = params.get("ChangeToPod")
|
1588
1606
|
self._GroupName = params.get("GroupName")
|
1589
1607
|
self._YarnNodeLabel = params.get("YarnNodeLabel")
|
1608
|
+
self._WarehouseName = params.get("WarehouseName")
|
1590
1609
|
self._GroupStatus = params.get("GroupStatus")
|
1591
1610
|
self._Parallel = params.get("Parallel")
|
1592
1611
|
self._EnableMNode = params.get("EnableMNode")
|
@@ -32487,6 +32506,8 @@ class ScaleOutClusterRequest(AbstractModel):
|
|
32487
32506
|
:type ScaleOutServiceConfGroupsInfo: list of ScaleOutServiceConfGroupsInfo
|
32488
32507
|
:param _NodeMarks: 节点标记信息,当前只提供给tf平台使用
|
32489
32508
|
:type NodeMarks: :class:`tencentcloud.emr.v20190103.models.NodeMark`
|
32509
|
+
:param _WarehouseName: 扩容指定计算组名称
|
32510
|
+
:type WarehouseName: str
|
32490
32511
|
"""
|
32491
32512
|
self._InstanceChargeType = None
|
32492
32513
|
self._InstanceId = None
|
@@ -32509,6 +32530,7 @@ class ScaleOutClusterRequest(AbstractModel):
|
|
32509
32530
|
self._SubnetId = None
|
32510
32531
|
self._ScaleOutServiceConfGroupsInfo = None
|
32511
32532
|
self._NodeMarks = None
|
32533
|
+
self._WarehouseName = None
|
32512
32534
|
|
32513
32535
|
@property
|
32514
32536
|
def InstanceChargeType(self):
|
@@ -32747,6 +32769,17 @@ class ScaleOutClusterRequest(AbstractModel):
|
|
32747
32769
|
def NodeMarks(self, NodeMarks):
|
32748
32770
|
self._NodeMarks = NodeMarks
|
32749
32771
|
|
32772
|
+
@property
|
32773
|
+
def WarehouseName(self):
|
32774
|
+
r"""扩容指定计算组名称
|
32775
|
+
:rtype: str
|
32776
|
+
"""
|
32777
|
+
return self._WarehouseName
|
32778
|
+
|
32779
|
+
@WarehouseName.setter
|
32780
|
+
def WarehouseName(self, WarehouseName):
|
32781
|
+
self._WarehouseName = WarehouseName
|
32782
|
+
|
32750
32783
|
|
32751
32784
|
def _deserialize(self, params):
|
32752
32785
|
self._InstanceChargeType = params.get("InstanceChargeType")
|
@@ -32795,6 +32828,7 @@ class ScaleOutClusterRequest(AbstractModel):
|
|
32795
32828
|
if params.get("NodeMarks") is not None:
|
32796
32829
|
self._NodeMarks = NodeMark()
|
32797
32830
|
self._NodeMarks._deserialize(params.get("NodeMarks"))
|
32831
|
+
self._WarehouseName = params.get("WarehouseName")
|
32798
32832
|
memeber_set = set(params.keys())
|
32799
32833
|
for name, value in vars(self).items():
|
32800
32834
|
property_name = name[1:]
|
@@ -33003,6 +33037,8 @@ class ScaleOutInstanceRequest(AbstractModel):
|
|
33003
33037
|
:type ComputeResourceAdvanceParams: :class:`tencentcloud.emr.v20190103.models.ComputeResourceAdvanceParams`
|
33004
33038
|
:param _NodeMarks: 节点标记信息,目前只提供tf平台使用
|
33005
33039
|
:type NodeMarks: :class:`tencentcloud.emr.v20190103.models.NodeMark`
|
33040
|
+
:param _WarehouseName: 扩容指定计算组
|
33041
|
+
:type WarehouseName: str
|
33006
33042
|
"""
|
33007
33043
|
self._TimeUnit = None
|
33008
33044
|
self._TimeSpan = None
|
@@ -33034,6 +33070,7 @@ class ScaleOutInstanceRequest(AbstractModel):
|
|
33034
33070
|
self._ComputeResourceId = None
|
33035
33071
|
self._ComputeResourceAdvanceParams = None
|
33036
33072
|
self._NodeMarks = None
|
33073
|
+
self._WarehouseName = None
|
33037
33074
|
|
33038
33075
|
@property
|
33039
33076
|
def TimeUnit(self):
|
@@ -33376,6 +33413,17 @@ class ScaleOutInstanceRequest(AbstractModel):
|
|
33376
33413
|
def NodeMarks(self, NodeMarks):
|
33377
33414
|
self._NodeMarks = NodeMarks
|
33378
33415
|
|
33416
|
+
@property
|
33417
|
+
def WarehouseName(self):
|
33418
|
+
r"""扩容指定计算组
|
33419
|
+
:rtype: str
|
33420
|
+
"""
|
33421
|
+
return self._WarehouseName
|
33422
|
+
|
33423
|
+
@WarehouseName.setter
|
33424
|
+
def WarehouseName(self, WarehouseName):
|
33425
|
+
self._WarehouseName = WarehouseName
|
33426
|
+
|
33379
33427
|
|
33380
33428
|
def _deserialize(self, params):
|
33381
33429
|
self._TimeUnit = params.get("TimeUnit")
|
@@ -33426,6 +33474,7 @@ class ScaleOutInstanceRequest(AbstractModel):
|
|
33426
33474
|
if params.get("NodeMarks") is not None:
|
33427
33475
|
self._NodeMarks = NodeMark()
|
33428
33476
|
self._NodeMarks._deserialize(params.get("NodeMarks"))
|
33477
|
+
self._WarehouseName = params.get("WarehouseName")
|
33429
33478
|
memeber_set = set(params.keys())
|
33430
33479
|
for name, value in vars(self).items():
|
33431
33480
|
property_name = name[1:]
|
@@ -3176,10 +3176,10 @@ class EssClient(AbstractClient):
|
|
3176
3176
|
|
3177
3177
|
|
3178
3178
|
def DescribeUserFlowType(self, request):
|
3179
|
-
r"""
|
3179
|
+
r"""查询用户模板类型,分为两种模式:
|
3180
3180
|
<ul>
|
3181
|
-
<li>QueryBindTemplate:false
|
3182
|
-
<li>QueryBindTemplate:false
|
3181
|
+
<li>QueryBindTemplate:false,查询用户合同模板类型,返回用户合同模板类型ID,用户合同模板类型名称,用户合同模板类型描述信息</li>
|
3182
|
+
<li>QueryBindTemplate:false,查询用户合同模板类型,返回用户合同模板类型ID,用户合同模板类型名称,用户合同模板类型描述信息,被绑定的模板数量</li>
|
3183
3183
|
</ul>
|
3184
3184
|
|
3185
3185
|
:param request: Request instance for DescribeUserFlowType.
|