tencentcloud-sdk-nodejs-cfs 4.1.103 → 4.1.137
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/README.md +6 -4
- package/es/services/cfs/v20190719/cfs_client.js +7 -10
- package/es/services/cfs/v20190719/cfs_models.js +1 -0
- package/package.json +7 -5
- package/tencentcloud/services/cfs/v20190719/cfs_client.d.ts +9 -14
- package/tencentcloud/services/cfs/v20190719/cfs_client.js +12 -19
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +5 -27
- package/tencentcloud/services/index.js +1 -0
package/README.md
CHANGED
|
@@ -62,6 +62,8 @@ npm install tencentcloud-sdk-slim-nodejs --save
|
|
|
62
62
|
|
|
63
63
|
1. clone 代码到本地:
|
|
64
64
|
```
|
|
65
|
+
git clone https://cnb.cool/tencent/cloud/api/sdk/tencentcloud-sdk-nodejs
|
|
66
|
+
# 或者
|
|
65
67
|
git clone https://github.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
66
68
|
# 或者
|
|
67
69
|
git clone https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
@@ -135,7 +137,7 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
|
|
|
135
137
|
// ...
|
|
136
138
|
```
|
|
137
139
|
|
|
138
|
-
实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](
|
|
140
|
+
实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](src/common/interface.ts)。
|
|
139
141
|
|
|
140
142
|
## Common Client
|
|
141
143
|
|
|
@@ -143,17 +145,17 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
|
|
|
143
145
|
|
|
144
146
|
**注意,您必须明确知道您调用的接口所需参数,否则可能会调用失败。**
|
|
145
147
|
|
|
146
|
-
详细使用请参阅示例:[使用 Common Client 进行调用](
|
|
148
|
+
详细使用请参阅示例:[使用 Common Client 进行调用](examples/common)
|
|
147
149
|
|
|
148
150
|
## 更多示例
|
|
149
151
|
|
|
150
|
-
请参考 [examples](
|
|
152
|
+
请参考 [examples](examples) 目录。
|
|
151
153
|
|
|
152
154
|
# 相关配置
|
|
153
155
|
|
|
154
156
|
## 代理
|
|
155
157
|
|
|
156
|
-
如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](
|
|
158
|
+
如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
|
|
157
159
|
|
|
158
160
|
# 凭证管理
|
|
159
161
|
|
|
@@ -72,6 +72,9 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
72
72
|
async SignUpCfsService(req, cb) {
|
|
73
73
|
return this.request("SignUpCfsService", req, cb);
|
|
74
74
|
}
|
|
75
|
+
async CreateAutoSnapshotPolicy(req, cb) {
|
|
76
|
+
return this.request("CreateAutoSnapshotPolicy", req, cb);
|
|
77
|
+
}
|
|
75
78
|
async DeleteMigrationTask(req, cb) {
|
|
76
79
|
return this.request("DeleteMigrationTask", req, cb);
|
|
77
80
|
}
|
|
@@ -102,8 +105,8 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
102
105
|
async ApplyPathLifecyclePolicy(req, cb) {
|
|
103
106
|
return this.request("ApplyPathLifecyclePolicy", req, cb);
|
|
104
107
|
}
|
|
105
|
-
async
|
|
106
|
-
return this.request("
|
|
108
|
+
async ModifyFileSystemAutoScaleUpRule(req, cb) {
|
|
109
|
+
return this.request("ModifyFileSystemAutoScaleUpRule", req, cb);
|
|
107
110
|
}
|
|
108
111
|
async ModifyDataFlow(req, cb) {
|
|
109
112
|
return this.request("ModifyDataFlow", req, cb);
|
|
@@ -114,9 +117,6 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
114
117
|
async DescribeCfsFileSystems(req, cb) {
|
|
115
118
|
return this.request("DescribeCfsFileSystems", req, cb);
|
|
116
119
|
}
|
|
117
|
-
async ModifyFileSystemAutoScaleUpRule(req, cb) {
|
|
118
|
-
return this.request("ModifyFileSystemAutoScaleUpRule", req, cb);
|
|
119
|
-
}
|
|
120
120
|
async DescribeCfsSnapshots(req, cb) {
|
|
121
121
|
return this.request("DescribeCfsSnapshots", req, cb);
|
|
122
122
|
}
|
|
@@ -135,11 +135,8 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
135
135
|
async CreateMigrationTask(req, cb) {
|
|
136
136
|
return this.request("CreateMigrationTask", req, cb);
|
|
137
137
|
}
|
|
138
|
-
async
|
|
139
|
-
return this.request("
|
|
140
|
-
}
|
|
141
|
-
async CreateAutoSnapshotPolicy(req, cb) {
|
|
142
|
-
return this.request("CreateAutoSnapshotPolicy", req, cb);
|
|
138
|
+
async DeleteUserQuota(req, cb) {
|
|
139
|
+
return this.request("DeleteUserQuota", req, cb);
|
|
143
140
|
}
|
|
144
141
|
async DescribeAutoSnapshotPolicies(req, cb) {
|
|
145
142
|
return this.request("DescribeAutoSnapshotPolicies", req, cb);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tencentcloud-sdk-nodejs-cfs",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.137",
|
|
4
4
|
"description": "腾讯云 API NODEJS SDK",
|
|
5
5
|
"main": "./tencentcloud/index.js",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"build:es": "tsc -p tsconfig.es.json",
|
|
13
13
|
"build:slim": "node ./scripts/build_slim.js",
|
|
14
14
|
"prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'",
|
|
15
|
-
"clean": "rimraf tencentcloud es"
|
|
15
|
+
"clean": "rimraf tencentcloud es",
|
|
16
|
+
"test:common": "vitest run"
|
|
16
17
|
},
|
|
17
18
|
"engines": {
|
|
18
19
|
"node": ">=10"
|
|
@@ -44,9 +45,9 @@
|
|
|
44
45
|
"url": "https://github.com/tencentcloud/tencentcloud-sdk-nodejs"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
|
-
"@types/
|
|
48
|
+
"@types/ini": "^4.1.1",
|
|
48
49
|
"@types/json-bigint": "^1.0.1",
|
|
49
|
-
"@types/node": "^
|
|
50
|
+
"@types/node": "^18.0.0",
|
|
50
51
|
"@types/node-fetch": "^2.5.7",
|
|
51
52
|
"@types/uuid": "^9.0.8",
|
|
52
53
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
|
@@ -61,6 +62,7 @@
|
|
|
61
62
|
"prettier": "^2.3.0",
|
|
62
63
|
"rimraf": "^5.0.10",
|
|
63
64
|
"ts-node": "^8.10.2",
|
|
64
|
-
"typescript": "^
|
|
65
|
+
"typescript": "^5.9.2",
|
|
66
|
+
"vitest": "2.1.9"
|
|
65
67
|
}
|
|
66
68
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { CreateMigrationTaskRequest, ScaleUpFileSystemResponse, CreateLifecycleDataTaskRequest, DescribeCfsPGroupsResponse, ModifyDataFlowResponse, DescribeMountTargetsResponse, DescribeSnapshotOperationLogsRequest, CreateLifecyclePolicyDownloadTaskRequest, StopLifecycleDataTaskRequest, DescribeCfsFileSystemsResponse, CreateLifecycleDataTaskResponse, ApplyPathLifecyclePolicyRequest, BindAutoSnapshotPolicyRequest, ModifyFileSystemAutoScaleUpRuleRequest, ScaleUpFileSystemRequest, CreateCfsPGroupRequest, DescribeMigrationTasksResponse, DescribeAutoSnapshotPoliciesRequest, DescribeAvailableZoneInfoRequest, DescribeMountTargetsRequest, CreateDataFlowResponse, SignUpCfsServiceRequest, SignUpCfsServiceResponse, CreateLifecyclePolicyDownloadTaskResponse, DescribeCfsRulesRequest, UpdateCfsFileSystemNameRequest, DeleteCfsPGroupRequest, DescribeLifecycleDataTaskResponse, UpdateCfsPGroupResponse, UpdateFileSystemBandwidthLimitResponse, DescribeLifecyclePoliciesRequest, DeleteAutoSnapshotPolicyRequest, CreateLifecyclePolicyResponse, UpdateCfsRuleRequest, StopLifecycleDataTaskResponse, DeleteUserQuotaRequest, DescribeAvailableZoneInfoResponse, DeleteCfsSnapshotResponse, DescribeCfsFileSystemClientsResponse, DoDirectoryOperationResponse,
|
|
2
|
+
import { CreateMigrationTaskRequest, ScaleUpFileSystemResponse, CreateLifecycleDataTaskRequest, DescribeCfsPGroupsResponse, ModifyDataFlowResponse, DescribeMountTargetsResponse, DescribeSnapshotOperationLogsRequest, CreateLifecyclePolicyDownloadTaskRequest, StopLifecycleDataTaskRequest, DescribeCfsFileSystemsResponse, CreateLifecycleDataTaskResponse, ApplyPathLifecyclePolicyRequest, BindAutoSnapshotPolicyRequest, ModifyFileSystemAutoScaleUpRuleRequest, ScaleUpFileSystemRequest, CreateCfsPGroupRequest, DescribeMigrationTasksResponse, DescribeAutoSnapshotPoliciesRequest, DescribeAvailableZoneInfoRequest, DescribeMountTargetsRequest, CreateDataFlowResponse, SignUpCfsServiceRequest, SignUpCfsServiceResponse, CreateLifecyclePolicyDownloadTaskResponse, DescribeCfsRulesRequest, UpdateCfsFileSystemNameRequest, DeleteCfsPGroupRequest, DescribeLifecycleDataTaskResponse, UpdateCfsPGroupResponse, UpdateFileSystemBandwidthLimitResponse, DescribeLifecyclePoliciesRequest, DeleteAutoSnapshotPolicyRequest, CreateLifecyclePolicyResponse, UpdateCfsRuleRequest, StopLifecycleDataTaskResponse, DeleteUserQuotaRequest, DescribeAvailableZoneInfoResponse, DeleteCfsSnapshotResponse, DescribeCfsFileSystemClientsResponse, DoDirectoryOperationResponse, ModifyLifecyclePolicyResponse, CreateCfsSnapshotRequest, DescribeBucketListRequest, DeleteCfsRuleRequest, ApplyPathLifecyclePolicyResponse, UpdateCfsRuleResponse, DeleteMigrationTaskResponse, DescribeLifecycleDataTaskRequest, DescribeSnapshotOperationLogsResponse, DeleteCfsFileSystemRequest, UpdateFileSystemBandwidthLimitRequest, DeleteLifecyclePolicyResponse, CreateCfsPGroupResponse, DescribeCfsServiceStatusRequest, DeleteUserQuotaResponse, DeleteMigrationTaskRequest, SetUserQuotaRequest, CreateAutoSnapshotPolicyResponse, ModifyFileSystemAutoScaleUpRuleResponse, CreateCfsSnapshotResponse, CreateCfsRuleRequest, DeleteCfsFileSystemResponse, CreateCfsFileSystemResponse, DeleteDataFlowResponse, CreateAccessCertRequest, DescribeLifecyclePoliciesResponse, DescribeUserQuotaRequest, DescribeDataFlowRequest, DescribeBucketListResponse, UpdateCfsFileSystemNameResponse, DescribeCfsSnapshotOverviewResponse, DeleteCfsSnapshotRequest, DescribeCfsFileSystemClientsRequest, DescribeCfsSnapshotsResponse, DescribeCfsFileSystemsRequest, CreateCfsFileSystemRequest, DescribeMigrationTasksRequest, UnbindAutoSnapshotPolicyRequest, UnbindAutoSnapshotPolicyResponse, DescribeCfsServiceStatusResponse, BindAutoSnapshotPolicyResponse, DescribeCfsSnapshotsRequest, UpdateCfsFileSystemSizeLimitResponse, UpdateAutoSnapshotPolicyRequest, UpdateCfsFileSystemSizeLimitRequest, DescribeCfsRulesResponse, UpdateCfsFileSystemPGroupResponse, UpdateAutoSnapshotPolicyResponse, UpdateCfsFileSystemPGroupRequest, CreateMigrationTaskResponse, DeleteAutoSnapshotPolicyResponse, DeleteCfsRuleResponse, UpdateCfsSnapshotAttributeResponse, UpdateCfsPGroupRequest, DeleteDataFlowRequest, SetUserQuotaResponse, DescribeCfsPGroupsRequest, DeleteCfsPGroupResponse, UpdateCfsSnapshotAttributeRequest, DescribeUserQuotaResponse, ModifyLifecyclePolicyRequest, DeleteLifecyclePolicyRequest, CreateLifecyclePolicyRequest, CreateCfsRuleResponse, StopMigrationTaskResponse, CreateAccessCertResponse, StopMigrationTaskRequest, DescribeAutoSnapshotPoliciesResponse, ModifyDataFlowRequest, DescribeCfsSnapshotOverviewRequest, CreateAutoSnapshotPolicyRequest, CreateDataFlowRequest, DescribeDataFlowResponse, DoDirectoryOperationRequest } from "./cfs_models";
|
|
3
3
|
/**
|
|
4
4
|
* cfs client
|
|
5
5
|
* @class
|
|
@@ -100,6 +100,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
100
100
|
* 本接口(SignUpCfsService)用于开通CFS服务。
|
|
101
101
|
*/
|
|
102
102
|
SignUpCfsService(req?: SignUpCfsServiceRequest, cb?: (error: string, rep: SignUpCfsServiceResponse) => void): Promise<SignUpCfsServiceResponse>;
|
|
103
|
+
/**
|
|
104
|
+
* 创建定期快照策略
|
|
105
|
+
*/
|
|
106
|
+
CreateAutoSnapshotPolicy(req: CreateAutoSnapshotPolicyRequest, cb?: (error: string, rep: CreateAutoSnapshotPolicyResponse) => void): Promise<CreateAutoSnapshotPolicyResponse>;
|
|
103
107
|
/**
|
|
104
108
|
* 用于删除迁移任务。不支持删除等待中、创建中、运行中、取消中、终止中状态的任务。
|
|
105
109
|
*/
|
|
@@ -141,9 +145,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
141
145
|
*/
|
|
142
146
|
ApplyPathLifecyclePolicy(req: ApplyPathLifecyclePolicyRequest, cb?: (error: string, rep: ApplyPathLifecyclePolicyResponse) => void): Promise<ApplyPathLifecyclePolicyResponse>;
|
|
143
147
|
/**
|
|
144
|
-
*
|
|
148
|
+
* 用来设置文件系统扩容策略,该接口只支持turbo文件系统
|
|
145
149
|
*/
|
|
146
|
-
|
|
150
|
+
ModifyFileSystemAutoScaleUpRule(req: ModifyFileSystemAutoScaleUpRuleRequest, cb?: (error: string, rep: ModifyFileSystemAutoScaleUpRuleResponse) => void): Promise<ModifyFileSystemAutoScaleUpRuleResponse>;
|
|
147
151
|
/**
|
|
148
152
|
* 修改数据流动相关参数
|
|
149
153
|
*/
|
|
@@ -156,10 +160,6 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
156
160
|
* 本接口(DescribeCfsFileSystems)用于查询文件系统
|
|
157
161
|
*/
|
|
158
162
|
DescribeCfsFileSystems(req: DescribeCfsFileSystemsRequest, cb?: (error: string, rep: DescribeCfsFileSystemsResponse) => void): Promise<DescribeCfsFileSystemsResponse>;
|
|
159
|
-
/**
|
|
160
|
-
* 用来设置文件系统扩容策略,该接口只支持turbo文件系统
|
|
161
|
-
*/
|
|
162
|
-
ModifyFileSystemAutoScaleUpRule(req: ModifyFileSystemAutoScaleUpRuleRequest, cb?: (error: string, rep: ModifyFileSystemAutoScaleUpRuleResponse) => void): Promise<ModifyFileSystemAutoScaleUpRuleResponse>;
|
|
163
163
|
/**
|
|
164
164
|
* 查询文件系统快照列表
|
|
165
165
|
*/
|
|
@@ -185,14 +185,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
185
185
|
*/
|
|
186
186
|
CreateMigrationTask(req: CreateMigrationTaskRequest, cb?: (error: string, rep: CreateMigrationTaskResponse) => void): Promise<CreateMigrationTaskResponse>;
|
|
187
187
|
/**
|
|
188
|
-
|
|
189
|
-
说明:2022年6月1日之后创建的CFS文件系统删除时无需单独调用删除挂载点操作,此API仅适用老版本的CFS实例。
|
|
190
|
-
*/
|
|
191
|
-
DeleteMountTarget(req: DeleteMountTargetRequest, cb?: (error: string, rep: DeleteMountTargetResponse) => void): Promise<DeleteMountTargetResponse>;
|
|
192
|
-
/**
|
|
193
|
-
* 创建定期快照策略
|
|
188
|
+
* 指定条件删除文件系统配额(仅部分Turbo实例能使用,若需要调用请提交工单与我们联系)
|
|
194
189
|
*/
|
|
195
|
-
|
|
190
|
+
DeleteUserQuota(req: DeleteUserQuotaRequest, cb?: (error: string, rep: DeleteUserQuotaResponse) => void): Promise<DeleteUserQuotaResponse>;
|
|
196
191
|
/**
|
|
197
192
|
* 查询文件系统快照定期策略列表信息
|
|
198
193
|
*/
|
|
@@ -168,6 +168,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
168
168
|
async SignUpCfsService(req, cb) {
|
|
169
169
|
return this.request("SignUpCfsService", req, cb);
|
|
170
170
|
}
|
|
171
|
+
/**
|
|
172
|
+
* 创建定期快照策略
|
|
173
|
+
*/
|
|
174
|
+
async CreateAutoSnapshotPolicy(req, cb) {
|
|
175
|
+
return this.request("CreateAutoSnapshotPolicy", req, cb);
|
|
176
|
+
}
|
|
171
177
|
/**
|
|
172
178
|
* 用于删除迁移任务。不支持删除等待中、创建中、运行中、取消中、终止中状态的任务。
|
|
173
179
|
*/
|
|
@@ -229,10 +235,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
229
235
|
return this.request("ApplyPathLifecyclePolicy", req, cb);
|
|
230
236
|
}
|
|
231
237
|
/**
|
|
232
|
-
*
|
|
238
|
+
* 用来设置文件系统扩容策略,该接口只支持turbo文件系统
|
|
233
239
|
*/
|
|
234
|
-
async
|
|
235
|
-
return this.request("
|
|
240
|
+
async ModifyFileSystemAutoScaleUpRule(req, cb) {
|
|
241
|
+
return this.request("ModifyFileSystemAutoScaleUpRule", req, cb);
|
|
236
242
|
}
|
|
237
243
|
/**
|
|
238
244
|
* 修改数据流动相关参数
|
|
@@ -252,12 +258,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
252
258
|
async DescribeCfsFileSystems(req, cb) {
|
|
253
259
|
return this.request("DescribeCfsFileSystems", req, cb);
|
|
254
260
|
}
|
|
255
|
-
/**
|
|
256
|
-
* 用来设置文件系统扩容策略,该接口只支持turbo文件系统
|
|
257
|
-
*/
|
|
258
|
-
async ModifyFileSystemAutoScaleUpRule(req, cb) {
|
|
259
|
-
return this.request("ModifyFileSystemAutoScaleUpRule", req, cb);
|
|
260
|
-
}
|
|
261
261
|
/**
|
|
262
262
|
* 查询文件系统快照列表
|
|
263
263
|
*/
|
|
@@ -295,17 +295,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
295
295
|
return this.request("CreateMigrationTask", req, cb);
|
|
296
296
|
}
|
|
297
297
|
/**
|
|
298
|
-
|
|
299
|
-
说明:2022年6月1日之后创建的CFS文件系统删除时无需单独调用删除挂载点操作,此API仅适用老版本的CFS实例。
|
|
300
|
-
*/
|
|
301
|
-
async DeleteMountTarget(req, cb) {
|
|
302
|
-
return this.request("DeleteMountTarget", req, cb);
|
|
303
|
-
}
|
|
304
|
-
/**
|
|
305
|
-
* 创建定期快照策略
|
|
298
|
+
* 指定条件删除文件系统配额(仅部分Turbo实例能使用,若需要调用请提交工单与我们联系)
|
|
306
299
|
*/
|
|
307
|
-
async
|
|
308
|
-
return this.request("
|
|
300
|
+
async DeleteUserQuota(req, cb) {
|
|
301
|
+
return this.request("DeleteUserQuota", req, cb);
|
|
309
302
|
}
|
|
310
303
|
/**
|
|
311
304
|
* 查询文件系统快照定期策略列表信息
|
|
@@ -498,7 +498,7 @@ export interface DescribeAutoSnapshotPoliciesRequest {
|
|
|
498
498
|
/**
|
|
499
499
|
* DescribeAvailableZoneInfo请求参数结构体
|
|
500
500
|
*/
|
|
501
|
-
export
|
|
501
|
+
export type DescribeAvailableZoneInfoRequest = null;
|
|
502
502
|
/**
|
|
503
503
|
* DescribeMountTargets请求参数结构体
|
|
504
504
|
*/
|
|
@@ -524,7 +524,7 @@ export interface CreateDataFlowResponse {
|
|
|
524
524
|
/**
|
|
525
525
|
* SignUpCfsService请求参数结构体
|
|
526
526
|
*/
|
|
527
|
-
export
|
|
527
|
+
export type SignUpCfsServiceRequest = null;
|
|
528
528
|
/**
|
|
529
529
|
* SignUpCfsService返回参数结构体
|
|
530
530
|
*/
|
|
@@ -900,15 +900,6 @@ export interface DoDirectoryOperationResponse {
|
|
|
900
900
|
*/
|
|
901
901
|
RequestId?: string;
|
|
902
902
|
}
|
|
903
|
-
/**
|
|
904
|
-
* DeleteMountTarget返回参数结构体
|
|
905
|
-
*/
|
|
906
|
-
export interface DeleteMountTargetResponse {
|
|
907
|
-
/**
|
|
908
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
909
|
-
*/
|
|
910
|
-
RequestId?: string;
|
|
911
|
-
}
|
|
912
903
|
/**
|
|
913
904
|
* ModifyLifecyclePolicy返回参数结构体
|
|
914
905
|
*/
|
|
@@ -1134,7 +1125,7 @@ export interface CreateCfsPGroupResponse {
|
|
|
1134
1125
|
/**
|
|
1135
1126
|
* DescribeCfsServiceStatus请求参数结构体
|
|
1136
1127
|
*/
|
|
1137
|
-
export
|
|
1128
|
+
export type DescribeCfsServiceStatusRequest = null;
|
|
1138
1129
|
/**
|
|
1139
1130
|
* 有规则冲突时返回的已有冲突规则信息列表
|
|
1140
1131
|
*/
|
|
@@ -1434,19 +1425,6 @@ export interface UserQuota {
|
|
|
1434
1425
|
*/
|
|
1435
1426
|
Status?: string;
|
|
1436
1427
|
}
|
|
1437
|
-
/**
|
|
1438
|
-
* DeleteMountTarget请求参数结构体
|
|
1439
|
-
*/
|
|
1440
|
-
export interface DeleteMountTargetRequest {
|
|
1441
|
-
/**
|
|
1442
|
-
* 文件系统 ID
|
|
1443
|
-
*/
|
|
1444
|
-
FileSystemId: string;
|
|
1445
|
-
/**
|
|
1446
|
-
* 挂载点 ID
|
|
1447
|
-
*/
|
|
1448
|
-
MountTargetId: string;
|
|
1449
|
-
}
|
|
1450
1428
|
/**
|
|
1451
1429
|
* CreateCfsRule请求参数结构体
|
|
1452
1430
|
*/
|
|
@@ -2711,7 +2689,7 @@ export interface TagInfo {
|
|
|
2711
2689
|
/**
|
|
2712
2690
|
* DescribeCfsPGroups请求参数结构体
|
|
2713
2691
|
*/
|
|
2714
|
-
export
|
|
2692
|
+
export type DescribeCfsPGroupsRequest = null;
|
|
2715
2693
|
/**
|
|
2716
2694
|
* DeleteCfsPGroup返回参数结构体
|
|
2717
2695
|
*/
|
|
@@ -2957,7 +2935,7 @@ export interface ModifyDataFlowRequest {
|
|
|
2957
2935
|
/**
|
|
2958
2936
|
* DescribeCfsSnapshotOverview请求参数结构体
|
|
2959
2937
|
*/
|
|
2960
|
-
export
|
|
2938
|
+
export type DescribeCfsSnapshotOverviewRequest = null;
|
|
2961
2939
|
/**
|
|
2962
2940
|
* CreateAutoSnapshotPolicy请求参数结构体
|
|
2963
2941
|
*/
|