tencentcloud-sdk-python 3.0.1250__py2.py3-none-any.whl → 3.0.1252__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/batch/v20170312/models.py +8 -1
- tencentcloud/bma/v20221115/models.py +24 -0
- tencentcloud/cam/v20190116/models.py +16 -16
- tencentcloud/ccc/v20200210/models.py +117 -0
- tencentcloud/cdwdoris/v20211228/models.py +45 -0
- tencentcloud/cfg/v20210820/models.py +26 -0
- tencentcloud/cls/v20201016/cls_client.py +94 -1
- tencentcloud/cls/v20201016/models.py +769 -3
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +1 -1
- tencentcloud/cynosdb/v20190107/models.py +25 -0
- tencentcloud/dasb/v20191018/models.py +21 -9
- tencentcloud/dc/v20180410/dc_client.py +23 -0
- tencentcloud/dc/v20180410/models.py +426 -0
- tencentcloud/dnspod/v20210323/models.py +1 -3
- tencentcloud/emr/v20190103/emr_client.py +92 -0
- tencentcloud/emr/v20190103/errorcodes.py +1 -1
- tencentcloud/emr/v20190103/models.py +1389 -179
- tencentcloud/es/v20180416/models.py +204 -1
- tencentcloud/ess/v20201111/models.py +6 -6
- tencentcloud/essbasic/v20210526/models.py +18 -5
- tencentcloud/facefusion/v20220927/errorcodes.py +15 -0
- tencentcloud/faceid/v20180301/models.py +27 -0
- tencentcloud/gwlb/__init__.py +0 -0
- tencentcloud/gwlb/v20240906/__init__.py +0 -0
- tencentcloud/gwlb/v20240906/errorcodes.py +48 -0
- tencentcloud/gwlb/v20240906/gwlb_client.py +448 -0
- tencentcloud/gwlb/v20240906/models.py +2835 -0
- tencentcloud/hunyuan/v20230901/models.py +139 -13
- tencentcloud/iss/v20230517/errorcodes.py +6 -0
- tencentcloud/iss/v20230517/iss_client.py +1 -1
- tencentcloud/iss/v20230517/models.py +72 -12
- tencentcloud/ocr/v20181119/errorcodes.py +1 -1
- tencentcloud/privatedns/v20201028/errorcodes.py +18 -0
- tencentcloud/privatedns/v20201028/models.py +142 -0
- tencentcloud/privatedns/v20201028/privatedns_client.py +23 -0
- tencentcloud/redis/v20180412/redis_client.py +1 -1
- tencentcloud/sms/v20190711/errorcodes.py +3 -0
- tencentcloud/sms/v20210111/errorcodes.py +2 -2
- tencentcloud/sms/v20210111/models.py +1 -1
- tencentcloud/sqlserver/v20180328/models.py +24 -0
- tencentcloud/sts/v20180813/models.py +2 -2
- tencentcloud/tcss/v20201101/models.py +147 -2
- tencentcloud/teo/v20220901/errorcodes.py +9 -9
- tencentcloud/teo/v20220901/models.py +83 -77
- tencentcloud/teo/v20220901/teo_client.py +4 -4
- tencentcloud/tke/v20180525/errorcodes.py +3 -0
- tencentcloud/tke/v20180525/models.py +248 -2
- tencentcloud/tke/v20180525/tke_client.py +46 -0
- tencentcloud/vclm/v20240523/models.py +12 -0
- tencentcloud/vpc/v20170312/models.py +24 -20
- tencentcloud/vpc/v20170312/vpc_client.py +2 -2
- tencentcloud/vtc/v20240223/models.py +12 -0
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/RECORD +58 -53
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/top_level.txt +0 -0
@@ -510,6 +510,148 @@ class AuditLogInfo(AbstractModel):
|
|
510
510
|
|
511
511
|
|
512
512
|
|
513
|
+
class CreateEndPointRequest(AbstractModel):
|
514
|
+
"""CreateEndPoint请求参数结构体
|
515
|
+
|
516
|
+
"""
|
517
|
+
|
518
|
+
def __init__(self):
|
519
|
+
r"""
|
520
|
+
:param _EndPointName: 终端节点名称
|
521
|
+
:type EndPointName: str
|
522
|
+
:param _EndPointServiceId: 终端节点服务ID(vpc终端节点服务ID)
|
523
|
+
:type EndPointServiceId: str
|
524
|
+
:param _EndPointRegion: 终端节点地域,必须要和终端节点服务所属地域一致
|
525
|
+
:type EndPointRegion: str
|
526
|
+
:param _IpNum: 终端节点ip数量
|
527
|
+
:type IpNum: int
|
528
|
+
"""
|
529
|
+
self._EndPointName = None
|
530
|
+
self._EndPointServiceId = None
|
531
|
+
self._EndPointRegion = None
|
532
|
+
self._IpNum = None
|
533
|
+
|
534
|
+
@property
|
535
|
+
def EndPointName(self):
|
536
|
+
return self._EndPointName
|
537
|
+
|
538
|
+
@EndPointName.setter
|
539
|
+
def EndPointName(self, EndPointName):
|
540
|
+
self._EndPointName = EndPointName
|
541
|
+
|
542
|
+
@property
|
543
|
+
def EndPointServiceId(self):
|
544
|
+
return self._EndPointServiceId
|
545
|
+
|
546
|
+
@EndPointServiceId.setter
|
547
|
+
def EndPointServiceId(self, EndPointServiceId):
|
548
|
+
self._EndPointServiceId = EndPointServiceId
|
549
|
+
|
550
|
+
@property
|
551
|
+
def EndPointRegion(self):
|
552
|
+
return self._EndPointRegion
|
553
|
+
|
554
|
+
@EndPointRegion.setter
|
555
|
+
def EndPointRegion(self, EndPointRegion):
|
556
|
+
self._EndPointRegion = EndPointRegion
|
557
|
+
|
558
|
+
@property
|
559
|
+
def IpNum(self):
|
560
|
+
return self._IpNum
|
561
|
+
|
562
|
+
@IpNum.setter
|
563
|
+
def IpNum(self, IpNum):
|
564
|
+
self._IpNum = IpNum
|
565
|
+
|
566
|
+
|
567
|
+
def _deserialize(self, params):
|
568
|
+
self._EndPointName = params.get("EndPointName")
|
569
|
+
self._EndPointServiceId = params.get("EndPointServiceId")
|
570
|
+
self._EndPointRegion = params.get("EndPointRegion")
|
571
|
+
self._IpNum = params.get("IpNum")
|
572
|
+
memeber_set = set(params.keys())
|
573
|
+
for name, value in vars(self).items():
|
574
|
+
property_name = name[1:]
|
575
|
+
if property_name in memeber_set:
|
576
|
+
memeber_set.remove(property_name)
|
577
|
+
if len(memeber_set) > 0:
|
578
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
579
|
+
|
580
|
+
|
581
|
+
|
582
|
+
class CreateEndPointResponse(AbstractModel):
|
583
|
+
"""CreateEndPoint返回参数结构体
|
584
|
+
|
585
|
+
"""
|
586
|
+
|
587
|
+
def __init__(self):
|
588
|
+
r"""
|
589
|
+
:param _EndPointId: 终端节点id
|
590
|
+
:type EndPointId: str
|
591
|
+
:param _EndPointName: 终端节点名称
|
592
|
+
:type EndPointName: str
|
593
|
+
:param _EndPointServiceId: 终端节点服务ID
|
594
|
+
:type EndPointServiceId: str
|
595
|
+
:param _EndPointVipSet: 终端节点的IP列表
|
596
|
+
:type EndPointVipSet: list of str
|
597
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
598
|
+
:type RequestId: str
|
599
|
+
"""
|
600
|
+
self._EndPointId = None
|
601
|
+
self._EndPointName = None
|
602
|
+
self._EndPointServiceId = None
|
603
|
+
self._EndPointVipSet = None
|
604
|
+
self._RequestId = None
|
605
|
+
|
606
|
+
@property
|
607
|
+
def EndPointId(self):
|
608
|
+
return self._EndPointId
|
609
|
+
|
610
|
+
@EndPointId.setter
|
611
|
+
def EndPointId(self, EndPointId):
|
612
|
+
self._EndPointId = EndPointId
|
613
|
+
|
614
|
+
@property
|
615
|
+
def EndPointName(self):
|
616
|
+
return self._EndPointName
|
617
|
+
|
618
|
+
@EndPointName.setter
|
619
|
+
def EndPointName(self, EndPointName):
|
620
|
+
self._EndPointName = EndPointName
|
621
|
+
|
622
|
+
@property
|
623
|
+
def EndPointServiceId(self):
|
624
|
+
return self._EndPointServiceId
|
625
|
+
|
626
|
+
@EndPointServiceId.setter
|
627
|
+
def EndPointServiceId(self, EndPointServiceId):
|
628
|
+
self._EndPointServiceId = EndPointServiceId
|
629
|
+
|
630
|
+
@property
|
631
|
+
def EndPointVipSet(self):
|
632
|
+
return self._EndPointVipSet
|
633
|
+
|
634
|
+
@EndPointVipSet.setter
|
635
|
+
def EndPointVipSet(self, EndPointVipSet):
|
636
|
+
self._EndPointVipSet = EndPointVipSet
|
637
|
+
|
638
|
+
@property
|
639
|
+
def RequestId(self):
|
640
|
+
return self._RequestId
|
641
|
+
|
642
|
+
@RequestId.setter
|
643
|
+
def RequestId(self, RequestId):
|
644
|
+
self._RequestId = RequestId
|
645
|
+
|
646
|
+
|
647
|
+
def _deserialize(self, params):
|
648
|
+
self._EndPointId = params.get("EndPointId")
|
649
|
+
self._EndPointName = params.get("EndPointName")
|
650
|
+
self._EndPointServiceId = params.get("EndPointServiceId")
|
651
|
+
self._EndPointVipSet = params.get("EndPointVipSet")
|
652
|
+
self._RequestId = params.get("RequestId")
|
653
|
+
|
654
|
+
|
513
655
|
class CreatePrivateDNSAccountRequest(AbstractModel):
|
514
656
|
"""CreatePrivateDNSAccount请求参数结构体
|
515
657
|
|
@@ -49,6 +49,29 @@ class PrivatednsClient(AbstractClient):
|
|
49
49
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
50
50
|
|
51
51
|
|
52
|
+
def CreateEndPoint(self, request):
|
53
|
+
"""创建终端节点
|
54
|
+
|
55
|
+
:param request: Request instance for CreateEndPoint.
|
56
|
+
:type request: :class:`tencentcloud.privatedns.v20201028.models.CreateEndPointRequest`
|
57
|
+
:rtype: :class:`tencentcloud.privatedns.v20201028.models.CreateEndPointResponse`
|
58
|
+
|
59
|
+
"""
|
60
|
+
try:
|
61
|
+
params = request._serialize()
|
62
|
+
headers = request.headers
|
63
|
+
body = self.call("CreateEndPoint", params, headers=headers)
|
64
|
+
response = json.loads(body)
|
65
|
+
model = models.CreateEndPointResponse()
|
66
|
+
model._deserialize(response["Response"])
|
67
|
+
return model
|
68
|
+
except Exception as e:
|
69
|
+
if isinstance(e, TencentCloudSDKException):
|
70
|
+
raise
|
71
|
+
else:
|
72
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
73
|
+
|
74
|
+
|
52
75
|
def CreatePrivateDNSAccount(self, request):
|
53
76
|
"""创建私有域解析账号
|
54
77
|
|
@@ -1752,7 +1752,7 @@ class RedisClient(AbstractClient):
|
|
1752
1752
|
|
1753
1753
|
|
1754
1754
|
def ModfiyInstancePassword(self, request):
|
1755
|
-
"""本接口(ModfiyInstancePassword
|
1755
|
+
"""本接口(ModfiyInstancePassword)用于修改实例访问密码。鉴于该接口名存在拼写错误,现已更正为([ModifyInstancePassword](https://cloud.tencent.com/document/product/239/111555))接口,推荐使用更正后的接口。
|
1756
1756
|
|
1757
1757
|
:param request: Request instance for ModfiyInstancePassword.
|
1758
1758
|
:type request: :class:`tencentcloud.redis.v20180412.models.ModfiyInstancePasswordRequest`
|
@@ -248,6 +248,9 @@ UNAUTHORIZEDOPERATION_SERVICESUSPENDDUETOARREARS = 'UnauthorizedOperation.Servic
|
|
248
248
|
# SmsSdkAppId 校验失败,请检查 [SmsSdkAppId](https://console.cloud.tencent.com/smsv2/app-manage) 是否属于 [云API密钥](https://console.cloud.tencent.com/cam/capi) 的关联账户。
|
249
249
|
UNAUTHORIZEDOPERATION_SMSSDKAPPIDVERIFYFAIL = 'UnauthorizedOperation.SmsSdkAppIdVerifyFail'
|
250
250
|
|
251
|
+
# 操作不支持。
|
252
|
+
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|
253
|
+
|
251
254
|
# 不支持该请求。
|
252
255
|
UNSUPPORTEDOPERATION_ = 'UnsupportedOperation.'
|
253
256
|
|
@@ -266,8 +266,8 @@ UNAUTHORIZEDOPERATION_SERVICESUSPENDDUETOARREARS = 'UnauthorizedOperation.Servic
|
|
266
266
|
# SmsSdkAppId 校验失败,请检查 [SmsSdkAppId](https://console.cloud.tencent.com/smsv2/app-manage) 是否属于 [云API密钥](https://console.cloud.tencent.com/cam/capi) 的关联账户。
|
267
267
|
UNAUTHORIZEDOPERATION_SMSSDKAPPIDVERIFYFAIL = 'UnauthorizedOperation.SmsSdkAppIdVerifyFail'
|
268
268
|
|
269
|
-
#
|
270
|
-
|
269
|
+
# 操作不支持。
|
270
|
+
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|
271
271
|
|
272
272
|
# 国内短信模板不支持发送国际/港澳台手机号。发送国际/港澳台手机号请使用国际/港澳台短信正文模板。
|
273
273
|
UNSUPPORTEDOPERATION_CHINESEMAINLANDTEMPLATETOGLOBALPHONE = 'UnsupportedOperation.ChineseMainlandTemplateToGlobalPhone'
|
@@ -2534,7 +2534,7 @@ class ReportConversionRequest(AbstractModel):
|
|
2534
2534
|
r"""
|
2535
2535
|
:param _SmsSdkAppId: 短信应用ID。在 [短信控制台](https://console.cloud.tencent.com/smsv2/app-manage) 添加应用后生成的实际 SdkAppId,示例如1400006666。
|
2536
2536
|
:type SmsSdkAppId: str
|
2537
|
-
:param _SerialNo:
|
2537
|
+
:param _SerialNo: 发送短信返回的流水号。对应SendSms接口返回的SendStatusSet参数中的SerialNo字段。
|
2538
2538
|
:type SerialNo: str
|
2539
2539
|
:param _ConversionTime: 用户回填时间,UNIX 时间戳(单位:秒)。
|
2540
2540
|
:type ConversionTime: int
|
@@ -14766,6 +14766,8 @@ class DescribeRestoreTaskRequest(AbstractModel):
|
|
14766
14766
|
:type OrderBy: str
|
14767
14767
|
:param _OrderByType: 排序规则(desc-降序,asc-升序),默认desc
|
14768
14768
|
:type OrderByType: str
|
14769
|
+
:param _FlowId: 回档异步任务ID
|
14770
|
+
:type FlowId: int
|
14769
14771
|
"""
|
14770
14772
|
self._InstanceId = None
|
14771
14773
|
self._StartTime = None
|
@@ -14778,6 +14780,7 @@ class DescribeRestoreTaskRequest(AbstractModel):
|
|
14778
14780
|
self._Limit = None
|
14779
14781
|
self._OrderBy = None
|
14780
14782
|
self._OrderByType = None
|
14783
|
+
self._FlowId = None
|
14781
14784
|
|
14782
14785
|
@property
|
14783
14786
|
def InstanceId(self):
|
@@ -14867,6 +14870,14 @@ class DescribeRestoreTaskRequest(AbstractModel):
|
|
14867
14870
|
def OrderByType(self, OrderByType):
|
14868
14871
|
self._OrderByType = OrderByType
|
14869
14872
|
|
14873
|
+
@property
|
14874
|
+
def FlowId(self):
|
14875
|
+
return self._FlowId
|
14876
|
+
|
14877
|
+
@FlowId.setter
|
14878
|
+
def FlowId(self, FlowId):
|
14879
|
+
self._FlowId = FlowId
|
14880
|
+
|
14870
14881
|
|
14871
14882
|
def _deserialize(self, params):
|
14872
14883
|
self._InstanceId = params.get("InstanceId")
|
@@ -14880,6 +14891,7 @@ class DescribeRestoreTaskRequest(AbstractModel):
|
|
14880
14891
|
self._Limit = params.get("Limit")
|
14881
14892
|
self._OrderBy = params.get("OrderBy")
|
14882
14893
|
self._OrderByType = params.get("OrderByType")
|
14894
|
+
self._FlowId = params.get("FlowId")
|
14883
14895
|
memeber_set = set(params.keys())
|
14884
14896
|
for name, value in vars(self).items():
|
14885
14897
|
property_name = name[1:]
|
@@ -23841,6 +23853,8 @@ class RestoreTask(AbstractModel):
|
|
23841
23853
|
:type EndTime: str
|
23842
23854
|
:param _Status: 回档状态,0-初始化,1-运行中,2-成功,3-失败
|
23843
23855
|
:type Status: int
|
23856
|
+
:param _FlowId: 回档异步任务ID
|
23857
|
+
:type FlowId: int
|
23844
23858
|
"""
|
23845
23859
|
self._TargetInstanceId = None
|
23846
23860
|
self._TargetInstanceName = None
|
@@ -23853,6 +23867,7 @@ class RestoreTask(AbstractModel):
|
|
23853
23867
|
self._StartTime = None
|
23854
23868
|
self._EndTime = None
|
23855
23869
|
self._Status = None
|
23870
|
+
self._FlowId = None
|
23856
23871
|
|
23857
23872
|
@property
|
23858
23873
|
def TargetInstanceId(self):
|
@@ -23942,6 +23957,14 @@ class RestoreTask(AbstractModel):
|
|
23942
23957
|
def Status(self, Status):
|
23943
23958
|
self._Status = Status
|
23944
23959
|
|
23960
|
+
@property
|
23961
|
+
def FlowId(self):
|
23962
|
+
return self._FlowId
|
23963
|
+
|
23964
|
+
@FlowId.setter
|
23965
|
+
def FlowId(self, FlowId):
|
23966
|
+
self._FlowId = FlowId
|
23967
|
+
|
23945
23968
|
|
23946
23969
|
def _deserialize(self, params):
|
23947
23970
|
self._TargetInstanceId = params.get("TargetInstanceId")
|
@@ -23955,6 +23978,7 @@ class RestoreTask(AbstractModel):
|
|
23955
23978
|
self._StartTime = params.get("StartTime")
|
23956
23979
|
self._EndTime = params.get("EndTime")
|
23957
23980
|
self._Status = params.get("Status")
|
23981
|
+
self._FlowId = params.get("FlowId")
|
23958
23982
|
memeber_set = set(params.keys())
|
23959
23983
|
for name, value in vars(self).items():
|
23960
23984
|
property_name = name[1:]
|
@@ -830,7 +830,7 @@ class QueryApiKeyRequest(AbstractModel):
|
|
830
830
|
|
831
831
|
def __init__(self):
|
832
832
|
r"""
|
833
|
-
:param _TargetUin: 待查询的账号(不填默认查当前账号)
|
833
|
+
:param _TargetUin: 待查询的账号uin(不填默认查当前账号uin)
|
834
834
|
:type TargetUin: int
|
835
835
|
"""
|
836
836
|
self._TargetUin = None
|
@@ -863,7 +863,7 @@ class QueryApiKeyResponse(AbstractModel):
|
|
863
863
|
|
864
864
|
def __init__(self):
|
865
865
|
r"""
|
866
|
-
:param _IdKeys: 密钥ID
|
866
|
+
:param _IdKeys: 密钥ID列表。
|
867
867
|
:type IdKeys: list of ApiKey
|
868
868
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
869
869
|
:type RequestId: str
|
@@ -27769,8 +27769,11 @@ class DescribeESAggregationsRequest(AbstractModel):
|
|
27769
27769
|
r"""
|
27770
27770
|
:param _Query: ES聚合条件JSON
|
27771
27771
|
:type Query: str
|
27772
|
+
:param _LogTypes: 日志类型列表
|
27773
|
+
:type LogTypes: list of str
|
27772
27774
|
"""
|
27773
27775
|
self._Query = None
|
27776
|
+
self._LogTypes = None
|
27774
27777
|
|
27775
27778
|
@property
|
27776
27779
|
def Query(self):
|
@@ -27780,9 +27783,18 @@ class DescribeESAggregationsRequest(AbstractModel):
|
|
27780
27783
|
def Query(self, Query):
|
27781
27784
|
self._Query = Query
|
27782
27785
|
|
27786
|
+
@property
|
27787
|
+
def LogTypes(self):
|
27788
|
+
return self._LogTypes
|
27789
|
+
|
27790
|
+
@LogTypes.setter
|
27791
|
+
def LogTypes(self, LogTypes):
|
27792
|
+
self._LogTypes = LogTypes
|
27793
|
+
|
27783
27794
|
|
27784
27795
|
def _deserialize(self, params):
|
27785
27796
|
self._Query = params.get("Query")
|
27797
|
+
self._LogTypes = params.get("LogTypes")
|
27786
27798
|
memeber_set = set(params.keys())
|
27787
27799
|
for name, value in vars(self).items():
|
27788
27800
|
property_name = name[1:]
|
@@ -27843,10 +27855,13 @@ class DescribeESHitsRequest(AbstractModel):
|
|
27843
27855
|
:type Offset: int
|
27844
27856
|
:param _Limit: 返回数量,最大值为100。
|
27845
27857
|
:type Limit: int
|
27858
|
+
:param _LogTypes: 日志类型列表
|
27859
|
+
:type LogTypes: list of str
|
27846
27860
|
"""
|
27847
27861
|
self._Query = None
|
27848
27862
|
self._Offset = None
|
27849
27863
|
self._Limit = None
|
27864
|
+
self._LogTypes = None
|
27850
27865
|
|
27851
27866
|
@property
|
27852
27867
|
def Query(self):
|
@@ -27872,11 +27887,20 @@ class DescribeESHitsRequest(AbstractModel):
|
|
27872
27887
|
def Limit(self, Limit):
|
27873
27888
|
self._Limit = Limit
|
27874
27889
|
|
27890
|
+
@property
|
27891
|
+
def LogTypes(self):
|
27892
|
+
return self._LogTypes
|
27893
|
+
|
27894
|
+
@LogTypes.setter
|
27895
|
+
def LogTypes(self, LogTypes):
|
27896
|
+
self._LogTypes = LogTypes
|
27897
|
+
|
27875
27898
|
|
27876
27899
|
def _deserialize(self, params):
|
27877
27900
|
self._Query = params.get("Query")
|
27878
27901
|
self._Offset = params.get("Offset")
|
27879
27902
|
self._Limit = params.get("Limit")
|
27903
|
+
self._LogTypes = params.get("LogTypes")
|
27880
27904
|
memeber_set = set(params.keys())
|
27881
27905
|
for name, value in vars(self).items():
|
27882
27906
|
property_name = name[1:]
|
@@ -36503,8 +36527,11 @@ class DescribeSearchExportListRequest(AbstractModel):
|
|
36503
36527
|
r"""
|
36504
36528
|
:param _Query: ES查询条件JSON
|
36505
36529
|
:type Query: str
|
36530
|
+
:param _LogTypes: 日志类型列表
|
36531
|
+
:type LogTypes: list of str
|
36506
36532
|
"""
|
36507
36533
|
self._Query = None
|
36534
|
+
self._LogTypes = None
|
36508
36535
|
|
36509
36536
|
@property
|
36510
36537
|
def Query(self):
|
@@ -36514,9 +36541,18 @@ class DescribeSearchExportListRequest(AbstractModel):
|
|
36514
36541
|
def Query(self, Query):
|
36515
36542
|
self._Query = Query
|
36516
36543
|
|
36544
|
+
@property
|
36545
|
+
def LogTypes(self):
|
36546
|
+
return self._LogTypes
|
36547
|
+
|
36548
|
+
@LogTypes.setter
|
36549
|
+
def LogTypes(self, LogTypes):
|
36550
|
+
self._LogTypes = LogTypes
|
36551
|
+
|
36517
36552
|
|
36518
36553
|
def _deserialize(self, params):
|
36519
36554
|
self._Query = params.get("Query")
|
36555
|
+
self._LogTypes = params.get("LogTypes")
|
36520
36556
|
memeber_set = set(params.keys())
|
36521
36557
|
for name, value in vars(self).items():
|
36522
36558
|
property_name = name[1:]
|
@@ -37402,11 +37438,20 @@ class DescribeSecLogJoinObjectListResponse(AbstractModel):
|
|
37402
37438
|
:type TotalCount: int
|
37403
37439
|
:param _List: 接入对象列表
|
37404
37440
|
:type List: list of SecLogJoinObjectInfo
|
37441
|
+
:param _RangeType: 日志节点范围类型,0自选 1全部
|
37442
|
+
:type RangeType: int
|
37443
|
+
:param _AutoJoin: 新增资产是否自动加入,节点范围为全部时生效
|
37444
|
+
:type AutoJoin: bool
|
37445
|
+
:param _ExcludedCount: 剔除节点数
|
37446
|
+
:type ExcludedCount: int
|
37405
37447
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
37406
37448
|
:type RequestId: str
|
37407
37449
|
"""
|
37408
37450
|
self._TotalCount = None
|
37409
37451
|
self._List = None
|
37452
|
+
self._RangeType = None
|
37453
|
+
self._AutoJoin = None
|
37454
|
+
self._ExcludedCount = None
|
37410
37455
|
self._RequestId = None
|
37411
37456
|
|
37412
37457
|
@property
|
@@ -37425,6 +37470,30 @@ class DescribeSecLogJoinObjectListResponse(AbstractModel):
|
|
37425
37470
|
def List(self, List):
|
37426
37471
|
self._List = List
|
37427
37472
|
|
37473
|
+
@property
|
37474
|
+
def RangeType(self):
|
37475
|
+
return self._RangeType
|
37476
|
+
|
37477
|
+
@RangeType.setter
|
37478
|
+
def RangeType(self, RangeType):
|
37479
|
+
self._RangeType = RangeType
|
37480
|
+
|
37481
|
+
@property
|
37482
|
+
def AutoJoin(self):
|
37483
|
+
return self._AutoJoin
|
37484
|
+
|
37485
|
+
@AutoJoin.setter
|
37486
|
+
def AutoJoin(self, AutoJoin):
|
37487
|
+
self._AutoJoin = AutoJoin
|
37488
|
+
|
37489
|
+
@property
|
37490
|
+
def ExcludedCount(self):
|
37491
|
+
return self._ExcludedCount
|
37492
|
+
|
37493
|
+
@ExcludedCount.setter
|
37494
|
+
def ExcludedCount(self, ExcludedCount):
|
37495
|
+
self._ExcludedCount = ExcludedCount
|
37496
|
+
|
37428
37497
|
@property
|
37429
37498
|
def RequestId(self):
|
37430
37499
|
return self._RequestId
|
@@ -37442,6 +37511,9 @@ class DescribeSecLogJoinObjectListResponse(AbstractModel):
|
|
37442
37511
|
obj = SecLogJoinObjectInfo()
|
37443
37512
|
obj._deserialize(item)
|
37444
37513
|
self._List.append(obj)
|
37514
|
+
self._RangeType = params.get("RangeType")
|
37515
|
+
self._AutoJoin = params.get("AutoJoin")
|
37516
|
+
self._ExcludedCount = params.get("ExcludedCount")
|
37445
37517
|
self._RequestId = params.get("RequestId")
|
37446
37518
|
|
37447
37519
|
|
@@ -52399,20 +52471,26 @@ bash日志: container_bash
|
|
52399
52471
|
容器启动: container_launch
|
52400
52472
|
k8sApi: k8s_api
|
52401
52473
|
:type LogType: str
|
52402
|
-
:param _BindList:
|
52474
|
+
:param _BindList: 绑定列表
|
52403
52475
|
:type BindList: list of str
|
52404
|
-
:param _UnBindList:
|
52476
|
+
:param _UnBindList: 待解绑列表,节点范围为全部时,含义为需剔除资产列表
|
52405
52477
|
:type UnBindList: list of str
|
52406
52478
|
:param _NodeType: 节点类型:
|
52407
52479
|
NORMAL: 普通节点(默认值)
|
52408
52480
|
SUPER: 超级节点
|
52409
52481
|
|
52410
52482
|
:type NodeType: str
|
52483
|
+
:param _RangeType: 日志节点范围类型,0自选 1全部
|
52484
|
+
:type RangeType: int
|
52485
|
+
:param _AutoJoin: 新增资产是否自动加入,节点范围为全部时生效
|
52486
|
+
:type AutoJoin: bool
|
52411
52487
|
"""
|
52412
52488
|
self._LogType = None
|
52413
52489
|
self._BindList = None
|
52414
52490
|
self._UnBindList = None
|
52415
52491
|
self._NodeType = None
|
52492
|
+
self._RangeType = None
|
52493
|
+
self._AutoJoin = None
|
52416
52494
|
|
52417
52495
|
@property
|
52418
52496
|
def LogType(self):
|
@@ -52446,12 +52524,30 @@ SUPER: 超级节点
|
|
52446
52524
|
def NodeType(self, NodeType):
|
52447
52525
|
self._NodeType = NodeType
|
52448
52526
|
|
52527
|
+
@property
|
52528
|
+
def RangeType(self):
|
52529
|
+
return self._RangeType
|
52530
|
+
|
52531
|
+
@RangeType.setter
|
52532
|
+
def RangeType(self, RangeType):
|
52533
|
+
self._RangeType = RangeType
|
52534
|
+
|
52535
|
+
@property
|
52536
|
+
def AutoJoin(self):
|
52537
|
+
return self._AutoJoin
|
52538
|
+
|
52539
|
+
@AutoJoin.setter
|
52540
|
+
def AutoJoin(self, AutoJoin):
|
52541
|
+
self._AutoJoin = AutoJoin
|
52542
|
+
|
52449
52543
|
|
52450
52544
|
def _deserialize(self, params):
|
52451
52545
|
self._LogType = params.get("LogType")
|
52452
52546
|
self._BindList = params.get("BindList")
|
52453
52547
|
self._UnBindList = params.get("UnBindList")
|
52454
52548
|
self._NodeType = params.get("NodeType")
|
52549
|
+
self._RangeType = params.get("RangeType")
|
52550
|
+
self._AutoJoin = params.get("AutoJoin")
|
52455
52551
|
memeber_set = set(params.keys())
|
52456
52552
|
for name, value in vars(self).items():
|
52457
52553
|
property_name = name[1:]
|
@@ -58865,11 +58961,14 @@ class SecLogJoinInfo(AbstractModel):
|
|
58865
58961
|
k8sApi: "k8s_api"
|
58866
58962
|
)
|
58867
58963
|
:type LogType: str
|
58964
|
+
:param _ClusterCount: 已接入集群数量
|
58965
|
+
:type ClusterCount: int
|
58868
58966
|
"""
|
58869
58967
|
self._Count = None
|
58870
58968
|
self._SuperNodeCount = None
|
58871
58969
|
self._IsJoined = None
|
58872
58970
|
self._LogType = None
|
58971
|
+
self._ClusterCount = None
|
58873
58972
|
|
58874
58973
|
@property
|
58875
58974
|
def Count(self):
|
@@ -58903,12 +59002,21 @@ k8sApi: "k8s_api"
|
|
58903
59002
|
def LogType(self, LogType):
|
58904
59003
|
self._LogType = LogType
|
58905
59004
|
|
59005
|
+
@property
|
59006
|
+
def ClusterCount(self):
|
59007
|
+
return self._ClusterCount
|
59008
|
+
|
59009
|
+
@ClusterCount.setter
|
59010
|
+
def ClusterCount(self, ClusterCount):
|
59011
|
+
self._ClusterCount = ClusterCount
|
59012
|
+
|
58906
59013
|
|
58907
59014
|
def _deserialize(self, params):
|
58908
59015
|
self._Count = params.get("Count")
|
58909
59016
|
self._SuperNodeCount = params.get("SuperNodeCount")
|
58910
59017
|
self._IsJoined = params.get("IsJoined")
|
58911
59018
|
self._LogType = params.get("LogType")
|
59019
|
+
self._ClusterCount = params.get("ClusterCount")
|
58912
59020
|
memeber_set = set(params.keys())
|
58913
59021
|
for name, value in vars(self).items():
|
58914
59022
|
property_name = name[1:]
|
@@ -58952,6 +59060,13 @@ class SecLogJoinObjectInfo(AbstractModel):
|
|
58952
59060
|
:type ClusterVersion: str
|
58953
59061
|
:param _ClusterMainAddress: 集群主节点地址
|
58954
59062
|
:type ClusterMainAddress: str
|
59063
|
+
:param _ContainerCnt: 容器数
|
59064
|
+
:type ContainerCnt: int
|
59065
|
+
:param _ClusterType: 集群类型
|
59066
|
+
:type ClusterType: str
|
59067
|
+
:param _ClusterStatus: 集群状态
|
59068
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
59069
|
+
:type ClusterStatus: str
|
58955
59070
|
"""
|
58956
59071
|
self._HostID = None
|
58957
59072
|
self._HostName = None
|
@@ -58963,6 +59078,9 @@ class SecLogJoinObjectInfo(AbstractModel):
|
|
58963
59078
|
self._JoinState = None
|
58964
59079
|
self._ClusterVersion = None
|
58965
59080
|
self._ClusterMainAddress = None
|
59081
|
+
self._ContainerCnt = None
|
59082
|
+
self._ClusterType = None
|
59083
|
+
self._ClusterStatus = None
|
58966
59084
|
|
58967
59085
|
@property
|
58968
59086
|
def HostID(self):
|
@@ -59044,6 +59162,30 @@ class SecLogJoinObjectInfo(AbstractModel):
|
|
59044
59162
|
def ClusterMainAddress(self, ClusterMainAddress):
|
59045
59163
|
self._ClusterMainAddress = ClusterMainAddress
|
59046
59164
|
|
59165
|
+
@property
|
59166
|
+
def ContainerCnt(self):
|
59167
|
+
return self._ContainerCnt
|
59168
|
+
|
59169
|
+
@ContainerCnt.setter
|
59170
|
+
def ContainerCnt(self, ContainerCnt):
|
59171
|
+
self._ContainerCnt = ContainerCnt
|
59172
|
+
|
59173
|
+
@property
|
59174
|
+
def ClusterType(self):
|
59175
|
+
return self._ClusterType
|
59176
|
+
|
59177
|
+
@ClusterType.setter
|
59178
|
+
def ClusterType(self, ClusterType):
|
59179
|
+
self._ClusterType = ClusterType
|
59180
|
+
|
59181
|
+
@property
|
59182
|
+
def ClusterStatus(self):
|
59183
|
+
return self._ClusterStatus
|
59184
|
+
|
59185
|
+
@ClusterStatus.setter
|
59186
|
+
def ClusterStatus(self, ClusterStatus):
|
59187
|
+
self._ClusterStatus = ClusterStatus
|
59188
|
+
|
59047
59189
|
|
59048
59190
|
def _deserialize(self, params):
|
59049
59191
|
self._HostID = params.get("HostID")
|
@@ -59056,6 +59198,9 @@ class SecLogJoinObjectInfo(AbstractModel):
|
|
59056
59198
|
self._JoinState = params.get("JoinState")
|
59057
59199
|
self._ClusterVersion = params.get("ClusterVersion")
|
59058
59200
|
self._ClusterMainAddress = params.get("ClusterMainAddress")
|
59201
|
+
self._ContainerCnt = params.get("ContainerCnt")
|
59202
|
+
self._ClusterType = params.get("ClusterType")
|
59203
|
+
self._ClusterStatus = params.get("ClusterStatus")
|
59059
59204
|
memeber_set = set(params.keys())
|
59060
59205
|
for name, value in vars(self).items():
|
59061
59206
|
property_name = name[1:]
|