tencentcloud-sdk-nodejs-chdfs 4.1.157 → 4.1.158
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/package.json
CHANGED
|
@@ -93,7 +93,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
93
93
|
/**
|
|
94
94
|
* 查看文件系统列表。
|
|
95
95
|
*/
|
|
96
|
-
DescribeFileSystems(req
|
|
96
|
+
DescribeFileSystems(req: DescribeFileSystemsRequest, cb?: (error: string, rep: DescribeFileSystemsResponse) => void): Promise<DescribeFileSystemsResponse>;
|
|
97
97
|
/**
|
|
98
98
|
* 查看挂载点列表。
|
|
99
99
|
*/
|
|
@@ -247,6 +247,14 @@ export interface DescribeFileSystemsResponse {
|
|
|
247
247
|
* 文件系统列表
|
|
248
248
|
*/
|
|
249
249
|
FileSystems?: Array<FileSystem>;
|
|
250
|
+
/**
|
|
251
|
+
* 标识是否已获取全量
|
|
252
|
+
*/
|
|
253
|
+
IsOver?: boolean;
|
|
254
|
+
/**
|
|
255
|
+
* 下一次请求起始文件系统ID标记
|
|
256
|
+
*/
|
|
257
|
+
NextFileSystemIdMarker?: string;
|
|
250
258
|
/**
|
|
251
259
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
252
260
|
*/
|
|
@@ -354,6 +362,10 @@ export interface DescribeAccessGroupsRequest {
|
|
|
354
362
|
* 资源所属者Uin
|
|
355
363
|
*/
|
|
356
364
|
OwnerUin?: number;
|
|
365
|
+
/**
|
|
366
|
+
* 起始权限组ID标记
|
|
367
|
+
*/
|
|
368
|
+
AccessGroupIdMarker?: string;
|
|
357
369
|
}
|
|
358
370
|
/**
|
|
359
371
|
* DeleteAccessGroup返回参数结构体
|
|
@@ -474,6 +486,14 @@ export interface DescribeAccessGroupsResponse {
|
|
|
474
486
|
* 权限组列表
|
|
475
487
|
*/
|
|
476
488
|
AccessGroups?: Array<AccessGroup>;
|
|
489
|
+
/**
|
|
490
|
+
* 标识是否已获取全量
|
|
491
|
+
*/
|
|
492
|
+
IsOver?: boolean;
|
|
493
|
+
/**
|
|
494
|
+
* 下一次请求起始权限组ID标记
|
|
495
|
+
*/
|
|
496
|
+
NextAccessGroupIdMarker?: string;
|
|
477
497
|
/**
|
|
478
498
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
479
499
|
*/
|
|
@@ -690,7 +710,15 @@ export interface DescribeRestoreTasksResponse {
|
|
|
690
710
|
/**
|
|
691
711
|
* 回热任务列表
|
|
692
712
|
*/
|
|
693
|
-
RestoreTasks
|
|
713
|
+
RestoreTasks?: Array<RestoreTask>;
|
|
714
|
+
/**
|
|
715
|
+
* 标识是否已获取全量
|
|
716
|
+
*/
|
|
717
|
+
IsOver?: boolean;
|
|
718
|
+
/**
|
|
719
|
+
* 下一次请求起始回热任务ID标记
|
|
720
|
+
*/
|
|
721
|
+
NextRestoreTaskIdMarker?: number;
|
|
694
722
|
/**
|
|
695
723
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
696
724
|
*/
|
|
@@ -752,7 +780,12 @@ export interface DeleteAccessRulesResponse {
|
|
|
752
780
|
/**
|
|
753
781
|
* DescribeFileSystems请求参数结构体
|
|
754
782
|
*/
|
|
755
|
-
export
|
|
783
|
+
export interface DescribeFileSystemsRequest {
|
|
784
|
+
/**
|
|
785
|
+
* 起始文件系统ID标记
|
|
786
|
+
*/
|
|
787
|
+
FileSystemIdMarker?: string;
|
|
788
|
+
}
|
|
756
789
|
/**
|
|
757
790
|
* DescribeResourceTags请求参数结构体
|
|
758
791
|
*/
|
|
@@ -884,6 +917,10 @@ export interface DescribeRestoreTasksRequest {
|
|
|
884
917
|
* 文件系统ID
|
|
885
918
|
*/
|
|
886
919
|
FileSystemId: string;
|
|
920
|
+
/**
|
|
921
|
+
* 起始回热任务ID标记
|
|
922
|
+
*/
|
|
923
|
+
RestoreTaskIdMarker?: number;
|
|
887
924
|
}
|
|
888
925
|
/**
|
|
889
926
|
* DescribeAccessGroup请求参数结构体
|