tencentcloud-sdk-python-csip 3.1.63__tar.gz → 3.1.67__tar.gz
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_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/setup.py +1 -1
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/tencentcloud/csip/v20221121/csip_client.py +69 -0
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/tencentcloud/csip/v20221121/csip_client_async.py +54 -0
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/tencentcloud/csip/v20221121/models.py +859 -39
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/tencentcloud_sdk_python_csip.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_csip-3.1.67/tencentcloud_sdk_python_csip.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_csip-3.1.63/tencentcloud_sdk_python_csip.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/README.rst +0 -0
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/setup.cfg +0 -0
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/tencentcloud/csip/__init__.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/tencentcloud/csip/v20221121/__init__.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/tencentcloud/csip/v20221121/errorcodes.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/tencentcloud_sdk_python_csip.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/tencentcloud_sdk_python_csip.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_csip-3.1.63 → tencentcloud_sdk_python_csip-3.1.67}/tencentcloud_sdk_python_csip.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-csip
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.67
|
|
4
4
|
Summary: Tencent Cloud Csip SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.67
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-csip',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.67,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Csip SDK for Python',
|
|
@@ -210,6 +210,29 @@ class CsipClient(AbstractClient):
|
|
|
210
210
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
211
211
|
|
|
212
212
|
|
|
213
|
+
def DescribeAKAnalysisDetail(self, request):
|
|
214
|
+
r"""访问密钥告警记录AI分析结果详情
|
|
215
|
+
|
|
216
|
+
:param request: Request instance for DescribeAKAnalysisDetail.
|
|
217
|
+
:type request: :class:`tencentcloud.csip.v20221121.models.DescribeAKAnalysisDetailRequest`
|
|
218
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.DescribeAKAnalysisDetailResponse`
|
|
219
|
+
|
|
220
|
+
"""
|
|
221
|
+
try:
|
|
222
|
+
params = request._serialize()
|
|
223
|
+
headers = request.headers
|
|
224
|
+
body = self.call("DescribeAKAnalysisDetail", params, headers=headers)
|
|
225
|
+
response = json.loads(body)
|
|
226
|
+
model = models.DescribeAKAnalysisDetailResponse()
|
|
227
|
+
model._deserialize(response["Response"])
|
|
228
|
+
return model
|
|
229
|
+
except Exception as e:
|
|
230
|
+
if isinstance(e, TencentCloudSDKException):
|
|
231
|
+
raise
|
|
232
|
+
else:
|
|
233
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
234
|
+
|
|
235
|
+
|
|
213
236
|
def DescribeAbnormalCallRecord(self, request):
|
|
214
237
|
r"""获取调用记录列表
|
|
215
238
|
|
|
@@ -877,6 +900,52 @@ class CsipClient(AbstractClient):
|
|
|
877
900
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
878
901
|
|
|
879
902
|
|
|
903
|
+
def DescribeKeySandboxCredential(self, request):
|
|
904
|
+
r"""查询凭证详情,返回凭证元数据和打码后的凭据数据。access类型返回Access数组(Key原文、Value打码),sts类型返回STS对象(System原文、SecretID和SecretKey打码)
|
|
905
|
+
|
|
906
|
+
:param request: Request instance for DescribeKeySandboxCredential.
|
|
907
|
+
:type request: :class:`tencentcloud.csip.v20221121.models.DescribeKeySandboxCredentialRequest`
|
|
908
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.DescribeKeySandboxCredentialResponse`
|
|
909
|
+
|
|
910
|
+
"""
|
|
911
|
+
try:
|
|
912
|
+
params = request._serialize()
|
|
913
|
+
headers = request.headers
|
|
914
|
+
body = self.call("DescribeKeySandboxCredential", params, headers=headers)
|
|
915
|
+
response = json.loads(body)
|
|
916
|
+
model = models.DescribeKeySandboxCredentialResponse()
|
|
917
|
+
model._deserialize(response["Response"])
|
|
918
|
+
return model
|
|
919
|
+
except Exception as e:
|
|
920
|
+
if isinstance(e, TencentCloudSDKException):
|
|
921
|
+
raise
|
|
922
|
+
else:
|
|
923
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
def DescribeKeySandboxCredentialList(self, request):
|
|
927
|
+
r"""查询凭证列表
|
|
928
|
+
|
|
929
|
+
:param request: Request instance for DescribeKeySandboxCredentialList.
|
|
930
|
+
:type request: :class:`tencentcloud.csip.v20221121.models.DescribeKeySandboxCredentialListRequest`
|
|
931
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.DescribeKeySandboxCredentialListResponse`
|
|
932
|
+
|
|
933
|
+
"""
|
|
934
|
+
try:
|
|
935
|
+
params = request._serialize()
|
|
936
|
+
headers = request.headers
|
|
937
|
+
body = self.call("DescribeKeySandboxCredentialList", params, headers=headers)
|
|
938
|
+
response = json.loads(body)
|
|
939
|
+
model = models.DescribeKeySandboxCredentialListResponse()
|
|
940
|
+
model._deserialize(response["Response"])
|
|
941
|
+
return model
|
|
942
|
+
except Exception as e:
|
|
943
|
+
if isinstance(e, TencentCloudSDKException):
|
|
944
|
+
raise
|
|
945
|
+
else:
|
|
946
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
947
|
+
|
|
948
|
+
|
|
880
949
|
def DescribeListenerList(self, request):
|
|
881
950
|
r"""查询clb监听器列表
|
|
882
951
|
|
|
@@ -169,6 +169,24 @@ class CsipClient(AbstractClient):
|
|
|
169
169
|
|
|
170
170
|
return await self.call_and_deserialize(**kwargs)
|
|
171
171
|
|
|
172
|
+
async def DescribeAKAnalysisDetail(
|
|
173
|
+
self,
|
|
174
|
+
request: models.DescribeAKAnalysisDetailRequest,
|
|
175
|
+
opts: Dict = None,
|
|
176
|
+
) -> models.DescribeAKAnalysisDetailResponse:
|
|
177
|
+
"""
|
|
178
|
+
访问密钥告警记录AI分析结果详情
|
|
179
|
+
"""
|
|
180
|
+
|
|
181
|
+
kwargs = {}
|
|
182
|
+
kwargs["action"] = "DescribeAKAnalysisDetail"
|
|
183
|
+
kwargs["params"] = request._serialize()
|
|
184
|
+
kwargs["resp_cls"] = models.DescribeAKAnalysisDetailResponse
|
|
185
|
+
kwargs["headers"] = request.headers
|
|
186
|
+
kwargs["opts"] = opts or {}
|
|
187
|
+
|
|
188
|
+
return await self.call_and_deserialize(**kwargs)
|
|
189
|
+
|
|
172
190
|
async def DescribeAbnormalCallRecord(
|
|
173
191
|
self,
|
|
174
192
|
request: models.DescribeAbnormalCallRecordRequest,
|
|
@@ -691,6 +709,42 @@ class CsipClient(AbstractClient):
|
|
|
691
709
|
|
|
692
710
|
return await self.call_and_deserialize(**kwargs)
|
|
693
711
|
|
|
712
|
+
async def DescribeKeySandboxCredential(
|
|
713
|
+
self,
|
|
714
|
+
request: models.DescribeKeySandboxCredentialRequest,
|
|
715
|
+
opts: Dict = None,
|
|
716
|
+
) -> models.DescribeKeySandboxCredentialResponse:
|
|
717
|
+
"""
|
|
718
|
+
查询凭证详情,返回凭证元数据和打码后的凭据数据。access类型返回Access数组(Key原文、Value打码),sts类型返回STS对象(System原文、SecretID和SecretKey打码)
|
|
719
|
+
"""
|
|
720
|
+
|
|
721
|
+
kwargs = {}
|
|
722
|
+
kwargs["action"] = "DescribeKeySandboxCredential"
|
|
723
|
+
kwargs["params"] = request._serialize()
|
|
724
|
+
kwargs["resp_cls"] = models.DescribeKeySandboxCredentialResponse
|
|
725
|
+
kwargs["headers"] = request.headers
|
|
726
|
+
kwargs["opts"] = opts or {}
|
|
727
|
+
|
|
728
|
+
return await self.call_and_deserialize(**kwargs)
|
|
729
|
+
|
|
730
|
+
async def DescribeKeySandboxCredentialList(
|
|
731
|
+
self,
|
|
732
|
+
request: models.DescribeKeySandboxCredentialListRequest,
|
|
733
|
+
opts: Dict = None,
|
|
734
|
+
) -> models.DescribeKeySandboxCredentialListResponse:
|
|
735
|
+
"""
|
|
736
|
+
查询凭证列表
|
|
737
|
+
"""
|
|
738
|
+
|
|
739
|
+
kwargs = {}
|
|
740
|
+
kwargs["action"] = "DescribeKeySandboxCredentialList"
|
|
741
|
+
kwargs["params"] = request._serialize()
|
|
742
|
+
kwargs["resp_cls"] = models.DescribeKeySandboxCredentialListResponse
|
|
743
|
+
kwargs["headers"] = request.headers
|
|
744
|
+
kwargs["opts"] = opts or {}
|
|
745
|
+
|
|
746
|
+
return await self.call_and_deserialize(**kwargs)
|
|
747
|
+
|
|
694
748
|
async def DescribeListenerList(
|
|
695
749
|
self,
|
|
696
750
|
request: models.DescribeListenerListRequest,
|
|
@@ -289,6 +289,59 @@ class AKInfo(AbstractModel):
|
|
|
289
289
|
|
|
290
290
|
|
|
291
291
|
|
|
292
|
+
class AccessCredentialOutput(AbstractModel):
|
|
293
|
+
r"""常规密钥凭据(出参专用),用于查询详情接口的响应。Value字段返回打码后的值,不暴露明文
|
|
294
|
+
|
|
295
|
+
"""
|
|
296
|
+
|
|
297
|
+
def __init__(self):
|
|
298
|
+
r"""
|
|
299
|
+
:param _Key: 凭据键名(原文),如SecretId、SecretKey、Token等
|
|
300
|
+
:type Key: str
|
|
301
|
+
:param _Value: 凭据键值(打码后)
|
|
302
|
+
补充说明:保留前3后4位,中间用***替代;长度不足7位时全部替换为***
|
|
303
|
+
:type Value: str
|
|
304
|
+
"""
|
|
305
|
+
self._Key = None
|
|
306
|
+
self._Value = None
|
|
307
|
+
|
|
308
|
+
@property
|
|
309
|
+
def Key(self):
|
|
310
|
+
r"""凭据键名(原文),如SecretId、SecretKey、Token等
|
|
311
|
+
:rtype: str
|
|
312
|
+
"""
|
|
313
|
+
return self._Key
|
|
314
|
+
|
|
315
|
+
@Key.setter
|
|
316
|
+
def Key(self, Key):
|
|
317
|
+
self._Key = Key
|
|
318
|
+
|
|
319
|
+
@property
|
|
320
|
+
def Value(self):
|
|
321
|
+
r"""凭据键值(打码后)
|
|
322
|
+
补充说明:保留前3后4位,中间用***替代;长度不足7位时全部替换为***
|
|
323
|
+
:rtype: str
|
|
324
|
+
"""
|
|
325
|
+
return self._Value
|
|
326
|
+
|
|
327
|
+
@Value.setter
|
|
328
|
+
def Value(self, Value):
|
|
329
|
+
self._Value = Value
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
def _deserialize(self, params):
|
|
333
|
+
self._Key = params.get("Key")
|
|
334
|
+
self._Value = params.get("Value")
|
|
335
|
+
memeber_set = set(params.keys())
|
|
336
|
+
for name, value in vars(self).items():
|
|
337
|
+
property_name = name[1:]
|
|
338
|
+
if property_name in memeber_set:
|
|
339
|
+
memeber_set.remove(property_name)
|
|
340
|
+
if len(memeber_set) > 0:
|
|
341
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
292
345
|
class AccessKeyAlarm(AbstractModel):
|
|
293
346
|
r"""访问密钥告警记录
|
|
294
347
|
|
|
@@ -11394,6 +11447,65 @@ class CreateRiskCenterScanTaskResponse(AbstractModel):
|
|
|
11394
11447
|
self._RequestId = params.get("RequestId")
|
|
11395
11448
|
|
|
11396
11449
|
|
|
11450
|
+
class CredentialEffectScope(AbstractModel):
|
|
11451
|
+
r"""生效机器范围,用于指定凭证在哪些机器上生效
|
|
11452
|
+
|
|
11453
|
+
"""
|
|
11454
|
+
|
|
11455
|
+
def __init__(self):
|
|
11456
|
+
r"""
|
|
11457
|
+
:param _Exclude: 是否排除模式
|
|
11458
|
+
枚举值:
|
|
11459
|
+
0:包含模式(仅Instances中的机器生效),此时Instances必填
|
|
11460
|
+
1:排除模式(Instances中的机器不生效,其余机器生效),此时Instances可选(空列表表示全部机器生效)
|
|
11461
|
+
:type Exclude: int
|
|
11462
|
+
:param _Instances: 机器实例ID列表。Exclude为0时必填,表示仅这些机器可访问凭证;Exclude为1时可选,表示这些机器不可访问凭证(空列表表示全部机器生效)
|
|
11463
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11464
|
+
:type Instances: list of str
|
|
11465
|
+
"""
|
|
11466
|
+
self._Exclude = None
|
|
11467
|
+
self._Instances = None
|
|
11468
|
+
|
|
11469
|
+
@property
|
|
11470
|
+
def Exclude(self):
|
|
11471
|
+
r"""是否排除模式
|
|
11472
|
+
枚举值:
|
|
11473
|
+
0:包含模式(仅Instances中的机器生效),此时Instances必填
|
|
11474
|
+
1:排除模式(Instances中的机器不生效,其余机器生效),此时Instances可选(空列表表示全部机器生效)
|
|
11475
|
+
:rtype: int
|
|
11476
|
+
"""
|
|
11477
|
+
return self._Exclude
|
|
11478
|
+
|
|
11479
|
+
@Exclude.setter
|
|
11480
|
+
def Exclude(self, Exclude):
|
|
11481
|
+
self._Exclude = Exclude
|
|
11482
|
+
|
|
11483
|
+
@property
|
|
11484
|
+
def Instances(self):
|
|
11485
|
+
r"""机器实例ID列表。Exclude为0时必填,表示仅这些机器可访问凭证;Exclude为1时可选,表示这些机器不可访问凭证(空列表表示全部机器生效)
|
|
11486
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11487
|
+
:rtype: list of str
|
|
11488
|
+
"""
|
|
11489
|
+
return self._Instances
|
|
11490
|
+
|
|
11491
|
+
@Instances.setter
|
|
11492
|
+
def Instances(self, Instances):
|
|
11493
|
+
self._Instances = Instances
|
|
11494
|
+
|
|
11495
|
+
|
|
11496
|
+
def _deserialize(self, params):
|
|
11497
|
+
self._Exclude = params.get("Exclude")
|
|
11498
|
+
self._Instances = params.get("Instances")
|
|
11499
|
+
memeber_set = set(params.keys())
|
|
11500
|
+
for name, value in vars(self).items():
|
|
11501
|
+
property_name = name[1:]
|
|
11502
|
+
if property_name in memeber_set:
|
|
11503
|
+
memeber_set.remove(property_name)
|
|
11504
|
+
if len(memeber_set) > 0:
|
|
11505
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
11506
|
+
|
|
11507
|
+
|
|
11508
|
+
|
|
11397
11509
|
class CsipRiskCenterStatistics(AbstractModel):
|
|
11398
11510
|
r"""风险中心风险概览统计数据
|
|
11399
11511
|
|
|
@@ -12786,6 +12898,175 @@ class DescribeAIAgentAssetListResponse(AbstractModel):
|
|
|
12786
12898
|
self._RequestId = params.get("RequestId")
|
|
12787
12899
|
|
|
12788
12900
|
|
|
12901
|
+
class DescribeAKAnalysisDetailRequest(AbstractModel):
|
|
12902
|
+
r"""DescribeAKAnalysisDetail请求参数结构体
|
|
12903
|
+
|
|
12904
|
+
"""
|
|
12905
|
+
|
|
12906
|
+
def __init__(self):
|
|
12907
|
+
r"""
|
|
12908
|
+
:param _ID: 告警记录ID
|
|
12909
|
+
:type ID: int
|
|
12910
|
+
:param _MemberId: 集团账号的成员id
|
|
12911
|
+
:type MemberId: list of str
|
|
12912
|
+
"""
|
|
12913
|
+
self._ID = None
|
|
12914
|
+
self._MemberId = None
|
|
12915
|
+
|
|
12916
|
+
@property
|
|
12917
|
+
def ID(self):
|
|
12918
|
+
r"""告警记录ID
|
|
12919
|
+
:rtype: int
|
|
12920
|
+
"""
|
|
12921
|
+
return self._ID
|
|
12922
|
+
|
|
12923
|
+
@ID.setter
|
|
12924
|
+
def ID(self, ID):
|
|
12925
|
+
self._ID = ID
|
|
12926
|
+
|
|
12927
|
+
@property
|
|
12928
|
+
def MemberId(self):
|
|
12929
|
+
r"""集团账号的成员id
|
|
12930
|
+
:rtype: list of str
|
|
12931
|
+
"""
|
|
12932
|
+
return self._MemberId
|
|
12933
|
+
|
|
12934
|
+
@MemberId.setter
|
|
12935
|
+
def MemberId(self, MemberId):
|
|
12936
|
+
self._MemberId = MemberId
|
|
12937
|
+
|
|
12938
|
+
|
|
12939
|
+
def _deserialize(self, params):
|
|
12940
|
+
self._ID = params.get("ID")
|
|
12941
|
+
self._MemberId = params.get("MemberId")
|
|
12942
|
+
memeber_set = set(params.keys())
|
|
12943
|
+
for name, value in vars(self).items():
|
|
12944
|
+
property_name = name[1:]
|
|
12945
|
+
if property_name in memeber_set:
|
|
12946
|
+
memeber_set.remove(property_name)
|
|
12947
|
+
if len(memeber_set) > 0:
|
|
12948
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
12949
|
+
|
|
12950
|
+
|
|
12951
|
+
|
|
12952
|
+
class DescribeAKAnalysisDetailResponse(AbstractModel):
|
|
12953
|
+
r"""DescribeAKAnalysisDetail返回参数结构体
|
|
12954
|
+
|
|
12955
|
+
"""
|
|
12956
|
+
|
|
12957
|
+
def __init__(self):
|
|
12958
|
+
r"""
|
|
12959
|
+
:param _AIStatus: 告警AI分析状态 -1 分析失败 0 未分析 1 分析中 2 分析成功,真实告警 3 分析成功,可疑告警
|
|
12960
|
+
:type AIStatus: int
|
|
12961
|
+
:param _AITaskID: AI分析任务ID
|
|
12962
|
+
:type AITaskID: str
|
|
12963
|
+
:param _AIResult: 告警AI分析结果,base64格式,避免数据被拦截
|
|
12964
|
+
:type AIResult: str
|
|
12965
|
+
:param _Feedback: 反馈建议
|
|
12966
|
+
:type Feedback: str
|
|
12967
|
+
:param _FeedbackResult: 反馈状态 0表示没有反馈,1表示认可,2表示不认可
|
|
12968
|
+
:type FeedbackResult: int
|
|
12969
|
+
:param _FailedReason: 失败原因
|
|
12970
|
+
:type FailedReason: str
|
|
12971
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12972
|
+
:type RequestId: str
|
|
12973
|
+
"""
|
|
12974
|
+
self._AIStatus = None
|
|
12975
|
+
self._AITaskID = None
|
|
12976
|
+
self._AIResult = None
|
|
12977
|
+
self._Feedback = None
|
|
12978
|
+
self._FeedbackResult = None
|
|
12979
|
+
self._FailedReason = None
|
|
12980
|
+
self._RequestId = None
|
|
12981
|
+
|
|
12982
|
+
@property
|
|
12983
|
+
def AIStatus(self):
|
|
12984
|
+
r"""告警AI分析状态 -1 分析失败 0 未分析 1 分析中 2 分析成功,真实告警 3 分析成功,可疑告警
|
|
12985
|
+
:rtype: int
|
|
12986
|
+
"""
|
|
12987
|
+
return self._AIStatus
|
|
12988
|
+
|
|
12989
|
+
@AIStatus.setter
|
|
12990
|
+
def AIStatus(self, AIStatus):
|
|
12991
|
+
self._AIStatus = AIStatus
|
|
12992
|
+
|
|
12993
|
+
@property
|
|
12994
|
+
def AITaskID(self):
|
|
12995
|
+
r"""AI分析任务ID
|
|
12996
|
+
:rtype: str
|
|
12997
|
+
"""
|
|
12998
|
+
return self._AITaskID
|
|
12999
|
+
|
|
13000
|
+
@AITaskID.setter
|
|
13001
|
+
def AITaskID(self, AITaskID):
|
|
13002
|
+
self._AITaskID = AITaskID
|
|
13003
|
+
|
|
13004
|
+
@property
|
|
13005
|
+
def AIResult(self):
|
|
13006
|
+
r"""告警AI分析结果,base64格式,避免数据被拦截
|
|
13007
|
+
:rtype: str
|
|
13008
|
+
"""
|
|
13009
|
+
return self._AIResult
|
|
13010
|
+
|
|
13011
|
+
@AIResult.setter
|
|
13012
|
+
def AIResult(self, AIResult):
|
|
13013
|
+
self._AIResult = AIResult
|
|
13014
|
+
|
|
13015
|
+
@property
|
|
13016
|
+
def Feedback(self):
|
|
13017
|
+
r"""反馈建议
|
|
13018
|
+
:rtype: str
|
|
13019
|
+
"""
|
|
13020
|
+
return self._Feedback
|
|
13021
|
+
|
|
13022
|
+
@Feedback.setter
|
|
13023
|
+
def Feedback(self, Feedback):
|
|
13024
|
+
self._Feedback = Feedback
|
|
13025
|
+
|
|
13026
|
+
@property
|
|
13027
|
+
def FeedbackResult(self):
|
|
13028
|
+
r"""反馈状态 0表示没有反馈,1表示认可,2表示不认可
|
|
13029
|
+
:rtype: int
|
|
13030
|
+
"""
|
|
13031
|
+
return self._FeedbackResult
|
|
13032
|
+
|
|
13033
|
+
@FeedbackResult.setter
|
|
13034
|
+
def FeedbackResult(self, FeedbackResult):
|
|
13035
|
+
self._FeedbackResult = FeedbackResult
|
|
13036
|
+
|
|
13037
|
+
@property
|
|
13038
|
+
def FailedReason(self):
|
|
13039
|
+
r"""失败原因
|
|
13040
|
+
:rtype: str
|
|
13041
|
+
"""
|
|
13042
|
+
return self._FailedReason
|
|
13043
|
+
|
|
13044
|
+
@FailedReason.setter
|
|
13045
|
+
def FailedReason(self, FailedReason):
|
|
13046
|
+
self._FailedReason = FailedReason
|
|
13047
|
+
|
|
13048
|
+
@property
|
|
13049
|
+
def RequestId(self):
|
|
13050
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13051
|
+
:rtype: str
|
|
13052
|
+
"""
|
|
13053
|
+
return self._RequestId
|
|
13054
|
+
|
|
13055
|
+
@RequestId.setter
|
|
13056
|
+
def RequestId(self, RequestId):
|
|
13057
|
+
self._RequestId = RequestId
|
|
13058
|
+
|
|
13059
|
+
|
|
13060
|
+
def _deserialize(self, params):
|
|
13061
|
+
self._AIStatus = params.get("AIStatus")
|
|
13062
|
+
self._AITaskID = params.get("AITaskID")
|
|
13063
|
+
self._AIResult = params.get("AIResult")
|
|
13064
|
+
self._Feedback = params.get("Feedback")
|
|
13065
|
+
self._FeedbackResult = params.get("FeedbackResult")
|
|
13066
|
+
self._FailedReason = params.get("FailedReason")
|
|
13067
|
+
self._RequestId = params.get("RequestId")
|
|
13068
|
+
|
|
13069
|
+
|
|
12789
13070
|
class DescribeAbnormalCallRecordRequest(AbstractModel):
|
|
12790
13071
|
r"""DescribeAbnormalCallRecord请求参数结构体
|
|
12791
13072
|
|
|
@@ -17954,20 +18235,35 @@ class DescribeHighBaseLineRiskListResponse(AbstractModel):
|
|
|
17954
18235
|
self._RequestId = params.get("RequestId")
|
|
17955
18236
|
|
|
17956
18237
|
|
|
17957
|
-
class
|
|
17958
|
-
r"""
|
|
18238
|
+
class DescribeKeySandboxCredentialListRequest(AbstractModel):
|
|
18239
|
+
r"""DescribeKeySandboxCredentialList请求参数结构体
|
|
17959
18240
|
|
|
17960
18241
|
"""
|
|
17961
18242
|
|
|
17962
18243
|
def __init__(self):
|
|
17963
18244
|
r"""
|
|
18245
|
+
:param _Filter: 过滤条件列表,支持的过滤条件如下:
|
|
18246
|
+
CredentialName - 凭证名称(模糊匹配)
|
|
18247
|
+
CredentialType - 凭证类型(精确匹配),取值:access、sts
|
|
18248
|
+
:type Filter: :class:`tencentcloud.csip.v20221121.models.Filter`
|
|
17964
18249
|
:param _MemberId: 集团账号的成员id
|
|
17965
18250
|
:type MemberId: list of str
|
|
17966
|
-
:param _Filter: 过滤器参数
|
|
17967
|
-
:type Filter: :class:`tencentcloud.csip.v20221121.models.Filter`
|
|
17968
18251
|
"""
|
|
17969
|
-
self._MemberId = None
|
|
17970
18252
|
self._Filter = None
|
|
18253
|
+
self._MemberId = None
|
|
18254
|
+
|
|
18255
|
+
@property
|
|
18256
|
+
def Filter(self):
|
|
18257
|
+
r"""过滤条件列表,支持的过滤条件如下:
|
|
18258
|
+
CredentialName - 凭证名称(模糊匹配)
|
|
18259
|
+
CredentialType - 凭证类型(精确匹配),取值:access、sts
|
|
18260
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.Filter`
|
|
18261
|
+
"""
|
|
18262
|
+
return self._Filter
|
|
18263
|
+
|
|
18264
|
+
@Filter.setter
|
|
18265
|
+
def Filter(self, Filter):
|
|
18266
|
+
self._Filter = Filter
|
|
17971
18267
|
|
|
17972
18268
|
@property
|
|
17973
18269
|
def MemberId(self):
|
|
@@ -17980,23 +18276,12 @@ class DescribeListenerListRequest(AbstractModel):
|
|
|
17980
18276
|
def MemberId(self, MemberId):
|
|
17981
18277
|
self._MemberId = MemberId
|
|
17982
18278
|
|
|
17983
|
-
@property
|
|
17984
|
-
def Filter(self):
|
|
17985
|
-
r"""过滤器参数
|
|
17986
|
-
:rtype: :class:`tencentcloud.csip.v20221121.models.Filter`
|
|
17987
|
-
"""
|
|
17988
|
-
return self._Filter
|
|
17989
|
-
|
|
17990
|
-
@Filter.setter
|
|
17991
|
-
def Filter(self, Filter):
|
|
17992
|
-
self._Filter = Filter
|
|
17993
|
-
|
|
17994
18279
|
|
|
17995
18280
|
def _deserialize(self, params):
|
|
17996
|
-
self._MemberId = params.get("MemberId")
|
|
17997
18281
|
if params.get("Filter") is not None:
|
|
17998
18282
|
self._Filter = Filter()
|
|
17999
18283
|
self._Filter._deserialize(params.get("Filter"))
|
|
18284
|
+
self._MemberId = params.get("MemberId")
|
|
18000
18285
|
memeber_set = set(params.keys())
|
|
18001
18286
|
for name, value in vars(self).items():
|
|
18002
18287
|
property_name = name[1:]
|
|
@@ -18007,39 +18292,28 @@ class DescribeListenerListRequest(AbstractModel):
|
|
|
18007
18292
|
|
|
18008
18293
|
|
|
18009
18294
|
|
|
18010
|
-
class
|
|
18011
|
-
r"""
|
|
18295
|
+
class DescribeKeySandboxCredentialListResponse(AbstractModel):
|
|
18296
|
+
r"""DescribeKeySandboxCredentialList返回参数结构体
|
|
18012
18297
|
|
|
18013
18298
|
"""
|
|
18014
18299
|
|
|
18015
18300
|
def __init__(self):
|
|
18016
18301
|
r"""
|
|
18017
|
-
:param
|
|
18018
|
-
:type
|
|
18019
|
-
:param
|
|
18020
|
-
:type
|
|
18302
|
+
:param _Data: 凭证数据列表
|
|
18303
|
+
:type Data: list of KeySandboxCredential
|
|
18304
|
+
:param _TotalCount: 总数量
|
|
18305
|
+
:type TotalCount: int
|
|
18021
18306
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
18022
18307
|
:type RequestId: str
|
|
18023
18308
|
"""
|
|
18024
|
-
self._Total = None
|
|
18025
18309
|
self._Data = None
|
|
18310
|
+
self._TotalCount = None
|
|
18026
18311
|
self._RequestId = None
|
|
18027
18312
|
|
|
18028
|
-
@property
|
|
18029
|
-
def Total(self):
|
|
18030
|
-
r"""总数
|
|
18031
|
-
:rtype: int
|
|
18032
|
-
"""
|
|
18033
|
-
return self._Total
|
|
18034
|
-
|
|
18035
|
-
@Total.setter
|
|
18036
|
-
def Total(self, Total):
|
|
18037
|
-
self._Total = Total
|
|
18038
|
-
|
|
18039
18313
|
@property
|
|
18040
18314
|
def Data(self):
|
|
18041
|
-
r"""
|
|
18042
|
-
:rtype: list of
|
|
18315
|
+
r"""凭证数据列表
|
|
18316
|
+
:rtype: list of KeySandboxCredential
|
|
18043
18317
|
"""
|
|
18044
18318
|
return self._Data
|
|
18045
18319
|
|
|
@@ -18047,6 +18321,17 @@ class DescribeListenerListResponse(AbstractModel):
|
|
|
18047
18321
|
def Data(self, Data):
|
|
18048
18322
|
self._Data = Data
|
|
18049
18323
|
|
|
18324
|
+
@property
|
|
18325
|
+
def TotalCount(self):
|
|
18326
|
+
r"""总数量
|
|
18327
|
+
:rtype: int
|
|
18328
|
+
"""
|
|
18329
|
+
return self._TotalCount
|
|
18330
|
+
|
|
18331
|
+
@TotalCount.setter
|
|
18332
|
+
def TotalCount(self, TotalCount):
|
|
18333
|
+
self._TotalCount = TotalCount
|
|
18334
|
+
|
|
18050
18335
|
@property
|
|
18051
18336
|
def RequestId(self):
|
|
18052
18337
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -18060,11 +18345,353 @@ class DescribeListenerListResponse(AbstractModel):
|
|
|
18060
18345
|
|
|
18061
18346
|
|
|
18062
18347
|
def _deserialize(self, params):
|
|
18063
|
-
self._Total = params.get("Total")
|
|
18064
18348
|
if params.get("Data") is not None:
|
|
18065
18349
|
self._Data = []
|
|
18066
18350
|
for item in params.get("Data"):
|
|
18067
|
-
obj =
|
|
18351
|
+
obj = KeySandboxCredential()
|
|
18352
|
+
obj._deserialize(item)
|
|
18353
|
+
self._Data.append(obj)
|
|
18354
|
+
self._TotalCount = params.get("TotalCount")
|
|
18355
|
+
self._RequestId = params.get("RequestId")
|
|
18356
|
+
|
|
18357
|
+
|
|
18358
|
+
class DescribeKeySandboxCredentialRequest(AbstractModel):
|
|
18359
|
+
r"""DescribeKeySandboxCredential请求参数结构体
|
|
18360
|
+
|
|
18361
|
+
"""
|
|
18362
|
+
|
|
18363
|
+
def __init__(self):
|
|
18364
|
+
r"""
|
|
18365
|
+
:param _CredentialId: 凭证ID
|
|
18366
|
+
:type CredentialId: str
|
|
18367
|
+
:param _MemberId: 集团账号的成员id
|
|
18368
|
+
:type MemberId: list of str
|
|
18369
|
+
"""
|
|
18370
|
+
self._CredentialId = None
|
|
18371
|
+
self._MemberId = None
|
|
18372
|
+
|
|
18373
|
+
@property
|
|
18374
|
+
def CredentialId(self):
|
|
18375
|
+
r"""凭证ID
|
|
18376
|
+
:rtype: str
|
|
18377
|
+
"""
|
|
18378
|
+
return self._CredentialId
|
|
18379
|
+
|
|
18380
|
+
@CredentialId.setter
|
|
18381
|
+
def CredentialId(self, CredentialId):
|
|
18382
|
+
self._CredentialId = CredentialId
|
|
18383
|
+
|
|
18384
|
+
@property
|
|
18385
|
+
def MemberId(self):
|
|
18386
|
+
r"""集团账号的成员id
|
|
18387
|
+
:rtype: list of str
|
|
18388
|
+
"""
|
|
18389
|
+
return self._MemberId
|
|
18390
|
+
|
|
18391
|
+
@MemberId.setter
|
|
18392
|
+
def MemberId(self, MemberId):
|
|
18393
|
+
self._MemberId = MemberId
|
|
18394
|
+
|
|
18395
|
+
|
|
18396
|
+
def _deserialize(self, params):
|
|
18397
|
+
self._CredentialId = params.get("CredentialId")
|
|
18398
|
+
self._MemberId = params.get("MemberId")
|
|
18399
|
+
memeber_set = set(params.keys())
|
|
18400
|
+
for name, value in vars(self).items():
|
|
18401
|
+
property_name = name[1:]
|
|
18402
|
+
if property_name in memeber_set:
|
|
18403
|
+
memeber_set.remove(property_name)
|
|
18404
|
+
if len(memeber_set) > 0:
|
|
18405
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
18406
|
+
|
|
18407
|
+
|
|
18408
|
+
|
|
18409
|
+
class DescribeKeySandboxCredentialResponse(AbstractModel):
|
|
18410
|
+
r"""DescribeKeySandboxCredential返回参数结构体
|
|
18411
|
+
|
|
18412
|
+
"""
|
|
18413
|
+
|
|
18414
|
+
def __init__(self):
|
|
18415
|
+
r"""
|
|
18416
|
+
:param _CredentialId: 凭证ID
|
|
18417
|
+
:type CredentialId: str
|
|
18418
|
+
:param _CredentialName: 凭证名称
|
|
18419
|
+
:type CredentialName: str
|
|
18420
|
+
:param _CredentialType: 凭证类型
|
|
18421
|
+
枚举值:
|
|
18422
|
+
access:常规密钥
|
|
18423
|
+
sts:STS临时密钥
|
|
18424
|
+
:type CredentialType: str
|
|
18425
|
+
:param _CredentialEffectScope: 生效机器范围
|
|
18426
|
+
:type CredentialEffectScope: :class:`tencentcloud.csip.v20221121.models.CredentialEffectScope`
|
|
18427
|
+
:param _Access: 常规密钥凭据数据(打码后),CredentialType为access时返回
|
|
18428
|
+
补充说明:Key为原文,Value为打码后的值(保留前3后4位,中间用***替代)
|
|
18429
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18430
|
+
:type Access: list of AccessCredentialOutput
|
|
18431
|
+
:param _STS: STS凭据数据(打码后),CredentialType为sts时返回
|
|
18432
|
+
补充说明:System为原文,SecretID和SecretKey为打码后的值(保留前3后4位,中间用***替代)
|
|
18433
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18434
|
+
:type STS: :class:`tencentcloud.csip.v20221121.models.STSCredentialOutput`
|
|
18435
|
+
:param _CreateTime: 创建时间
|
|
18436
|
+
参数格式:YYYY-MM-DDTHH:mm:ssZ(ISO8601格式)
|
|
18437
|
+
:type CreateTime: str
|
|
18438
|
+
:param _UpdateTime: 更新时间
|
|
18439
|
+
参数格式:YYYY-MM-DDTHH:mm:ssZ(ISO8601格式)
|
|
18440
|
+
:type UpdateTime: str
|
|
18441
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
18442
|
+
:type RequestId: str
|
|
18443
|
+
"""
|
|
18444
|
+
self._CredentialId = None
|
|
18445
|
+
self._CredentialName = None
|
|
18446
|
+
self._CredentialType = None
|
|
18447
|
+
self._CredentialEffectScope = None
|
|
18448
|
+
self._Access = None
|
|
18449
|
+
self._STS = None
|
|
18450
|
+
self._CreateTime = None
|
|
18451
|
+
self._UpdateTime = None
|
|
18452
|
+
self._RequestId = None
|
|
18453
|
+
|
|
18454
|
+
@property
|
|
18455
|
+
def CredentialId(self):
|
|
18456
|
+
r"""凭证ID
|
|
18457
|
+
:rtype: str
|
|
18458
|
+
"""
|
|
18459
|
+
return self._CredentialId
|
|
18460
|
+
|
|
18461
|
+
@CredentialId.setter
|
|
18462
|
+
def CredentialId(self, CredentialId):
|
|
18463
|
+
self._CredentialId = CredentialId
|
|
18464
|
+
|
|
18465
|
+
@property
|
|
18466
|
+
def CredentialName(self):
|
|
18467
|
+
r"""凭证名称
|
|
18468
|
+
:rtype: str
|
|
18469
|
+
"""
|
|
18470
|
+
return self._CredentialName
|
|
18471
|
+
|
|
18472
|
+
@CredentialName.setter
|
|
18473
|
+
def CredentialName(self, CredentialName):
|
|
18474
|
+
self._CredentialName = CredentialName
|
|
18475
|
+
|
|
18476
|
+
@property
|
|
18477
|
+
def CredentialType(self):
|
|
18478
|
+
r"""凭证类型
|
|
18479
|
+
枚举值:
|
|
18480
|
+
access:常规密钥
|
|
18481
|
+
sts:STS临时密钥
|
|
18482
|
+
:rtype: str
|
|
18483
|
+
"""
|
|
18484
|
+
return self._CredentialType
|
|
18485
|
+
|
|
18486
|
+
@CredentialType.setter
|
|
18487
|
+
def CredentialType(self, CredentialType):
|
|
18488
|
+
self._CredentialType = CredentialType
|
|
18489
|
+
|
|
18490
|
+
@property
|
|
18491
|
+
def CredentialEffectScope(self):
|
|
18492
|
+
r"""生效机器范围
|
|
18493
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.CredentialEffectScope`
|
|
18494
|
+
"""
|
|
18495
|
+
return self._CredentialEffectScope
|
|
18496
|
+
|
|
18497
|
+
@CredentialEffectScope.setter
|
|
18498
|
+
def CredentialEffectScope(self, CredentialEffectScope):
|
|
18499
|
+
self._CredentialEffectScope = CredentialEffectScope
|
|
18500
|
+
|
|
18501
|
+
@property
|
|
18502
|
+
def Access(self):
|
|
18503
|
+
r"""常规密钥凭据数据(打码后),CredentialType为access时返回
|
|
18504
|
+
补充说明:Key为原文,Value为打码后的值(保留前3后4位,中间用***替代)
|
|
18505
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18506
|
+
:rtype: list of AccessCredentialOutput
|
|
18507
|
+
"""
|
|
18508
|
+
return self._Access
|
|
18509
|
+
|
|
18510
|
+
@Access.setter
|
|
18511
|
+
def Access(self, Access):
|
|
18512
|
+
self._Access = Access
|
|
18513
|
+
|
|
18514
|
+
@property
|
|
18515
|
+
def STS(self):
|
|
18516
|
+
r"""STS凭据数据(打码后),CredentialType为sts时返回
|
|
18517
|
+
补充说明:System为原文,SecretID和SecretKey为打码后的值(保留前3后4位,中间用***替代)
|
|
18518
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18519
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.STSCredentialOutput`
|
|
18520
|
+
"""
|
|
18521
|
+
return self._STS
|
|
18522
|
+
|
|
18523
|
+
@STS.setter
|
|
18524
|
+
def STS(self, STS):
|
|
18525
|
+
self._STS = STS
|
|
18526
|
+
|
|
18527
|
+
@property
|
|
18528
|
+
def CreateTime(self):
|
|
18529
|
+
r"""创建时间
|
|
18530
|
+
参数格式:YYYY-MM-DDTHH:mm:ssZ(ISO8601格式)
|
|
18531
|
+
:rtype: str
|
|
18532
|
+
"""
|
|
18533
|
+
return self._CreateTime
|
|
18534
|
+
|
|
18535
|
+
@CreateTime.setter
|
|
18536
|
+
def CreateTime(self, CreateTime):
|
|
18537
|
+
self._CreateTime = CreateTime
|
|
18538
|
+
|
|
18539
|
+
@property
|
|
18540
|
+
def UpdateTime(self):
|
|
18541
|
+
r"""更新时间
|
|
18542
|
+
参数格式:YYYY-MM-DDTHH:mm:ssZ(ISO8601格式)
|
|
18543
|
+
:rtype: str
|
|
18544
|
+
"""
|
|
18545
|
+
return self._UpdateTime
|
|
18546
|
+
|
|
18547
|
+
@UpdateTime.setter
|
|
18548
|
+
def UpdateTime(self, UpdateTime):
|
|
18549
|
+
self._UpdateTime = UpdateTime
|
|
18550
|
+
|
|
18551
|
+
@property
|
|
18552
|
+
def RequestId(self):
|
|
18553
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
18554
|
+
:rtype: str
|
|
18555
|
+
"""
|
|
18556
|
+
return self._RequestId
|
|
18557
|
+
|
|
18558
|
+
@RequestId.setter
|
|
18559
|
+
def RequestId(self, RequestId):
|
|
18560
|
+
self._RequestId = RequestId
|
|
18561
|
+
|
|
18562
|
+
|
|
18563
|
+
def _deserialize(self, params):
|
|
18564
|
+
self._CredentialId = params.get("CredentialId")
|
|
18565
|
+
self._CredentialName = params.get("CredentialName")
|
|
18566
|
+
self._CredentialType = params.get("CredentialType")
|
|
18567
|
+
if params.get("CredentialEffectScope") is not None:
|
|
18568
|
+
self._CredentialEffectScope = CredentialEffectScope()
|
|
18569
|
+
self._CredentialEffectScope._deserialize(params.get("CredentialEffectScope"))
|
|
18570
|
+
if params.get("Access") is not None:
|
|
18571
|
+
self._Access = []
|
|
18572
|
+
for item in params.get("Access"):
|
|
18573
|
+
obj = AccessCredentialOutput()
|
|
18574
|
+
obj._deserialize(item)
|
|
18575
|
+
self._Access.append(obj)
|
|
18576
|
+
if params.get("STS") is not None:
|
|
18577
|
+
self._STS = STSCredentialOutput()
|
|
18578
|
+
self._STS._deserialize(params.get("STS"))
|
|
18579
|
+
self._CreateTime = params.get("CreateTime")
|
|
18580
|
+
self._UpdateTime = params.get("UpdateTime")
|
|
18581
|
+
self._RequestId = params.get("RequestId")
|
|
18582
|
+
|
|
18583
|
+
|
|
18584
|
+
class DescribeListenerListRequest(AbstractModel):
|
|
18585
|
+
r"""DescribeListenerList请求参数结构体
|
|
18586
|
+
|
|
18587
|
+
"""
|
|
18588
|
+
|
|
18589
|
+
def __init__(self):
|
|
18590
|
+
r"""
|
|
18591
|
+
:param _MemberId: 集团账号的成员id
|
|
18592
|
+
:type MemberId: list of str
|
|
18593
|
+
:param _Filter: 过滤器参数
|
|
18594
|
+
:type Filter: :class:`tencentcloud.csip.v20221121.models.Filter`
|
|
18595
|
+
"""
|
|
18596
|
+
self._MemberId = None
|
|
18597
|
+
self._Filter = None
|
|
18598
|
+
|
|
18599
|
+
@property
|
|
18600
|
+
def MemberId(self):
|
|
18601
|
+
r"""集团账号的成员id
|
|
18602
|
+
:rtype: list of str
|
|
18603
|
+
"""
|
|
18604
|
+
return self._MemberId
|
|
18605
|
+
|
|
18606
|
+
@MemberId.setter
|
|
18607
|
+
def MemberId(self, MemberId):
|
|
18608
|
+
self._MemberId = MemberId
|
|
18609
|
+
|
|
18610
|
+
@property
|
|
18611
|
+
def Filter(self):
|
|
18612
|
+
r"""过滤器参数
|
|
18613
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.Filter`
|
|
18614
|
+
"""
|
|
18615
|
+
return self._Filter
|
|
18616
|
+
|
|
18617
|
+
@Filter.setter
|
|
18618
|
+
def Filter(self, Filter):
|
|
18619
|
+
self._Filter = Filter
|
|
18620
|
+
|
|
18621
|
+
|
|
18622
|
+
def _deserialize(self, params):
|
|
18623
|
+
self._MemberId = params.get("MemberId")
|
|
18624
|
+
if params.get("Filter") is not None:
|
|
18625
|
+
self._Filter = Filter()
|
|
18626
|
+
self._Filter._deserialize(params.get("Filter"))
|
|
18627
|
+
memeber_set = set(params.keys())
|
|
18628
|
+
for name, value in vars(self).items():
|
|
18629
|
+
property_name = name[1:]
|
|
18630
|
+
if property_name in memeber_set:
|
|
18631
|
+
memeber_set.remove(property_name)
|
|
18632
|
+
if len(memeber_set) > 0:
|
|
18633
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
18634
|
+
|
|
18635
|
+
|
|
18636
|
+
|
|
18637
|
+
class DescribeListenerListResponse(AbstractModel):
|
|
18638
|
+
r"""DescribeListenerList返回参数结构体
|
|
18639
|
+
|
|
18640
|
+
"""
|
|
18641
|
+
|
|
18642
|
+
def __init__(self):
|
|
18643
|
+
r"""
|
|
18644
|
+
:param _Total: 总数
|
|
18645
|
+
:type Total: int
|
|
18646
|
+
:param _Data: 监听器列表
|
|
18647
|
+
:type Data: list of ClbListenerListInfo
|
|
18648
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
18649
|
+
:type RequestId: str
|
|
18650
|
+
"""
|
|
18651
|
+
self._Total = None
|
|
18652
|
+
self._Data = None
|
|
18653
|
+
self._RequestId = None
|
|
18654
|
+
|
|
18655
|
+
@property
|
|
18656
|
+
def Total(self):
|
|
18657
|
+
r"""总数
|
|
18658
|
+
:rtype: int
|
|
18659
|
+
"""
|
|
18660
|
+
return self._Total
|
|
18661
|
+
|
|
18662
|
+
@Total.setter
|
|
18663
|
+
def Total(self, Total):
|
|
18664
|
+
self._Total = Total
|
|
18665
|
+
|
|
18666
|
+
@property
|
|
18667
|
+
def Data(self):
|
|
18668
|
+
r"""监听器列表
|
|
18669
|
+
:rtype: list of ClbListenerListInfo
|
|
18670
|
+
"""
|
|
18671
|
+
return self._Data
|
|
18672
|
+
|
|
18673
|
+
@Data.setter
|
|
18674
|
+
def Data(self, Data):
|
|
18675
|
+
self._Data = Data
|
|
18676
|
+
|
|
18677
|
+
@property
|
|
18678
|
+
def RequestId(self):
|
|
18679
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
18680
|
+
:rtype: str
|
|
18681
|
+
"""
|
|
18682
|
+
return self._RequestId
|
|
18683
|
+
|
|
18684
|
+
@RequestId.setter
|
|
18685
|
+
def RequestId(self, RequestId):
|
|
18686
|
+
self._RequestId = RequestId
|
|
18687
|
+
|
|
18688
|
+
|
|
18689
|
+
def _deserialize(self, params):
|
|
18690
|
+
self._Total = params.get("Total")
|
|
18691
|
+
if params.get("Data") is not None:
|
|
18692
|
+
self._Data = []
|
|
18693
|
+
for item in params.get("Data"):
|
|
18694
|
+
obj = ClbListenerListInfo()
|
|
18068
18695
|
obj._deserialize(item)
|
|
18069
18696
|
self._Data.append(obj)
|
|
18070
18697
|
self._RequestId = params.get("RequestId")
|
|
@@ -27677,6 +28304,129 @@ class IpAssetListVO(AbstractModel):
|
|
|
27677
28304
|
|
|
27678
28305
|
|
|
27679
28306
|
|
|
28307
|
+
class KeySandboxCredential(AbstractModel):
|
|
28308
|
+
r"""凭证数据结构,用于列表查询和详情查询的响应
|
|
28309
|
+
|
|
28310
|
+
"""
|
|
28311
|
+
|
|
28312
|
+
def __init__(self):
|
|
28313
|
+
r"""
|
|
28314
|
+
:param _CredentialId: 凭证ID
|
|
28315
|
+
:type CredentialId: str
|
|
28316
|
+
:param _CredentialName: 凭证名称
|
|
28317
|
+
:type CredentialName: str
|
|
28318
|
+
:param _CredentialType: 凭证类型
|
|
28319
|
+
枚举值:
|
|
28320
|
+
access:常规密钥(Key/Value键值对)
|
|
28321
|
+
sts:STS临时密钥凭据
|
|
28322
|
+
:type CredentialType: str
|
|
28323
|
+
:param _CredentialEffectScope: 生效机器范围
|
|
28324
|
+
:type CredentialEffectScope: :class:`tencentcloud.csip.v20221121.models.CredentialEffectScope`
|
|
28325
|
+
:param _CreateTime: 创建时间
|
|
28326
|
+
参数格式:YYYY-MM-DDTHH:mm:ssZ(ISO8601格式)
|
|
28327
|
+
:type CreateTime: str
|
|
28328
|
+
:param _UpdateTime: 更新时间
|
|
28329
|
+
参数格式:YYYY-MM-DDTHH:mm:ssZ(ISO8601格式)
|
|
28330
|
+
:type UpdateTime: str
|
|
28331
|
+
"""
|
|
28332
|
+
self._CredentialId = None
|
|
28333
|
+
self._CredentialName = None
|
|
28334
|
+
self._CredentialType = None
|
|
28335
|
+
self._CredentialEffectScope = None
|
|
28336
|
+
self._CreateTime = None
|
|
28337
|
+
self._UpdateTime = None
|
|
28338
|
+
|
|
28339
|
+
@property
|
|
28340
|
+
def CredentialId(self):
|
|
28341
|
+
r"""凭证ID
|
|
28342
|
+
:rtype: str
|
|
28343
|
+
"""
|
|
28344
|
+
return self._CredentialId
|
|
28345
|
+
|
|
28346
|
+
@CredentialId.setter
|
|
28347
|
+
def CredentialId(self, CredentialId):
|
|
28348
|
+
self._CredentialId = CredentialId
|
|
28349
|
+
|
|
28350
|
+
@property
|
|
28351
|
+
def CredentialName(self):
|
|
28352
|
+
r"""凭证名称
|
|
28353
|
+
:rtype: str
|
|
28354
|
+
"""
|
|
28355
|
+
return self._CredentialName
|
|
28356
|
+
|
|
28357
|
+
@CredentialName.setter
|
|
28358
|
+
def CredentialName(self, CredentialName):
|
|
28359
|
+
self._CredentialName = CredentialName
|
|
28360
|
+
|
|
28361
|
+
@property
|
|
28362
|
+
def CredentialType(self):
|
|
28363
|
+
r"""凭证类型
|
|
28364
|
+
枚举值:
|
|
28365
|
+
access:常规密钥(Key/Value键值对)
|
|
28366
|
+
sts:STS临时密钥凭据
|
|
28367
|
+
:rtype: str
|
|
28368
|
+
"""
|
|
28369
|
+
return self._CredentialType
|
|
28370
|
+
|
|
28371
|
+
@CredentialType.setter
|
|
28372
|
+
def CredentialType(self, CredentialType):
|
|
28373
|
+
self._CredentialType = CredentialType
|
|
28374
|
+
|
|
28375
|
+
@property
|
|
28376
|
+
def CredentialEffectScope(self):
|
|
28377
|
+
r"""生效机器范围
|
|
28378
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.CredentialEffectScope`
|
|
28379
|
+
"""
|
|
28380
|
+
return self._CredentialEffectScope
|
|
28381
|
+
|
|
28382
|
+
@CredentialEffectScope.setter
|
|
28383
|
+
def CredentialEffectScope(self, CredentialEffectScope):
|
|
28384
|
+
self._CredentialEffectScope = CredentialEffectScope
|
|
28385
|
+
|
|
28386
|
+
@property
|
|
28387
|
+
def CreateTime(self):
|
|
28388
|
+
r"""创建时间
|
|
28389
|
+
参数格式:YYYY-MM-DDTHH:mm:ssZ(ISO8601格式)
|
|
28390
|
+
:rtype: str
|
|
28391
|
+
"""
|
|
28392
|
+
return self._CreateTime
|
|
28393
|
+
|
|
28394
|
+
@CreateTime.setter
|
|
28395
|
+
def CreateTime(self, CreateTime):
|
|
28396
|
+
self._CreateTime = CreateTime
|
|
28397
|
+
|
|
28398
|
+
@property
|
|
28399
|
+
def UpdateTime(self):
|
|
28400
|
+
r"""更新时间
|
|
28401
|
+
参数格式:YYYY-MM-DDTHH:mm:ssZ(ISO8601格式)
|
|
28402
|
+
:rtype: str
|
|
28403
|
+
"""
|
|
28404
|
+
return self._UpdateTime
|
|
28405
|
+
|
|
28406
|
+
@UpdateTime.setter
|
|
28407
|
+
def UpdateTime(self, UpdateTime):
|
|
28408
|
+
self._UpdateTime = UpdateTime
|
|
28409
|
+
|
|
28410
|
+
|
|
28411
|
+
def _deserialize(self, params):
|
|
28412
|
+
self._CredentialId = params.get("CredentialId")
|
|
28413
|
+
self._CredentialName = params.get("CredentialName")
|
|
28414
|
+
self._CredentialType = params.get("CredentialType")
|
|
28415
|
+
if params.get("CredentialEffectScope") is not None:
|
|
28416
|
+
self._CredentialEffectScope = CredentialEffectScope()
|
|
28417
|
+
self._CredentialEffectScope._deserialize(params.get("CredentialEffectScope"))
|
|
28418
|
+
self._CreateTime = params.get("CreateTime")
|
|
28419
|
+
self._UpdateTime = params.get("UpdateTime")
|
|
28420
|
+
memeber_set = set(params.keys())
|
|
28421
|
+
for name, value in vars(self).items():
|
|
28422
|
+
property_name = name[1:]
|
|
28423
|
+
if property_name in memeber_set:
|
|
28424
|
+
memeber_set.remove(property_name)
|
|
28425
|
+
if len(memeber_set) > 0:
|
|
28426
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
28427
|
+
|
|
28428
|
+
|
|
28429
|
+
|
|
27680
28430
|
class KeyValue(AbstractModel):
|
|
27681
28431
|
r"""KeyValue对
|
|
27682
28432
|
|
|
@@ -31723,6 +32473,76 @@ class RoleInfo(AbstractModel):
|
|
|
31723
32473
|
|
|
31724
32474
|
|
|
31725
32475
|
|
|
32476
|
+
class STSCredentialOutput(AbstractModel):
|
|
32477
|
+
r"""STS临时密钥凭据(出参专用),用于查询详情接口的响应。SecretID和SecretKey字段返回打码后的值,System返回原文
|
|
32478
|
+
|
|
32479
|
+
"""
|
|
32480
|
+
|
|
32481
|
+
def __init__(self):
|
|
32482
|
+
r"""
|
|
32483
|
+
:param _System: 凭据提供商标识(原文),如tencentCam、aws、aliyun等
|
|
32484
|
+
:type System: str
|
|
32485
|
+
:param _SecretID: SecretID(打码后)
|
|
32486
|
+
补充说明:保留前3后4位,中间用***替代;长度不足7位时全部替换为***
|
|
32487
|
+
:type SecretID: str
|
|
32488
|
+
:param _SecretKey: SecretKey(打码后)
|
|
32489
|
+
补充说明:保留前3后4位,中间用***替代;长度不足7位时全部替换为***
|
|
32490
|
+
:type SecretKey: str
|
|
32491
|
+
"""
|
|
32492
|
+
self._System = None
|
|
32493
|
+
self._SecretID = None
|
|
32494
|
+
self._SecretKey = None
|
|
32495
|
+
|
|
32496
|
+
@property
|
|
32497
|
+
def System(self):
|
|
32498
|
+
r"""凭据提供商标识(原文),如tencentCam、aws、aliyun等
|
|
32499
|
+
:rtype: str
|
|
32500
|
+
"""
|
|
32501
|
+
return self._System
|
|
32502
|
+
|
|
32503
|
+
@System.setter
|
|
32504
|
+
def System(self, System):
|
|
32505
|
+
self._System = System
|
|
32506
|
+
|
|
32507
|
+
@property
|
|
32508
|
+
def SecretID(self):
|
|
32509
|
+
r"""SecretID(打码后)
|
|
32510
|
+
补充说明:保留前3后4位,中间用***替代;长度不足7位时全部替换为***
|
|
32511
|
+
:rtype: str
|
|
32512
|
+
"""
|
|
32513
|
+
return self._SecretID
|
|
32514
|
+
|
|
32515
|
+
@SecretID.setter
|
|
32516
|
+
def SecretID(self, SecretID):
|
|
32517
|
+
self._SecretID = SecretID
|
|
32518
|
+
|
|
32519
|
+
@property
|
|
32520
|
+
def SecretKey(self):
|
|
32521
|
+
r"""SecretKey(打码后)
|
|
32522
|
+
补充说明:保留前3后4位,中间用***替代;长度不足7位时全部替换为***
|
|
32523
|
+
:rtype: str
|
|
32524
|
+
"""
|
|
32525
|
+
return self._SecretKey
|
|
32526
|
+
|
|
32527
|
+
@SecretKey.setter
|
|
32528
|
+
def SecretKey(self, SecretKey):
|
|
32529
|
+
self._SecretKey = SecretKey
|
|
32530
|
+
|
|
32531
|
+
|
|
32532
|
+
def _deserialize(self, params):
|
|
32533
|
+
self._System = params.get("System")
|
|
32534
|
+
self._SecretID = params.get("SecretID")
|
|
32535
|
+
self._SecretKey = params.get("SecretKey")
|
|
32536
|
+
memeber_set = set(params.keys())
|
|
32537
|
+
for name, value in vars(self).items():
|
|
32538
|
+
property_name = name[1:]
|
|
32539
|
+
if property_name in memeber_set:
|
|
32540
|
+
memeber_set.remove(property_name)
|
|
32541
|
+
if len(memeber_set) > 0:
|
|
32542
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
32543
|
+
|
|
32544
|
+
|
|
32545
|
+
|
|
31726
32546
|
class ScanTaskInfo(AbstractModel):
|
|
31727
32547
|
r"""扫描任务详情
|
|
31728
32548
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-csip
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.67
|
|
4
4
|
Summary: Tencent Cloud Csip SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.67
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.67
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.63
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|