tencentcloud-sdk-python 3.0.1381__py2.py3-none-any.whl → 3.0.1383__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/cbs/v20170312/cbs_client.py +3 -3
- tencentcloud/cbs/v20170312/errorcodes.py +9 -0
- tencentcloud/cbs/v20170312/models.py +76 -55
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +20 -0
- tencentcloud/cdwdoris/v20211228/models.py +30 -0
- tencentcloud/cfs/v20190719/cfs_client.py +2 -2
- tencentcloud/cfs/v20190719/models.py +46 -48
- tencentcloud/cfw/v20190904/cfw_client.py +1 -1
- tencentcloud/cfw/v20190904/models.py +2 -2
- tencentcloud/cvm/v20170312/models.py +36 -16
- tencentcloud/cynosdb/v20190107/models.py +252 -0
- tencentcloud/dnspod/v20210323/models.py +0 -2
- tencentcloud/emr/v20190103/models.py +15 -0
- tencentcloud/ess/v20201111/errorcodes.py +9 -0
- tencentcloud/ess/v20201111/models.py +54 -26
- tencentcloud/essbasic/v20210526/errorcodes.py +3 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/essbasic/v20210526/models.py +40 -6
- tencentcloud/gs/v20191118/models.py +30 -0
- tencentcloud/hai/v20230812/hai_client.py +8 -6
- tencentcloud/hai/v20230812/models.py +72 -84
- tencentcloud/lke/v20231130/models.py +671 -2
- tencentcloud/mps/v20190612/models.py +887 -0
- tencentcloud/mps/v20190612/mps_client.py +70 -0
- tencentcloud/postgres/v20170312/models.py +0 -158
- tencentcloud/postgres/v20170312/postgres_client.py +0 -50
- tencentcloud/privatedns/v20201028/errorcodes.py +2 -2
- tencentcloud/privatedns/v20201028/models.py +8 -8
- tencentcloud/pts/v20210728/models.py +15 -0
- tencentcloud/ssl/v20191205/errorcodes.py +24 -0
- tencentcloud/ssl/v20191205/models.py +176 -6
- tencentcloud/teo/v20220901/teo_client.py +5 -0
- tencentcloud/tke/v20180525/errorcodes.py +3 -0
- tencentcloud/tke/v20180525/models.py +15 -184
- tencentcloud/tke/v20180525/tke_client.py +0 -23
- tencentcloud/tms/v20201229/errorcodes.py +3 -0
- tencentcloud/tms/v20201229/models.py +36 -4
- tencentcloud/vpc/v20170312/errorcodes.py +6 -0
- tencentcloud/vpc/v20170312/models.py +18 -18
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/top_level.txt +0 -0
@@ -6391,6 +6391,10 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
6391
6391
|
:type InstanceStateDesc: str
|
6392
6392
|
:param _FlowMsg: 集群流程错误信息,例如:“创建失败,资源不足”
|
6393
6393
|
:type FlowMsg: str
|
6394
|
+
:param _ProcessId: 流程ProcessId
|
6395
|
+
:type ProcessId: str
|
6396
|
+
:param _JobName: Job名称
|
6397
|
+
:type JobName: str
|
6394
6398
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6395
6399
|
:type RequestId: str
|
6396
6400
|
"""
|
@@ -6400,6 +6404,8 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
6400
6404
|
self._FlowProgress = None
|
6401
6405
|
self._InstanceStateDesc = None
|
6402
6406
|
self._FlowMsg = None
|
6407
|
+
self._ProcessId = None
|
6408
|
+
self._JobName = None
|
6403
6409
|
self._RequestId = None
|
6404
6410
|
|
6405
6411
|
@property
|
@@ -6468,6 +6474,28 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
6468
6474
|
def FlowMsg(self, FlowMsg):
|
6469
6475
|
self._FlowMsg = FlowMsg
|
6470
6476
|
|
6477
|
+
@property
|
6478
|
+
def ProcessId(self):
|
6479
|
+
"""流程ProcessId
|
6480
|
+
:rtype: str
|
6481
|
+
"""
|
6482
|
+
return self._ProcessId
|
6483
|
+
|
6484
|
+
@ProcessId.setter
|
6485
|
+
def ProcessId(self, ProcessId):
|
6486
|
+
self._ProcessId = ProcessId
|
6487
|
+
|
6488
|
+
@property
|
6489
|
+
def JobName(self):
|
6490
|
+
"""Job名称
|
6491
|
+
:rtype: str
|
6492
|
+
"""
|
6493
|
+
return self._JobName
|
6494
|
+
|
6495
|
+
@JobName.setter
|
6496
|
+
def JobName(self, JobName):
|
6497
|
+
self._JobName = JobName
|
6498
|
+
|
6471
6499
|
@property
|
6472
6500
|
def RequestId(self):
|
6473
6501
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -6487,6 +6515,8 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
6487
6515
|
self._FlowProgress = params.get("FlowProgress")
|
6488
6516
|
self._InstanceStateDesc = params.get("InstanceStateDesc")
|
6489
6517
|
self._FlowMsg = params.get("FlowMsg")
|
6518
|
+
self._ProcessId = params.get("ProcessId")
|
6519
|
+
self._JobName = params.get("JobName")
|
6490
6520
|
self._RequestId = params.get("RequestId")
|
6491
6521
|
|
6492
6522
|
|
@@ -722,7 +722,7 @@ class CfsClient(AbstractClient):
|
|
722
722
|
|
723
723
|
|
724
724
|
def ModifyFileSystemAutoScaleUpRule(self, request):
|
725
|
-
"""
|
725
|
+
"""用来设置文件系统扩容策略,,该接口只支持turbo文件系统
|
726
726
|
|
727
727
|
:param request: Request instance for ModifyFileSystemAutoScaleUpRule.
|
728
728
|
:type request: :class:`tencentcloud.cfs.v20190719.models.ModifyFileSystemAutoScaleUpRuleRequest`
|
@@ -745,7 +745,7 @@ class CfsClient(AbstractClient):
|
|
745
745
|
|
746
746
|
|
747
747
|
def ScaleUpFileSystem(self, request):
|
748
|
-
"""该接口用于对turbo
|
748
|
+
"""该接口用于对turbo 文件系统扩容使用,该接口只支持扩容不支持缩容。turbo标准型扩容步长是10240GIB,turbo性能型扩容步长是5120GIB
|
749
749
|
|
750
750
|
:param request: Request instance for ScaleUpFileSystem.
|
751
751
|
:type request: :class:`tencentcloud.cfs.v20190719.models.ScaleUpFileSystemRequest`
|
@@ -1069,15 +1069,15 @@ class CreateCfsFileSystemRequest(AbstractModel):
|
|
1069
1069
|
:type Zone: str
|
1070
1070
|
:param _NetInterface: 网络类型,可选值为 VPC,CCN;其中 VPC 为私有网络, CCN 为云联网。通用标准型/性能型请选择VPC,Turbo标准型/性能型请选择CCN。
|
1071
1071
|
:type NetInterface: str
|
1072
|
-
:param _PGroupId: 权限组 ID
|
1072
|
+
:param _PGroupId: 权限组 ID,pgroupbasic 是默认权限组
|
1073
1073
|
:type PGroupId: str
|
1074
|
-
:param _Protocol: 文件系统协议类型, 值为 NFS、CIFS、TURBO ; 若留空则默认为 NFS协议,turbo系列必须选择
|
1074
|
+
:param _Protocol: 文件系统协议类型, 值为 NFS、CIFS、TURBO ; 若留空则默认为 NFS协议,turbo系列必须选择TURBO,不支持NFS、CIFS
|
1075
1075
|
:type Protocol: str
|
1076
1076
|
:param _StorageType: 文件系统存储类型,默认值为 SD ;其中 SD 为通用标准型存储, HP为通用性能型存储, TB为Turbo标准型, TP 为Turbo性能型。
|
1077
1077
|
:type StorageType: str
|
1078
|
-
:param _VpcId: 私有网络(VPC) ID,若网络类型选择的是VPC
|
1078
|
+
:param _VpcId: 私有网络(VPC) ID,若网络类型选择的是VPC,该字段为必填.通过查询私有网络接口获取
|
1079
1079
|
:type VpcId: str
|
1080
|
-
:param _SubnetId: 子网 ID,若网络类型选择的是VPC
|
1080
|
+
:param _SubnetId: 子网 ID,若网络类型选择的是VPC,该字段为必填。通过查询子网接口获取
|
1081
1081
|
:type SubnetId: str
|
1082
1082
|
:param _MountIP: 指定IP地址,仅VPC网络支持;若不填写、将在该子网下随机分配 IP,Turbo系列当前不支持指定
|
1083
1083
|
:type MountIP: str
|
@@ -1087,17 +1087,17 @@ class CreateCfsFileSystemRequest(AbstractModel):
|
|
1087
1087
|
:type ResourceTags: list of TagInfo
|
1088
1088
|
:param _ClientToken: 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。用于保证请求幂等性的字符串失效时间为2小时。
|
1089
1089
|
:type ClientToken: str
|
1090
|
-
:param _CcnId: 云联网ID, 若网络类型选择的是CCN
|
1090
|
+
:param _CcnId: 云联网ID, 若网络类型选择的是CCN,该字段为必填;通过查询云联网列表接口获取
|
1091
1091
|
:type CcnId: str
|
1092
1092
|
:param _CidrBlock: 云联网中CFS使用的网段, 若网络类型选择的是Ccn,该字段为必填,且不能和Ccn中已经绑定的网段冲突
|
1093
1093
|
:type CidrBlock: str
|
1094
1094
|
:param _Capacity: 文件系统容量,turbo系列必填,单位为GiB。 turbo标准型单位GB,起售20TiB,即20480 GiB;扩容步长20TiB,即20480 GiB。turbo性能型起售10TiB,即10240 GiB;扩容步长10TiB,10240 GiB。
|
1095
1095
|
:type Capacity: int
|
1096
|
-
:param _SnapshotId: 文件系统快照ID
|
1096
|
+
:param _SnapshotId: 文件系统快照ID,通过查询快照列表获取该参数
|
1097
1097
|
:type SnapshotId: str
|
1098
|
-
:param _AutoSnapshotPolicyId: 定期快照策略ID
|
1098
|
+
:param _AutoSnapshotPolicyId: 定期快照策略ID,通过查询快照策略信息获取
|
1099
1099
|
:type AutoSnapshotPolicyId: str
|
1100
|
-
:param _EnableAutoScaleUp: 是否开启默认扩容,仅
|
1100
|
+
:param _EnableAutoScaleUp: 是否开启默认扩容,仅turbo类型文件存储支持
|
1101
1101
|
:type EnableAutoScaleUp: bool
|
1102
1102
|
:param _CfsVersion: v1.5:创建普通版的通用文件系统;
|
1103
1103
|
v3.1:创建增强版的通用文件系统
|
@@ -1147,7 +1147,7 @@ v3.1:创建增强版的通用文件系统
|
|
1147
1147
|
|
1148
1148
|
@property
|
1149
1149
|
def PGroupId(self):
|
1150
|
-
"""权限组 ID
|
1150
|
+
"""权限组 ID,pgroupbasic 是默认权限组
|
1151
1151
|
:rtype: str
|
1152
1152
|
"""
|
1153
1153
|
return self._PGroupId
|
@@ -1158,7 +1158,7 @@ v3.1:创建增强版的通用文件系统
|
|
1158
1158
|
|
1159
1159
|
@property
|
1160
1160
|
def Protocol(self):
|
1161
|
-
"""文件系统协议类型, 值为 NFS、CIFS、TURBO ; 若留空则默认为 NFS协议,turbo系列必须选择
|
1161
|
+
"""文件系统协议类型, 值为 NFS、CIFS、TURBO ; 若留空则默认为 NFS协议,turbo系列必须选择TURBO,不支持NFS、CIFS
|
1162
1162
|
:rtype: str
|
1163
1163
|
"""
|
1164
1164
|
return self._Protocol
|
@@ -1180,7 +1180,7 @@ v3.1:创建增强版的通用文件系统
|
|
1180
1180
|
|
1181
1181
|
@property
|
1182
1182
|
def VpcId(self):
|
1183
|
-
"""私有网络(VPC) ID,若网络类型选择的是VPC
|
1183
|
+
"""私有网络(VPC) ID,若网络类型选择的是VPC,该字段为必填.通过查询私有网络接口获取
|
1184
1184
|
:rtype: str
|
1185
1185
|
"""
|
1186
1186
|
return self._VpcId
|
@@ -1191,7 +1191,7 @@ v3.1:创建增强版的通用文件系统
|
|
1191
1191
|
|
1192
1192
|
@property
|
1193
1193
|
def SubnetId(self):
|
1194
|
-
"""子网 ID,若网络类型选择的是VPC
|
1194
|
+
"""子网 ID,若网络类型选择的是VPC,该字段为必填。通过查询子网接口获取
|
1195
1195
|
:rtype: str
|
1196
1196
|
"""
|
1197
1197
|
return self._SubnetId
|
@@ -1246,7 +1246,7 @@ v3.1:创建增强版的通用文件系统
|
|
1246
1246
|
|
1247
1247
|
@property
|
1248
1248
|
def CcnId(self):
|
1249
|
-
"""云联网ID, 若网络类型选择的是CCN
|
1249
|
+
"""云联网ID, 若网络类型选择的是CCN,该字段为必填;通过查询云联网列表接口获取
|
1250
1250
|
:rtype: str
|
1251
1251
|
"""
|
1252
1252
|
return self._CcnId
|
@@ -1279,7 +1279,7 @@ v3.1:创建增强版的通用文件系统
|
|
1279
1279
|
|
1280
1280
|
@property
|
1281
1281
|
def SnapshotId(self):
|
1282
|
-
"""文件系统快照ID
|
1282
|
+
"""文件系统快照ID,通过查询快照列表获取该参数
|
1283
1283
|
:rtype: str
|
1284
1284
|
"""
|
1285
1285
|
return self._SnapshotId
|
@@ -1290,7 +1290,7 @@ v3.1:创建增强版的通用文件系统
|
|
1290
1290
|
|
1291
1291
|
@property
|
1292
1292
|
def AutoSnapshotPolicyId(self):
|
1293
|
-
"""定期快照策略ID
|
1293
|
+
"""定期快照策略ID,通过查询快照策略信息获取
|
1294
1294
|
:rtype: str
|
1295
1295
|
"""
|
1296
1296
|
return self._AutoSnapshotPolicyId
|
@@ -1301,7 +1301,7 @@ v3.1:创建增强版的通用文件系统
|
|
1301
1301
|
|
1302
1302
|
@property
|
1303
1303
|
def EnableAutoScaleUp(self):
|
1304
|
-
"""是否开启默认扩容,仅
|
1304
|
+
"""是否开启默认扩容,仅turbo类型文件存储支持
|
1305
1305
|
:rtype: bool
|
1306
1306
|
"""
|
1307
1307
|
return self._EnableAutoScaleUp
|
@@ -2309,14 +2309,14 @@ class DeleteAutoSnapshotPolicyRequest(AbstractModel):
|
|
2309
2309
|
|
2310
2310
|
def __init__(self):
|
2311
2311
|
r"""
|
2312
|
-
:param _AutoSnapshotPolicyId: 快照策略ID
|
2312
|
+
:param _AutoSnapshotPolicyId: 快照策略ID,查询快照策略接口获取
|
2313
2313
|
:type AutoSnapshotPolicyId: str
|
2314
2314
|
"""
|
2315
2315
|
self._AutoSnapshotPolicyId = None
|
2316
2316
|
|
2317
2317
|
@property
|
2318
2318
|
def AutoSnapshotPolicyId(self):
|
2319
|
-
"""快照策略ID
|
2319
|
+
"""快照策略ID,查询快照策略接口获取
|
2320
2320
|
:rtype: str
|
2321
2321
|
"""
|
2322
2322
|
return self._AutoSnapshotPolicyId
|
@@ -3923,11 +3923,11 @@ class DescribeCfsSnapshotsRequest(AbstractModel):
|
|
3923
3923
|
<br>FileSystemId - Array of String - 是否必填:否 -(过滤条件)按文件系统ID过滤。
|
3924
3924
|
<br>FsName - Array of String - 是否必填:否 -(过滤条件)按文件系统名过滤。
|
3925
3925
|
<br>Status - Array of String - 是否必填:否 -(过滤条件)按照快照状态过滤
|
3926
|
-
(creating:表示创建中 | available:表示可用。| rollbacking:表示回滚。| rollbacking_new
|
3926
|
+
(creating:表示创建中 | available:表示可用。| rollbacking:表示回滚。| rollbacking_new:表示由快照创建新文件系统中| create-failed 创建失败)
|
3927
3927
|
<br>tag-key - Array of String - 是否必填:否 -(过滤条件)按照标签键进行过滤。
|
3928
3928
|
<br>tag:tag-key - Array of String - 是否必填:否 -(过滤条件)按照标签键值对进行过滤。 tag-key使用具体的标签键进行替换。
|
3929
3929
|
:type Filters: list of Filter
|
3930
|
-
:param _OrderField:
|
3930
|
+
:param _OrderField: 按创建时间排序取值CreationTime
|
3931
3931
|
:type OrderField: str
|
3932
3932
|
:param _Order: 排序 升序或者降序
|
3933
3933
|
:type Order: str
|
@@ -3992,7 +3992,7 @@ class DescribeCfsSnapshotsRequest(AbstractModel):
|
|
3992
3992
|
<br>FileSystemId - Array of String - 是否必填:否 -(过滤条件)按文件系统ID过滤。
|
3993
3993
|
<br>FsName - Array of String - 是否必填:否 -(过滤条件)按文件系统名过滤。
|
3994
3994
|
<br>Status - Array of String - 是否必填:否 -(过滤条件)按照快照状态过滤
|
3995
|
-
(creating:表示创建中 | available:表示可用。| rollbacking:表示回滚。| rollbacking_new
|
3995
|
+
(creating:表示创建中 | available:表示可用。| rollbacking:表示回滚。| rollbacking_new:表示由快照创建新文件系统中| create-failed 创建失败)
|
3996
3996
|
<br>tag-key - Array of String - 是否必填:否 -(过滤条件)按照标签键进行过滤。
|
3997
3997
|
<br>tag:tag-key - Array of String - 是否必填:否 -(过滤条件)按照标签键值对进行过滤。 tag-key使用具体的标签键进行替换。
|
3998
3998
|
:rtype: list of Filter
|
@@ -4005,7 +4005,7 @@ class DescribeCfsSnapshotsRequest(AbstractModel):
|
|
4005
4005
|
|
4006
4006
|
@property
|
4007
4007
|
def OrderField(self):
|
4008
|
-
"""
|
4008
|
+
"""按创建时间排序取值CreationTime
|
4009
4009
|
:rtype: str
|
4010
4010
|
"""
|
4011
4011
|
return self._OrderField
|
@@ -4524,15 +4524,15 @@ class DescribeUserQuotaRequest(AbstractModel):
|
|
4524
4524
|
|
4525
4525
|
def __init__(self):
|
4526
4526
|
r"""
|
4527
|
-
:param _FileSystemId: 文件系统 ID
|
4527
|
+
:param _FileSystemId: 文件系统 ID,通过查询文件系统列表获取
|
4528
4528
|
:type FileSystemId: str
|
4529
4529
|
:param _Filters: 过滤条件。
|
4530
|
-
UserType - Array of String - 是否必填:否 -(过滤条件)按配额类型过滤。(Uid|Gid|Dir )
|
4531
|
-
UserId- Array of String - 是否必填:否
|
4530
|
+
UserType - Array of String - 是否必填:否 -(过滤条件)按配额类型过滤。(Uid|Gid|Dir,分别对应用户,用户组,目录 )
|
4531
|
+
UserId- Array of String - 是否必填:否 -(过滤条件)按用户id过滤。
|
4532
4532
|
:type Filters: list of Filter
|
4533
|
-
:param _Offset: Offset
|
4533
|
+
:param _Offset: Offset 分页码,默认值0
|
4534
4534
|
:type Offset: int
|
4535
|
-
:param _Limit: Limit 页面大小,可填范围为大于0
|
4535
|
+
:param _Limit: Limit 页面大小,可填范围为大于0的整数,默认值是10
|
4536
4536
|
:type Limit: int
|
4537
4537
|
"""
|
4538
4538
|
self._FileSystemId = None
|
@@ -4542,7 +4542,7 @@ UserId- Array of String - 是否必填:否 -(过滤条件)按id过滤。
|
|
4542
4542
|
|
4543
4543
|
@property
|
4544
4544
|
def FileSystemId(self):
|
4545
|
-
"""文件系统 ID
|
4545
|
+
"""文件系统 ID,通过查询文件系统列表获取
|
4546
4546
|
:rtype: str
|
4547
4547
|
"""
|
4548
4548
|
return self._FileSystemId
|
@@ -4554,8 +4554,8 @@ UserId- Array of String - 是否必填:否 -(过滤条件)按id过滤。
|
|
4554
4554
|
@property
|
4555
4555
|
def Filters(self):
|
4556
4556
|
"""过滤条件。
|
4557
|
-
UserType - Array of String - 是否必填:否 -(过滤条件)按配额类型过滤。(Uid|Gid|Dir )
|
4558
|
-
UserId- Array of String - 是否必填:否
|
4557
|
+
UserType - Array of String - 是否必填:否 -(过滤条件)按配额类型过滤。(Uid|Gid|Dir,分别对应用户,用户组,目录 )
|
4558
|
+
UserId- Array of String - 是否必填:否 -(过滤条件)按用户id过滤。
|
4559
4559
|
:rtype: list of Filter
|
4560
4560
|
"""
|
4561
4561
|
return self._Filters
|
@@ -4566,7 +4566,7 @@ UserId- Array of String - 是否必填:否 -(过滤条件)按id过滤。
|
|
4566
4566
|
|
4567
4567
|
@property
|
4568
4568
|
def Offset(self):
|
4569
|
-
"""Offset
|
4569
|
+
"""Offset 分页码,默认值0
|
4570
4570
|
:rtype: int
|
4571
4571
|
"""
|
4572
4572
|
return self._Offset
|
@@ -4577,7 +4577,7 @@ UserId- Array of String - 是否必填:否 -(过滤条件)按id过滤。
|
|
4577
4577
|
|
4578
4578
|
@property
|
4579
4579
|
def Limit(self):
|
4580
|
-
"""Limit 页面大小,可填范围为大于0
|
4580
|
+
"""Limit 页面大小,可填范围为大于0的整数,默认值是10
|
4581
4581
|
:rtype: int
|
4582
4582
|
"""
|
4583
4583
|
return self._Limit
|
@@ -5816,14 +5816,13 @@ class ModifyFileSystemAutoScaleUpRuleRequest(AbstractModel):
|
|
5816
5816
|
|
5817
5817
|
def __init__(self):
|
5818
5818
|
r"""
|
5819
|
-
:param _FileSystemId: 文件系统id
|
5819
|
+
:param _FileSystemId: 文件系统id,通过查询文件系统列表获取该参数
|
5820
5820
|
:type FileSystemId: str
|
5821
5821
|
:param _ScaleUpThreshold: 扩容阈值,范围[10-90]
|
5822
5822
|
:type ScaleUpThreshold: int
|
5823
5823
|
:param _TargetThreshold: 扩容后目标阈值,范围[10-90],该值要小于ScaleUpThreshold
|
5824
5824
|
:type TargetThreshold: int
|
5825
|
-
:param _Status: 规则状态0:关闭,1
|
5826
|
-
|
5825
|
+
:param _Status: 规则状态0:关闭,1 开启;不传保留原状态
|
5827
5826
|
:type Status: int
|
5828
5827
|
"""
|
5829
5828
|
self._FileSystemId = None
|
@@ -5833,7 +5832,7 @@ class ModifyFileSystemAutoScaleUpRuleRequest(AbstractModel):
|
|
5833
5832
|
|
5834
5833
|
@property
|
5835
5834
|
def FileSystemId(self):
|
5836
|
-
"""文件系统id
|
5835
|
+
"""文件系统id,通过查询文件系统列表获取该参数
|
5837
5836
|
:rtype: str
|
5838
5837
|
"""
|
5839
5838
|
return self._FileSystemId
|
@@ -5866,8 +5865,7 @@ class ModifyFileSystemAutoScaleUpRuleRequest(AbstractModel):
|
|
5866
5865
|
|
5867
5866
|
@property
|
5868
5867
|
def Status(self):
|
5869
|
-
"""规则状态0:关闭,1
|
5870
|
-
|
5868
|
+
"""规则状态0:关闭,1 开启;不传保留原状态
|
5871
5869
|
:rtype: int
|
5872
5870
|
"""
|
5873
5871
|
return self._Status
|
@@ -6443,7 +6441,7 @@ class ScaleUpFileSystemRequest(AbstractModel):
|
|
6443
6441
|
|
6444
6442
|
def __init__(self):
|
6445
6443
|
r"""
|
6446
|
-
:param _FileSystemId: 文件系统Id
|
6444
|
+
:param _FileSystemId: 文件系统Id,该参数通过查询文件系统列表接口获取
|
6447
6445
|
:type FileSystemId: str
|
6448
6446
|
:param _TargetCapacity: 扩容的目标容量(单位GiB)
|
6449
6447
|
:type TargetCapacity: int
|
@@ -6453,7 +6451,7 @@ class ScaleUpFileSystemRequest(AbstractModel):
|
|
6453
6451
|
|
6454
6452
|
@property
|
6455
6453
|
def FileSystemId(self):
|
6456
|
-
"""文件系统Id
|
6454
|
+
"""文件系统Id,该参数通过查询文件系统列表接口获取
|
6457
6455
|
:rtype: str
|
6458
6456
|
"""
|
6459
6457
|
return self._FileSystemId
|
@@ -6552,7 +6550,7 @@ class SetUserQuotaRequest(AbstractModel):
|
|
6552
6550
|
|
6553
6551
|
def __init__(self):
|
6554
6552
|
r"""
|
6555
|
-
:param _FileSystemId: 文件系统 ID
|
6553
|
+
:param _FileSystemId: 文件系统 ID,通过查询文件系统列表获取
|
6556
6554
|
:type FileSystemId: str
|
6557
6555
|
:param _UserType: 指定配额类型,包括Uid、Gid,Dir,分别代表用户配额,用户组配额,目录配额
|
6558
6556
|
:type UserType: str
|
@@ -6574,7 +6572,7 @@ class SetUserQuotaRequest(AbstractModel):
|
|
6574
6572
|
|
6575
6573
|
@property
|
6576
6574
|
def FileSystemId(self):
|
6577
|
-
"""文件系统 ID
|
6575
|
+
"""文件系统 ID,通过查询文件系统列表获取
|
6578
6576
|
:rtype: str
|
6579
6577
|
"""
|
6580
6578
|
return self._FileSystemId
|
@@ -6771,7 +6769,7 @@ class SnapshotInfo(AbstractModel):
|
|
6771
6769
|
:type Size: int
|
6772
6770
|
:param _AliveDay: 保留时长天
|
6773
6771
|
:type AliveDay: int
|
6774
|
-
:param _Percent: 快照进度百分比,1表示1%
|
6772
|
+
:param _Percent: 快照进度百分比,1表示1% 范围1-100
|
6775
6773
|
:type Percent: int
|
6776
6774
|
:param _AppId: 账号ID
|
6777
6775
|
:type AppId: int
|
@@ -6894,7 +6892,7 @@ class SnapshotInfo(AbstractModel):
|
|
6894
6892
|
|
6895
6893
|
@property
|
6896
6894
|
def Percent(self):
|
6897
|
-
"""快照进度百分比,1表示1%
|
6895
|
+
"""快照进度百分比,1表示1% 范围1-100
|
6898
6896
|
:rtype: int
|
6899
6897
|
"""
|
6900
6898
|
return self._Percent
|
@@ -7897,7 +7895,7 @@ class UpdateCfsFileSystemSizeLimitRequest(AbstractModel):
|
|
7897
7895
|
r"""
|
7898
7896
|
:param _FsLimit: 文件系统容量限制大小,输入范围0-1073741824, 单位为GB;其中输入值为0时,表示不限制文件系统容量。
|
7899
7897
|
:type FsLimit: int
|
7900
|
-
:param _FileSystemId: 文件系统ID
|
7898
|
+
:param _FileSystemId: 文件系统ID,目前仅支持标准型文件系统。该参数通过查询文件系统列表获取
|
7901
7899
|
:type FileSystemId: str
|
7902
7900
|
"""
|
7903
7901
|
self._FsLimit = None
|
@@ -7916,7 +7914,7 @@ class UpdateCfsFileSystemSizeLimitRequest(AbstractModel):
|
|
7916
7914
|
|
7917
7915
|
@property
|
7918
7916
|
def FileSystemId(self):
|
7919
|
-
"""文件系统ID
|
7917
|
+
"""文件系统ID,目前仅支持标准型文件系统。该参数通过查询文件系统列表获取
|
7920
7918
|
:rtype: str
|
7921
7919
|
"""
|
7922
7920
|
return self._FileSystemId
|
@@ -8461,7 +8459,7 @@ class UpdateFileSystemBandwidthLimitRequest(AbstractModel):
|
|
8461
8459
|
|
8462
8460
|
def __init__(self):
|
8463
8461
|
r"""
|
8464
|
-
:param _FileSystemId: 文件系统 ID
|
8462
|
+
:param _FileSystemId: 文件系统 ID,通过查询文件系统列表获取
|
8465
8463
|
:type FileSystemId: str
|
8466
8464
|
:param _BandwidthLimit: 文件系统带宽,仅吞吐型可填。单位MiB/s,最小为1GiB/s,最大200GiB/s。
|
8467
8465
|
:type BandwidthLimit: int
|
@@ -8471,7 +8469,7 @@ class UpdateFileSystemBandwidthLimitRequest(AbstractModel):
|
|
8471
8469
|
|
8472
8470
|
@property
|
8473
8471
|
def FileSystemId(self):
|
8474
|
-
"""文件系统 ID
|
8472
|
+
"""文件系统 ID,通过查询文件系统列表获取
|
8475
8473
|
:rtype: str
|
8476
8474
|
"""
|
8477
8475
|
return self._FileSystemId
|
@@ -1459,7 +1459,7 @@ class CfwClient(AbstractClient):
|
|
1459
1459
|
|
1460
1460
|
|
1461
1461
|
def DescribeSwitchLists(self, request):
|
1462
|
-
"""
|
1462
|
+
"""防火墙开关列表,请换用DescribeFwEdgeIps
|
1463
1463
|
|
1464
1464
|
:param request: Request instance for DescribeSwitchLists.
|
1465
1465
|
:type request: :class:`tencentcloud.cfw.v20190904.models.DescribeSwitchListsRequest`
|
@@ -23976,7 +23976,7 @@ drop:拒绝
|
|
23976
23976
|
:type ServiceTemplateId: str
|
23977
23977
|
:param _Id: (入参时无需填写,自动生成)规则对应的唯一id
|
23978
23978
|
:type Id: str
|
23979
|
-
:param _Enable:
|
23979
|
+
:param _Enable: (入参时Enable无意义;由通用配置中新增规则启用状态控制)
|
23980
23980
|
规则状态,true表示启用,false表示禁用
|
23981
23981
|
:type Enable: str
|
23982
23982
|
:param _Uid: 规则对应的唯一内部id
|
@@ -24135,7 +24135,7 @@ drop:拒绝
|
|
24135
24135
|
|
24136
24136
|
@property
|
24137
24137
|
def Enable(self):
|
24138
|
-
"""
|
24138
|
+
"""(入参时Enable无意义;由通用配置中新增规则启用状态控制)
|
24139
24139
|
规则状态,true表示启用,false表示禁用
|
24140
24140
|
:rtype: str
|
24141
24141
|
"""
|
@@ -10954,30 +10954,40 @@ class ImportImageRequest(AbstractModel):
|
|
10954
10954
|
|
10955
10955
|
def __init__(self):
|
10956
10956
|
r"""
|
10957
|
-
:param _Architecture:
|
10957
|
+
:param _Architecture: 导入镜像的操作系统架构。
|
10958
|
+
取值范围包括:`x86_64` 、`i386`、`arm_64`
|
10958
10959
|
:type Architecture: str
|
10959
|
-
:param _OsType:
|
10960
|
+
:param _OsType: 导入镜像的操作系统类型 。
|
10961
|
+
可通过 [DescribeImportImageOs](https://cloud.tencent.com/document/api/213/15718) 接口返回值中的`ImportImageOsListSupported`获取。
|
10960
10962
|
:type OsType: str
|
10961
|
-
:param _OsVersion:
|
10963
|
+
:param _OsVersion: 导入镜像的操作系统版本。
|
10964
|
+
可通过 [DescribeImportImageOs](https://cloud.tencent.com/document/api/213/15718) 接口返回值中的`ImportImageOsVersionSet`获取。
|
10962
10965
|
:type OsVersion: str
|
10963
10966
|
:param _ImageUrl: 导入镜像存放的cos地址
|
10964
10967
|
:type ImageUrl: str
|
10965
|
-
:param _ImageName:
|
10968
|
+
:param _ImageName: 镜像名称。
|
10969
|
+
最多支持 60 个字符。
|
10966
10970
|
:type ImageName: str
|
10967
|
-
:param _ImageDescription:
|
10971
|
+
:param _ImageDescription: 镜像描述。
|
10972
|
+
最多支持 256 个字符。
|
10968
10973
|
:type ImageDescription: str
|
10969
|
-
:param _DryRun:
|
10974
|
+
:param _DryRun: 只检查参数,不执行任务。
|
10975
|
+
默认值:false
|
10970
10976
|
:type DryRun: bool
|
10971
10977
|
:param _Force: 是否强制导入,参考[强制导入镜像](https://cloud.tencent.com/document/product/213/12849)
|
10978
|
+
默认值:false
|
10972
10979
|
:type Force: bool
|
10973
10980
|
:param _TagSpecification: 标签描述列表。通过指定该参数可以同时绑定标签到自定义镜像。
|
10974
10981
|
:type TagSpecification: list of TagSpecification
|
10975
10982
|
:param _LicenseType: 导入镜像后,激活操作系统采用的许可证类型。
|
10976
|
-
|
10983
|
+
默认值:TencentCloud
|
10984
|
+
取值范围:
|
10977
10985
|
TencentCloud: 腾讯云官方许可
|
10978
10986
|
BYOL: 自带许可(Bring Your Own License)
|
10979
10987
|
:type LicenseType: str
|
10980
|
-
:param _BootMode:
|
10988
|
+
:param _BootMode: 启动模式。
|
10989
|
+
取值范围:`Legacy BIOS`、`UEFI`
|
10990
|
+
默认值:Legacy BIOS
|
10981
10991
|
:type BootMode: str
|
10982
10992
|
:param _ImageFamily: 镜像族
|
10983
10993
|
:type ImageFamily: str
|
@@ -11000,7 +11010,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
11000
11010
|
|
11001
11011
|
@property
|
11002
11012
|
def Architecture(self):
|
11003
|
-
"""
|
11013
|
+
"""导入镜像的操作系统架构。
|
11014
|
+
取值范围包括:`x86_64` 、`i386`、`arm_64`
|
11004
11015
|
:rtype: str
|
11005
11016
|
"""
|
11006
11017
|
return self._Architecture
|
@@ -11011,7 +11022,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
11011
11022
|
|
11012
11023
|
@property
|
11013
11024
|
def OsType(self):
|
11014
|
-
"""
|
11025
|
+
"""导入镜像的操作系统类型 。
|
11026
|
+
可通过 [DescribeImportImageOs](https://cloud.tencent.com/document/api/213/15718) 接口返回值中的`ImportImageOsListSupported`获取。
|
11015
11027
|
:rtype: str
|
11016
11028
|
"""
|
11017
11029
|
return self._OsType
|
@@ -11022,7 +11034,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
11022
11034
|
|
11023
11035
|
@property
|
11024
11036
|
def OsVersion(self):
|
11025
|
-
"""
|
11037
|
+
"""导入镜像的操作系统版本。
|
11038
|
+
可通过 [DescribeImportImageOs](https://cloud.tencent.com/document/api/213/15718) 接口返回值中的`ImportImageOsVersionSet`获取。
|
11026
11039
|
:rtype: str
|
11027
11040
|
"""
|
11028
11041
|
return self._OsVersion
|
@@ -11044,7 +11057,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
11044
11057
|
|
11045
11058
|
@property
|
11046
11059
|
def ImageName(self):
|
11047
|
-
"""
|
11060
|
+
"""镜像名称。
|
11061
|
+
最多支持 60 个字符。
|
11048
11062
|
:rtype: str
|
11049
11063
|
"""
|
11050
11064
|
return self._ImageName
|
@@ -11055,7 +11069,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
11055
11069
|
|
11056
11070
|
@property
|
11057
11071
|
def ImageDescription(self):
|
11058
|
-
"""
|
11072
|
+
"""镜像描述。
|
11073
|
+
最多支持 256 个字符。
|
11059
11074
|
:rtype: str
|
11060
11075
|
"""
|
11061
11076
|
return self._ImageDescription
|
@@ -11066,7 +11081,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
11066
11081
|
|
11067
11082
|
@property
|
11068
11083
|
def DryRun(self):
|
11069
|
-
"""
|
11084
|
+
"""只检查参数,不执行任务。
|
11085
|
+
默认值:false
|
11070
11086
|
:rtype: bool
|
11071
11087
|
"""
|
11072
11088
|
return self._DryRun
|
@@ -11078,6 +11094,7 @@ BYOL: 自带许可(Bring Your Own License)
|
|
11078
11094
|
@property
|
11079
11095
|
def Force(self):
|
11080
11096
|
"""是否强制导入,参考[强制导入镜像](https://cloud.tencent.com/document/product/213/12849)
|
11097
|
+
默认值:false
|
11081
11098
|
:rtype: bool
|
11082
11099
|
"""
|
11083
11100
|
return self._Force
|
@@ -11100,7 +11117,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
11100
11117
|
@property
|
11101
11118
|
def LicenseType(self):
|
11102
11119
|
"""导入镜像后,激活操作系统采用的许可证类型。
|
11103
|
-
|
11120
|
+
默认值:TencentCloud
|
11121
|
+
取值范围:
|
11104
11122
|
TencentCloud: 腾讯云官方许可
|
11105
11123
|
BYOL: 自带许可(Bring Your Own License)
|
11106
11124
|
:rtype: str
|
@@ -11113,7 +11131,9 @@ BYOL: 自带许可(Bring Your Own License)
|
|
11113
11131
|
|
11114
11132
|
@property
|
11115
11133
|
def BootMode(self):
|
11116
|
-
"""
|
11134
|
+
"""启动模式。
|
11135
|
+
取值范围:`Legacy BIOS`、`UEFI`
|
11136
|
+
默认值:Legacy BIOS
|
11117
11137
|
:rtype: str
|
11118
11138
|
"""
|
11119
11139
|
return self._BootMode
|