tencentcloud-sdk-python 3.0.1391__py2.py3-none-any.whl → 3.0.1393__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.
Files changed (40) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/models.py +2 -2
  3. tencentcloud/cfs/v20190719/cfs_client.py +3 -7
  4. tencentcloud/cfs/v20190719/models.py +80 -108
  5. tencentcloud/cme/v20191029/cme_client.py +0 -1
  6. tencentcloud/cme/v20191029/models.py +16 -0
  7. tencentcloud/cynosdb/v20190107/models.py +17 -17
  8. tencentcloud/dlc/v20210125/dlc_client.py +23 -0
  9. tencentcloud/dlc/v20210125/models.py +85 -0
  10. tencentcloud/domain/v20180808/models.py +2 -2
  11. tencentcloud/emr/v20190103/errorcodes.py +9 -0
  12. tencentcloud/emr/v20190103/models.py +15 -0
  13. tencentcloud/es/v20250101/es_client.py +0 -23
  14. tencentcloud/es/v20250101/models.py +1 -352
  15. tencentcloud/ess/v20201111/models.py +24 -10
  16. tencentcloud/essbasic/v20210526/models.py +10 -6
  17. tencentcloud/gs/v20191118/gs_client.py +46 -0
  18. tencentcloud/gs/v20191118/models.py +269 -0
  19. tencentcloud/hai/v20230812/models.py +8 -14
  20. tencentcloud/iotexplorer/v20190423/models.py +2 -2
  21. tencentcloud/lke/v20231130/errorcodes.py +0 -6
  22. tencentcloud/lke/v20231130/lke_client.py +0 -26
  23. tencentcloud/lke/v20231130/models.py +0 -229
  24. tencentcloud/lkeap/v20240522/lkeap_client.py +1 -5
  25. tencentcloud/monitor/v20180724/models.py +96 -2
  26. tencentcloud/monitor/v20180724/monitor_client.py +23 -0
  27. tencentcloud/mqtt/v20240516/errorcodes.py +24 -0
  28. tencentcloud/mqtt/v20240516/models.py +515 -201
  29. tencentcloud/mqtt/v20240516/mqtt_client.py +26 -3
  30. tencentcloud/mrs/v20200910/models.py +8 -0
  31. tencentcloud/mrs/v20200910/mrs_client.py +2 -0
  32. tencentcloud/postgres/v20170312/models.py +0 -405
  33. tencentcloud/postgres/v20170312/postgres_client.py +0 -25
  34. tencentcloud/pts/v20210728/models.py +30 -0
  35. tencentcloud/redis/v20180412/models.py +8 -8
  36. {tencentcloud_sdk_python-3.0.1391.dist-info → tencentcloud_sdk_python-3.0.1393.dist-info}/METADATA +1 -1
  37. {tencentcloud_sdk_python-3.0.1391.dist-info → tencentcloud_sdk_python-3.0.1393.dist-info}/RECORD +40 -40
  38. {tencentcloud_sdk_python-3.0.1391.dist-info → tencentcloud_sdk_python-3.0.1393.dist-info}/LICENSE +0 -0
  39. {tencentcloud_sdk_python-3.0.1391.dist-info → tencentcloud_sdk_python-3.0.1393.dist-info}/WHEEL +0 -0
  40. {tencentcloud_sdk_python-3.0.1391.dist-info → tencentcloud_sdk_python-3.0.1393.dist-info}/top_level.txt +0 -0
@@ -1679,7 +1679,7 @@ class CreateCfsRuleRequest(AbstractModel):
1679
1679
 
1680
1680
  def __init__(self):
1681
1681
  r"""
1682
- :param _PGroupId: 权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
1682
+ :param _PGroupId: 权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
1683
1683
  :type PGroupId: str
1684
1684
  :param _AuthClientIp: 可以填写单个 IP 或者单个网段,例如 10.1.10.11 或者 10.10.1.0/24。默认来访地址为*表示允许所有。同时需要注意,此处需填写 CVM 的内网 IP。
1685
1685
  :type AuthClientIp: str
@@ -1687,7 +1687,7 @@ class CreateCfsRuleRequest(AbstractModel):
1687
1687
  :type Priority: int
1688
1688
  :param _RWPermission: 读写权限, 值为 RO、RW;其中 RO 为只读,RW 为读写,不填默认为只读
1689
1689
  :type RWPermission: str
1690
- :param _UserPermission: 用户权限,值为 all_squash、no_all_squash、root_squash、no_root_squash
1690
+ :param _UserPermission: 用户权限,值为 all_squash、no_all_squash、root_squash、no_root_squash。默认值为root_squash
1691
1691
  all_squash:所有访问用户(含 root 用户)都会被映射为匿名用户或用户组。
1692
1692
  no_all_squash:所有访问用户(含 root 用户)均保持原有的 UID/GID 信息。
1693
1693
  root_squash:将来访的 root 用户映射为匿名用户或用户组,非 root 用户保持原有的 UID/GID 信息。
@@ -1703,7 +1703,7 @@ no_root_squash:与 no_all_squash 效果一致,所有访问用户(含 root
1703
1703
 
1704
1704
  @property
1705
1705
  def PGroupId(self):
1706
- """权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
1706
+ """权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
1707
1707
  :rtype: str
1708
1708
  """
1709
1709
  return self._PGroupId
@@ -1747,7 +1747,7 @@ no_root_squash:与 no_all_squash 效果一致,所有访问用户(含 root
1747
1747
 
1748
1748
  @property
1749
1749
  def UserPermission(self):
1750
- """用户权限,值为 all_squash、no_all_squash、root_squash、no_root_squash
1750
+ """用户权限,值为 all_squash、no_all_squash、root_squash、no_root_squash。默认值为root_squash
1751
1751
  all_squash:所有访问用户(含 root 用户)都会被映射为匿名用户或用户组。
1752
1752
  no_all_squash:所有访问用户(含 root 用户)均保持原有的 UID/GID 信息。
1753
1753
  root_squash:将来访的 root 用户映射为匿名用户或用户组,非 root 用户保持原有的 UID/GID 信息。
@@ -1903,9 +1903,9 @@ class CreateCfsSnapshotRequest(AbstractModel):
1903
1903
 
1904
1904
  def __init__(self):
1905
1905
  r"""
1906
- :param _FileSystemId: 文件系统 ID,通过查询文件系统接口获取
1906
+ :param _FileSystemId: 文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
1907
1907
  :type FileSystemId: str
1908
- :param _SnapshotName: 快照名称,不超过64字符
1908
+ :param _SnapshotName: 快照名称,支持不超过64字符长度,支持中文、数字、_、-
1909
1909
  :type SnapshotName: str
1910
1910
  :param _ResourceTags: 快照标签
1911
1911
  :type ResourceTags: list of TagInfo
@@ -1916,7 +1916,7 @@ class CreateCfsSnapshotRequest(AbstractModel):
1916
1916
 
1917
1917
  @property
1918
1918
  def FileSystemId(self):
1919
- """文件系统 ID,通过查询文件系统接口获取
1919
+ """文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
1920
1920
  :rtype: str
1921
1921
  """
1922
1922
  return self._FileSystemId
@@ -1927,7 +1927,7 @@ class CreateCfsSnapshotRequest(AbstractModel):
1927
1927
 
1928
1928
  @property
1929
1929
  def SnapshotName(self):
1930
- """快照名称,不超过64字符
1930
+ """快照名称,支持不超过64字符长度,支持中文、数字、_、-
1931
1931
  :rtype: str
1932
1932
  """
1933
1933
  return self._SnapshotName
@@ -2321,14 +2321,14 @@ class DeleteAutoSnapshotPolicyRequest(AbstractModel):
2321
2321
 
2322
2322
  def __init__(self):
2323
2323
  r"""
2324
- :param _AutoSnapshotPolicyId: 快照策略ID,查询快照策略接口获取
2324
+ :param _AutoSnapshotPolicyId: 快照策略ID,查询快照策略接口获取,[DescribeAutoSnapshotPolicies](https://cloud.tencent.com/document/api/582/80208)
2325
2325
  :type AutoSnapshotPolicyId: str
2326
2326
  """
2327
2327
  self._AutoSnapshotPolicyId = None
2328
2328
 
2329
2329
  @property
2330
2330
  def AutoSnapshotPolicyId(self):
2331
- """快照策略ID,查询快照策略接口获取
2331
+ """快照策略ID,查询快照策略接口获取,[DescribeAutoSnapshotPolicies](https://cloud.tencent.com/document/api/582/80208)
2332
2332
  :rtype: str
2333
2333
  """
2334
2334
  return self._AutoSnapshotPolicyId
@@ -2400,14 +2400,14 @@ class DeleteCfsFileSystemRequest(AbstractModel):
2400
2400
 
2401
2401
  def __init__(self):
2402
2402
  r"""
2403
- :param _FileSystemId: 文件系统 ID。说明,进行删除文件系统操作前需要先调用 DeleteMountTarget 接口删除该文件系统的挂载点,否则会删除失败。
2403
+ :param _FileSystemId: 文件系统 ID,通过[查询文件系统接口](https://cloud.tencent.com/document/api/582/38170)获取。说明,进行删除文件系统操作前需要先调用 DeleteMountTarget 接口删除该文件系统的挂载点,否则会删除失败。
2404
2404
  :type FileSystemId: str
2405
2405
  """
2406
2406
  self._FileSystemId = None
2407
2407
 
2408
2408
  @property
2409
2409
  def FileSystemId(self):
2410
- """文件系统 ID。说明,进行删除文件系统操作前需要先调用 DeleteMountTarget 接口删除该文件系统的挂载点,否则会删除失败。
2410
+ """文件系统 ID,通过[查询文件系统接口](https://cloud.tencent.com/document/api/582/38170)获取。说明,进行删除文件系统操作前需要先调用 DeleteMountTarget 接口删除该文件系统的挂载点,否则会删除失败。
2411
2411
  :rtype: str
2412
2412
  """
2413
2413
  return self._FileSystemId
@@ -2464,14 +2464,14 @@ class DeleteCfsPGroupRequest(AbstractModel):
2464
2464
 
2465
2465
  def __init__(self):
2466
2466
  r"""
2467
- :param _PGroupId: 权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
2467
+ :param _PGroupId: 权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
2468
2468
  :type PGroupId: str
2469
2469
  """
2470
2470
  self._PGroupId = None
2471
2471
 
2472
2472
  @property
2473
2473
  def PGroupId(self):
2474
- """权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
2474
+ """权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
2475
2475
  :rtype: str
2476
2476
  """
2477
2477
  return self._PGroupId
@@ -2558,9 +2558,9 @@ class DeleteCfsRuleRequest(AbstractModel):
2558
2558
 
2559
2559
  def __init__(self):
2560
2560
  r"""
2561
- :param _PGroupId: 权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
2561
+ :param _PGroupId: 权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
2562
2562
  :type PGroupId: str
2563
- :param _RuleId: 规则 ID,通过查询权限组规则接口获取
2563
+ :param _RuleId: 规则 ID,可通过[DescribeCfsRules](https://cloud.tencent.com/document/api/582/38156)接口获取
2564
2564
  :type RuleId: str
2565
2565
  """
2566
2566
  self._PGroupId = None
@@ -2568,7 +2568,7 @@ class DeleteCfsRuleRequest(AbstractModel):
2568
2568
 
2569
2569
  @property
2570
2570
  def PGroupId(self):
2571
- """权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
2571
+ """权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
2572
2572
  :rtype: str
2573
2573
  """
2574
2574
  return self._PGroupId
@@ -2579,7 +2579,7 @@ class DeleteCfsRuleRequest(AbstractModel):
2579
2579
 
2580
2580
  @property
2581
2581
  def RuleId(self):
2582
- """规则 ID,通过查询权限组规则接口获取
2582
+ """规则 ID,可通过[DescribeCfsRules](https://cloud.tencent.com/document/api/582/38156)接口获取
2583
2583
  :rtype: str
2584
2584
  """
2585
2585
  return self._RuleId
@@ -2667,9 +2667,10 @@ class DeleteCfsSnapshotRequest(AbstractModel):
2667
2667
 
2668
2668
  def __init__(self):
2669
2669
  r"""
2670
- :param _SnapshotId: 文件系统快照id,可通过查询快照列表接口获取
2670
+ :param _SnapshotId: 快照ID,可以通过[DescribeCfsSnapshots](https://cloud.tencent.com/document/api/582/80206) 查询获取
2671
2671
  :type SnapshotId: str
2672
2672
  :param _SnapshotIds: 需要删除的文件系统快照ID 列表,快照ID,跟ID列表至少填一项
2673
+ 快照ID,可以通过[DescribeCfsSnapshots](https://cloud.tencent.com/document/api/582/80206) 查询获取
2673
2674
  :type SnapshotIds: list of str
2674
2675
  """
2675
2676
  self._SnapshotId = None
@@ -2677,7 +2678,7 @@ class DeleteCfsSnapshotRequest(AbstractModel):
2677
2678
 
2678
2679
  @property
2679
2680
  def SnapshotId(self):
2680
- """文件系统快照id,可通过查询快照列表接口获取
2681
+ """快照ID,可以通过[DescribeCfsSnapshots](https://cloud.tencent.com/document/api/582/80206) 查询获取
2681
2682
  :rtype: str
2682
2683
  """
2683
2684
  return self._SnapshotId
@@ -2689,6 +2690,7 @@ class DeleteCfsSnapshotRequest(AbstractModel):
2689
2690
  @property
2690
2691
  def SnapshotIds(self):
2691
2692
  """需要删除的文件系统快照ID 列表,快照ID,跟ID列表至少填一项
2693
+ 快照ID,可以通过[DescribeCfsSnapshots](https://cloud.tencent.com/document/api/582/80206) 查询获取
2692
2694
  :rtype: list of str
2693
2695
  """
2694
2696
  return self._SnapshotIds
@@ -2904,7 +2906,7 @@ class DeleteUserQuotaRequest(AbstractModel):
2904
2906
 
2905
2907
  def __init__(self):
2906
2908
  r"""
2907
- :param _FileSystemId: 文件系统 ID,通过查询文件系统接口获取
2909
+ :param _FileSystemId: 文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
2908
2910
  :type FileSystemId: str
2909
2911
  :param _UserType: 指定配额类型,包括Uid(按用户ID限制)、Gid(按用户组ID限制)、Dir(按目录限制)
2910
2912
  :type UserType: str
@@ -2920,7 +2922,7 @@ class DeleteUserQuotaRequest(AbstractModel):
2920
2922
 
2921
2923
  @property
2922
2924
  def FileSystemId(self):
2923
- """文件系统 ID,通过查询文件系统接口获取
2925
+ """文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
2924
2926
  :rtype: str
2925
2927
  """
2926
2928
  return self._FileSystemId
@@ -3249,7 +3251,6 @@ class DescribeBucketListRequest(AbstractModel):
3249
3251
  :param _SrcService: 数据源服务商。COS: 腾讯云COS,OSS: 阿里云OSS,OBS:华为云OBS
3250
3252
  :type SrcService: str
3251
3253
  :param _SrcSecretId: 数据源账号的SecretId
3252
-
3253
3254
  :type SrcSecretId: str
3254
3255
  :param _SrcSecretKey: 数据源账号的SecretKey
3255
3256
  :type SrcSecretKey: str
@@ -3272,7 +3273,6 @@ class DescribeBucketListRequest(AbstractModel):
3272
3273
  @property
3273
3274
  def SrcSecretId(self):
3274
3275
  """数据源账号的SecretId
3275
-
3276
3276
  :rtype: str
3277
3277
  """
3278
3278
  return self._SrcSecretId
@@ -3377,7 +3377,7 @@ class DescribeCfsFileSystemClientsRequest(AbstractModel):
3377
3377
 
3378
3378
  def __init__(self):
3379
3379
  r"""
3380
- :param _FileSystemId: 文件系统 ID,通过查询文件系统接口获取
3380
+ :param _FileSystemId: 文件系统 ID,通过[查询文件系统接口](https://cloud.tencent.com/document/api/582/38170)获取
3381
3381
  :type FileSystemId: str
3382
3382
  :param _Offset: Offset 分页码,默认为0
3383
3383
  :type Offset: int
@@ -3390,7 +3390,7 @@ class DescribeCfsFileSystemClientsRequest(AbstractModel):
3390
3390
 
3391
3391
  @property
3392
3392
  def FileSystemId(self):
3393
- """文件系统 ID,通过查询文件系统接口获取
3393
+ """文件系统 ID,通过[查询文件系统接口](https://cloud.tencent.com/document/api/582/38170)获取
3394
3394
  :rtype: str
3395
3395
  """
3396
3396
  return self._FileSystemId
@@ -3734,14 +3734,14 @@ class DescribeCfsRulesRequest(AbstractModel):
3734
3734
 
3735
3735
  def __init__(self):
3736
3736
  r"""
3737
- :param _PGroupId: 权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
3737
+ :param _PGroupId: 权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
3738
3738
  :type PGroupId: str
3739
3739
  """
3740
3740
  self._PGroupId = None
3741
3741
 
3742
3742
  @property
3743
3743
  def PGroupId(self):
3744
- """权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
3744
+ """权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
3745
3745
  :rtype: str
3746
3746
  """
3747
3747
  return self._PGroupId
@@ -3939,7 +3939,7 @@ class DescribeCfsSnapshotsRequest(AbstractModel):
3939
3939
  <br>tag-key - Array of String - 是否必填:否 -(过滤条件)按照标签键进行过滤。
3940
3940
  <br>tag:tag-key - Array of String - 是否必填:否 -(过滤条件)按照标签键值对进行过滤。 tag-key使用具体的标签键进行替换。
3941
3941
  :type Filters: list of Filter
3942
- :param _OrderField: 按创建时间排序取值CreationTime
3942
+ :param _OrderField: 按创建时间排序取值
3943
3943
  :type OrderField: str
3944
3944
  :param _Order: 排序 升序或者降序
3945
3945
  :type Order: str
@@ -4017,7 +4017,7 @@ class DescribeCfsSnapshotsRequest(AbstractModel):
4017
4017
 
4018
4018
  @property
4019
4019
  def OrderField(self):
4020
- """按创建时间排序取值CreationTime
4020
+ """按创建时间排序取值
4021
4021
  :rtype: str
4022
4022
  """
4023
4023
  return self._OrderField
@@ -4150,21 +4150,7 @@ class DescribeMigrationTasksRequest(AbstractModel):
4150
4150
  :type Offset: int
4151
4151
  :param _Limit: 分页单页限制数目,默认值为20,最大值100。
4152
4152
  :type Limit: int
4153
- :param _Filters: <br><li> taskId
4154
-
4155
- 按照【迁移任务id】进行过滤。
4156
- 类型:String
4157
-
4158
- 必选:否
4159
-
4160
- <br><li> taskName
4161
-
4162
- 按照【迁移任务名字】进行模糊搜索过滤。
4163
- 类型:String
4164
-
4165
- 必选:否
4166
-
4167
- 每次请求的Filters的上限为10,Filter.Values的上限为100。
4153
+ :param _Filters: <br><li> taskId按照【迁移任务id】进行过滤。类型:String必选:否<br></li><br><li> taskName按照【迁移任务名字】进行模糊搜索过滤。类型:String必选:否每次请求的Filters的上限为10,Filter.Values的上限为100。</li>
4168
4154
  :type Filters: list of Filter
4169
4155
  """
4170
4156
  self._Offset = None
@@ -4195,21 +4181,7 @@ class DescribeMigrationTasksRequest(AbstractModel):
4195
4181
 
4196
4182
  @property
4197
4183
  def Filters(self):
4198
- """<br><li> taskId
4199
-
4200
- 按照【迁移任务id】进行过滤。
4201
- 类型:String
4202
-
4203
- 必选:否
4204
-
4205
- <br><li> taskName
4206
-
4207
- 按照【迁移任务名字】进行模糊搜索过滤。
4208
- 类型:String
4209
-
4210
- 必选:否
4211
-
4212
- 每次请求的Filters的上限为10,Filter.Values的上限为100。
4184
+ """<br><li> taskId按照【迁移任务id】进行过滤。类型:String必选:否<br></li><br><li> taskName按照【迁移任务名字】进行模糊搜索过滤。类型:String必选:否每次请求的Filters的上限为10,Filter.Values的上限为100。</li>
4213
4185
  :rtype: list of Filter
4214
4186
  """
4215
4187
  return self._Filters
@@ -4245,7 +4217,7 @@ class DescribeMigrationTasksResponse(AbstractModel):
4245
4217
 
4246
4218
  def __init__(self):
4247
4219
  r"""
4248
- :param _TotalCount: 迁移任务的数量
4220
+ :param _TotalCount: 迁移任务的总数量
4249
4221
  :type TotalCount: int
4250
4222
  :param _MigrationTasks: 迁移任务详情
4251
4223
  :type MigrationTasks: list of MigrationTaskInfo
@@ -4258,7 +4230,7 @@ class DescribeMigrationTasksResponse(AbstractModel):
4258
4230
 
4259
4231
  @property
4260
4232
  def TotalCount(self):
4261
- """迁移任务的数量
4233
+ """迁移任务的总数量
4262
4234
  :rtype: int
4263
4235
  """
4264
4236
  return self._TotalCount
@@ -4308,14 +4280,14 @@ class DescribeMountTargetsRequest(AbstractModel):
4308
4280
 
4309
4281
  def __init__(self):
4310
4282
  r"""
4311
- :param _FileSystemId: 文件系统 ID,查询文件系统列表可以获得id
4283
+ :param _FileSystemId: 文件系统 ID,[查询文件系统列表](https://cloud.tencent.com/document/api/582/38170)可以获得id
4312
4284
  :type FileSystemId: str
4313
4285
  """
4314
4286
  self._FileSystemId = None
4315
4287
 
4316
4288
  @property
4317
4289
  def FileSystemId(self):
4318
- """文件系统 ID,查询文件系统列表可以获得id
4290
+ """文件系统 ID,[查询文件系统列表](https://cloud.tencent.com/document/api/582/38170)可以获得id
4319
4291
  :rtype: str
4320
4292
  """
4321
4293
  return self._FileSystemId
@@ -4407,11 +4379,11 @@ class DescribeSnapshotOperationLogsRequest(AbstractModel):
4407
4379
 
4408
4380
  def __init__(self):
4409
4381
  r"""
4410
- :param _SnapshotId: 文件系统快照ID,通过快照创建接口获得
4382
+ :param _SnapshotId: 快照ID,可以通过[DescribeCfsSnapshots](https://cloud.tencent.com/document/api/582/80206) 查询获取
4411
4383
  :type SnapshotId: str
4412
- :param _StartTime: 起始时间
4384
+ :param _StartTime: 起始时间,格式“YYYY-MM-DD hh:mm:ss”
4413
4385
  :type StartTime: str
4414
- :param _EndTime: 结束时间
4386
+ :param _EndTime: 结束时间,格式“YYYY-MM-DD hh:mm:ss”
4415
4387
  :type EndTime: str
4416
4388
  """
4417
4389
  self._SnapshotId = None
@@ -4420,7 +4392,7 @@ class DescribeSnapshotOperationLogsRequest(AbstractModel):
4420
4392
 
4421
4393
  @property
4422
4394
  def SnapshotId(self):
4423
- """文件系统快照ID,通过快照创建接口获得
4395
+ """快照ID,可以通过[DescribeCfsSnapshots](https://cloud.tencent.com/document/api/582/80206) 查询获取
4424
4396
  :rtype: str
4425
4397
  """
4426
4398
  return self._SnapshotId
@@ -4431,7 +4403,7 @@ class DescribeSnapshotOperationLogsRequest(AbstractModel):
4431
4403
 
4432
4404
  @property
4433
4405
  def StartTime(self):
4434
- """起始时间
4406
+ """起始时间,格式“YYYY-MM-DD hh:mm:ss”
4435
4407
  :rtype: str
4436
4408
  """
4437
4409
  return self._StartTime
@@ -4442,7 +4414,7 @@ class DescribeSnapshotOperationLogsRequest(AbstractModel):
4442
4414
 
4443
4415
  @property
4444
4416
  def EndTime(self):
4445
- """结束时间
4417
+ """结束时间,格式“YYYY-MM-DD hh:mm:ss”
4446
4418
  :rtype: str
4447
4419
  """
4448
4420
  return self._EndTime
@@ -4536,7 +4508,7 @@ class DescribeUserQuotaRequest(AbstractModel):
4536
4508
 
4537
4509
  def __init__(self):
4538
4510
  r"""
4539
- :param _FileSystemId: 文件系统 ID,通过查询文件系统列表获取
4511
+ :param _FileSystemId: 文件系统 ID,通过[查询文件系统列表](https://cloud.tencent.com/document/api/582/38170)获取
4540
4512
  :type FileSystemId: str
4541
4513
  :param _Filters: 过滤条件。
4542
4514
  UserType - Array of String - 是否必填:否 -(过滤条件)按配额类型过滤。(Uid|Gid|Dir,分别对应用户,用户组,目录 )
@@ -4554,7 +4526,7 @@ UserId- Array of String - 是否必填:否 -(过滤条件)按用户id过
4554
4526
 
4555
4527
  @property
4556
4528
  def FileSystemId(self):
4557
- """文件系统 ID,通过查询文件系统列表获取
4529
+ """文件系统 ID,通过[查询文件系统列表](https://cloud.tencent.com/document/api/582/38170)获取
4558
4530
  :rtype: str
4559
4531
  """
4560
4532
  return self._FileSystemId
@@ -4821,7 +4793,7 @@ class FileSystemClient(AbstractModel):
4821
4793
  :type ClientIp: str
4822
4794
  :param _VpcId: 文件系统所属VPCID
4823
4795
  :type VpcId: str
4824
- :param _Zone: 可用区名称,例如ap-beijing-1,请参考 概览文档中的地域与可用区列表
4796
+ :param _Zone: 可用区名称,例如ap-beijing-1,参考[简介](https://cloud.tencent.com/document/api/582/38144)文档中的地域与可用区列表
4825
4797
  :type Zone: str
4826
4798
  :param _ZoneName: 可用区中文名称
4827
4799
  :type ZoneName: str
@@ -4870,7 +4842,7 @@ class FileSystemClient(AbstractModel):
4870
4842
 
4871
4843
  @property
4872
4844
  def Zone(self):
4873
- """可用区名称,例如ap-beijing-1,请参考 概览文档中的地域与可用区列表
4845
+ """可用区名称,例如ap-beijing-1,参考[简介](https://cloud.tencent.com/document/api/582/38144)文档中的地域与可用区列表
4874
4846
  :rtype: str
4875
4847
  """
4876
4848
  return self._Zone
@@ -5445,7 +5417,7 @@ class MigrationTaskInfo(AbstractModel):
5445
5417
  :type CreateTime: int
5446
5418
  :param _EndTime: 完成/终止时间
5447
5419
  :type EndTime: int
5448
- :param _Status: 迁移状态。0: 已完成;1: 进行中;2: 已终止
5420
+ :param _Status: 迁移状态。0: 已完成;1: 创建中;2: 运行中;3: 终止中;4: 已终止;5: 创建失败;6: 运行失败;7: 结束中;8: 删除中;9: 等待中
5449
5421
  :type Status: int
5450
5422
  :param _FileTotalCount: 文件数量
5451
5423
  :type FileTotalCount: int
@@ -5653,7 +5625,7 @@ class MigrationTaskInfo(AbstractModel):
5653
5625
 
5654
5626
  @property
5655
5627
  def Status(self):
5656
- """迁移状态。0: 已完成;1: 进行中;2: 已终止
5628
+ """迁移状态。0: 已完成;1: 创建中;2: 运行中;3: 终止中;4: 已终止;5: 创建失败;6: 运行失败;7: 结束中;8: 删除中;9: 等待中
5657
5629
  :rtype: int
5658
5630
  """
5659
5631
  return self._Status
@@ -5828,7 +5800,7 @@ class ModifyFileSystemAutoScaleUpRuleRequest(AbstractModel):
5828
5800
 
5829
5801
  def __init__(self):
5830
5802
  r"""
5831
- :param _FileSystemId: 文件系统id,通过查询文件系统列表获取该参数
5803
+ :param _FileSystemId: 文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
5832
5804
  :type FileSystemId: str
5833
5805
  :param _ScaleUpThreshold: 扩容阈值,范围[10-90]
5834
5806
  :type ScaleUpThreshold: int
@@ -5844,7 +5816,7 @@ class ModifyFileSystemAutoScaleUpRuleRequest(AbstractModel):
5844
5816
 
5845
5817
  @property
5846
5818
  def FileSystemId(self):
5847
- """文件系统id,通过查询文件系统列表获取该参数
5819
+ """文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
5848
5820
  :rtype: str
5849
5821
  """
5850
5822
  return self._FileSystemId
@@ -6562,7 +6534,7 @@ class SetUserQuotaRequest(AbstractModel):
6562
6534
 
6563
6535
  def __init__(self):
6564
6536
  r"""
6565
- :param _FileSystemId: 文件系统 ID,通过查询文件系统列表获取
6537
+ :param _FileSystemId: 文件系统 ID,通过[查询文件系统列表](https://cloud.tencent.com/document/api/582/38170)获取
6566
6538
  :type FileSystemId: str
6567
6539
  :param _UserType: 指定配额类型,包括Uid、Gid,Dir,分别代表用户配额,用户组配额,目录配额
6568
6540
  :type UserType: str
@@ -6584,7 +6556,7 @@ class SetUserQuotaRequest(AbstractModel):
6584
6556
 
6585
6557
  @property
6586
6558
  def FileSystemId(self):
6587
- """文件系统 ID,通过查询文件系统列表获取
6559
+ """文件系统 ID,通过[查询文件系统列表](https://cloud.tencent.com/document/api/582/38170)获取
6588
6560
  :rtype: str
6589
6561
  """
6590
6562
  return self._FileSystemId
@@ -7236,7 +7208,7 @@ class StopMigrationTaskResponse(AbstractModel):
7236
7208
  r"""
7237
7209
  :param _TaskId: 迁移任务Id
7238
7210
  :type TaskId: str
7239
- :param _Status: 迁移状态。0: 已完成;1: 进行中;2: 已终止
7211
+ :param _Status: 迁移状态。0: 已完成;1: 创建中;2: 运行中;3: 终止中;4: 已终止;5: 创建失败;6: 运行失败;7: 结束中;8: 删除中;9: 等待中
7240
7212
  :type Status: int
7241
7213
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7242
7214
  :type RequestId: str
@@ -7258,7 +7230,7 @@ class StopMigrationTaskResponse(AbstractModel):
7258
7230
 
7259
7231
  @property
7260
7232
  def Status(self):
7261
- """迁移状态。0: 已完成;1: 进行中;2: 已终止
7233
+ """迁移状态。0: 已完成;1: 创建中;2: 运行中;3: 终止中;4: 已终止;5: 创建失败;6: 运行失败;7: 结束中;8: 删除中;9: 等待中
7262
7234
  :rtype: int
7263
7235
  """
7264
7236
  return self._Status
@@ -7394,9 +7366,9 @@ class UnbindAutoSnapshotPolicyRequest(AbstractModel):
7394
7366
 
7395
7367
  def __init__(self):
7396
7368
  r"""
7397
- :param _FileSystemIds: 需要解绑的文件系统ID列表,用"," 分割,文件系统id 通创建文件系统接口获得
7369
+ :param _FileSystemIds: 需要解绑的文件系统ID列表,用"," 分割,文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
7398
7370
  :type FileSystemIds: str
7399
- :param _AutoSnapshotPolicyId: 解绑的快照ID,通过创建快照策略接口获得
7371
+ :param _AutoSnapshotPolicyId: 解绑的快照策略ID,可以通过[DescribeAutoSnapshotPolicies](https://cloud.tencent.com/document/api/582/80208) 查询获取
7400
7372
  :type AutoSnapshotPolicyId: str
7401
7373
  """
7402
7374
  self._FileSystemIds = None
@@ -7404,7 +7376,7 @@ class UnbindAutoSnapshotPolicyRequest(AbstractModel):
7404
7376
 
7405
7377
  @property
7406
7378
  def FileSystemIds(self):
7407
- """需要解绑的文件系统ID列表,用"," 分割,文件系统id 通创建文件系统接口获得
7379
+ """需要解绑的文件系统ID列表,用"," 分割,文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
7408
7380
  :rtype: str
7409
7381
  """
7410
7382
  return self._FileSystemIds
@@ -7415,7 +7387,7 @@ class UnbindAutoSnapshotPolicyRequest(AbstractModel):
7415
7387
 
7416
7388
  @property
7417
7389
  def AutoSnapshotPolicyId(self):
7418
- """解绑的快照ID,通过创建快照策略接口获得
7390
+ """解绑的快照策略ID,可以通过[DescribeAutoSnapshotPolicies](https://cloud.tencent.com/document/api/582/80208) 查询获取
7419
7391
  :rtype: str
7420
7392
  """
7421
7393
  return self._AutoSnapshotPolicyId
@@ -7488,7 +7460,7 @@ class UpdateAutoSnapshotPolicyRequest(AbstractModel):
7488
7460
 
7489
7461
  def __init__(self):
7490
7462
  r"""
7491
- :param _AutoSnapshotPolicyId: 快照策略ID,查询快照策略列表获取
7463
+ :param _AutoSnapshotPolicyId: 解绑的快照策略ID,可以通过[DescribeAutoSnapshotPolicies](https://cloud.tencent.com/document/api/582/80208) 查询获取
7492
7464
  :type AutoSnapshotPolicyId: str
7493
7465
  :param _PolicyName: 快照策略名称,不超过64个字符
7494
7466
  :type PolicyName: str
@@ -7516,7 +7488,7 @@ class UpdateAutoSnapshotPolicyRequest(AbstractModel):
7516
7488
 
7517
7489
  @property
7518
7490
  def AutoSnapshotPolicyId(self):
7519
- """快照策略ID,查询快照策略列表获取
7491
+ """解绑的快照策略ID,可以通过[DescribeAutoSnapshotPolicies](https://cloud.tencent.com/document/api/582/80208) 查询获取
7520
7492
  :rtype: str
7521
7493
  """
7522
7494
  return self._AutoSnapshotPolicyId
@@ -7672,9 +7644,9 @@ class UpdateCfsFileSystemNameRequest(AbstractModel):
7672
7644
 
7673
7645
  def __init__(self):
7674
7646
  r"""
7675
- :param _FileSystemId: 文件系统 ID
7647
+ :param _FileSystemId: 文件系统 ID,通过[查询文件系统接口](https://cloud.tencent.com/document/api/582/38170)获取
7676
7648
  :type FileSystemId: str
7677
- :param _FsName: 用户自定义文件系统名称
7649
+ :param _FsName: 用户自定义文件系统名称,64字节内的中文字母数字或者 _,-,与CreationToken 至少填一个
7678
7650
  :type FsName: str
7679
7651
  """
7680
7652
  self._FileSystemId = None
@@ -7682,7 +7654,7 @@ class UpdateCfsFileSystemNameRequest(AbstractModel):
7682
7654
 
7683
7655
  @property
7684
7656
  def FileSystemId(self):
7685
- """文件系统 ID
7657
+ """文件系统 ID,通过[查询文件系统接口](https://cloud.tencent.com/document/api/582/38170)获取
7686
7658
  :rtype: str
7687
7659
  """
7688
7660
  return self._FileSystemId
@@ -7693,7 +7665,7 @@ class UpdateCfsFileSystemNameRequest(AbstractModel):
7693
7665
 
7694
7666
  @property
7695
7667
  def FsName(self):
7696
- """用户自定义文件系统名称
7668
+ """用户自定义文件系统名称,64字节内的中文字母数字或者 _,-,与CreationToken 至少填一个
7697
7669
  :rtype: str
7698
7670
  """
7699
7671
  return self._FsName
@@ -7796,9 +7768,9 @@ class UpdateCfsFileSystemPGroupRequest(AbstractModel):
7796
7768
 
7797
7769
  def __init__(self):
7798
7770
  r"""
7799
- :param _PGroupId: 权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
7771
+ :param _PGroupId: 权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
7800
7772
  :type PGroupId: str
7801
- :param _FileSystemId: 文件系统 ID,通过查询文件系统接口获取
7773
+ :param _FileSystemId: 文件系统 ID,通过[查询文件系统接口](https://cloud.tencent.com/document/api/582/38170)获取
7802
7774
  :type FileSystemId: str
7803
7775
  """
7804
7776
  self._PGroupId = None
@@ -7806,7 +7778,7 @@ class UpdateCfsFileSystemPGroupRequest(AbstractModel):
7806
7778
 
7807
7779
  @property
7808
7780
  def PGroupId(self):
7809
- """权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
7781
+ """权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
7810
7782
  :rtype: str
7811
7783
  """
7812
7784
  return self._PGroupId
@@ -7817,7 +7789,7 @@ class UpdateCfsFileSystemPGroupRequest(AbstractModel):
7817
7789
 
7818
7790
  @property
7819
7791
  def FileSystemId(self):
7820
- """文件系统 ID,通过查询文件系统接口获取
7792
+ """文件系统 ID,通过[查询文件系统接口](https://cloud.tencent.com/document/api/582/38170)获取
7821
7793
  :rtype: str
7822
7794
  """
7823
7795
  return self._FileSystemId
@@ -7984,7 +7956,7 @@ class UpdateCfsPGroupRequest(AbstractModel):
7984
7956
 
7985
7957
  def __init__(self):
7986
7958
  r"""
7987
- :param _PGroupId: 权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
7959
+ :param _PGroupId: 权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
7988
7960
  :type PGroupId: str
7989
7961
  :param _Name: 权限组名称,1-64个字符且只能为中文,字母,数字,下划线或横线
7990
7962
  :type Name: str
@@ -7997,7 +7969,7 @@ class UpdateCfsPGroupRequest(AbstractModel):
7997
7969
 
7998
7970
  @property
7999
7971
  def PGroupId(self):
8000
- """权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
7972
+ """权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
8001
7973
  :rtype: str
8002
7974
  """
8003
7975
  return self._PGroupId
@@ -8123,9 +8095,9 @@ class UpdateCfsRuleRequest(AbstractModel):
8123
8095
 
8124
8096
  def __init__(self):
8125
8097
  r"""
8126
- :param _PGroupId: 权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
8098
+ :param _PGroupId: 权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
8127
8099
  :type PGroupId: str
8128
- :param _RuleId: 规则 ID,通过查询权限组规则接口获取
8100
+ :param _RuleId: 规则 ID,可通过[DescribeCfsRules](https://cloud.tencent.com/document/api/582/38156)接口获取
8129
8101
  :type RuleId: str
8130
8102
  :param _AuthClientIp: 可以填写单个 IP 或者单个网段,例如 10.1.10.11 或者 10.10.1.0/24。默认来访地址为*表示允许所有。同时需要注意,此处需填写 CVM 的内网 IP。
8131
8103
  :type AuthClientIp: str
@@ -8150,7 +8122,7 @@ no_root_squash:与 no_all_squash 效果一致,所有访问用户(含 root
8150
8122
 
8151
8123
  @property
8152
8124
  def PGroupId(self):
8153
- """权限组 ID,通过创建权限组接口或者创建权限组规则接口获取
8125
+ """权限组 ID,可通过[DescribeCfsPGroups接口](https://cloud.tencent.com/document/api/582/38157)获取
8154
8126
  :rtype: str
8155
8127
  """
8156
8128
  return self._PGroupId
@@ -8161,7 +8133,7 @@ no_root_squash:与 no_all_squash 效果一致,所有访问用户(含 root
8161
8133
 
8162
8134
  @property
8163
8135
  def RuleId(self):
8164
- """规则 ID,通过查询权限组规则接口获取
8136
+ """规则 ID,可通过[DescribeCfsRules](https://cloud.tencent.com/document/api/582/38156)接口获取
8165
8137
  :rtype: str
8166
8138
  """
8167
8139
  return self._RuleId
@@ -8362,9 +8334,9 @@ class UpdateCfsSnapshotAttributeRequest(AbstractModel):
8362
8334
 
8363
8335
  def __init__(self):
8364
8336
  r"""
8365
- :param _SnapshotId: 文件系统快照ID,查询文件系统快照列表获取
8337
+ :param _SnapshotId: 快照ID,可以通过[DescribeCfsSnapshots](https://cloud.tencent.com/document/api/582/80206) 查询获取
8366
8338
  :type SnapshotId: str
8367
- :param _SnapshotName: 文件系统快照名称,与AliveDays 必须填一个
8339
+ :param _SnapshotName: 文件系统快照名称,与AliveDays 必须填一个,快照名称,支持不超过64字符长度,支持中文、数字、_、-
8368
8340
  :type SnapshotName: str
8369
8341
  :param _AliveDays: 文件系统快照保留天数,与SnapshotName必须填一个,如果原来是永久保留时间,不允许修改成短期有效期
8370
8342
  :type AliveDays: int
@@ -8375,7 +8347,7 @@ class UpdateCfsSnapshotAttributeRequest(AbstractModel):
8375
8347
 
8376
8348
  @property
8377
8349
  def SnapshotId(self):
8378
- """文件系统快照ID,查询文件系统快照列表获取
8350
+ """快照ID,可以通过[DescribeCfsSnapshots](https://cloud.tencent.com/document/api/582/80206) 查询获取
8379
8351
  :rtype: str
8380
8352
  """
8381
8353
  return self._SnapshotId
@@ -8386,7 +8358,7 @@ class UpdateCfsSnapshotAttributeRequest(AbstractModel):
8386
8358
 
8387
8359
  @property
8388
8360
  def SnapshotName(self):
8389
- """文件系统快照名称,与AliveDays 必须填一个
8361
+ """文件系统快照名称,与AliveDays 必须填一个,快照名称,支持不超过64字符长度,支持中文、数字、_、-
8390
8362
  :rtype: str
8391
8363
  """
8392
8364
  return self._SnapshotName
@@ -8471,7 +8443,7 @@ class UpdateFileSystemBandwidthLimitRequest(AbstractModel):
8471
8443
 
8472
8444
  def __init__(self):
8473
8445
  r"""
8474
- :param _FileSystemId: 文件系统 ID,通过查询文件系统列表获取
8446
+ :param _FileSystemId: 文件系统 ID,可通过[DescribeCfsFileSystems](https://cloud.tencent.com/document/api/582/38170)接口获取
8475
8447
  :type FileSystemId: str
8476
8448
  :param _BandwidthLimit: 文件系统带宽,仅吞吐型可填。单位MiB/s,最小为1GiB/s,最大200GiB/s。
8477
8449
  :type BandwidthLimit: int
@@ -8481,7 +8453,7 @@ class UpdateFileSystemBandwidthLimitRequest(AbstractModel):
8481
8453
 
8482
8454
  @property
8483
8455
  def FileSystemId(self):
8484
- """文件系统 ID,通过查询文件系统列表获取
8456
+ """文件系统 ID,可通过[DescribeCfsFileSystems](https://cloud.tencent.com/document/api/582/38170)接口获取
8485
8457
  :rtype: str
8486
8458
  """
8487
8459
  return self._FileSystemId