tencentcloud-sdk-python 3.0.1438__py2.py3-none-any.whl → 3.0.1440__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.

Potentially problematic release.


This version of tencentcloud-sdk-python might be problematic. Click here for more details.

Files changed (35) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/models.py +83 -0
  3. tencentcloud/cdb/v20170320/models.py +4 -4
  4. tencentcloud/cdwch/v20200915/models.py +19 -6
  5. tencentcloud/cfg/v20210820/models.py +20 -0
  6. tencentcloud/clb/v20180317/models.py +2 -2
  7. tencentcloud/cls/v20201016/models.py +38 -24
  8. tencentcloud/csip/v20221121/csip_client.py +23 -0
  9. tencentcloud/csip/v20221121/models.py +578 -4
  10. tencentcloud/emr/v20190103/models.py +15 -0
  11. tencentcloud/es/v20180416/errorcodes.py +3 -0
  12. tencentcloud/es/v20180416/models.py +225 -0
  13. tencentcloud/hunyuan/v20230901/models.py +2 -2
  14. tencentcloud/lighthouse/v20200324/errorcodes.py +3 -0
  15. tencentcloud/mna/v20210119/errorcodes.py +1 -1
  16. tencentcloud/mps/v20190612/models.py +24 -0
  17. tencentcloud/omics/v20221128/models.py +175 -0
  18. tencentcloud/sqlserver/v20180328/models.py +30 -0
  19. tencentcloud/ssl/v20191205/models.py +60 -0
  20. tencentcloud/sts/v20180813/sts_client.py +16 -4
  21. tencentcloud/tdmq/v20200217/models.py +119 -2
  22. tencentcloud/teo/v20220901/models.py +130 -0
  23. tencentcloud/thpc/v20230321/errorcodes.py +24 -0
  24. tencentcloud/thpc/v20230321/models.py +1398 -132
  25. tencentcloud/thpc/v20230321/thpc_client.py +138 -0
  26. tencentcloud/trocket/v20230308/models.py +90 -20
  27. tencentcloud/tsf/v20180326/errorcodes.py +15 -15
  28. tencentcloud/vdb/v20230616/models.py +15 -0
  29. tencentcloud/vod/v20180717/models.py +12 -4
  30. tencentcloud/wedata/v20210820/models.py +15 -15
  31. {tencentcloud_sdk_python-3.0.1438.dist-info → tencentcloud_sdk_python-3.0.1440.dist-info}/METADATA +1 -1
  32. {tencentcloud_sdk_python-3.0.1438.dist-info → tencentcloud_sdk_python-3.0.1440.dist-info}/RECORD +35 -35
  33. {tencentcloud_sdk_python-3.0.1438.dist-info → tencentcloud_sdk_python-3.0.1440.dist-info}/LICENSE +0 -0
  34. {tencentcloud_sdk_python-3.0.1438.dist-info → tencentcloud_sdk_python-3.0.1440.dist-info}/WHEEL +0 -0
  35. {tencentcloud_sdk_python-3.0.1438.dist-info → tencentcloud_sdk_python-3.0.1440.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1438'
17
+ __version__ = '3.0.1440'
@@ -3378,11 +3378,19 @@ class DescribeJobMonitorDataRequest(AbstractModel):
3378
3378
  - MemUsage:内存利用率,单位:%
3379
3379
  - LanOuttraffic:内网出带宽,单位:Bytes/s
3380
3380
  - LanIntraffic:内网入带宽,单位:Bytes/s
3381
+ - MaxDiskUsage:所有磁盘中的使用率最高的磁盘使用率,单位:%
3382
+ - TargetDiskUsage:指定磁盘的使用率,单位:%;配合Dimensions参数使用
3381
3383
  :type MetricName: str
3382
3384
  :param _StartTime: 查询任务实例的起始时间;如果未传入查询起始时间或传入的时间小于任务实例的创建时间(任务实例创建时间详见[任务详情](https://cloud.tencent.com/document/product/599/15905)),会自动将查询时间调整到任务实例的创建时间。传入时间格式只支持零时区格式。
3383
3385
  :type StartTime: str
3384
3386
  :param _EndTime: 查询任务实例的终止时间;如果未传入查询终止时间或传入的时间大于任务实例的终止时间(任务实例终止时间详见[任务详情](https://cloud.tencent.com/document/product/599/15905)),并且任务实例已经结束,会自动将查询终止时间调整到任务实例的终止时间;如果任务实例未结束,会自动将查询终止时间调整到当前时间。传入时间格式只支持零时区格式。
3385
3387
  :type EndTime: str
3388
+ :param _Dimensions: 查询指标的扩展参数;当前只支持TargetDiskUsage;
3389
+
3390
+ - TargetDiskUsage
3391
+ -支持的查询维度diskname, 维度值为磁盘挂载名,例如vdb;如果不传此参数,默认查询vdb磁盘的使用率。
3392
+ 样例:[{"Name":"diskname", "Value":"vdb"}]
3393
+ :type Dimensions: list of Dimension
3386
3394
  """
3387
3395
  self._JobId = None
3388
3396
  self._TaskName = None
@@ -3390,6 +3398,7 @@ class DescribeJobMonitorDataRequest(AbstractModel):
3390
3398
  self._MetricName = None
3391
3399
  self._StartTime = None
3392
3400
  self._EndTime = None
3401
+ self._Dimensions = None
3393
3402
 
3394
3403
  @property
3395
3404
  def JobId(self):
@@ -3432,6 +3441,8 @@ class DescribeJobMonitorDataRequest(AbstractModel):
3432
3441
  - MemUsage:内存利用率,单位:%
3433
3442
  - LanOuttraffic:内网出带宽,单位:Bytes/s
3434
3443
  - LanIntraffic:内网入带宽,单位:Bytes/s
3444
+ - MaxDiskUsage:所有磁盘中的使用率最高的磁盘使用率,单位:%
3445
+ - TargetDiskUsage:指定磁盘的使用率,单位:%;配合Dimensions参数使用
3435
3446
  :rtype: str
3436
3447
  """
3437
3448
  return self._MetricName
@@ -3462,6 +3473,21 @@ class DescribeJobMonitorDataRequest(AbstractModel):
3462
3473
  def EndTime(self, EndTime):
3463
3474
  self._EndTime = EndTime
3464
3475
 
3476
+ @property
3477
+ def Dimensions(self):
3478
+ """查询指标的扩展参数;当前只支持TargetDiskUsage;
3479
+
3480
+ - TargetDiskUsage
3481
+ -支持的查询维度diskname, 维度值为磁盘挂载名,例如vdb;如果不传此参数,默认查询vdb磁盘的使用率。
3482
+ 样例:[{"Name":"diskname", "Value":"vdb"}]
3483
+ :rtype: list of Dimension
3484
+ """
3485
+ return self._Dimensions
3486
+
3487
+ @Dimensions.setter
3488
+ def Dimensions(self, Dimensions):
3489
+ self._Dimensions = Dimensions
3490
+
3465
3491
 
3466
3492
  def _deserialize(self, params):
3467
3493
  self._JobId = params.get("JobId")
@@ -3470,6 +3496,12 @@ class DescribeJobMonitorDataRequest(AbstractModel):
3470
3496
  self._MetricName = params.get("MetricName")
3471
3497
  self._StartTime = params.get("StartTime")
3472
3498
  self._EndTime = params.get("EndTime")
3499
+ if params.get("Dimensions") is not None:
3500
+ self._Dimensions = []
3501
+ for item in params.get("Dimensions"):
3502
+ obj = Dimension()
3503
+ obj._deserialize(item)
3504
+ self._Dimensions.append(obj)
3473
3505
  memeber_set = set(params.keys())
3474
3506
  for name, value in vars(self).items():
3475
3507
  property_name = name[1:]
@@ -4879,6 +4911,57 @@ class DetachInstancesResponse(AbstractModel):
4879
4911
  self._RequestId = params.get("RequestId")
4880
4912
 
4881
4913
 
4914
+ class Dimension(AbstractModel):
4915
+ """Job资源监控查询维度
4916
+
4917
+ """
4918
+
4919
+ def __init__(self):
4920
+ r"""
4921
+ :param _Name: 查询指标的维度名称
4922
+ :type Name: str
4923
+ :param _Value: 查询指标的维度值
4924
+ :type Value: str
4925
+ """
4926
+ self._Name = None
4927
+ self._Value = None
4928
+
4929
+ @property
4930
+ def Name(self):
4931
+ """查询指标的维度名称
4932
+ :rtype: str
4933
+ """
4934
+ return self._Name
4935
+
4936
+ @Name.setter
4937
+ def Name(self, Name):
4938
+ self._Name = Name
4939
+
4940
+ @property
4941
+ def Value(self):
4942
+ """查询指标的维度值
4943
+ :rtype: str
4944
+ """
4945
+ return self._Value
4946
+
4947
+ @Value.setter
4948
+ def Value(self, Value):
4949
+ self._Value = Value
4950
+
4951
+
4952
+ def _deserialize(self, params):
4953
+ self._Name = params.get("Name")
4954
+ self._Value = params.get("Value")
4955
+ memeber_set = set(params.keys())
4956
+ for name, value in vars(self).items():
4957
+ property_name = name[1:]
4958
+ if property_name in memeber_set:
4959
+ memeber_set.remove(property_name)
4960
+ if len(memeber_set) > 0:
4961
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4962
+
4963
+
4964
+
4882
4965
  class Docker(AbstractModel):
4883
4966
  """Docker容器信息
4884
4967
 
@@ -29684,7 +29684,7 @@ class ModifyInstanceParamRequest(AbstractModel):
29684
29684
  :type InstanceIds: list of str
29685
29685
  :param _ParamList: 要修改的参数列表。每一个元素是 Name 和 CurrentValue 的组合。Name 是参数名,CurrentValue 是要修改成的值。
29686
29686
  :type ParamList: list of Parameter
29687
- :param _TemplateId: 模板 ID,ParamList 和 TemplateId 必须至少传其中之一。可通过 [DescribeParamTemplateInfo](https://cloud.tencent.com/document/product/236/32660) 接口获取。
29687
+ :param _TemplateId: 模板 ID,ParamList 和 TemplateId 必须至少传其中之一。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
29688
29688
  :type TemplateId: int
29689
29689
  :param _WaitSwitch: 执行参数调整任务的方式,默认为 0。支持值包括:0 - 立刻执行,1 - 时间窗执行;当该值为 1 时,每次只能传一个实例(InstanceIds数量为1)
29690
29690
  :type WaitSwitch: int
@@ -29724,7 +29724,7 @@ class ModifyInstanceParamRequest(AbstractModel):
29724
29724
 
29725
29725
  @property
29726
29726
  def TemplateId(self):
29727
- """模板 ID,ParamList 和 TemplateId 必须至少传其中之一。可通过 [DescribeParamTemplateInfo](https://cloud.tencent.com/document/product/236/32660) 接口获取。
29727
+ """模板 ID,ParamList 和 TemplateId 必须至少传其中之一。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
29728
29728
  :rtype: int
29729
29729
  """
29730
29730
  return self._TemplateId
@@ -30266,7 +30266,7 @@ class ModifyParamTemplateRequest(AbstractModel):
30266
30266
 
30267
30267
  def __init__(self):
30268
30268
  r"""
30269
- :param _TemplateId: 模板 ID。可通过 [DescribeParamTemplateInfo](https://cloud.tencent.com/document/product/236/32660) 接口获取。
30269
+ :param _TemplateId: 模板 ID。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
30270
30270
  :type TemplateId: int
30271
30271
  :param _Name: 模板名称,仅支持数字、英文大小写字母、中文以及特殊字符_-./()()[]+=::@,且长度不能超过60。
30272
30272
  :type Name: str
@@ -30282,7 +30282,7 @@ class ModifyParamTemplateRequest(AbstractModel):
30282
30282
 
30283
30283
  @property
30284
30284
  def TemplateId(self):
30285
- """模板 ID。可通过 [DescribeParamTemplateInfo](https://cloud.tencent.com/document/product/236/32660) 接口获取。
30285
+ """模板 ID。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
30286
30286
  :rtype: int
30287
30287
  """
30288
30288
  return self._TemplateId
@@ -1561,13 +1561,14 @@ SpecName从DescribeSpec接口中返回的DataSpec.Name获取
1561
1561
  :type MountDiskType: int
1562
1562
  :param _HAZk: 是否是ZK高可用
1563
1563
  :type HAZk: bool
1564
- :param _CommonSpec: ZK节点
1565
- SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
1564
+ :param _CommonSpec: ZK节点SpecName从DescribeSpec接口中返回的CommonSpec结构体的Name(ZK节点)获取
1566
1565
  :type CommonSpec: :class:`tencentcloud.cdwch.v20200915.models.NodeSpec`
1567
1566
  :param _TagItems: 标签列表
1568
1567
  :type TagItems: list of Tag
1569
- :param _SecondaryZoneInfo: 副可用去信息
1568
+ :param _SecondaryZoneInfo: 副可用区信息
1570
1569
  :type SecondaryZoneInfo: list of SecondaryZoneInfo
1570
+ :param _CkDefaultUserPwd: default账号登陆实例的密码。8-16个字符,至少包含大写字母、小写字母、数字和特殊字符!@#%^*中的三种,第一个字符不能为特殊字符
1571
+ :type CkDefaultUserPwd: str
1571
1572
  """
1572
1573
  self._Zone = None
1573
1574
  self._HaFlag = None
@@ -1585,6 +1586,7 @@ SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
1585
1586
  self._CommonSpec = None
1586
1587
  self._TagItems = None
1587
1588
  self._SecondaryZoneInfo = None
1589
+ self._CkDefaultUserPwd = None
1588
1590
 
1589
1591
  @property
1590
1592
  def Zone(self):
@@ -1736,8 +1738,7 @@ SpecName从DescribeSpec接口中返回的DataSpec.Name获取
1736
1738
 
1737
1739
  @property
1738
1740
  def CommonSpec(self):
1739
- """ZK节点
1740
- SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
1741
+ """ZK节点SpecName从DescribeSpec接口中返回的CommonSpec结构体的Name(ZK节点)获取
1741
1742
  :rtype: :class:`tencentcloud.cdwch.v20200915.models.NodeSpec`
1742
1743
  """
1743
1744
  return self._CommonSpec
@@ -1759,7 +1760,7 @@ SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
1759
1760
 
1760
1761
  @property
1761
1762
  def SecondaryZoneInfo(self):
1762
- """副可用去信息
1763
+ """副可用区信息
1763
1764
  :rtype: list of SecondaryZoneInfo
1764
1765
  """
1765
1766
  return self._SecondaryZoneInfo
@@ -1768,6 +1769,17 @@ SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
1768
1769
  def SecondaryZoneInfo(self, SecondaryZoneInfo):
1769
1770
  self._SecondaryZoneInfo = SecondaryZoneInfo
1770
1771
 
1772
+ @property
1773
+ def CkDefaultUserPwd(self):
1774
+ """default账号登陆实例的密码。8-16个字符,至少包含大写字母、小写字母、数字和特殊字符!@#%^*中的三种,第一个字符不能为特殊字符
1775
+ :rtype: str
1776
+ """
1777
+ return self._CkDefaultUserPwd
1778
+
1779
+ @CkDefaultUserPwd.setter
1780
+ def CkDefaultUserPwd(self, CkDefaultUserPwd):
1781
+ self._CkDefaultUserPwd = CkDefaultUserPwd
1782
+
1771
1783
 
1772
1784
  def _deserialize(self, params):
1773
1785
  self._Zone = params.get("Zone")
@@ -1804,6 +1816,7 @@ SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
1804
1816
  obj = SecondaryZoneInfo()
1805
1817
  obj._deserialize(item)
1806
1818
  self._SecondaryZoneInfo.append(obj)
1819
+ self._CkDefaultUserPwd = params.get("CkDefaultUserPwd")
1807
1820
  memeber_set = set(params.keys())
1808
1821
  for name, value in vars(self).items():
1809
1822
  property_name = name[1:]
@@ -784,6 +784,8 @@ class CreateTaskFromActionRequest(AbstractModel):
784
784
  :type TaskActionCustomConfiguration: str
785
785
  :param _TaskPauseDuration: 演练自动暂停时间,单位分钟, 不填则默认为60
786
786
  :type TaskPauseDuration: int
787
+ :param _TaskTags: 标签列表
788
+ :type TaskTags: list of TagWithCreate
787
789
  """
788
790
  self._TaskActionId = None
789
791
  self._TaskInstances = None
@@ -792,6 +794,7 @@ class CreateTaskFromActionRequest(AbstractModel):
792
794
  self._TaskActionGeneralConfiguration = None
793
795
  self._TaskActionCustomConfiguration = None
794
796
  self._TaskPauseDuration = None
797
+ self._TaskTags = None
795
798
 
796
799
  @property
797
800
  def TaskActionId(self):
@@ -870,6 +873,17 @@ class CreateTaskFromActionRequest(AbstractModel):
870
873
  def TaskPauseDuration(self, TaskPauseDuration):
871
874
  self._TaskPauseDuration = TaskPauseDuration
872
875
 
876
+ @property
877
+ def TaskTags(self):
878
+ """标签列表
879
+ :rtype: list of TagWithCreate
880
+ """
881
+ return self._TaskTags
882
+
883
+ @TaskTags.setter
884
+ def TaskTags(self, TaskTags):
885
+ self._TaskTags = TaskTags
886
+
873
887
 
874
888
  def _deserialize(self, params):
875
889
  self._TaskActionId = params.get("TaskActionId")
@@ -879,6 +893,12 @@ class CreateTaskFromActionRequest(AbstractModel):
879
893
  self._TaskActionGeneralConfiguration = params.get("TaskActionGeneralConfiguration")
880
894
  self._TaskActionCustomConfiguration = params.get("TaskActionCustomConfiguration")
881
895
  self._TaskPauseDuration = params.get("TaskPauseDuration")
896
+ if params.get("TaskTags") is not None:
897
+ self._TaskTags = []
898
+ for item in params.get("TaskTags"):
899
+ obj = TagWithCreate()
900
+ obj._deserialize(item)
901
+ self._TaskTags.append(obj)
882
902
  memeber_set = set(params.keys())
883
903
  for name, value in vars(self).items():
884
904
  property_name = name[1:]
@@ -3987,7 +3987,7 @@ class CreateListenerRequest(AbstractModel):
3987
3987
  :type Certificate: :class:`tencentcloud.clb.v20180317.models.CertificateInput`
3988
3988
  :param _SessionExpireTime: 会话保持时间,单位:秒。可选值:30~3600,默认为0,默认不开启。此参数仅适用于TCP/UDP监听器。
3989
3989
  :type SessionExpireTime: int
3990
- :param _Scheduler: 监听器转发的方式。可选值:WRR(按权重轮询)、LEAST_CONN(按最小连接数)、IP_HASH(按 IP 地址哈希)
3990
+ :param _Scheduler: 监听器转发的方式。可选值:WRR(按权重轮询)、LEAST_CONN(按最小连接数)
3991
3991
  默认为 WRR。此参数仅适用于TCP/UDP/TCP_SSL/QUIC监听器。
3992
3992
  :type Scheduler: str
3993
3993
  :param _SniSwitch: 是否开启SNI特性,此参数仅适用于HTTPS监听器。0表示未开启,1表示开启。
@@ -4136,7 +4136,7 @@ class CreateListenerRequest(AbstractModel):
4136
4136
 
4137
4137
  @property
4138
4138
  def Scheduler(self):
4139
- """监听器转发的方式。可选值:WRR(按权重轮询)、LEAST_CONN(按最小连接数)、IP_HASH(按 IP 地址哈希)
4139
+ """监听器转发的方式。可选值:WRR(按权重轮询)、LEAST_CONN(按最小连接数)
4140
4140
  默认为 WRR。此参数仅适用于TCP/UDP/TCP_SSL/QUIC监听器。
4141
4141
  :rtype: str
4142
4142
  """
@@ -7748,7 +7748,8 @@ class CreateIndexRequest(AbstractModel):
7748
7748
 
7749
7749
  def __init__(self):
7750
7750
  r"""
7751
- :param _TopicId: 日志主题ID
7751
+ :param _TopicId: 日志主题Id。
7752
+ - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
7752
7753
  :type TopicId: str
7753
7754
  :param _Rule: 索引规则
7754
7755
  :type Rule: :class:`tencentcloud.cls.v20201016.models.RuleInfo`
@@ -7772,7 +7773,8 @@ class CreateIndexRequest(AbstractModel):
7772
7773
 
7773
7774
  @property
7774
7775
  def TopicId(self):
7775
- """日志主题ID
7776
+ """日志主题Id。
7777
+ - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
7776
7778
  :rtype: str
7777
7779
  """
7778
7780
  return self._TopicId
@@ -8119,7 +8121,9 @@ class CreateLogsetRequest(AbstractModel):
8119
8121
 
8120
8122
  def __init__(self):
8121
8123
  r"""
8122
- :param _LogsetName: 日志集名字,不能重名
8124
+ :param _LogsetName: 日志集名字。
8125
+
8126
+ - 最大支持255个字符。不支持`|`字符。
8123
8127
  :type LogsetName: str
8124
8128
  :param _Tags: 标签描述列表。最大支持10个标签键值对,并且不能有重复的键值对
8125
8129
  :type Tags: list of Tag
@@ -8132,7 +8136,9 @@ class CreateLogsetRequest(AbstractModel):
8132
8136
 
8133
8137
  @property
8134
8138
  def LogsetName(self):
8135
- """日志集名字,不能重名
8139
+ """日志集名字。
8140
+
8141
+ - 最大支持255个字符。不支持`|`字符。
8136
8142
  :rtype: str
8137
8143
  """
8138
8144
  return self._LogsetName
@@ -11549,14 +11555,16 @@ class DeleteIndexRequest(AbstractModel):
11549
11555
 
11550
11556
  def __init__(self):
11551
11557
  r"""
11552
- :param _TopicId: 日志主题ID
11558
+ :param _TopicId: 日志主题Id。
11559
+ - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
11553
11560
  :type TopicId: str
11554
11561
  """
11555
11562
  self._TopicId = None
11556
11563
 
11557
11564
  @property
11558
11565
  def TopicId(self):
11559
- """日志主题ID
11566
+ """日志主题Id。
11567
+ - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
11560
11568
  :rtype: str
11561
11569
  """
11562
11570
  return self._TopicId
@@ -11692,14 +11700,14 @@ class DeleteLogsetRequest(AbstractModel):
11692
11700
 
11693
11701
  def __init__(self):
11694
11702
  r"""
11695
- :param _LogsetId: 日志集ID
11703
+ :param _LogsetId: 日志集Id。通过 [获取日志集列表](https://cloud.tencent.com/document/product/614/58624)获取日志集Id。
11696
11704
  :type LogsetId: str
11697
11705
  """
11698
11706
  self._LogsetId = None
11699
11707
 
11700
11708
  @property
11701
11709
  def LogsetId(self):
11702
- """日志集ID
11710
+ """日志集Id。通过 [获取日志集列表](https://cloud.tencent.com/document/product/614/58624)获取日志集Id。
11703
11711
  :rtype: str
11704
11712
  """
11705
11713
  return self._LogsetId
@@ -14579,14 +14587,16 @@ class DescribeIndexRequest(AbstractModel):
14579
14587
 
14580
14588
  def __init__(self):
14581
14589
  r"""
14582
- :param _TopicId: 日志主题ID
14590
+ :param _TopicId: 日志主题Id。
14591
+ - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
14583
14592
  :type TopicId: str
14584
14593
  """
14585
14594
  self._TopicId = None
14586
14595
 
14587
14596
  @property
14588
14597
  def TopicId(self):
14589
- """日志主题ID
14598
+ """日志主题Id。
14599
+ - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
14590
14600
  :rtype: str
14591
14601
  """
14592
14602
  return self._TopicId
@@ -14615,14 +14625,15 @@ class DescribeIndexResponse(AbstractModel):
14615
14625
 
14616
14626
  def __init__(self):
14617
14627
  r"""
14618
- :param _TopicId: 日志主题ID
14628
+ :param _TopicId: 日志主题Id
14619
14629
  :type TopicId: str
14620
- :param _Status: 是否生效
14630
+ :param _Status: 索引状态。true:开启状态,false:关闭状态
14631
+ 开启后可对日志进行检索分析,将产生索引流量、索引存储及相应费用。[费用详情](https://cloud.tencent.com/document/product/614/45802#.E8.AE.A1.E8.B4.B9.E9.A1.B9)
14621
14632
  :type Status: bool
14622
14633
  :param _Rule: 索引配置信息
14623
14634
  注意:此字段可能返回 null,表示取不到有效值。
14624
14635
  :type Rule: :class:`tencentcloud.cls.v20201016.models.RuleInfo`
14625
- :param _ModifyTime: 索引修改时间,初始值为索引创建时间。
14636
+ :param _ModifyTime: 索引修改时间,初始值为索引创建时间。格式 `YYYY-MM-DD HH:MM:SS`
14626
14637
  :type ModifyTime: str
14627
14638
  :param _IncludeInternalFields: 内置保留字段(`__FILENAME__`,`__HOSTNAME__`及`__SOURCE__`)是否包含至全文索引
14628
14639
  * false:不包含
@@ -14646,7 +14657,7 @@ class DescribeIndexResponse(AbstractModel):
14646
14657
 
14647
14658
  @property
14648
14659
  def TopicId(self):
14649
- """日志主题ID
14660
+ """日志主题Id
14650
14661
  :rtype: str
14651
14662
  """
14652
14663
  return self._TopicId
@@ -14657,7 +14668,8 @@ class DescribeIndexResponse(AbstractModel):
14657
14668
 
14658
14669
  @property
14659
14670
  def Status(self):
14660
- """是否生效
14671
+ """索引状态。true:开启状态,false:关闭状态
14672
+ 开启后可对日志进行检索分析,将产生索引流量、索引存储及相应费用。[费用详情](https://cloud.tencent.com/document/product/614/45802#.E8.AE.A1.E8.B4.B9.E9.A1.B9)
14661
14673
  :rtype: bool
14662
14674
  """
14663
14675
  return self._Status
@@ -14680,7 +14692,7 @@ class DescribeIndexResponse(AbstractModel):
14680
14692
 
14681
14693
  @property
14682
14694
  def ModifyTime(self):
14683
- """索引修改时间,初始值为索引创建时间。
14695
+ """索引修改时间,初始值为索引创建时间。格式 `YYYY-MM-DD HH:MM:SS`
14684
14696
  :rtype: str
14685
14697
  """
14686
14698
  return self._ModifyTime
@@ -15451,11 +15463,12 @@ class DescribeLogsetsRequest(AbstractModel):
15451
15463
  - 按照【日志集名称】进行过滤。
15452
15464
  - 类型:String
15453
15465
  - 必选:否
15454
-
15466
+ - 通过 [获取日志集列表](https://cloud.tencent.com/document/product/614/58624)获取日志集名称。
15455
15467
  logsetId
15456
15468
  - 按照【日志集ID】进行过滤。
15457
15469
  - 类型:String
15458
15470
  - 必选:否
15471
+ - 通过 [获取日志集列表](https://cloud.tencent.com/document/product/614/58624)获取日志集Id。
15459
15472
 
15460
15473
  tagKey
15461
15474
  - 按照【标签键】进行过滤。
@@ -15484,11 +15497,12 @@ tag:tagKey
15484
15497
  - 按照【日志集名称】进行过滤。
15485
15498
  - 类型:String
15486
15499
  - 必选:否
15487
-
15500
+ - 通过 [获取日志集列表](https://cloud.tencent.com/document/product/614/58624)获取日志集名称。
15488
15501
  logsetId
15489
15502
  - 按照【日志集ID】进行过滤。
15490
15503
  - 类型:String
15491
15504
  - 必选:否
15505
+ - 通过 [获取日志集列表](https://cloud.tencent.com/document/product/614/58624)获取日志集Id。
15492
15506
 
15493
15507
  tagKey
15494
15508
  - 按照【标签键】进行过滤。
@@ -20413,7 +20427,7 @@ class LogsetInfo(AbstractModel):
20413
20427
  :type LogsetId: str
20414
20428
  :param _LogsetName: 日志集名称
20415
20429
  :type LogsetName: str
20416
- :param _CreateTime: 创建时间
20430
+ :param _CreateTime: 创建时间。格式 `YYYY-MM-DD HH:MM:SS`
20417
20431
  :type CreateTime: str
20418
20432
  :param _AssumerName: 云产品标识,日志集由其它云产品创建时,该字段会显示云产品名称,例如CDN、TKE
20419
20433
  :type AssumerName: str
@@ -20456,7 +20470,7 @@ class LogsetInfo(AbstractModel):
20456
20470
 
20457
20471
  @property
20458
20472
  def CreateTime(self):
20459
- """创建时间
20473
+ """创建时间。格式 `YYYY-MM-DD HH:MM:SS`
20460
20474
  :rtype: str
20461
20475
  """
20462
20476
  return self._CreateTime
@@ -23987,9 +24001,9 @@ class ModifyLogsetRequest(AbstractModel):
23987
24001
 
23988
24002
  def __init__(self):
23989
24003
  r"""
23990
- :param _LogsetId: 日志集ID
24004
+ :param _LogsetId: 日志集Id。通过 [获取日志集列表](https://cloud.tencent.com/document/product/614/58624)获取日志集Id。
23991
24005
  :type LogsetId: str
23992
- :param _LogsetName: 日志集名称
24006
+ :param _LogsetName: 日志集名字。- 最大支持255个字符。不支持`|`字符。
23993
24007
  :type LogsetName: str
23994
24008
  :param _Tags: 日志集的绑定的标签键值对。最大支持10个标签键值对,同一个资源只能同时绑定一个标签键。
23995
24009
  :type Tags: list of Tag
@@ -24000,7 +24014,7 @@ class ModifyLogsetRequest(AbstractModel):
24000
24014
 
24001
24015
  @property
24002
24016
  def LogsetId(self):
24003
- """日志集ID
24017
+ """日志集Id。通过 [获取日志集列表](https://cloud.tencent.com/document/product/614/58624)获取日志集Id。
24004
24018
  :rtype: str
24005
24019
  """
24006
24020
  return self._LogsetId
@@ -24011,7 +24025,7 @@ class ModifyLogsetRequest(AbstractModel):
24011
24025
 
24012
24026
  @property
24013
24027
  def LogsetName(self):
24014
- """日志集名称
24028
+ """日志集名字。- 最大支持255个字符。不支持`|`字符。
24015
24029
  :rtype: str
24016
24030
  """
24017
24031
  return self._LogsetName
@@ -647,6 +647,29 @@ class CsipClient(AbstractClient):
647
647
  raise TencentCloudSDKException(type(e).__name__, str(e))
648
648
 
649
649
 
650
+ def DescribeConfigCheckRules(self, request):
651
+ """云资源配置风险规则列表示例
652
+
653
+ :param request: Request instance for DescribeConfigCheckRules.
654
+ :type request: :class:`tencentcloud.csip.v20221121.models.DescribeConfigCheckRulesRequest`
655
+ :rtype: :class:`tencentcloud.csip.v20221121.models.DescribeConfigCheckRulesResponse`
656
+
657
+ """
658
+ try:
659
+ params = request._serialize()
660
+ headers = request.headers
661
+ body = self.call("DescribeConfigCheckRules", params, headers=headers)
662
+ response = json.loads(body)
663
+ model = models.DescribeConfigCheckRulesResponse()
664
+ model._deserialize(response["Response"])
665
+ return model
666
+ except Exception as e:
667
+ if isinstance(e, TencentCloudSDKException):
668
+ raise
669
+ else:
670
+ raise TencentCloudSDKException(type(e).__name__, str(e))
671
+
672
+
650
673
  def DescribeDbAssetInfo(self, request):
651
674
  """db资产详情
652
675