tencentcloud-sdk-nodejs-chdfs 4.0.618 → 4.0.619
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.
- package/CHANGELOG.md +252 -0
- package/SERVICE_CHANGELOG.md +301 -151
- package/package.json +1 -1
- package/products.md +18 -18
- package/src/services/chdfs/v20190718/chdfs_models.ts +12 -90
- package/src/services/chdfs/v20201112/chdfs_models.ts +36 -135
- package/tencentcloud/services/chdfs/v20190718/chdfs_models.d.ts +12 -12
- package/tencentcloud/services/chdfs/v20201112/chdfs_models.d.ts +36 -36
@@ -67,34 +67,34 @@ export interface DescribeFileSystemResponse {
|
|
67
67
|
*/
|
68
68
|
FileSystem: FileSystem;
|
69
69
|
/**
|
70
|
-
|
70
|
+
* 文件系统已使用容量(byte)
|
71
71
|
注意:此字段可能返回 null,表示取不到有效值。
|
72
|
-
|
72
|
+
*/
|
73
73
|
CapacityUsed: number;
|
74
74
|
/**
|
75
|
-
|
75
|
+
* 已使用COS归档存储容量(byte)
|
76
76
|
注意:此字段可能返回 null,表示取不到有效值。
|
77
|
-
|
77
|
+
*/
|
78
78
|
ArchiveCapacityUsed: number;
|
79
79
|
/**
|
80
|
-
|
80
|
+
* 已使用COS标准存储容量(byte)
|
81
81
|
注意:此字段可能返回 null,表示取不到有效值。
|
82
|
-
|
82
|
+
*/
|
83
83
|
StandardCapacityUsed: number;
|
84
84
|
/**
|
85
|
-
|
85
|
+
* 已使用COS低频存储容量(byte)
|
86
86
|
注意:此字段可能返回 null,表示取不到有效值。
|
87
|
-
|
87
|
+
*/
|
88
88
|
DegradeCapacityUsed: number;
|
89
89
|
/**
|
90
|
-
|
90
|
+
* 已使用COS深度归档存储容量(byte)
|
91
91
|
注意:此字段可能返回 null,表示取不到有效值。
|
92
|
-
|
92
|
+
*/
|
93
93
|
DeepArchiveCapacityUsed: number;
|
94
94
|
/**
|
95
|
-
|
95
|
+
* 已使用COS智能分层存储容量(byte)
|
96
96
|
注意:此字段可能返回 null,表示取不到有效值。
|
97
|
-
|
97
|
+
*/
|
98
98
|
IntelligentCapacityUsed: number;
|
99
99
|
/**
|
100
100
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
@@ -156,9 +156,9 @@ export interface ModifyFileSystemRequest {
|
|
156
156
|
*/
|
157
157
|
Description?: string;
|
158
158
|
/**
|
159
|
-
|
159
|
+
* 文件系统容量(byte),下限为1GB,上限为1PB,且必须是1GB的整数倍
|
160
160
|
注意:修改的文件系统容量不能小于当前使用量
|
161
|
-
|
161
|
+
*/
|
162
162
|
CapacityQuota?: number;
|
163
163
|
/**
|
164
164
|
* 超级用户名列表,可以为空数组
|
@@ -191,34 +191,34 @@ export interface DescribeLifeCycleRulesRequest {
|
|
191
191
|
*/
|
192
192
|
export interface Summary {
|
193
193
|
/**
|
194
|
-
|
194
|
+
* 已使用容量(byte)
|
195
195
|
注意:此字段可能返回 null,表示取不到有效值。
|
196
|
-
|
196
|
+
*/
|
197
197
|
CapacityUsed: number;
|
198
198
|
/**
|
199
|
-
|
199
|
+
* 已使用COS标准存储容量(byte)
|
200
200
|
注意:此字段可能返回 null,表示取不到有效值。
|
201
|
-
|
201
|
+
*/
|
202
202
|
StandardCapacityUsed: number;
|
203
203
|
/**
|
204
|
-
|
204
|
+
* 已使用COS低频存储容量(byte)
|
205
205
|
注意:此字段可能返回 null,表示取不到有效值。
|
206
|
-
|
206
|
+
*/
|
207
207
|
DegradeCapacityUsed?: number;
|
208
208
|
/**
|
209
|
-
|
209
|
+
* 已使用COS归档存储容量(byte)
|
210
210
|
注意:此字段可能返回 null,表示取不到有效值。
|
211
|
-
|
211
|
+
*/
|
212
212
|
ArchiveCapacityUsed?: number;
|
213
213
|
/**
|
214
|
-
|
214
|
+
* 已使用COS深度归档存储容量(byte)
|
215
215
|
注意:此字段可能返回 null,表示取不到有效值。
|
216
|
-
|
216
|
+
*/
|
217
217
|
DeepArchiveCapacityUsed?: number;
|
218
218
|
/**
|
219
|
-
|
219
|
+
* 已使用COS智能分层存储容量(byte)
|
220
220
|
注意:此字段可能返回 null,表示取不到有效值。
|
221
|
-
|
221
|
+
*/
|
222
222
|
IntelligentCapacityUsed?: number;
|
223
223
|
}
|
224
224
|
/**
|
@@ -331,9 +331,9 @@ export interface DeleteFileSystemRequest {
|
|
331
331
|
*/
|
332
332
|
export interface DescribeMountPointsRequest {
|
333
333
|
/**
|
334
|
-
|
334
|
+
* 文件系统ID
|
335
335
|
备注:入参只能指定AccessGroupId、FileSystemId和OwnerUin的其中一个
|
336
|
-
|
336
|
+
*/
|
337
337
|
FileSystemId?: string;
|
338
338
|
/**
|
339
339
|
* 权限组ID
|
@@ -358,9 +358,9 @@ export interface DescribeMountPointRequest {
|
|
358
358
|
*/
|
359
359
|
export interface DescribeAccessGroupsRequest {
|
360
360
|
/**
|
361
|
-
|
361
|
+
* VPC网络ID
|
362
362
|
备注:入参只能指定VpcId和OwnerUin的其中一个
|
363
|
-
|
363
|
+
*/
|
364
364
|
VpcId?: string;
|
365
365
|
/**
|
366
366
|
* 资源所属者Uin
|
@@ -527,9 +527,9 @@ export interface CreateLifeCycleRulesRequest {
|
|
527
527
|
*/
|
528
528
|
export interface CreateAccessRulesResponse {
|
529
529
|
/**
|
530
|
-
|
530
|
+
* 权限规则列表
|
531
531
|
注意:此字段可能返回 null,表示取不到有效值。
|
532
|
-
|
532
|
+
*/
|
533
533
|
AccessRules: Array<AccessRule>;
|
534
534
|
/**
|
535
535
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
@@ -594,14 +594,14 @@ export interface FileSystem {
|
|
594
594
|
*/
|
595
595
|
PosixAcl: boolean;
|
596
596
|
/**
|
597
|
-
|
597
|
+
* 是否打开Ranger地址校验
|
598
598
|
注意:此字段可能返回 null,表示取不到有效值。
|
599
|
-
|
599
|
+
*/
|
600
600
|
EnableRanger: boolean;
|
601
601
|
/**
|
602
|
-
|
602
|
+
* Ranger地址列表
|
603
603
|
注意:此字段可能返回 null,表示取不到有效值。
|
604
|
-
|
604
|
+
*/
|
605
605
|
RangerServiceAddresses: Array<string>;
|
606
606
|
}
|
607
607
|
/**
|