tencentcloud-sdk-python 3.0.1348__py2.py3-none-any.whl → 3.0.1349__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/captcha/v20190722/models.py +15 -30
- tencentcloud/cbs/v20170312/models.py +0 -4
- tencentcloud/ccc/v20200210/errorcodes.py +3 -0
- tencentcloud/ccc/v20200210/models.py +159 -2
- tencentcloud/cdwpg/v20201230/models.py +2 -2
- tencentcloud/clb/v20180317/models.py +2 -2
- tencentcloud/dbdc/v20201029/models.py +0 -16
- tencentcloud/dlc/v20210125/models.py +256 -16
- tencentcloud/es/v20180416/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/models.py +8 -8
- tencentcloud/essbasic/v20210526/essbasic_client.py +2 -2
- tencentcloud/essbasic/v20210526/models.py +6 -6
- tencentcloud/hai/v20230812/models.py +0 -52
- tencentcloud/hunyuan/v20230901/models.py +6 -4
- tencentcloud/iotvideo/v20191126/models.py +0 -4
- tencentcloud/iotvideo/v20201215/models.py +17 -0
- tencentcloud/live/v20180801/models.py +8 -24
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -0
- tencentcloud/mariadb/v20170312/models.py +2 -6
- tencentcloud/monitor/v20180724/models.py +95 -14
- tencentcloud/mps/v20190612/models.py +260 -0
- tencentcloud/mqtt/v20240516/models.py +124 -114
- tencentcloud/mqtt/v20240516/mqtt_client.py +2 -2
- tencentcloud/privatedns/v20201028/models.py +0 -22
- tencentcloud/taf/v20200210/models.py +270 -0
- tencentcloud/taf/v20200210/taf_client.py +23 -0
- tencentcloud/tbaas/v20180416/models.py +0 -12
- tencentcloud/tcr/v20190924/models.py +30 -20
- tencentcloud/tdmq/v20200217/models.py +0 -2
- tencentcloud/tke/v20180525/models.py +692 -556
- tencentcloud/tke/v20180525/tke_client.py +23 -0
- tencentcloud/tsf/v20180326/models.py +56 -14
- tencentcloud/vod/v20180717/errorcodes.py +3 -0
- tencentcloud/vod/v20180717/models.py +20 -214
- tencentcloud/vpc/v20170312/models.py +135 -0
- {tencentcloud_sdk_python-3.0.1348.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1348.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/RECORD +41 -41
- {tencentcloud_sdk_python-3.0.1348.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1348.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1348.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/top_level.txt +0 -0
@@ -2855,6 +2855,29 @@ class TkeClient(AbstractClient):
|
|
2855
2855
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2856
2856
|
|
2857
2857
|
|
2858
|
+
def DescribeOSImages(self, request):
|
2859
|
+
"""获取OS聚合信息
|
2860
|
+
|
2861
|
+
:param request: Request instance for DescribeOSImages.
|
2862
|
+
:type request: :class:`tencentcloud.tke.v20180525.models.DescribeOSImagesRequest`
|
2863
|
+
:rtype: :class:`tencentcloud.tke.v20180525.models.DescribeOSImagesResponse`
|
2864
|
+
|
2865
|
+
"""
|
2866
|
+
try:
|
2867
|
+
params = request._serialize()
|
2868
|
+
headers = request.headers
|
2869
|
+
body = self.call("DescribeOSImages", params, headers=headers)
|
2870
|
+
response = json.loads(body)
|
2871
|
+
model = models.DescribeOSImagesResponse()
|
2872
|
+
model._deserialize(response["Response"])
|
2873
|
+
return model
|
2874
|
+
except Exception as e:
|
2875
|
+
if isinstance(e, TencentCloudSDKException):
|
2876
|
+
raise
|
2877
|
+
else:
|
2878
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2879
|
+
|
2880
|
+
|
2858
2881
|
def DescribeOpenPolicyList(self, request):
|
2859
2882
|
"""查询opa策略列表
|
2860
2883
|
|
@@ -3634,7 +3634,6 @@ class BusinessLogConfig(AbstractModel):
|
|
3634
3634
|
:param _ConfigName: 配置项名称
|
3635
3635
|
:type ConfigName: str
|
3636
3636
|
:param _ConfigPath: 配置项日志路径
|
3637
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3638
3637
|
:type ConfigPath: str
|
3639
3638
|
:param _ConfigDesc: 配置项描述
|
3640
3639
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -3643,7 +3642,6 @@ class BusinessLogConfig(AbstractModel):
|
|
3643
3642
|
注意:此字段可能返回 null,表示取不到有效值。
|
3644
3643
|
:type ConfigTags: str
|
3645
3644
|
:param _ConfigPipeline: 配置项对应的ES管道
|
3646
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3647
3645
|
:type ConfigPipeline: str
|
3648
3646
|
:param _ConfigCreateTime: 配置项创建时间
|
3649
3647
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -3652,14 +3650,18 @@ class BusinessLogConfig(AbstractModel):
|
|
3652
3650
|
注意:此字段可能返回 null,表示取不到有效值。
|
3653
3651
|
:type ConfigUpdateTime: str
|
3654
3652
|
:param _ConfigSchema: 配置项解析规则
|
3655
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3656
3653
|
:type ConfigSchema: :class:`tencentcloud.tsf.v20180326.models.BusinessLogConfigSchema`
|
3657
3654
|
:param _ConfigAssociatedGroups: 配置项关联部署组
|
3658
3655
|
注意:此字段可能返回 null,表示取不到有效值。
|
3659
3656
|
:type ConfigAssociatedGroups: list of BusinesLogConfigAssociatedGroup
|
3660
3657
|
:param _ConfigAssociatedGroupList: 配置项关联部署组
|
3661
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3662
3658
|
:type ConfigAssociatedGroupList: list of BusinessLogConfigAssociatedGroup
|
3659
|
+
:param _FilebeatConfigEnable: 是否开启filebeat高级配置开关
|
3660
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3661
|
+
:type FilebeatConfigEnable: bool
|
3662
|
+
:param _FilebeatCloseTimeout: close_timeout参数
|
3663
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3664
|
+
:type FilebeatCloseTimeout: int
|
3663
3665
|
"""
|
3664
3666
|
self._ConfigId = None
|
3665
3667
|
self._ConfigName = None
|
@@ -3672,6 +3674,8 @@ class BusinessLogConfig(AbstractModel):
|
|
3672
3674
|
self._ConfigSchema = None
|
3673
3675
|
self._ConfigAssociatedGroups = None
|
3674
3676
|
self._ConfigAssociatedGroupList = None
|
3677
|
+
self._FilebeatConfigEnable = None
|
3678
|
+
self._FilebeatCloseTimeout = None
|
3675
3679
|
|
3676
3680
|
@property
|
3677
3681
|
def ConfigId(self):
|
@@ -3698,7 +3702,6 @@ class BusinessLogConfig(AbstractModel):
|
|
3698
3702
|
@property
|
3699
3703
|
def ConfigPath(self):
|
3700
3704
|
"""配置项日志路径
|
3701
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3702
3705
|
:rtype: str
|
3703
3706
|
"""
|
3704
3707
|
return self._ConfigPath
|
@@ -3734,7 +3737,6 @@ class BusinessLogConfig(AbstractModel):
|
|
3734
3737
|
@property
|
3735
3738
|
def ConfigPipeline(self):
|
3736
3739
|
"""配置项对应的ES管道
|
3737
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3738
3740
|
:rtype: str
|
3739
3741
|
"""
|
3740
3742
|
return self._ConfigPipeline
|
@@ -3770,7 +3772,6 @@ class BusinessLogConfig(AbstractModel):
|
|
3770
3772
|
@property
|
3771
3773
|
def ConfigSchema(self):
|
3772
3774
|
"""配置项解析规则
|
3773
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3774
3775
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.BusinessLogConfigSchema`
|
3775
3776
|
"""
|
3776
3777
|
return self._ConfigSchema
|
@@ -3798,7 +3799,6 @@ class BusinessLogConfig(AbstractModel):
|
|
3798
3799
|
@property
|
3799
3800
|
def ConfigAssociatedGroupList(self):
|
3800
3801
|
"""配置项关联部署组
|
3801
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3802
3802
|
:rtype: list of BusinessLogConfigAssociatedGroup
|
3803
3803
|
"""
|
3804
3804
|
return self._ConfigAssociatedGroupList
|
@@ -3807,6 +3807,30 @@ class BusinessLogConfig(AbstractModel):
|
|
3807
3807
|
def ConfigAssociatedGroupList(self, ConfigAssociatedGroupList):
|
3808
3808
|
self._ConfigAssociatedGroupList = ConfigAssociatedGroupList
|
3809
3809
|
|
3810
|
+
@property
|
3811
|
+
def FilebeatConfigEnable(self):
|
3812
|
+
"""是否开启filebeat高级配置开关
|
3813
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3814
|
+
:rtype: bool
|
3815
|
+
"""
|
3816
|
+
return self._FilebeatConfigEnable
|
3817
|
+
|
3818
|
+
@FilebeatConfigEnable.setter
|
3819
|
+
def FilebeatConfigEnable(self, FilebeatConfigEnable):
|
3820
|
+
self._FilebeatConfigEnable = FilebeatConfigEnable
|
3821
|
+
|
3822
|
+
@property
|
3823
|
+
def FilebeatCloseTimeout(self):
|
3824
|
+
"""close_timeout参数
|
3825
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3826
|
+
:rtype: int
|
3827
|
+
"""
|
3828
|
+
return self._FilebeatCloseTimeout
|
3829
|
+
|
3830
|
+
@FilebeatCloseTimeout.setter
|
3831
|
+
def FilebeatCloseTimeout(self, FilebeatCloseTimeout):
|
3832
|
+
self._FilebeatCloseTimeout = FilebeatCloseTimeout
|
3833
|
+
|
3810
3834
|
|
3811
3835
|
def _deserialize(self, params):
|
3812
3836
|
self._ConfigId = params.get("ConfigId")
|
@@ -3832,6 +3856,8 @@ class BusinessLogConfig(AbstractModel):
|
|
3832
3856
|
obj = BusinessLogConfigAssociatedGroup()
|
3833
3857
|
obj._deserialize(item)
|
3834
3858
|
self._ConfigAssociatedGroupList.append(obj)
|
3859
|
+
self._FilebeatConfigEnable = params.get("FilebeatConfigEnable")
|
3860
|
+
self._FilebeatCloseTimeout = params.get("FilebeatCloseTimeout")
|
3835
3861
|
memeber_set = set(params.keys())
|
3836
3862
|
for name, value in vars(self).items():
|
3837
3863
|
property_name = name[1:]
|
@@ -19517,7 +19543,6 @@ class DescribeBusinessLogConfigResponse(AbstractModel):
|
|
19517
19543
|
def __init__(self):
|
19518
19544
|
r"""
|
19519
19545
|
:param _Result: 日志配置项
|
19520
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19521
19546
|
:type Result: :class:`tencentcloud.tsf.v20180326.models.BusinessLogConfig`
|
19522
19547
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
19523
19548
|
:type RequestId: str
|
@@ -19528,7 +19553,6 @@ class DescribeBusinessLogConfigResponse(AbstractModel):
|
|
19528
19553
|
@property
|
19529
19554
|
def Result(self):
|
19530
19555
|
"""日志配置项
|
19531
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19532
19556
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.BusinessLogConfig`
|
19533
19557
|
"""
|
19534
19558
|
return self._Result
|
@@ -25728,7 +25752,6 @@ class DescribeJvmMonitorResponse(AbstractModel):
|
|
25728
25752
|
def __init__(self):
|
25729
25753
|
r"""
|
25730
25754
|
:param _Result: Java实例jvm监控数据
|
25731
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25732
25755
|
:type Result: :class:`tencentcloud.tsf.v20180326.models.JvmMonitorData`
|
25733
25756
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
25734
25757
|
:type RequestId: str
|
@@ -25739,7 +25762,6 @@ class DescribeJvmMonitorResponse(AbstractModel):
|
|
25739
25762
|
@property
|
25740
25763
|
def Result(self):
|
25741
25764
|
"""Java实例jvm监控数据
|
25742
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25743
25765
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.JvmMonitorData`
|
25744
25766
|
"""
|
25745
25767
|
return self._Result
|
@@ -50927,12 +50949,15 @@ class ThreadPicture(AbstractModel):
|
|
50927
50949
|
:type ThreadCount: list of CurvePoint
|
50928
50950
|
:param _ThreadActive: 活跃线程数
|
50929
50951
|
:type ThreadActive: list of CurvePoint
|
50930
|
-
:param _DeamonThreadCount: 守护线程数
|
50952
|
+
:param _DeamonThreadCount: 守护线程数 拼写错误,废弃
|
50931
50953
|
:type DeamonThreadCount: list of CurvePoint
|
50954
|
+
:param _DaemonThreadCount: 守护线程数
|
50955
|
+
:type DaemonThreadCount: list of CurvePoint
|
50932
50956
|
"""
|
50933
50957
|
self._ThreadCount = None
|
50934
50958
|
self._ThreadActive = None
|
50935
50959
|
self._DeamonThreadCount = None
|
50960
|
+
self._DaemonThreadCount = None
|
50936
50961
|
|
50937
50962
|
@property
|
50938
50963
|
def ThreadCount(self):
|
@@ -50958,7 +50983,7 @@ class ThreadPicture(AbstractModel):
|
|
50958
50983
|
|
50959
50984
|
@property
|
50960
50985
|
def DeamonThreadCount(self):
|
50961
|
-
"""守护线程数
|
50986
|
+
"""守护线程数 拼写错误,废弃
|
50962
50987
|
:rtype: list of CurvePoint
|
50963
50988
|
"""
|
50964
50989
|
return self._DeamonThreadCount
|
@@ -50967,6 +50992,17 @@ class ThreadPicture(AbstractModel):
|
|
50967
50992
|
def DeamonThreadCount(self, DeamonThreadCount):
|
50968
50993
|
self._DeamonThreadCount = DeamonThreadCount
|
50969
50994
|
|
50995
|
+
@property
|
50996
|
+
def DaemonThreadCount(self):
|
50997
|
+
"""守护线程数
|
50998
|
+
:rtype: list of CurvePoint
|
50999
|
+
"""
|
51000
|
+
return self._DaemonThreadCount
|
51001
|
+
|
51002
|
+
@DaemonThreadCount.setter
|
51003
|
+
def DaemonThreadCount(self, DaemonThreadCount):
|
51004
|
+
self._DaemonThreadCount = DaemonThreadCount
|
51005
|
+
|
50970
51006
|
|
50971
51007
|
def _deserialize(self, params):
|
50972
51008
|
if params.get("ThreadCount") is not None:
|
@@ -50987,6 +51023,12 @@ class ThreadPicture(AbstractModel):
|
|
50987
51023
|
obj = CurvePoint()
|
50988
51024
|
obj._deserialize(item)
|
50989
51025
|
self._DeamonThreadCount.append(obj)
|
51026
|
+
if params.get("DaemonThreadCount") is not None:
|
51027
|
+
self._DaemonThreadCount = []
|
51028
|
+
for item in params.get("DaemonThreadCount"):
|
51029
|
+
obj = CurvePoint()
|
51030
|
+
obj._deserialize(item)
|
51031
|
+
self._DaemonThreadCount.append(obj)
|
50990
51032
|
memeber_set = set(params.keys())
|
50991
51033
|
for name, value in vars(self).items():
|
50992
51034
|
property_name = name[1:]
|
@@ -359,6 +359,9 @@ INVALIDPARAMETERVALUE_ISPERSISTENCE = 'InvalidParameterValue.IsPersistence'
|
|
359
359
|
# Isps 参数错误。
|
360
360
|
INVALIDPARAMETERVALUE_ISPS = 'InvalidParameterValue.Isps'
|
361
361
|
|
362
|
+
# ItemId 错误。
|
363
|
+
INVALIDPARAMETERVALUE_ITEMID = 'InvalidParameterValue.ItemId'
|
364
|
+
|
362
365
|
# 参数值错误:打点信息内容过长。
|
363
366
|
INVALIDPARAMETERVALUE_KEYFRAMEDESCCONTENTTOOLONG = 'InvalidParameterValue.KeyFrameDescContentTooLong'
|
364
367
|
|