tencentcloud-sdk-python 3.0.1439__py2.py3-none-any.whl → 3.0.1441__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 (37) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/models.py +10 -6
  3. tencentcloud/batch/v20170312/models.py +83 -0
  4. tencentcloud/cdb/v20170320/models.py +4 -4
  5. tencentcloud/cdwch/v20200915/models.py +19 -6
  6. tencentcloud/cfg/v20210820/models.py +20 -0
  7. tencentcloud/cfs/v20190719/cfs_client.py +23 -0
  8. tencentcloud/cfs/v20190719/models.py +124 -0
  9. tencentcloud/clb/v20180317/models.py +2 -2
  10. tencentcloud/csip/v20221121/csip_client.py +23 -0
  11. tencentcloud/csip/v20221121/models.py +578 -4
  12. tencentcloud/dcdb/v20180411/models.py +47 -2
  13. tencentcloud/dlc/v20210125/models.py +15 -0
  14. tencentcloud/dsgc/v20190723/dsgc_client.py +1 -1
  15. tencentcloud/dsgc/v20190723/models.py +10 -10
  16. tencentcloud/emr/v20190103/models.py +15 -0
  17. tencentcloud/es/v20180416/errorcodes.py +1 -1
  18. tencentcloud/ess/v20201111/ess_client.py +16 -1
  19. tencentcloud/hunyuan/v20230901/models.py +2 -2
  20. tencentcloud/mariadb/v20170312/models.py +47 -2
  21. tencentcloud/mps/v20190612/models.py +24 -0
  22. tencentcloud/omics/v20221128/models.py +175 -0
  23. tencentcloud/organization/v20210331/models.py +306 -0
  24. tencentcloud/organization/v20210331/organization_client.py +23 -0
  25. tencentcloud/privatedns/v20201028/models.py +6 -6
  26. tencentcloud/sqlserver/v20180328/models.py +30 -0
  27. tencentcloud/tdmq/v20200217/models.py +17 -2
  28. tencentcloud/teo/v20220901/models.py +130 -0
  29. tencentcloud/trocket/v20230308/models.py +35 -20
  30. tencentcloud/tsf/v20180326/errorcodes.py +21 -21
  31. tencentcloud/tsf/v20180326/models.py +4 -4
  32. tencentcloud/vdb/v20230616/models.py +15 -0
  33. {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/METADATA +1 -1
  34. {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/RECORD +37 -37
  35. {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/LICENSE +0 -0
  36. {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/WHEEL +0 -0
  37. {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1441.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.1439'
17
+ __version__ = '3.0.1441'
@@ -13071,9 +13071,11 @@ class ScaleOutInstancesRequest(AbstractModel):
13071
13071
 
13072
13072
  def __init__(self):
13073
13073
  r"""
13074
- :param _AutoScalingGroupId: 伸缩组ID
13074
+ :param _AutoScalingGroupId: 伸缩组ID。可以通过如下方式获取可用的伸缩组ID:
13075
+ <li>通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 查询伸缩组ID。</li>
13076
+ <li>通过调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。</li>
13075
13077
  :type AutoScalingGroupId: str
13076
- :param _ScaleOutNumber: 希望扩容的实例数量。
13078
+ :param _ScaleOutNumber: 希望扩容的实例数量。该参数的静态取值范围是 [1,2000],同时该参数不得大于期望数与最大值的差值。例如伸缩组期望数为 20,最大值为 100,此时可取值范围为 [1,80]。
13077
13079
  :type ScaleOutNumber: int
13078
13080
  """
13079
13081
  self._AutoScalingGroupId = None
@@ -13081,7 +13083,9 @@ class ScaleOutInstancesRequest(AbstractModel):
13081
13083
 
13082
13084
  @property
13083
13085
  def AutoScalingGroupId(self):
13084
- """伸缩组ID
13086
+ """伸缩组ID。可以通过如下方式获取可用的伸缩组ID:
13087
+ <li>通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 查询伸缩组ID。</li>
13088
+ <li>通过调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。</li>
13085
13089
  :rtype: str
13086
13090
  """
13087
13091
  return self._AutoScalingGroupId
@@ -13092,7 +13096,7 @@ class ScaleOutInstancesRequest(AbstractModel):
13092
13096
 
13093
13097
  @property
13094
13098
  def ScaleOutNumber(self):
13095
- """希望扩容的实例数量。
13099
+ """希望扩容的实例数量。该参数的静态取值范围是 [1,2000],同时该参数不得大于期望数与最大值的差值。例如伸缩组期望数为 20,最大值为 100,此时可取值范围为 [1,80]。
13096
13100
  :rtype: int
13097
13101
  """
13098
13102
  return self._ScaleOutNumber
@@ -14092,7 +14096,7 @@ class StartInstanceRefreshRequest(AbstractModel):
14092
14096
 
14093
14097
  def __init__(self):
14094
14098
  r"""
14095
- :param _AutoScalingGroupId: 伸缩组ID。
14099
+ :param _AutoScalingGroupId: 伸缩组ID。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID
14096
14100
  :type AutoScalingGroupId: str
14097
14101
  :param _RefreshSettings: 刷新设置。
14098
14102
  :type RefreshSettings: :class:`tencentcloud.autoscaling.v20180419.models.RefreshSettings`
@@ -14107,7 +14111,7 @@ class StartInstanceRefreshRequest(AbstractModel):
14107
14111
 
14108
14112
  @property
14109
14113
  def AutoScalingGroupId(self):
14110
- """伸缩组ID。
14114
+ """伸缩组ID。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID
14111
14115
  :rtype: str
14112
14116
  """
14113
14117
  return self._AutoScalingGroupId
@@ -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:]
@@ -948,6 +948,29 @@ class CfsClient(AbstractClient):
948
948
  raise TencentCloudSDKException(type(e).__name__, str(e))
949
949
 
950
950
 
951
+ def DoDirectoryOperation(self, request):
952
+ """文件系统目录操作接口
953
+
954
+ :param request: Request instance for DoDirectoryOperation.
955
+ :type request: :class:`tencentcloud.cfs.v20190719.models.DoDirectoryOperationRequest`
956
+ :rtype: :class:`tencentcloud.cfs.v20190719.models.DoDirectoryOperationResponse`
957
+
958
+ """
959
+ try:
960
+ params = request._serialize()
961
+ headers = request.headers
962
+ body = self.call("DoDirectoryOperation", params, headers=headers)
963
+ response = json.loads(body)
964
+ model = models.DoDirectoryOperationResponse()
965
+ model._deserialize(response["Response"])
966
+ return model
967
+ except Exception as e:
968
+ if isinstance(e, TencentCloudSDKException):
969
+ raise
970
+ else:
971
+ raise TencentCloudSDKException(type(e).__name__, str(e))
972
+
973
+
951
974
  def ModifyDataFlow(self, request):
952
975
  """修改数据流动相关参数
953
976
 
@@ -6226,6 +6226,130 @@ class DescribeUserQuotaResponse(AbstractModel):
6226
6226
  self._RequestId = params.get("RequestId")
6227
6227
 
6228
6228
 
6229
+ class DoDirectoryOperationRequest(AbstractModel):
6230
+ """DoDirectoryOperation请求参数结构体
6231
+
6232
+ """
6233
+
6234
+ def __init__(self):
6235
+ r"""
6236
+ :param _FileSystemId: 文件系统Id
6237
+ :type FileSystemId: str
6238
+ :param _OpetationType: create:创建目录 check:确认目录是否存在
6239
+ :type OpetationType: str
6240
+ :param _DirectoryPath: 目录的绝对路径 默认递归创建(即如果目录中有子目录不存在,则先创建出对应子目录)
6241
+ :type DirectoryPath: str
6242
+ :param _Mode: 创建目录的权限,若不传,默认为0755 若Operation Type为check,此值无实际意义
6243
+ :type Mode: str
6244
+ """
6245
+ self._FileSystemId = None
6246
+ self._OpetationType = None
6247
+ self._DirectoryPath = None
6248
+ self._Mode = None
6249
+
6250
+ @property
6251
+ def FileSystemId(self):
6252
+ """文件系统Id
6253
+ :rtype: str
6254
+ """
6255
+ return self._FileSystemId
6256
+
6257
+ @FileSystemId.setter
6258
+ def FileSystemId(self, FileSystemId):
6259
+ self._FileSystemId = FileSystemId
6260
+
6261
+ @property
6262
+ def OpetationType(self):
6263
+ """create:创建目录 check:确认目录是否存在
6264
+ :rtype: str
6265
+ """
6266
+ return self._OpetationType
6267
+
6268
+ @OpetationType.setter
6269
+ def OpetationType(self, OpetationType):
6270
+ self._OpetationType = OpetationType
6271
+
6272
+ @property
6273
+ def DirectoryPath(self):
6274
+ """目录的绝对路径 默认递归创建(即如果目录中有子目录不存在,则先创建出对应子目录)
6275
+ :rtype: str
6276
+ """
6277
+ return self._DirectoryPath
6278
+
6279
+ @DirectoryPath.setter
6280
+ def DirectoryPath(self, DirectoryPath):
6281
+ self._DirectoryPath = DirectoryPath
6282
+
6283
+ @property
6284
+ def Mode(self):
6285
+ """创建目录的权限,若不传,默认为0755 若Operation Type为check,此值无实际意义
6286
+ :rtype: str
6287
+ """
6288
+ return self._Mode
6289
+
6290
+ @Mode.setter
6291
+ def Mode(self, Mode):
6292
+ self._Mode = Mode
6293
+
6294
+
6295
+ def _deserialize(self, params):
6296
+ self._FileSystemId = params.get("FileSystemId")
6297
+ self._OpetationType = params.get("OpetationType")
6298
+ self._DirectoryPath = params.get("DirectoryPath")
6299
+ self._Mode = params.get("Mode")
6300
+ memeber_set = set(params.keys())
6301
+ for name, value in vars(self).items():
6302
+ property_name = name[1:]
6303
+ if property_name in memeber_set:
6304
+ memeber_set.remove(property_name)
6305
+ if len(memeber_set) > 0:
6306
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
6307
+
6308
+
6309
+
6310
+ class DoDirectoryOperationResponse(AbstractModel):
6311
+ """DoDirectoryOperation返回参数结构体
6312
+
6313
+ """
6314
+
6315
+ def __init__(self):
6316
+ r"""
6317
+ :param _Result: 1:成功 0:失败 创建目录的操作,1表示创建成功,0表示创建失败。 确认目录是否存在的操作,1表示目录存在,0表示目录不存在。 说明:创建目录操作若目录已存在,也会返回创建成功。
6318
+ :type Result: int
6319
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6320
+ :type RequestId: str
6321
+ """
6322
+ self._Result = None
6323
+ self._RequestId = None
6324
+
6325
+ @property
6326
+ def Result(self):
6327
+ """1:成功 0:失败 创建目录的操作,1表示创建成功,0表示创建失败。 确认目录是否存在的操作,1表示目录存在,0表示目录不存在。 说明:创建目录操作若目录已存在,也会返回创建成功。
6328
+ :rtype: int
6329
+ """
6330
+ return self._Result
6331
+
6332
+ @Result.setter
6333
+ def Result(self, Result):
6334
+ self._Result = Result
6335
+
6336
+ @property
6337
+ def RequestId(self):
6338
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6339
+ :rtype: str
6340
+ """
6341
+ return self._RequestId
6342
+
6343
+ @RequestId.setter
6344
+ def RequestId(self, RequestId):
6345
+ self._RequestId = RequestId
6346
+
6347
+
6348
+ def _deserialize(self, params):
6349
+ self._Result = params.get("Result")
6350
+ self._RequestId = params.get("RequestId")
6351
+
6352
+
6229
6353
  class ExstraPerformanceInfo(AbstractModel):
6230
6354
  """购买完额外性能之后的值
6231
6355
 
@@ -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
  """
@@ -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