@aws-sdk/client-fsx 3.1075.0 → 3.1076.0
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/dist-cjs/index.js +3230 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/FSxServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -595
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -2397
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultFSxHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "fsx",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultFSxHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,2840 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://fsx-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://fsx-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://fsx.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://fsx.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class FSxServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, FSxServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessPointAlreadyOwnedByYou extends FSxServiceException {
|
|
140
|
+
name = "AccessPointAlreadyOwnedByYou";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
ErrorCode;
|
|
143
|
+
Message;
|
|
144
|
+
constructor(opts) {
|
|
145
|
+
super({
|
|
146
|
+
name: "AccessPointAlreadyOwnedByYou",
|
|
147
|
+
$fault: "client",
|
|
148
|
+
...opts,
|
|
149
|
+
});
|
|
150
|
+
Object.setPrototypeOf(this, AccessPointAlreadyOwnedByYou.prototype);
|
|
151
|
+
this.ErrorCode = opts.ErrorCode;
|
|
152
|
+
this.Message = opts.Message;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
class ActiveDirectoryError extends FSxServiceException {
|
|
156
|
+
name = "ActiveDirectoryError";
|
|
157
|
+
$fault = "client";
|
|
158
|
+
ActiveDirectoryId;
|
|
159
|
+
Type;
|
|
160
|
+
Message;
|
|
161
|
+
constructor(opts) {
|
|
162
|
+
super({
|
|
163
|
+
name: "ActiveDirectoryError",
|
|
164
|
+
$fault: "client",
|
|
165
|
+
...opts,
|
|
166
|
+
});
|
|
167
|
+
Object.setPrototypeOf(this, ActiveDirectoryError.prototype);
|
|
168
|
+
this.ActiveDirectoryId = opts.ActiveDirectoryId;
|
|
169
|
+
this.Type = opts.Type;
|
|
170
|
+
this.Message = opts.Message;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
class BadRequest extends FSxServiceException {
|
|
174
|
+
name = "BadRequest";
|
|
175
|
+
$fault = "client";
|
|
176
|
+
Message;
|
|
177
|
+
constructor(opts) {
|
|
178
|
+
super({
|
|
179
|
+
name: "BadRequest",
|
|
180
|
+
$fault: "client",
|
|
181
|
+
...opts,
|
|
182
|
+
});
|
|
183
|
+
Object.setPrototypeOf(this, BadRequest.prototype);
|
|
184
|
+
this.Message = opts.Message;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
class FileSystemNotFound extends FSxServiceException {
|
|
188
|
+
name = "FileSystemNotFound";
|
|
189
|
+
$fault = "client";
|
|
190
|
+
Message;
|
|
191
|
+
constructor(opts) {
|
|
192
|
+
super({
|
|
193
|
+
name: "FileSystemNotFound",
|
|
194
|
+
$fault: "client",
|
|
195
|
+
...opts,
|
|
196
|
+
});
|
|
197
|
+
Object.setPrototypeOf(this, FileSystemNotFound.prototype);
|
|
198
|
+
this.Message = opts.Message;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
class InternalServerError extends FSxServiceException {
|
|
202
|
+
name = "InternalServerError";
|
|
203
|
+
$fault = "server";
|
|
204
|
+
Message;
|
|
205
|
+
constructor(opts) {
|
|
206
|
+
super({
|
|
207
|
+
name: "InternalServerError",
|
|
208
|
+
$fault: "server",
|
|
209
|
+
...opts,
|
|
210
|
+
});
|
|
211
|
+
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
212
|
+
this.Message = opts.Message;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
class DataRepositoryTaskEnded extends FSxServiceException {
|
|
216
|
+
name = "DataRepositoryTaskEnded";
|
|
217
|
+
$fault = "client";
|
|
218
|
+
Message;
|
|
219
|
+
constructor(opts) {
|
|
220
|
+
super({
|
|
221
|
+
name: "DataRepositoryTaskEnded",
|
|
222
|
+
$fault: "client",
|
|
223
|
+
...opts,
|
|
224
|
+
});
|
|
225
|
+
Object.setPrototypeOf(this, DataRepositoryTaskEnded.prototype);
|
|
226
|
+
this.Message = opts.Message;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
class DataRepositoryTaskNotFound extends FSxServiceException {
|
|
230
|
+
name = "DataRepositoryTaskNotFound";
|
|
231
|
+
$fault = "client";
|
|
232
|
+
Message;
|
|
233
|
+
constructor(opts) {
|
|
234
|
+
super({
|
|
235
|
+
name: "DataRepositoryTaskNotFound",
|
|
236
|
+
$fault: "client",
|
|
237
|
+
...opts,
|
|
238
|
+
});
|
|
239
|
+
Object.setPrototypeOf(this, DataRepositoryTaskNotFound.prototype);
|
|
240
|
+
this.Message = opts.Message;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
class UnsupportedOperation extends FSxServiceException {
|
|
244
|
+
name = "UnsupportedOperation";
|
|
245
|
+
$fault = "client";
|
|
246
|
+
Message;
|
|
247
|
+
constructor(opts) {
|
|
248
|
+
super({
|
|
249
|
+
name: "UnsupportedOperation",
|
|
250
|
+
$fault: "client",
|
|
251
|
+
...opts,
|
|
252
|
+
});
|
|
253
|
+
Object.setPrototypeOf(this, UnsupportedOperation.prototype);
|
|
254
|
+
this.Message = opts.Message;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
class BackupNotFound extends FSxServiceException {
|
|
258
|
+
name = "BackupNotFound";
|
|
259
|
+
$fault = "client";
|
|
260
|
+
Message;
|
|
261
|
+
constructor(opts) {
|
|
262
|
+
super({
|
|
263
|
+
name: "BackupNotFound",
|
|
264
|
+
$fault: "client",
|
|
265
|
+
...opts,
|
|
266
|
+
});
|
|
267
|
+
Object.setPrototypeOf(this, BackupNotFound.prototype);
|
|
268
|
+
this.Message = opts.Message;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
class IncompatibleParameterError extends FSxServiceException {
|
|
272
|
+
name = "IncompatibleParameterError";
|
|
273
|
+
$fault = "client";
|
|
274
|
+
Parameter;
|
|
275
|
+
Message;
|
|
276
|
+
constructor(opts) {
|
|
277
|
+
super({
|
|
278
|
+
name: "IncompatibleParameterError",
|
|
279
|
+
$fault: "client",
|
|
280
|
+
...opts,
|
|
281
|
+
});
|
|
282
|
+
Object.setPrototypeOf(this, IncompatibleParameterError.prototype);
|
|
283
|
+
this.Parameter = opts.Parameter;
|
|
284
|
+
this.Message = opts.Message;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
class IncompatibleRegionForMultiAZ extends FSxServiceException {
|
|
288
|
+
name = "IncompatibleRegionForMultiAZ";
|
|
289
|
+
$fault = "client";
|
|
290
|
+
Message;
|
|
291
|
+
constructor(opts) {
|
|
292
|
+
super({
|
|
293
|
+
name: "IncompatibleRegionForMultiAZ",
|
|
294
|
+
$fault: "client",
|
|
295
|
+
...opts,
|
|
296
|
+
});
|
|
297
|
+
Object.setPrototypeOf(this, IncompatibleRegionForMultiAZ.prototype);
|
|
298
|
+
this.Message = opts.Message;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
class InvalidDestinationKmsKey extends FSxServiceException {
|
|
302
|
+
name = "InvalidDestinationKmsKey";
|
|
303
|
+
$fault = "client";
|
|
304
|
+
Message;
|
|
305
|
+
constructor(opts) {
|
|
306
|
+
super({
|
|
307
|
+
name: "InvalidDestinationKmsKey",
|
|
308
|
+
$fault: "client",
|
|
309
|
+
...opts,
|
|
310
|
+
});
|
|
311
|
+
Object.setPrototypeOf(this, InvalidDestinationKmsKey.prototype);
|
|
312
|
+
this.Message = opts.Message;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
class InvalidRegion extends FSxServiceException {
|
|
316
|
+
name = "InvalidRegion";
|
|
317
|
+
$fault = "client";
|
|
318
|
+
Message;
|
|
319
|
+
constructor(opts) {
|
|
320
|
+
super({
|
|
321
|
+
name: "InvalidRegion",
|
|
322
|
+
$fault: "client",
|
|
323
|
+
...opts,
|
|
324
|
+
});
|
|
325
|
+
Object.setPrototypeOf(this, InvalidRegion.prototype);
|
|
326
|
+
this.Message = opts.Message;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
class InvalidSourceKmsKey extends FSxServiceException {
|
|
330
|
+
name = "InvalidSourceKmsKey";
|
|
331
|
+
$fault = "client";
|
|
332
|
+
Message;
|
|
333
|
+
constructor(opts) {
|
|
334
|
+
super({
|
|
335
|
+
name: "InvalidSourceKmsKey",
|
|
336
|
+
$fault: "client",
|
|
337
|
+
...opts,
|
|
338
|
+
});
|
|
339
|
+
Object.setPrototypeOf(this, InvalidSourceKmsKey.prototype);
|
|
340
|
+
this.Message = opts.Message;
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
class ServiceLimitExceeded extends FSxServiceException {
|
|
344
|
+
name = "ServiceLimitExceeded";
|
|
345
|
+
$fault = "client";
|
|
346
|
+
Limit;
|
|
347
|
+
Message;
|
|
348
|
+
constructor(opts) {
|
|
349
|
+
super({
|
|
350
|
+
name: "ServiceLimitExceeded",
|
|
351
|
+
$fault: "client",
|
|
352
|
+
...opts,
|
|
353
|
+
});
|
|
354
|
+
Object.setPrototypeOf(this, ServiceLimitExceeded.prototype);
|
|
355
|
+
this.Limit = opts.Limit;
|
|
356
|
+
this.Message = opts.Message;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
class SourceBackupUnavailable extends FSxServiceException {
|
|
360
|
+
name = "SourceBackupUnavailable";
|
|
361
|
+
$fault = "client";
|
|
362
|
+
Message;
|
|
363
|
+
BackupId;
|
|
364
|
+
constructor(opts) {
|
|
365
|
+
super({
|
|
366
|
+
name: "SourceBackupUnavailable",
|
|
367
|
+
$fault: "client",
|
|
368
|
+
...opts,
|
|
369
|
+
});
|
|
370
|
+
Object.setPrototypeOf(this, SourceBackupUnavailable.prototype);
|
|
371
|
+
this.Message = opts.Message;
|
|
372
|
+
this.BackupId = opts.BackupId;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
class InvalidAccessPoint extends FSxServiceException {
|
|
376
|
+
name = "InvalidAccessPoint";
|
|
377
|
+
$fault = "client";
|
|
378
|
+
ErrorCode;
|
|
379
|
+
Message;
|
|
380
|
+
constructor(opts) {
|
|
381
|
+
super({
|
|
382
|
+
name: "InvalidAccessPoint",
|
|
383
|
+
$fault: "client",
|
|
384
|
+
...opts,
|
|
385
|
+
});
|
|
386
|
+
Object.setPrototypeOf(this, InvalidAccessPoint.prototype);
|
|
387
|
+
this.ErrorCode = opts.ErrorCode;
|
|
388
|
+
this.Message = opts.Message;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
class InvalidRequest extends FSxServiceException {
|
|
392
|
+
name = "InvalidRequest";
|
|
393
|
+
$fault = "client";
|
|
394
|
+
ErrorCode;
|
|
395
|
+
Message;
|
|
396
|
+
constructor(opts) {
|
|
397
|
+
super({
|
|
398
|
+
name: "InvalidRequest",
|
|
399
|
+
$fault: "client",
|
|
400
|
+
...opts,
|
|
401
|
+
});
|
|
402
|
+
Object.setPrototypeOf(this, InvalidRequest.prototype);
|
|
403
|
+
this.ErrorCode = opts.ErrorCode;
|
|
404
|
+
this.Message = opts.Message;
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
class TooManyAccessPoints extends FSxServiceException {
|
|
408
|
+
name = "TooManyAccessPoints";
|
|
409
|
+
$fault = "client";
|
|
410
|
+
ErrorCode;
|
|
411
|
+
Message;
|
|
412
|
+
constructor(opts) {
|
|
413
|
+
super({
|
|
414
|
+
name: "TooManyAccessPoints",
|
|
415
|
+
$fault: "client",
|
|
416
|
+
...opts,
|
|
417
|
+
});
|
|
418
|
+
Object.setPrototypeOf(this, TooManyAccessPoints.prototype);
|
|
419
|
+
this.ErrorCode = opts.ErrorCode;
|
|
420
|
+
this.Message = opts.Message;
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
class VolumeNotFound extends FSxServiceException {
|
|
424
|
+
name = "VolumeNotFound";
|
|
425
|
+
$fault = "client";
|
|
426
|
+
Message;
|
|
427
|
+
constructor(opts) {
|
|
428
|
+
super({
|
|
429
|
+
name: "VolumeNotFound",
|
|
430
|
+
$fault: "client",
|
|
431
|
+
...opts,
|
|
432
|
+
});
|
|
433
|
+
Object.setPrototypeOf(this, VolumeNotFound.prototype);
|
|
434
|
+
this.Message = opts.Message;
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
class BackupInProgress extends FSxServiceException {
|
|
438
|
+
name = "BackupInProgress";
|
|
439
|
+
$fault = "client";
|
|
440
|
+
Message;
|
|
441
|
+
constructor(opts) {
|
|
442
|
+
super({
|
|
443
|
+
name: "BackupInProgress",
|
|
444
|
+
$fault: "client",
|
|
445
|
+
...opts,
|
|
446
|
+
});
|
|
447
|
+
Object.setPrototypeOf(this, BackupInProgress.prototype);
|
|
448
|
+
this.Message = opts.Message;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
class DataRepositoryTaskExecuting extends FSxServiceException {
|
|
452
|
+
name = "DataRepositoryTaskExecuting";
|
|
453
|
+
$fault = "client";
|
|
454
|
+
Message;
|
|
455
|
+
constructor(opts) {
|
|
456
|
+
super({
|
|
457
|
+
name: "DataRepositoryTaskExecuting",
|
|
458
|
+
$fault: "client",
|
|
459
|
+
...opts,
|
|
460
|
+
});
|
|
461
|
+
Object.setPrototypeOf(this, DataRepositoryTaskExecuting.prototype);
|
|
462
|
+
this.Message = opts.Message;
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
class InvalidNetworkSettings extends FSxServiceException {
|
|
466
|
+
name = "InvalidNetworkSettings";
|
|
467
|
+
$fault = "client";
|
|
468
|
+
Message;
|
|
469
|
+
InvalidSubnetId;
|
|
470
|
+
InvalidSecurityGroupId;
|
|
471
|
+
InvalidRouteTableId;
|
|
472
|
+
constructor(opts) {
|
|
473
|
+
super({
|
|
474
|
+
name: "InvalidNetworkSettings",
|
|
475
|
+
$fault: "client",
|
|
476
|
+
...opts,
|
|
477
|
+
});
|
|
478
|
+
Object.setPrototypeOf(this, InvalidNetworkSettings.prototype);
|
|
479
|
+
this.Message = opts.Message;
|
|
480
|
+
this.InvalidSubnetId = opts.InvalidSubnetId;
|
|
481
|
+
this.InvalidSecurityGroupId = opts.InvalidSecurityGroupId;
|
|
482
|
+
this.InvalidRouteTableId = opts.InvalidRouteTableId;
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
class InvalidPerUnitStorageThroughput extends FSxServiceException {
|
|
486
|
+
name = "InvalidPerUnitStorageThroughput";
|
|
487
|
+
$fault = "client";
|
|
488
|
+
Message;
|
|
489
|
+
constructor(opts) {
|
|
490
|
+
super({
|
|
491
|
+
name: "InvalidPerUnitStorageThroughput",
|
|
492
|
+
$fault: "client",
|
|
493
|
+
...opts,
|
|
494
|
+
});
|
|
495
|
+
Object.setPrototypeOf(this, InvalidPerUnitStorageThroughput.prototype);
|
|
496
|
+
this.Message = opts.Message;
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
class MissingFileCacheConfiguration extends FSxServiceException {
|
|
500
|
+
name = "MissingFileCacheConfiguration";
|
|
501
|
+
$fault = "client";
|
|
502
|
+
Message;
|
|
503
|
+
constructor(opts) {
|
|
504
|
+
super({
|
|
505
|
+
name: "MissingFileCacheConfiguration",
|
|
506
|
+
$fault: "client",
|
|
507
|
+
...opts,
|
|
508
|
+
});
|
|
509
|
+
Object.setPrototypeOf(this, MissingFileCacheConfiguration.prototype);
|
|
510
|
+
this.Message = opts.Message;
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
class InvalidExportPath extends FSxServiceException {
|
|
514
|
+
name = "InvalidExportPath";
|
|
515
|
+
$fault = "client";
|
|
516
|
+
Message;
|
|
517
|
+
constructor(opts) {
|
|
518
|
+
super({
|
|
519
|
+
name: "InvalidExportPath",
|
|
520
|
+
$fault: "client",
|
|
521
|
+
...opts,
|
|
522
|
+
});
|
|
523
|
+
Object.setPrototypeOf(this, InvalidExportPath.prototype);
|
|
524
|
+
this.Message = opts.Message;
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
class InvalidImportPath extends FSxServiceException {
|
|
528
|
+
name = "InvalidImportPath";
|
|
529
|
+
$fault = "client";
|
|
530
|
+
Message;
|
|
531
|
+
constructor(opts) {
|
|
532
|
+
super({
|
|
533
|
+
name: "InvalidImportPath",
|
|
534
|
+
$fault: "client",
|
|
535
|
+
...opts,
|
|
536
|
+
});
|
|
537
|
+
Object.setPrototypeOf(this, InvalidImportPath.prototype);
|
|
538
|
+
this.Message = opts.Message;
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
class MissingFileSystemConfiguration extends FSxServiceException {
|
|
542
|
+
name = "MissingFileSystemConfiguration";
|
|
543
|
+
$fault = "client";
|
|
544
|
+
Message;
|
|
545
|
+
constructor(opts) {
|
|
546
|
+
super({
|
|
547
|
+
name: "MissingFileSystemConfiguration",
|
|
548
|
+
$fault: "client",
|
|
549
|
+
...opts,
|
|
550
|
+
});
|
|
551
|
+
Object.setPrototypeOf(this, MissingFileSystemConfiguration.prototype);
|
|
552
|
+
this.Message = opts.Message;
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
class MissingVolumeConfiguration extends FSxServiceException {
|
|
556
|
+
name = "MissingVolumeConfiguration";
|
|
557
|
+
$fault = "client";
|
|
558
|
+
Message;
|
|
559
|
+
constructor(opts) {
|
|
560
|
+
super({
|
|
561
|
+
name: "MissingVolumeConfiguration",
|
|
562
|
+
$fault: "client",
|
|
563
|
+
...opts,
|
|
564
|
+
});
|
|
565
|
+
Object.setPrototypeOf(this, MissingVolumeConfiguration.prototype);
|
|
566
|
+
this.Message = opts.Message;
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
class StorageVirtualMachineNotFound extends FSxServiceException {
|
|
570
|
+
name = "StorageVirtualMachineNotFound";
|
|
571
|
+
$fault = "client";
|
|
572
|
+
Message;
|
|
573
|
+
constructor(opts) {
|
|
574
|
+
super({
|
|
575
|
+
name: "StorageVirtualMachineNotFound",
|
|
576
|
+
$fault: "client",
|
|
577
|
+
...opts,
|
|
578
|
+
});
|
|
579
|
+
Object.setPrototypeOf(this, StorageVirtualMachineNotFound.prototype);
|
|
580
|
+
this.Message = opts.Message;
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
class BackupBeingCopied extends FSxServiceException {
|
|
584
|
+
name = "BackupBeingCopied";
|
|
585
|
+
$fault = "client";
|
|
586
|
+
Message;
|
|
587
|
+
BackupId;
|
|
588
|
+
constructor(opts) {
|
|
589
|
+
super({
|
|
590
|
+
name: "BackupBeingCopied",
|
|
591
|
+
$fault: "client",
|
|
592
|
+
...opts,
|
|
593
|
+
});
|
|
594
|
+
Object.setPrototypeOf(this, BackupBeingCopied.prototype);
|
|
595
|
+
this.Message = opts.Message;
|
|
596
|
+
this.BackupId = opts.BackupId;
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
class BackupRestoring extends FSxServiceException {
|
|
600
|
+
name = "BackupRestoring";
|
|
601
|
+
$fault = "client";
|
|
602
|
+
Message;
|
|
603
|
+
FileSystemId;
|
|
604
|
+
constructor(opts) {
|
|
605
|
+
super({
|
|
606
|
+
name: "BackupRestoring",
|
|
607
|
+
$fault: "client",
|
|
608
|
+
...opts,
|
|
609
|
+
});
|
|
610
|
+
Object.setPrototypeOf(this, BackupRestoring.prototype);
|
|
611
|
+
this.Message = opts.Message;
|
|
612
|
+
this.FileSystemId = opts.FileSystemId;
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
class DataRepositoryAssociationNotFound extends FSxServiceException {
|
|
616
|
+
name = "DataRepositoryAssociationNotFound";
|
|
617
|
+
$fault = "client";
|
|
618
|
+
Message;
|
|
619
|
+
constructor(opts) {
|
|
620
|
+
super({
|
|
621
|
+
name: "DataRepositoryAssociationNotFound",
|
|
622
|
+
$fault: "client",
|
|
623
|
+
...opts,
|
|
624
|
+
});
|
|
625
|
+
Object.setPrototypeOf(this, DataRepositoryAssociationNotFound.prototype);
|
|
626
|
+
this.Message = opts.Message;
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
class FileCacheNotFound extends FSxServiceException {
|
|
630
|
+
name = "FileCacheNotFound";
|
|
631
|
+
$fault = "client";
|
|
632
|
+
Message;
|
|
633
|
+
constructor(opts) {
|
|
634
|
+
super({
|
|
635
|
+
name: "FileCacheNotFound",
|
|
636
|
+
$fault: "client",
|
|
637
|
+
...opts,
|
|
638
|
+
});
|
|
639
|
+
Object.setPrototypeOf(this, FileCacheNotFound.prototype);
|
|
640
|
+
this.Message = opts.Message;
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
class SnapshotNotFound extends FSxServiceException {
|
|
644
|
+
name = "SnapshotNotFound";
|
|
645
|
+
$fault = "client";
|
|
646
|
+
Message;
|
|
647
|
+
constructor(opts) {
|
|
648
|
+
super({
|
|
649
|
+
name: "SnapshotNotFound",
|
|
650
|
+
$fault: "client",
|
|
651
|
+
...opts,
|
|
652
|
+
});
|
|
653
|
+
Object.setPrototypeOf(this, SnapshotNotFound.prototype);
|
|
654
|
+
this.Message = opts.Message;
|
|
655
|
+
}
|
|
656
|
+
}
|
|
657
|
+
class InvalidDataRepositoryType extends FSxServiceException {
|
|
658
|
+
name = "InvalidDataRepositoryType";
|
|
659
|
+
$fault = "client";
|
|
660
|
+
Message;
|
|
661
|
+
constructor(opts) {
|
|
662
|
+
super({
|
|
663
|
+
name: "InvalidDataRepositoryType",
|
|
664
|
+
$fault: "client",
|
|
665
|
+
...opts,
|
|
666
|
+
});
|
|
667
|
+
Object.setPrototypeOf(this, InvalidDataRepositoryType.prototype);
|
|
668
|
+
this.Message = opts.Message;
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
class S3AccessPointAttachmentNotFound extends FSxServiceException {
|
|
672
|
+
name = "S3AccessPointAttachmentNotFound";
|
|
673
|
+
$fault = "client";
|
|
674
|
+
Message;
|
|
675
|
+
constructor(opts) {
|
|
676
|
+
super({
|
|
677
|
+
name: "S3AccessPointAttachmentNotFound",
|
|
678
|
+
$fault: "client",
|
|
679
|
+
...opts,
|
|
680
|
+
});
|
|
681
|
+
Object.setPrototypeOf(this, S3AccessPointAttachmentNotFound.prototype);
|
|
682
|
+
this.Message = opts.Message;
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
class NotServiceResourceError extends FSxServiceException {
|
|
686
|
+
name = "NotServiceResourceError";
|
|
687
|
+
$fault = "client";
|
|
688
|
+
ResourceARN;
|
|
689
|
+
Message;
|
|
690
|
+
constructor(opts) {
|
|
691
|
+
super({
|
|
692
|
+
name: "NotServiceResourceError",
|
|
693
|
+
$fault: "client",
|
|
694
|
+
...opts,
|
|
695
|
+
});
|
|
696
|
+
Object.setPrototypeOf(this, NotServiceResourceError.prototype);
|
|
697
|
+
this.ResourceARN = opts.ResourceARN;
|
|
698
|
+
this.Message = opts.Message;
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
class ResourceDoesNotSupportTagging extends FSxServiceException {
|
|
702
|
+
name = "ResourceDoesNotSupportTagging";
|
|
703
|
+
$fault = "client";
|
|
704
|
+
ResourceARN;
|
|
705
|
+
Message;
|
|
706
|
+
constructor(opts) {
|
|
707
|
+
super({
|
|
708
|
+
name: "ResourceDoesNotSupportTagging",
|
|
709
|
+
$fault: "client",
|
|
710
|
+
...opts,
|
|
711
|
+
});
|
|
712
|
+
Object.setPrototypeOf(this, ResourceDoesNotSupportTagging.prototype);
|
|
713
|
+
this.ResourceARN = opts.ResourceARN;
|
|
714
|
+
this.Message = opts.Message;
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
class ResourceNotFound extends FSxServiceException {
|
|
718
|
+
name = "ResourceNotFound";
|
|
719
|
+
$fault = "client";
|
|
720
|
+
ResourceARN;
|
|
721
|
+
Message;
|
|
722
|
+
constructor(opts) {
|
|
723
|
+
super({
|
|
724
|
+
name: "ResourceNotFound",
|
|
725
|
+
$fault: "client",
|
|
726
|
+
...opts,
|
|
727
|
+
});
|
|
728
|
+
Object.setPrototypeOf(this, ResourceNotFound.prototype);
|
|
729
|
+
this.ResourceARN = opts.ResourceARN;
|
|
730
|
+
this.Message = opts.Message;
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
const _A = "Aggregates";
|
|
735
|
+
const _AA = "AdministrativeAction";
|
|
736
|
+
const _AAFD = "AdministrativeActionFailureDetails";
|
|
737
|
+
const _AAT = "AdministrativeActionType";
|
|
738
|
+
const _AAd = "AdministrativeActions";
|
|
739
|
+
const _ABRD = "AutomaticBackupRetentionDays";
|
|
740
|
+
const _AC = "AggregateConfiguration";
|
|
741
|
+
const _ADBA = "ActiveDirectoryBackupAttributes";
|
|
742
|
+
const _ADC = "ActiveDirectoryConfiguration";
|
|
743
|
+
const _ADE = "ActiveDirectoryError";
|
|
744
|
+
const _ADI = "ActiveDirectoryId";
|
|
745
|
+
const _AEP = "AutoExportPolicy";
|
|
746
|
+
const _AFSA = "AssociateFileSystemAliases";
|
|
747
|
+
const _AFSAR = "AssociateFileSystemAliasesRequest";
|
|
748
|
+
const _AFSARs = "AssociateFileSystemAliasesResponse";
|
|
749
|
+
const _AI = "AssociationId";
|
|
750
|
+
const _AIP = "AutoImportPolicy";
|
|
751
|
+
const _AIs = "AssociationIds";
|
|
752
|
+
const _ALC = "AuditLogConfiguration";
|
|
753
|
+
const _ALD = "AuditLogDestination";
|
|
754
|
+
const _ALV = "AuditLogVolume";
|
|
755
|
+
const _AP = "AdminPassword";
|
|
756
|
+
const _APAOBY = "AccessPointAlreadyOwnedByYou";
|
|
757
|
+
const _APu = "AutocommitPeriod";
|
|
758
|
+
const _ARTI = "AddRouteTableIds";
|
|
759
|
+
const _Al = "Alias";
|
|
760
|
+
const _Ali = "Aliases";
|
|
761
|
+
const _As = "Association";
|
|
762
|
+
const _Ass = "Associations";
|
|
763
|
+
const _B = "Backup";
|
|
764
|
+
const _BBC = "BackupBeingCopied";
|
|
765
|
+
const _BFD = "BackupFailureDetails";
|
|
766
|
+
const _BI = "BackupId";
|
|
767
|
+
const _BIMDOC = "BatchImportMetaDataOnCreate";
|
|
768
|
+
const _BIP = "BackupInProgress";
|
|
769
|
+
const _BIa = "BackupIds";
|
|
770
|
+
const _BNF = "BackupNotFound";
|
|
771
|
+
const _BR = "BackupRestoring";
|
|
772
|
+
const _BRa = "BadRequest";
|
|
773
|
+
const _BSER = "BypassSnaplockEnterpriseRetention";
|
|
774
|
+
const _Ba = "Backups";
|
|
775
|
+
const _C = "Clients";
|
|
776
|
+
const _CAASAP = "CreateAndAttachS3AccessPoint";
|
|
777
|
+
const _CAASAPOC = "CreateAndAttachS3AccessPointOntapConfiguration";
|
|
778
|
+
const _CAASAPOZFSC = "CreateAndAttachS3AccessPointOpenZFSConfiguration";
|
|
779
|
+
const _CAASAPR = "CreateAndAttachS3AccessPointRequest";
|
|
780
|
+
const _CAASAPRr = "CreateAndAttachS3AccessPointResponse";
|
|
781
|
+
const _CAASAPSC = "CreateAndAttachS3AccessPointS3Configuration";
|
|
782
|
+
const _CAC = "CreateAggregateConfiguration";
|
|
783
|
+
const _CB = "CopyBackup";
|
|
784
|
+
const _CBR = "CopyBackupRequest";
|
|
785
|
+
const _CBRo = "CopyBackupResponse";
|
|
786
|
+
const _CBRr = "CreateBackupRequest";
|
|
787
|
+
const _CBRre = "CreateBackupResponse";
|
|
788
|
+
const _CBr = "CreateBackup";
|
|
789
|
+
const _CC = "ClientConfigurations";
|
|
790
|
+
const _CDRA = "CreateDataRepositoryAssociation";
|
|
791
|
+
const _CDRAR = "CreateDataRepositoryAssociationRequest";
|
|
792
|
+
const _CDRARr = "CreateDataRepositoryAssociationResponse";
|
|
793
|
+
const _CDRT = "CancelDataRepositoryTask";
|
|
794
|
+
const _CDRTR = "CancelDataRepositoryTaskRequest";
|
|
795
|
+
const _CDRTRa = "CancelDataRepositoryTaskResponse";
|
|
796
|
+
const _CDRTRr = "CreateDataRepositoryTaskRequest";
|
|
797
|
+
const _CDRTRre = "CreateDataRepositoryTaskResponse";
|
|
798
|
+
const _CDRTr = "CreateDataRepositoryTask";
|
|
799
|
+
const _CFC = "CreateFileCache";
|
|
800
|
+
const _CFCDRA = "CreateFileCacheDataRepositoryAssociations";
|
|
801
|
+
const _CFCLC = "CreateFileCacheLustreConfiguration";
|
|
802
|
+
const _CFCR = "CreateFileCacheRequest";
|
|
803
|
+
const _CFCRr = "CreateFileCacheResponse";
|
|
804
|
+
const _CFS = "CreateFileSystem";
|
|
805
|
+
const _CFSFB = "CreateFileSystemFromBackup";
|
|
806
|
+
const _CFSFBR = "CreateFileSystemFromBackupRequest";
|
|
807
|
+
const _CFSFBRr = "CreateFileSystemFromBackupResponse";
|
|
808
|
+
const _CFSLC = "CreateFileSystemLustreConfiguration";
|
|
809
|
+
const _CFSLMC = "CreateFileSystemLustreMetadataConfiguration";
|
|
810
|
+
const _CFSOC = "CreateFileSystemOntapConfiguration";
|
|
811
|
+
const _CFSOZFSC = "CreateFileSystemOpenZFSConfiguration";
|
|
812
|
+
const _CFSR = "CreateFileSystemRequest";
|
|
813
|
+
const _CFSRr = "CreateFileSystemResponse";
|
|
814
|
+
const _CFSWC = "CreateFileSystemWindowsConfiguration";
|
|
815
|
+
const _COVC = "CreateOntapVolumeConfiguration";
|
|
816
|
+
const _COZFSOSC = "CreateOpenZFSOriginSnapshotConfiguration";
|
|
817
|
+
const _COZFSVC = "CreateOpenZFSVolumeConfiguration";
|
|
818
|
+
const _CP = "CoolingPeriod";
|
|
819
|
+
const _CPA = "ConstituentsPerAggregate";
|
|
820
|
+
const _CR = "CompletionReport";
|
|
821
|
+
const _CRT = "ClientRequestToken";
|
|
822
|
+
const _CS = "CopyStrategy";
|
|
823
|
+
const _CSADC = "CreateSvmActiveDirectoryConfiguration";
|
|
824
|
+
const _CSAUV = "CopySnapshotAndUpdateVolume";
|
|
825
|
+
const _CSAUVR = "CopySnapshotAndUpdateVolumeRequest";
|
|
826
|
+
const _CSAUVRo = "CopySnapshotAndUpdateVolumeResponse";
|
|
827
|
+
const _CSC = "CreateSnaplockConfiguration";
|
|
828
|
+
const _CSR = "CreateSnapshotRequest";
|
|
829
|
+
const _CSRr = "CreateSnapshotResponse";
|
|
830
|
+
const _CSVM = "CreateStorageVirtualMachine";
|
|
831
|
+
const _CSVMR = "CreateStorageVirtualMachineRequest";
|
|
832
|
+
const _CSVMRr = "CreateStorageVirtualMachineResponse";
|
|
833
|
+
const _CSr = "CreateSnapshot";
|
|
834
|
+
const _CT = "CreationTime";
|
|
835
|
+
const _CTR = "CapacityToRelease";
|
|
836
|
+
const _CTTB = "CopyTagsToBackups";
|
|
837
|
+
const _CTTDRA = "CopyTagsToDataRepositoryAssociations";
|
|
838
|
+
const _CTTS = "CopyTagsToSnapshots";
|
|
839
|
+
const _CTTV = "CopyTagsToVolumes";
|
|
840
|
+
const _CTo = "CopyTags";
|
|
841
|
+
const _CV = "CreateVolume";
|
|
842
|
+
const _CVFB = "CreateVolumeFromBackup";
|
|
843
|
+
const _CVFBR = "CreateVolumeFromBackupRequest";
|
|
844
|
+
const _CVFBRr = "CreateVolumeFromBackupResponse";
|
|
845
|
+
const _CVR = "CreateVolumeRequest";
|
|
846
|
+
const _CVRr = "CreateVolumeResponse";
|
|
847
|
+
const _D = "Destination";
|
|
848
|
+
const _DABST = "DailyAutomaticBackupStartTime";
|
|
849
|
+
const _DADSAP = "DetachAndDeleteS3AccessPoint";
|
|
850
|
+
const _DADSAPR = "DetachAndDeleteS3AccessPointRequest";
|
|
851
|
+
const _DADSAPRe = "DetachAndDeleteS3AccessPointResponse";
|
|
852
|
+
const _DB = "DeleteBackup";
|
|
853
|
+
const _DBR = "DeleteBackupRequest";
|
|
854
|
+
const _DBRe = "DeleteBackupResponse";
|
|
855
|
+
const _DBRes = "DescribeBackupsRequest";
|
|
856
|
+
const _DBResc = "DescribeBackupsResponse";
|
|
857
|
+
const _DBe = "DescribeBackups";
|
|
858
|
+
const _DCT = "DriveCacheType";
|
|
859
|
+
const _DCTa = "DataCompressionType";
|
|
860
|
+
const _DCV = "DeleteClonedVolumes";
|
|
861
|
+
const _DDIFS = "DeleteDataInFileSystem";
|
|
862
|
+
const _DDRA = "DeleteDataRepositoryAssociation";
|
|
863
|
+
const _DDRAR = "DeleteDataRepositoryAssociationRequest";
|
|
864
|
+
const _DDRARe = "DeleteDataRepositoryAssociationResponse";
|
|
865
|
+
const _DDRARes = "DescribeDataRepositoryAssociationsRequest";
|
|
866
|
+
const _DDRAResc = "DescribeDataRepositoryAssociationsResponse";
|
|
867
|
+
const _DDRAe = "DescribeDataRepositoryAssociations";
|
|
868
|
+
const _DDRT = "DescribeDataRepositoryTasks";
|
|
869
|
+
const _DDRTR = "DescribeDataRepositoryTasksRequest";
|
|
870
|
+
const _DDRTRe = "DescribeDataRepositoryTasksResponse";
|
|
871
|
+
const _DFC = "DeleteFileCache";
|
|
872
|
+
const _DFCR = "DeleteFileCacheRequest";
|
|
873
|
+
const _DFCRe = "DeleteFileCacheResponse";
|
|
874
|
+
const _DFCRes = "DescribeFileCachesRequest";
|
|
875
|
+
const _DFCResc = "DescribeFileCachesResponse";
|
|
876
|
+
const _DFCe = "DescribeFileCaches";
|
|
877
|
+
const _DFS = "DeleteFileSystem";
|
|
878
|
+
const _DFSA = "DescribeFileSystemAliases";
|
|
879
|
+
const _DFSAR = "DescribeFileSystemAliasesRequest";
|
|
880
|
+
const _DFSARe = "DescribeFileSystemAliasesResponse";
|
|
881
|
+
const _DFSARi = "DisassociateFileSystemAliasesRequest";
|
|
882
|
+
const _DFSARis = "DisassociateFileSystemAliasesResponse";
|
|
883
|
+
const _DFSAi = "DisassociateFileSystemAliases";
|
|
884
|
+
const _DFSLC = "DeleteFileSystemLustreConfiguration";
|
|
885
|
+
const _DFSLR = "DeleteFileSystemLustreResponse";
|
|
886
|
+
const _DFSOZFSC = "DeleteFileSystemOpenZFSConfiguration";
|
|
887
|
+
const _DFSOZFSR = "DeleteFileSystemOpenZFSResponse";
|
|
888
|
+
const _DFSR = "DeleteFileSystemRequest";
|
|
889
|
+
const _DFSRe = "DeleteFileSystemResponse";
|
|
890
|
+
const _DFSRes = "DescribeFileSystemsRequest";
|
|
891
|
+
const _DFSResc = "DescribeFileSystemsResponse";
|
|
892
|
+
const _DFSWC = "DeleteFileSystemWindowsConfiguration";
|
|
893
|
+
const _DFSWR = "DeleteFileSystemWindowsResponse";
|
|
894
|
+
const _DFSe = "DescribeFileSystems";
|
|
895
|
+
const _DI = "DirectoryInformation";
|
|
896
|
+
const _DIC = "DiskIopsConfiguration";
|
|
897
|
+
const _DID = "DeleteIntermediateData";
|
|
898
|
+
const _DIS = "DeleteIntermediateSnaphots";
|
|
899
|
+
const _DIn = "DnsIps";
|
|
900
|
+
const _DJSAS = "DomainJoinServiceAccountSecret";
|
|
901
|
+
const _DN = "DomainName";
|
|
902
|
+
const _DNSN = "DNSName";
|
|
903
|
+
const _DP = "DirectoryPassword";
|
|
904
|
+
const _DR = "DefaultRetention";
|
|
905
|
+
const _DRA = "DataRepositoryAssociations";
|
|
906
|
+
const _DRAI = "DataRepositoryAssociationIds";
|
|
907
|
+
const _DRANF = "DataRepositoryAssociationNotFound";
|
|
908
|
+
const _DRAa = "DataRepositoryAssociation";
|
|
909
|
+
const _DRC = "DataRepositoryConfiguration";
|
|
910
|
+
const _DRCC = "DataReadCacheConfiguration";
|
|
911
|
+
const _DRFD = "DataRepositoryFailureDetails";
|
|
912
|
+
const _DRP = "DataRepositoryPath";
|
|
913
|
+
const _DRS = "DataRepositorySubdirectories";
|
|
914
|
+
const _DRT = "DataRepositoryTask";
|
|
915
|
+
const _DRTE = "DataRepositoryTaskEnded";
|
|
916
|
+
const _DRTEa = "DataRepositoryTaskExecuting";
|
|
917
|
+
const _DRTF = "DataRepositoryTaskFilter";
|
|
918
|
+
const _DRTFD = "DataRepositoryTaskFailureDetails";
|
|
919
|
+
const _DRTFa = "DataRepositoryTaskFilters";
|
|
920
|
+
const _DRTNF = "DataRepositoryTaskNotFound";
|
|
921
|
+
const _DRTS = "DataRepositoryTaskStatus";
|
|
922
|
+
const _DRTa = "DataRepositoryTasks";
|
|
923
|
+
const _DS = "DestinationSnapshot";
|
|
924
|
+
const _DSAPA = "DescribeS3AccessPointAttachments";
|
|
925
|
+
const _DSAPAR = "DescribeS3AccessPointAttachmentsRequest";
|
|
926
|
+
const _DSAPARe = "DescribeS3AccessPointAttachmentsResponse";
|
|
927
|
+
const _DSLA = "DurationSinceLastAccess";
|
|
928
|
+
const _DSR = "DeleteSnapshotRequest";
|
|
929
|
+
const _DSRe = "DeleteSnapshotResponse";
|
|
930
|
+
const _DSRes = "DescribeSnapshotsRequest";
|
|
931
|
+
const _DSResc = "DescribeSnapshotsResponse";
|
|
932
|
+
const _DSVC = "DescribeSharedVpcConfiguration";
|
|
933
|
+
const _DSVCR = "DescribeSharedVpcConfigurationRequest";
|
|
934
|
+
const _DSVCRe = "DescribeSharedVpcConfigurationResponse";
|
|
935
|
+
const _DSVM = "DeleteStorageVirtualMachine";
|
|
936
|
+
const _DSVMR = "DeleteStorageVirtualMachineRequest";
|
|
937
|
+
const _DSVMRe = "DeleteStorageVirtualMachineResponse";
|
|
938
|
+
const _DSVMRes = "DescribeStorageVirtualMachinesRequest";
|
|
939
|
+
const _DSVMResc = "DescribeStorageVirtualMachinesResponse";
|
|
940
|
+
const _DSVMe = "DescribeStorageVirtualMachines";
|
|
941
|
+
const _DSe = "DeleteSnapshot";
|
|
942
|
+
const _DSes = "DescribeSnapshots";
|
|
943
|
+
const _DT = "DeploymentType";
|
|
944
|
+
const _DV = "DeleteVolume";
|
|
945
|
+
const _DVOC = "DeleteVolumeOntapConfiguration";
|
|
946
|
+
const _DVOR = "DeleteVolumeOntapResponse";
|
|
947
|
+
const _DVOZFSC = "DeleteVolumeOpenZFSConfiguration";
|
|
948
|
+
const _DVR = "DeleteVolumeRequest";
|
|
949
|
+
const _DVRe = "DeleteVolumeResponse";
|
|
950
|
+
const _DVRes = "DescribeVolumesRequest";
|
|
951
|
+
const _DVResc = "DescribeVolumesResponse";
|
|
952
|
+
const _DVe = "DescribeVolumes";
|
|
953
|
+
const _E = "Error";
|
|
954
|
+
const _EC = "ErrorCode";
|
|
955
|
+
const _EE = "EfaEnabled";
|
|
956
|
+
const _EFRTUFPA = "EnableFsxRouteTableUpdatesFromParticipantAccounts";
|
|
957
|
+
const _EIA = "EndpointIpAddress";
|
|
958
|
+
const _EIAR = "EndpointIpAddressRange";
|
|
959
|
+
const _EIARn = "EndpointIpv6AddressRange";
|
|
960
|
+
const _EIAn = "EndpointIpv6Address";
|
|
961
|
+
const _ELD = "EventLogDestination";
|
|
962
|
+
const _EP = "ExportPath";
|
|
963
|
+
const _ET = "EndTime";
|
|
964
|
+
const _En = "Enabled";
|
|
965
|
+
const _End = "Endpoints";
|
|
966
|
+
const _Ev = "Events";
|
|
967
|
+
const _F = "Format";
|
|
968
|
+
const _FAALL = "FileAccessAuditLogLevel";
|
|
969
|
+
const _FAP = "FsxAdminPassword";
|
|
970
|
+
const _FBI = "FinalBackupId";
|
|
971
|
+
const _FBT = "FinalBackupTags";
|
|
972
|
+
const _FC = "FileCache";
|
|
973
|
+
const _FCC = "FileCacheCreating";
|
|
974
|
+
const _FCDRA = "FileCacheDataRepositoryAssociation";
|
|
975
|
+
const _FCET = "FlexCacheEndpointType";
|
|
976
|
+
const _FCFD = "FileCacheFailureDetails";
|
|
977
|
+
const _FCI = "FileCacheId";
|
|
978
|
+
const _FCIi = "FileCacheIds";
|
|
979
|
+
const _FCLC = "FileCacheLustreConfiguration";
|
|
980
|
+
const _FCLMC = "FileCacheLustreMetadataConfiguration";
|
|
981
|
+
const _FCNF = "FileCacheNotFound";
|
|
982
|
+
const _FCNFSC = "FileCacheNFSConfiguration";
|
|
983
|
+
const _FCP = "FileCachePath";
|
|
984
|
+
const _FCT = "FileCacheType";
|
|
985
|
+
const _FCTV = "FileCacheTypeVersion";
|
|
986
|
+
const _FCa = "FailedCount";
|
|
987
|
+
const _FCi = "FileCaches";
|
|
988
|
+
const _FCs = "FsrmConfiguration";
|
|
989
|
+
const _FD = "FailureDetails";
|
|
990
|
+
const _FS = "FileSystem";
|
|
991
|
+
const _FSAALL = "FileShareAccessAuditLogLevel";
|
|
992
|
+
const _FSAG = "FileSystemAdministratorsGroup";
|
|
993
|
+
const _FSE = "FileSystemEndpoint";
|
|
994
|
+
const _FSEi = "FileSystemEndpoints";
|
|
995
|
+
const _FSEs = "FsrmServiceEnabled";
|
|
996
|
+
const _FSFD = "FileSystemFailureDetails";
|
|
997
|
+
const _FSI = "FileSystemId";
|
|
998
|
+
const _FSIi = "FileSystemIdentity";
|
|
999
|
+
const _FSIil = "FileSystemIds";
|
|
1000
|
+
const _FSLMC = "FileSystemLustreMetadataConfiguration";
|
|
1001
|
+
const _FSNF = "FileSystemNotFound";
|
|
1002
|
+
const _FSP = "FileSystemPath";
|
|
1003
|
+
const _FST = "FileSystemType";
|
|
1004
|
+
const _FSTV = "FileSystemTypeVersion";
|
|
1005
|
+
const _FSi = "FileSystems";
|
|
1006
|
+
const _Fi = "Filters";
|
|
1007
|
+
const _Fil = "Filter";
|
|
1008
|
+
const _G = "Gid";
|
|
1009
|
+
const _HAP = "HAPairs";
|
|
1010
|
+
const _I = "Iops";
|
|
1011
|
+
const _IA = "IpAddresses";
|
|
1012
|
+
const _IAP = "InvalidAccessPoint";
|
|
1013
|
+
const _IAp = "Ipv6Addresses";
|
|
1014
|
+
const _IDKK = "InvalidDestinationKmsKey";
|
|
1015
|
+
const _IDRT = "InvalidDataRepositoryType";
|
|
1016
|
+
const _IEP = "InvalidExportPath";
|
|
1017
|
+
const _IFCS = "ImportedFileChunkSize";
|
|
1018
|
+
const _IIP = "InvalidImportPath";
|
|
1019
|
+
const _INS = "InvalidNetworkSettings";
|
|
1020
|
+
const _IP = "ImportPath";
|
|
1021
|
+
const _IPE = "IncompatibleParameterError";
|
|
1022
|
+
const _IPUST = "InvalidPerUnitStorageThroughput";
|
|
1023
|
+
const _IR = "InvalidRegion";
|
|
1024
|
+
const _IRFMAZ = "IncompatibleRegionForMultiAZ";
|
|
1025
|
+
const _IRTI = "InvalidRouteTableId";
|
|
1026
|
+
const _IRn = "InvalidRequest";
|
|
1027
|
+
const _IS = "IncludeShared";
|
|
1028
|
+
const _ISE = "InternalServerError";
|
|
1029
|
+
const _ISGI = "InvalidSecurityGroupId";
|
|
1030
|
+
const _ISI = "InvalidSubnetId";
|
|
1031
|
+
const _ISKK = "InvalidSourceKmsKey";
|
|
1032
|
+
const _Id = "Id";
|
|
1033
|
+
const _In = "Intercluster";
|
|
1034
|
+
const _Is = "Iscsi";
|
|
1035
|
+
const _JP = "JunctionPath";
|
|
1036
|
+
const _K = "Key";
|
|
1037
|
+
const _KKI = "KmsKeyId";
|
|
1038
|
+
const _L = "Limit";
|
|
1039
|
+
const _LC = "LustreConfiguration";
|
|
1040
|
+
const _LCo = "LogConfiguration";
|
|
1041
|
+
const _LFSC = "LustreFileSystemConfiguration";
|
|
1042
|
+
const _LLC = "LustreLogConfiguration";
|
|
1043
|
+
const _LLCC = "LustreLogCreateConfiguration";
|
|
1044
|
+
const _LR = "LustreResponse";
|
|
1045
|
+
const _LRCC = "LustreReadCacheConfiguration";
|
|
1046
|
+
const _LRSC = "LustreRootSquashConfiguration";
|
|
1047
|
+
const _LTFR = "ListTagsForResource";
|
|
1048
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
1049
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
1050
|
+
const _LTR = "LifecycleTransitionReason";
|
|
1051
|
+
const _LUT = "LastUpdatedTime";
|
|
1052
|
+
const _Le = "Level";
|
|
1053
|
+
const _Li = "Lifecycle";
|
|
1054
|
+
const _M = "Message";
|
|
1055
|
+
const _MC = "MetadataConfiguration";
|
|
1056
|
+
const _MFCC = "MissingFileCacheConfiguration";
|
|
1057
|
+
const _MFSC = "MissingFileSystemConfiguration";
|
|
1058
|
+
const _MN = "MountName";
|
|
1059
|
+
const _MOIP = "MaintenanceOperationsInProgress";
|
|
1060
|
+
const _MR = "MaxResults";
|
|
1061
|
+
const _MRa = "MaximumRetention";
|
|
1062
|
+
const _MRi = "MinimumRetention";
|
|
1063
|
+
const _MVC = "MissingVolumeConfiguration";
|
|
1064
|
+
const _Ma = "Management";
|
|
1065
|
+
const _Mo = "Mode";
|
|
1066
|
+
const _N = "Name";
|
|
1067
|
+
const _NBN = "NetBiosName";
|
|
1068
|
+
const _NE = "NfsExports";
|
|
1069
|
+
const _NFS = "NFS";
|
|
1070
|
+
const _NFSDRC = "NFSDataRepositoryConfiguration";
|
|
1071
|
+
const _NII = "NetworkInterfaceIds";
|
|
1072
|
+
const _NSN = "NoSquashNids";
|
|
1073
|
+
const _NSRE = "NotServiceResourceError";
|
|
1074
|
+
const _NT = "NetworkType";
|
|
1075
|
+
const _NTe = "NextToken";
|
|
1076
|
+
const _Na = "Names";
|
|
1077
|
+
const _Nf = "Nfs";
|
|
1078
|
+
const _O = "Options";
|
|
1079
|
+
const _OC = "OntapConfiguration";
|
|
1080
|
+
const _OFSC = "OntapFileSystemConfiguration";
|
|
1081
|
+
const _OFSI = "OntapFileSystemIdentity";
|
|
1082
|
+
const _OI = "OwnerId";
|
|
1083
|
+
const _OR = "OntapResponse";
|
|
1084
|
+
const _OS = "OriginSnapshot";
|
|
1085
|
+
const _OUDN = "OrganizationalUnitDistinguishedName";
|
|
1086
|
+
const _OUFSU = "OntapUnixFileSystemUser";
|
|
1087
|
+
const _OVC = "OntapVolumeConfiguration";
|
|
1088
|
+
const _OVT = "OntapVolumeType";
|
|
1089
|
+
const _OWFSU = "OntapWindowsFileSystemUser";
|
|
1090
|
+
const _OZFSC = "OpenZFSConfiguration";
|
|
1091
|
+
const _OZFSCC = "OpenZFSClientConfiguration";
|
|
1092
|
+
const _OZFSCCp = "OpenZFSClientConfigurations";
|
|
1093
|
+
const _OZFSCRVC = "OpenZFSCreateRootVolumeConfiguration";
|
|
1094
|
+
const _OZFSFSC = "OpenZFSFileSystemConfiguration";
|
|
1095
|
+
const _OZFSFSI = "OpenZFSFileSystemIdentity";
|
|
1096
|
+
const _OZFSNE = "OpenZFSNfsExport";
|
|
1097
|
+
const _OZFSNEp = "OpenZFSNfsExports";
|
|
1098
|
+
const _OZFSOSC = "OpenZFSOriginSnapshotConfiguration";
|
|
1099
|
+
const _OZFSPFSU = "OpenZFSPosixFileSystemUser";
|
|
1100
|
+
const _OZFSR = "OpenZFSResponse";
|
|
1101
|
+
const _OZFSRCC = "OpenZFSReadCacheConfiguration";
|
|
1102
|
+
const _OZFSUAGQ = "OpenZFSUserAndGroupQuotas";
|
|
1103
|
+
const _OZFSUOGQ = "OpenZFSUserOrGroupQuota";
|
|
1104
|
+
const _OZFSVC = "OpenZFSVolumeConfiguration";
|
|
1105
|
+
const _P = "Parameter";
|
|
1106
|
+
const _PD = "PrivilegedDelete";
|
|
1107
|
+
const _PFSI = "PreferredFileServerIp";
|
|
1108
|
+
const _PFSIr = "PreferredFileServerIpv6";
|
|
1109
|
+
const _PP = "ProgressPercent";
|
|
1110
|
+
const _PSI = "PreferredSubnetId";
|
|
1111
|
+
const _PU = "PosixUser";
|
|
1112
|
+
const _PUST = "PerUnitStorageThroughput";
|
|
1113
|
+
const _PVI = "ParentVolumeId";
|
|
1114
|
+
const _Pa = "Path";
|
|
1115
|
+
const _Pas = "Password";
|
|
1116
|
+
const _Pat = "Paths";
|
|
1117
|
+
const _Po = "Policy";
|
|
1118
|
+
const _R = "Report";
|
|
1119
|
+
const _RAE = "RemoteAdministrationEndpoint";
|
|
1120
|
+
const _RARN = "ResourceARN";
|
|
1121
|
+
const _RC = "ReleaseConfiguration";
|
|
1122
|
+
const _RCC = "ReadCacheConfiguration";
|
|
1123
|
+
const _RCe = "ReleasedCapacity";
|
|
1124
|
+
const _RDNST = "ResourceDoesNotSupportTagging";
|
|
1125
|
+
const _RFSNVL = "ReleaseFileSystemNfsV3Locks";
|
|
1126
|
+
const _RFSNVLR = "ReleaseFileSystemNfsV3LocksRequest";
|
|
1127
|
+
const _RFSNVLRe = "ReleaseFileSystemNfsV3LocksResponse";
|
|
1128
|
+
const _RNF = "ResourceNotFound";
|
|
1129
|
+
const _RO = "ReadOnly";
|
|
1130
|
+
const _RP = "RetentionPeriod";
|
|
1131
|
+
const _RRTI = "RemoveRouteTableIds";
|
|
1132
|
+
const _RS = "RootSquash";
|
|
1133
|
+
const _RSC = "RootSquashConfiguration";
|
|
1134
|
+
const _RSKB = "RecordSizeKiB";
|
|
1135
|
+
const _RT = "RequestTime";
|
|
1136
|
+
const _RTB = "RemainingTransferBytes";
|
|
1137
|
+
const _RTI = "RouteTableIds";
|
|
1138
|
+
const _RTS = "RestoreToSnapshot";
|
|
1139
|
+
const _RTe = "ResourceType";
|
|
1140
|
+
const _RVC = "RootVolumeConfiguration";
|
|
1141
|
+
const _RVFS = "RestoreVolumeFromSnapshot";
|
|
1142
|
+
const _RVFSR = "RestoreVolumeFromSnapshotRequest";
|
|
1143
|
+
const _RVFSRe = "RestoreVolumeFromSnapshotResponse";
|
|
1144
|
+
const _RVI = "RootVolumeId";
|
|
1145
|
+
const _RVSS = "RootVolumeSecurityStyle";
|
|
1146
|
+
const _S = "Status";
|
|
1147
|
+
const _SADC = "SvmActiveDirectoryConfiguration";
|
|
1148
|
+
const _SAP = "S3AccessPoint";
|
|
1149
|
+
const _SAPA = "S3AccessPointAttachment";
|
|
1150
|
+
const _SAPAF = "S3AccessPointAttachmentsFilter";
|
|
1151
|
+
const _SAPAFc = "S3AccessPointAttachmentsFilters";
|
|
1152
|
+
const _SAPANF = "S3AccessPointAttachmentNotFound";
|
|
1153
|
+
const _SAPAc = "S3AccessPointAttachments";
|
|
1154
|
+
const _SAPOC = "S3AccessPointOntapConfiguration";
|
|
1155
|
+
const _SAPOZFSC = "S3AccessPointOpenZFSConfiguration";
|
|
1156
|
+
const _SAPVC = "S3AccessPointVpcConfiguration";
|
|
1157
|
+
const _SAPv = "SvmAdminPassword";
|
|
1158
|
+
const _SARN = "SnapshotARN";
|
|
1159
|
+
const _SBI = "SourceBackupId";
|
|
1160
|
+
const _SBR = "SourceBackupRegion";
|
|
1161
|
+
const _SBU = "SourceBackupUnavailable";
|
|
1162
|
+
const _SC = "StorageCapacity";
|
|
1163
|
+
const _SCQGB = "StorageCapacityQuotaGiB";
|
|
1164
|
+
const _SCRGB = "StorageCapacityReservationGiB";
|
|
1165
|
+
const _SCn = "SnaplockConfiguration";
|
|
1166
|
+
const _SCu = "SucceededCount";
|
|
1167
|
+
const _SDRC = "S3DataRepositoryConfiguration";
|
|
1168
|
+
const _SE = "SvmEndpoint";
|
|
1169
|
+
const _SEE = "StorageEfficiencyEnabled";
|
|
1170
|
+
const _SEv = "SvmEndpoints";
|
|
1171
|
+
const _SF = "SnapshotFilter";
|
|
1172
|
+
const _SFB = "SkipFinalBackup";
|
|
1173
|
+
const _SFn = "SnapshotFilters";
|
|
1174
|
+
const _SG = "SecondaryGids";
|
|
1175
|
+
const _SGB = "SizeGiB";
|
|
1176
|
+
const _SGI = "SecurityGroupIds";
|
|
1177
|
+
const _SI = "SubnetIds";
|
|
1178
|
+
const _SIB = "SizeInBytes";
|
|
1179
|
+
const _SIM = "SizeInMegabytes";
|
|
1180
|
+
const _SIn = "SnapshotId";
|
|
1181
|
+
const _SIna = "SnapshotIds";
|
|
1182
|
+
const _SLE = "ServiceLimitExceeded";
|
|
1183
|
+
const _SM = "SizingMode";
|
|
1184
|
+
const _SMADA = "SelfManagedActiveDirectoryAttributes";
|
|
1185
|
+
const _SMADC = "SelfManagedActiveDirectoryConfiguration";
|
|
1186
|
+
const _SMADCU = "SelfManagedActiveDirectoryConfigurationUpdates";
|
|
1187
|
+
const _SMSR = "StartMisconfiguredStateRecovery";
|
|
1188
|
+
const _SMSRR = "StartMisconfiguredStateRecoveryRequest";
|
|
1189
|
+
const _SMSRRt = "StartMisconfiguredStateRecoveryResponse";
|
|
1190
|
+
const _SNF = "SnapshotNotFound";
|
|
1191
|
+
const _SP = "SnapshotPolicy";
|
|
1192
|
+
const _SR = "SourceRegion";
|
|
1193
|
+
const _SRP = "SnaplockRetentionPeriod";
|
|
1194
|
+
const _SS = "SecurityStyle";
|
|
1195
|
+
const _SSARN = "SourceSnapshotARN";
|
|
1196
|
+
const _ST = "StorageType";
|
|
1197
|
+
const _STn = "SnaplockType";
|
|
1198
|
+
const _STt = "StartTime";
|
|
1199
|
+
const _SVM = "StorageVirtualMachine";
|
|
1200
|
+
const _SVMF = "StorageVirtualMachineFilter";
|
|
1201
|
+
const _SVMFt = "StorageVirtualMachineFilters";
|
|
1202
|
+
const _SVMI = "StorageVirtualMachineId";
|
|
1203
|
+
const _SVMIt = "StorageVirtualMachineIds";
|
|
1204
|
+
const _SVMNF = "StorageVirtualMachineNotFound";
|
|
1205
|
+
const _SVMR = "StorageVirtualMachineRoot";
|
|
1206
|
+
const _SVMt = "StorageVirtualMachines";
|
|
1207
|
+
const _S_ = "S3";
|
|
1208
|
+
const _Sc = "Scope";
|
|
1209
|
+
const _Sm = "Smb";
|
|
1210
|
+
const _Sn = "Snapshot";
|
|
1211
|
+
const _Sna = "Snapshots";
|
|
1212
|
+
const _Su = "Subtype";
|
|
1213
|
+
const _T = "Type";
|
|
1214
|
+
const _TC = "TotalConstituents";
|
|
1215
|
+
const _TCPHAP = "ThroughputCapacityPerHAPair";
|
|
1216
|
+
const _TCh = "ThroughputCapacity";
|
|
1217
|
+
const _TCo = "TotalCount";
|
|
1218
|
+
const _TFSV = "TargetFileSystemValues";
|
|
1219
|
+
const _TI = "TaskId";
|
|
1220
|
+
const _TIa = "TaskIds";
|
|
1221
|
+
const _TK = "TagKeys";
|
|
1222
|
+
const _TMAP = "TooManyAccessPoints";
|
|
1223
|
+
const _TP = "TieringPolicy";
|
|
1224
|
+
const _TR = "TagResource";
|
|
1225
|
+
const _TRR = "TagResourceRequest";
|
|
1226
|
+
const _TRRa = "TagResourceResponse";
|
|
1227
|
+
const _TSV = "TargetSnapshotValues";
|
|
1228
|
+
const _TTB = "TotalTransferBytes";
|
|
1229
|
+
const _TVV = "TargetVolumeValues";
|
|
1230
|
+
const _Ta = "Tags";
|
|
1231
|
+
const _Tag = "Tag";
|
|
1232
|
+
const _U = "Unit";
|
|
1233
|
+
const _UAGQ = "UserAndGroupQuotas";
|
|
1234
|
+
const _UDRA = "UpdateDataRepositoryAssociation";
|
|
1235
|
+
const _UDRAR = "UpdateDataRepositoryAssociationRequest";
|
|
1236
|
+
const _UDRARp = "UpdateDataRepositoryAssociationResponse";
|
|
1237
|
+
const _UFC = "UpdateFileCache";
|
|
1238
|
+
const _UFCLC = "UpdateFileCacheLustreConfiguration";
|
|
1239
|
+
const _UFCR = "UpdateFileCacheRequest";
|
|
1240
|
+
const _UFCRp = "UpdateFileCacheResponse";
|
|
1241
|
+
const _UFS = "UpdateFileSystem";
|
|
1242
|
+
const _UFSLC = "UpdateFileSystemLustreConfiguration";
|
|
1243
|
+
const _UFSLMC = "UpdateFileSystemLustreMetadataConfiguration";
|
|
1244
|
+
const _UFSOC = "UpdateFileSystemOntapConfiguration";
|
|
1245
|
+
const _UFSOZFSC = "UpdateFileSystemOpenZFSConfiguration";
|
|
1246
|
+
const _UFSR = "UpdateFileSystemRequest";
|
|
1247
|
+
const _UFSRp = "UpdateFileSystemResponse";
|
|
1248
|
+
const _UFSWC = "UpdateFileSystemWindowsConfiguration";
|
|
1249
|
+
const _UN = "UserName";
|
|
1250
|
+
const _UO = "UnsupportedOperation";
|
|
1251
|
+
const _UOVC = "UpdateOntapVolumeConfiguration";
|
|
1252
|
+
const _UOZFSVC = "UpdateOpenZFSVolumeConfiguration";
|
|
1253
|
+
const _UR = "UntagResource";
|
|
1254
|
+
const _URR = "UntagResourceRequest";
|
|
1255
|
+
const _URRn = "UntagResourceResponse";
|
|
1256
|
+
const _US = "UpdateSnapshot";
|
|
1257
|
+
const _USADC = "UpdateSvmActiveDirectoryConfiguration";
|
|
1258
|
+
const _USC = "UpdateSnaplockConfiguration";
|
|
1259
|
+
const _USR = "UpdateSnapshotRequest";
|
|
1260
|
+
const _USRp = "UpdateSnapshotResponse";
|
|
1261
|
+
const _USVC = "UpdateSharedVpcConfiguration";
|
|
1262
|
+
const _USVCR = "UpdateSharedVpcConfigurationRequest";
|
|
1263
|
+
const _USVCRp = "UpdateSharedVpcConfigurationResponse";
|
|
1264
|
+
const _USVM = "UpdateStorageVirtualMachine";
|
|
1265
|
+
const _USVMR = "UpdateStorageVirtualMachineRequest";
|
|
1266
|
+
const _USVMRp = "UpdateStorageVirtualMachineResponse";
|
|
1267
|
+
const _UU = "UnixUser";
|
|
1268
|
+
const _UUID = "UUID";
|
|
1269
|
+
const _UV = "UpdateVolume";
|
|
1270
|
+
const _UVR = "UpdateVolumeRequest";
|
|
1271
|
+
const _UVRp = "UpdateVolumeResponse";
|
|
1272
|
+
const _Ui = "Uid";
|
|
1273
|
+
const _V = "Value";
|
|
1274
|
+
const _VAME = "VolumeAppendModeEnabled";
|
|
1275
|
+
const _VC = "VpcConfiguration";
|
|
1276
|
+
const _VF = "VolumeFilter";
|
|
1277
|
+
const _VFo = "VolumeFilters";
|
|
1278
|
+
const _VI = "VolumeId";
|
|
1279
|
+
const _VIo = "VolumeIds";
|
|
1280
|
+
const _VIp = "VpcId";
|
|
1281
|
+
const _VNF = "VolumeNotFound";
|
|
1282
|
+
const _VP = "VolumePath";
|
|
1283
|
+
const _VS = "VolumeStyle";
|
|
1284
|
+
const _VT = "VolumeType";
|
|
1285
|
+
const _Va = "Values";
|
|
1286
|
+
const _Ve = "Version";
|
|
1287
|
+
const _Vo = "Volume";
|
|
1288
|
+
const _Vol = "Volumes";
|
|
1289
|
+
const _WALC = "WindowsAuditLogConfiguration";
|
|
1290
|
+
const _WALCC = "WindowsAuditLogCreateConfiguration";
|
|
1291
|
+
const _WC = "WindowsConfiguration";
|
|
1292
|
+
const _WFC = "WindowsFsrmConfiguration";
|
|
1293
|
+
const _WFSC = "WindowsFileSystemConfiguration";
|
|
1294
|
+
const _WMST = "WeeklyMaintenanceStartTime";
|
|
1295
|
+
const _WR = "WindowsResponse";
|
|
1296
|
+
const _WU = "WindowsUser";
|
|
1297
|
+
const _c = "client";
|
|
1298
|
+
const _e = "error";
|
|
1299
|
+
const _hE = "httpError";
|
|
1300
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.fsx";
|
|
1301
|
+
const _se = "server";
|
|
1302
|
+
const _xN = "xmlName";
|
|
1303
|
+
const n0 = "com.amazonaws.fsx";
|
|
1304
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
1305
|
+
var FSxServiceException$ = [-3, _s, "FSxServiceException", 0, [], []];
|
|
1306
|
+
_s_registry.registerError(FSxServiceException$, FSxServiceException);
|
|
1307
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
1308
|
+
var AccessPointAlreadyOwnedByYou$ = [-3, n0, _APAOBY,
|
|
1309
|
+
{ [_e]: _c, [_hE]: 409, [_xN]: _E },
|
|
1310
|
+
[_EC, _M],
|
|
1311
|
+
[0, 0]
|
|
1312
|
+
];
|
|
1313
|
+
n0_registry.registerError(AccessPointAlreadyOwnedByYou$, AccessPointAlreadyOwnedByYou);
|
|
1314
|
+
var ActiveDirectoryError$ = [-3, n0, _ADE,
|
|
1315
|
+
{ [_e]: _c },
|
|
1316
|
+
[_ADI, _T, _M],
|
|
1317
|
+
[0, 0, 0], 1
|
|
1318
|
+
];
|
|
1319
|
+
n0_registry.registerError(ActiveDirectoryError$, ActiveDirectoryError);
|
|
1320
|
+
var BackupBeingCopied$ = [-3, n0, _BBC,
|
|
1321
|
+
{ [_e]: _c },
|
|
1322
|
+
[_M, _BI],
|
|
1323
|
+
[0, 0]
|
|
1324
|
+
];
|
|
1325
|
+
n0_registry.registerError(BackupBeingCopied$, BackupBeingCopied);
|
|
1326
|
+
var BackupInProgress$ = [-3, n0, _BIP,
|
|
1327
|
+
{ [_e]: _c },
|
|
1328
|
+
[_M],
|
|
1329
|
+
[0]
|
|
1330
|
+
];
|
|
1331
|
+
n0_registry.registerError(BackupInProgress$, BackupInProgress);
|
|
1332
|
+
var BackupNotFound$ = [-3, n0, _BNF,
|
|
1333
|
+
{ [_e]: _c },
|
|
1334
|
+
[_M],
|
|
1335
|
+
[0]
|
|
1336
|
+
];
|
|
1337
|
+
n0_registry.registerError(BackupNotFound$, BackupNotFound);
|
|
1338
|
+
var BackupRestoring$ = [-3, n0, _BR,
|
|
1339
|
+
{ [_e]: _c },
|
|
1340
|
+
[_M, _FSI],
|
|
1341
|
+
[0, 0]
|
|
1342
|
+
];
|
|
1343
|
+
n0_registry.registerError(BackupRestoring$, BackupRestoring);
|
|
1344
|
+
var BadRequest$ = [-3, n0, _BRa,
|
|
1345
|
+
{ [_e]: _c },
|
|
1346
|
+
[_M],
|
|
1347
|
+
[0]
|
|
1348
|
+
];
|
|
1349
|
+
n0_registry.registerError(BadRequest$, BadRequest);
|
|
1350
|
+
var DataRepositoryAssociationNotFound$ = [-3, n0, _DRANF,
|
|
1351
|
+
{ [_e]: _c },
|
|
1352
|
+
[_M],
|
|
1353
|
+
[0]
|
|
1354
|
+
];
|
|
1355
|
+
n0_registry.registerError(DataRepositoryAssociationNotFound$, DataRepositoryAssociationNotFound);
|
|
1356
|
+
var DataRepositoryTaskEnded$ = [-3, n0, _DRTE,
|
|
1357
|
+
{ [_e]: _c },
|
|
1358
|
+
[_M],
|
|
1359
|
+
[0]
|
|
1360
|
+
];
|
|
1361
|
+
n0_registry.registerError(DataRepositoryTaskEnded$, DataRepositoryTaskEnded);
|
|
1362
|
+
var DataRepositoryTaskExecuting$ = [-3, n0, _DRTEa,
|
|
1363
|
+
{ [_e]: _c },
|
|
1364
|
+
[_M],
|
|
1365
|
+
[0]
|
|
1366
|
+
];
|
|
1367
|
+
n0_registry.registerError(DataRepositoryTaskExecuting$, DataRepositoryTaskExecuting);
|
|
1368
|
+
var DataRepositoryTaskNotFound$ = [-3, n0, _DRTNF,
|
|
1369
|
+
{ [_e]: _c },
|
|
1370
|
+
[_M],
|
|
1371
|
+
[0]
|
|
1372
|
+
];
|
|
1373
|
+
n0_registry.registerError(DataRepositoryTaskNotFound$, DataRepositoryTaskNotFound);
|
|
1374
|
+
var FileCacheNotFound$ = [-3, n0, _FCNF,
|
|
1375
|
+
{ [_e]: _c },
|
|
1376
|
+
[_M],
|
|
1377
|
+
[0]
|
|
1378
|
+
];
|
|
1379
|
+
n0_registry.registerError(FileCacheNotFound$, FileCacheNotFound);
|
|
1380
|
+
var FileSystemNotFound$ = [-3, n0, _FSNF,
|
|
1381
|
+
{ [_e]: _c },
|
|
1382
|
+
[_M],
|
|
1383
|
+
[0]
|
|
1384
|
+
];
|
|
1385
|
+
n0_registry.registerError(FileSystemNotFound$, FileSystemNotFound);
|
|
1386
|
+
var IncompatibleParameterError$ = [-3, n0, _IPE,
|
|
1387
|
+
{ [_e]: _c },
|
|
1388
|
+
[_P, _M],
|
|
1389
|
+
[0, 0], 1
|
|
1390
|
+
];
|
|
1391
|
+
n0_registry.registerError(IncompatibleParameterError$, IncompatibleParameterError);
|
|
1392
|
+
var IncompatibleRegionForMultiAZ$ = [-3, n0, _IRFMAZ,
|
|
1393
|
+
{ [_e]: _c },
|
|
1394
|
+
[_M],
|
|
1395
|
+
[0]
|
|
1396
|
+
];
|
|
1397
|
+
n0_registry.registerError(IncompatibleRegionForMultiAZ$, IncompatibleRegionForMultiAZ);
|
|
1398
|
+
var InternalServerError$ = [-3, n0, _ISE,
|
|
1399
|
+
{ [_e]: _se },
|
|
1400
|
+
[_M],
|
|
1401
|
+
[0]
|
|
1402
|
+
];
|
|
1403
|
+
n0_registry.registerError(InternalServerError$, InternalServerError);
|
|
1404
|
+
var InvalidAccessPoint$ = [-3, n0, _IAP,
|
|
1405
|
+
{ [_e]: _c, [_hE]: 400, [_xN]: _E },
|
|
1406
|
+
[_EC, _M],
|
|
1407
|
+
[0, 0]
|
|
1408
|
+
];
|
|
1409
|
+
n0_registry.registerError(InvalidAccessPoint$, InvalidAccessPoint);
|
|
1410
|
+
var InvalidDataRepositoryType$ = [-3, n0, _IDRT,
|
|
1411
|
+
{ [_e]: _c },
|
|
1412
|
+
[_M],
|
|
1413
|
+
[0]
|
|
1414
|
+
];
|
|
1415
|
+
n0_registry.registerError(InvalidDataRepositoryType$, InvalidDataRepositoryType);
|
|
1416
|
+
var InvalidDestinationKmsKey$ = [-3, n0, _IDKK,
|
|
1417
|
+
{ [_e]: _c },
|
|
1418
|
+
[_M],
|
|
1419
|
+
[0]
|
|
1420
|
+
];
|
|
1421
|
+
n0_registry.registerError(InvalidDestinationKmsKey$, InvalidDestinationKmsKey);
|
|
1422
|
+
var InvalidExportPath$ = [-3, n0, _IEP,
|
|
1423
|
+
{ [_e]: _c },
|
|
1424
|
+
[_M],
|
|
1425
|
+
[0]
|
|
1426
|
+
];
|
|
1427
|
+
n0_registry.registerError(InvalidExportPath$, InvalidExportPath);
|
|
1428
|
+
var InvalidImportPath$ = [-3, n0, _IIP,
|
|
1429
|
+
{ [_e]: _c },
|
|
1430
|
+
[_M],
|
|
1431
|
+
[0]
|
|
1432
|
+
];
|
|
1433
|
+
n0_registry.registerError(InvalidImportPath$, InvalidImportPath);
|
|
1434
|
+
var InvalidNetworkSettings$ = [-3, n0, _INS,
|
|
1435
|
+
{ [_e]: _c },
|
|
1436
|
+
[_M, _ISI, _ISGI, _IRTI],
|
|
1437
|
+
[0, 0, 0, 0]
|
|
1438
|
+
];
|
|
1439
|
+
n0_registry.registerError(InvalidNetworkSettings$, InvalidNetworkSettings);
|
|
1440
|
+
var InvalidPerUnitStorageThroughput$ = [-3, n0, _IPUST,
|
|
1441
|
+
{ [_e]: _c },
|
|
1442
|
+
[_M],
|
|
1443
|
+
[0]
|
|
1444
|
+
];
|
|
1445
|
+
n0_registry.registerError(InvalidPerUnitStorageThroughput$, InvalidPerUnitStorageThroughput);
|
|
1446
|
+
var InvalidRegion$ = [-3, n0, _IR,
|
|
1447
|
+
{ [_e]: _c },
|
|
1448
|
+
[_M],
|
|
1449
|
+
[0]
|
|
1450
|
+
];
|
|
1451
|
+
n0_registry.registerError(InvalidRegion$, InvalidRegion);
|
|
1452
|
+
var InvalidRequest$ = [-3, n0, _IRn,
|
|
1453
|
+
{ [_e]: _c, [_hE]: 400, [_xN]: _E },
|
|
1454
|
+
[_EC, _M],
|
|
1455
|
+
[0, 0]
|
|
1456
|
+
];
|
|
1457
|
+
n0_registry.registerError(InvalidRequest$, InvalidRequest);
|
|
1458
|
+
var InvalidSourceKmsKey$ = [-3, n0, _ISKK,
|
|
1459
|
+
{ [_e]: _c },
|
|
1460
|
+
[_M],
|
|
1461
|
+
[0]
|
|
1462
|
+
];
|
|
1463
|
+
n0_registry.registerError(InvalidSourceKmsKey$, InvalidSourceKmsKey);
|
|
1464
|
+
var MissingFileCacheConfiguration$ = [-3, n0, _MFCC,
|
|
1465
|
+
{ [_e]: _c },
|
|
1466
|
+
[_M],
|
|
1467
|
+
[0]
|
|
1468
|
+
];
|
|
1469
|
+
n0_registry.registerError(MissingFileCacheConfiguration$, MissingFileCacheConfiguration);
|
|
1470
|
+
var MissingFileSystemConfiguration$ = [-3, n0, _MFSC,
|
|
1471
|
+
{ [_e]: _c },
|
|
1472
|
+
[_M],
|
|
1473
|
+
[0]
|
|
1474
|
+
];
|
|
1475
|
+
n0_registry.registerError(MissingFileSystemConfiguration$, MissingFileSystemConfiguration);
|
|
1476
|
+
var MissingVolumeConfiguration$ = [-3, n0, _MVC,
|
|
1477
|
+
{ [_e]: _c },
|
|
1478
|
+
[_M],
|
|
1479
|
+
[0]
|
|
1480
|
+
];
|
|
1481
|
+
n0_registry.registerError(MissingVolumeConfiguration$, MissingVolumeConfiguration);
|
|
1482
|
+
var NotServiceResourceError$ = [-3, n0, _NSRE,
|
|
1483
|
+
{ [_e]: _c },
|
|
1484
|
+
[_RARN, _M],
|
|
1485
|
+
[0, 0], 1
|
|
1486
|
+
];
|
|
1487
|
+
n0_registry.registerError(NotServiceResourceError$, NotServiceResourceError);
|
|
1488
|
+
var ResourceDoesNotSupportTagging$ = [-3, n0, _RDNST,
|
|
1489
|
+
{ [_e]: _c },
|
|
1490
|
+
[_RARN, _M],
|
|
1491
|
+
[0, 0], 1
|
|
1492
|
+
];
|
|
1493
|
+
n0_registry.registerError(ResourceDoesNotSupportTagging$, ResourceDoesNotSupportTagging);
|
|
1494
|
+
var ResourceNotFound$ = [-3, n0, _RNF,
|
|
1495
|
+
{ [_e]: _c },
|
|
1496
|
+
[_RARN, _M],
|
|
1497
|
+
[0, 0], 1
|
|
1498
|
+
];
|
|
1499
|
+
n0_registry.registerError(ResourceNotFound$, ResourceNotFound);
|
|
1500
|
+
var S3AccessPointAttachmentNotFound$ = [-3, n0, _SAPANF,
|
|
1501
|
+
{ [_e]: _c },
|
|
1502
|
+
[_M],
|
|
1503
|
+
[0]
|
|
1504
|
+
];
|
|
1505
|
+
n0_registry.registerError(S3AccessPointAttachmentNotFound$, S3AccessPointAttachmentNotFound);
|
|
1506
|
+
var ServiceLimitExceeded$ = [-3, n0, _SLE,
|
|
1507
|
+
{ [_e]: _c },
|
|
1508
|
+
[_L, _M],
|
|
1509
|
+
[0, 0], 1
|
|
1510
|
+
];
|
|
1511
|
+
n0_registry.registerError(ServiceLimitExceeded$, ServiceLimitExceeded);
|
|
1512
|
+
var SnapshotNotFound$ = [-3, n0, _SNF,
|
|
1513
|
+
{ [_e]: _c },
|
|
1514
|
+
[_M],
|
|
1515
|
+
[0]
|
|
1516
|
+
];
|
|
1517
|
+
n0_registry.registerError(SnapshotNotFound$, SnapshotNotFound);
|
|
1518
|
+
var SourceBackupUnavailable$ = [-3, n0, _SBU,
|
|
1519
|
+
{ [_e]: _c },
|
|
1520
|
+
[_M, _BI],
|
|
1521
|
+
[0, 0]
|
|
1522
|
+
];
|
|
1523
|
+
n0_registry.registerError(SourceBackupUnavailable$, SourceBackupUnavailable);
|
|
1524
|
+
var StorageVirtualMachineNotFound$ = [-3, n0, _SVMNF,
|
|
1525
|
+
{ [_e]: _c },
|
|
1526
|
+
[_M],
|
|
1527
|
+
[0]
|
|
1528
|
+
];
|
|
1529
|
+
n0_registry.registerError(StorageVirtualMachineNotFound$, StorageVirtualMachineNotFound);
|
|
1530
|
+
var TooManyAccessPoints$ = [-3, n0, _TMAP,
|
|
1531
|
+
{ [_e]: _c, [_hE]: 400, [_xN]: _E },
|
|
1532
|
+
[_EC, _M],
|
|
1533
|
+
[0, 0]
|
|
1534
|
+
];
|
|
1535
|
+
n0_registry.registerError(TooManyAccessPoints$, TooManyAccessPoints);
|
|
1536
|
+
var UnsupportedOperation$ = [-3, n0, _UO,
|
|
1537
|
+
{ [_e]: _c },
|
|
1538
|
+
[_M],
|
|
1539
|
+
[0]
|
|
1540
|
+
];
|
|
1541
|
+
n0_registry.registerError(UnsupportedOperation$, UnsupportedOperation);
|
|
1542
|
+
var VolumeNotFound$ = [-3, n0, _VNF,
|
|
1543
|
+
{ [_e]: _c },
|
|
1544
|
+
[_M],
|
|
1545
|
+
[0]
|
|
1546
|
+
];
|
|
1547
|
+
n0_registry.registerError(VolumeNotFound$, VolumeNotFound);
|
|
1548
|
+
const errorTypeRegistries = [
|
|
1549
|
+
_s_registry,
|
|
1550
|
+
n0_registry,
|
|
1551
|
+
];
|
|
1552
|
+
var AdminPassword = [0, n0, _AP, 8, 0];
|
|
1553
|
+
var DirectoryPassword = [0, n0, _DP, 8, 0];
|
|
1554
|
+
var ActiveDirectoryBackupAttributes$ = [3, n0, _ADBA,
|
|
1555
|
+
0,
|
|
1556
|
+
[_DN, _ADI, _RARN],
|
|
1557
|
+
[0, 0, 0]
|
|
1558
|
+
];
|
|
1559
|
+
var AdministrativeAction$ = [3, n0, _AA,
|
|
1560
|
+
0,
|
|
1561
|
+
[_AAT, _PP, _RT, _S, _TFSV, _FD, _TVV, _TSV, _TTB, _RTB, _M],
|
|
1562
|
+
[0, 1, 4, 0, [() => FileSystem$, 0], () => AdministrativeActionFailureDetails$, () => Volume$, () => Snapshot$, 1, 1, 0]
|
|
1563
|
+
];
|
|
1564
|
+
var AdministrativeActionFailureDetails$ = [3, n0, _AAFD,
|
|
1565
|
+
0,
|
|
1566
|
+
[_M],
|
|
1567
|
+
[0]
|
|
1568
|
+
];
|
|
1569
|
+
var AggregateConfiguration$ = [3, n0, _AC,
|
|
1570
|
+
0,
|
|
1571
|
+
[_A, _TC],
|
|
1572
|
+
[64 | 0, 1]
|
|
1573
|
+
];
|
|
1574
|
+
var Alias$ = [3, n0, _Al,
|
|
1575
|
+
0,
|
|
1576
|
+
[_N, _Li],
|
|
1577
|
+
[0, 0]
|
|
1578
|
+
];
|
|
1579
|
+
var AssociateFileSystemAliasesRequest$ = [3, n0, _AFSAR,
|
|
1580
|
+
0,
|
|
1581
|
+
[_FSI, _Ali, _CRT],
|
|
1582
|
+
[0, 64 | 0, [0, 4]], 2
|
|
1583
|
+
];
|
|
1584
|
+
var AssociateFileSystemAliasesResponse$ = [3, n0, _AFSARs,
|
|
1585
|
+
0,
|
|
1586
|
+
[_Ali],
|
|
1587
|
+
[() => Aliases]
|
|
1588
|
+
];
|
|
1589
|
+
var AutocommitPeriod$ = [3, n0, _APu,
|
|
1590
|
+
0,
|
|
1591
|
+
[_T, _V],
|
|
1592
|
+
[0, 1], 1
|
|
1593
|
+
];
|
|
1594
|
+
var AutoExportPolicy$ = [3, n0, _AEP,
|
|
1595
|
+
0,
|
|
1596
|
+
[_Ev],
|
|
1597
|
+
[64 | 0]
|
|
1598
|
+
];
|
|
1599
|
+
var AutoImportPolicy$ = [3, n0, _AIP,
|
|
1600
|
+
0,
|
|
1601
|
+
[_Ev],
|
|
1602
|
+
[64 | 0]
|
|
1603
|
+
];
|
|
1604
|
+
var Backup$ = [3, n0, _B,
|
|
1605
|
+
0,
|
|
1606
|
+
[_BI, _Li, _T, _CT, _FS, _FD, _PP, _KKI, _RARN, _Ta, _DI, _OI, _SBI, _SBR, _RTe, _Vo, _SIB],
|
|
1607
|
+
[0, 0, 0, 4, [() => FileSystem$, 0], () => BackupFailureDetails$, 1, 0, 0, () => Tags, () => ActiveDirectoryBackupAttributes$, 0, 0, 0, 0, () => Volume$, 1], 5
|
|
1608
|
+
];
|
|
1609
|
+
var BackupFailureDetails$ = [3, n0, _BFD,
|
|
1610
|
+
0,
|
|
1611
|
+
[_M],
|
|
1612
|
+
[0]
|
|
1613
|
+
];
|
|
1614
|
+
var CancelDataRepositoryTaskRequest$ = [3, n0, _CDRTR,
|
|
1615
|
+
0,
|
|
1616
|
+
[_TI],
|
|
1617
|
+
[0], 1
|
|
1618
|
+
];
|
|
1619
|
+
var CancelDataRepositoryTaskResponse$ = [3, n0, _CDRTRa,
|
|
1620
|
+
0,
|
|
1621
|
+
[_Li, _TI],
|
|
1622
|
+
[0, 0]
|
|
1623
|
+
];
|
|
1624
|
+
var CompletionReport$ = [3, n0, _CR,
|
|
1625
|
+
0,
|
|
1626
|
+
[_En, _Pa, _F, _Sc],
|
|
1627
|
+
[2, 0, 0, 0], 1
|
|
1628
|
+
];
|
|
1629
|
+
var CopyBackupRequest$ = [3, n0, _CBR,
|
|
1630
|
+
0,
|
|
1631
|
+
[_SBI, _CRT, _SR, _KKI, _CTo, _Ta],
|
|
1632
|
+
[0, [0, 4], 0, 0, 2, () => Tags], 1
|
|
1633
|
+
];
|
|
1634
|
+
var CopyBackupResponse$ = [3, n0, _CBRo,
|
|
1635
|
+
0,
|
|
1636
|
+
[_B],
|
|
1637
|
+
[[() => Backup$, 0]]
|
|
1638
|
+
];
|
|
1639
|
+
var CopySnapshotAndUpdateVolumeRequest$ = [3, n0, _CSAUVR,
|
|
1640
|
+
0,
|
|
1641
|
+
[_VI, _SSARN, _CRT, _CS, _O],
|
|
1642
|
+
[0, 0, [0, 4], 0, 64 | 0], 2
|
|
1643
|
+
];
|
|
1644
|
+
var CopySnapshotAndUpdateVolumeResponse$ = [3, n0, _CSAUVRo,
|
|
1645
|
+
0,
|
|
1646
|
+
[_VI, _Li, _AAd],
|
|
1647
|
+
[0, 0, [() => AdministrativeActions, 0]]
|
|
1648
|
+
];
|
|
1649
|
+
var CreateAggregateConfiguration$ = [3, n0, _CAC,
|
|
1650
|
+
0,
|
|
1651
|
+
[_A, _CPA],
|
|
1652
|
+
[64 | 0, 1]
|
|
1653
|
+
];
|
|
1654
|
+
var CreateAndAttachS3AccessPointOntapConfiguration$ = [3, n0, _CAASAPOC,
|
|
1655
|
+
0,
|
|
1656
|
+
[_VI, _FSIi],
|
|
1657
|
+
[0, () => OntapFileSystemIdentity$], 2
|
|
1658
|
+
];
|
|
1659
|
+
var CreateAndAttachS3AccessPointOpenZFSConfiguration$ = [3, n0, _CAASAPOZFSC,
|
|
1660
|
+
0,
|
|
1661
|
+
[_VI, _FSIi],
|
|
1662
|
+
[0, () => OpenZFSFileSystemIdentity$], 2
|
|
1663
|
+
];
|
|
1664
|
+
var CreateAndAttachS3AccessPointRequest$ = [3, n0, _CAASAPR,
|
|
1665
|
+
0,
|
|
1666
|
+
[_N, _T, _CRT, _OZFSC, _OC, _SAP],
|
|
1667
|
+
[0, 0, [0, 4], () => CreateAndAttachS3AccessPointOpenZFSConfiguration$, () => CreateAndAttachS3AccessPointOntapConfiguration$, () => CreateAndAttachS3AccessPointS3Configuration$], 2
|
|
1668
|
+
];
|
|
1669
|
+
var CreateAndAttachS3AccessPointResponse$ = [3, n0, _CAASAPRr,
|
|
1670
|
+
0,
|
|
1671
|
+
[_SAPA],
|
|
1672
|
+
[() => S3AccessPointAttachment$]
|
|
1673
|
+
];
|
|
1674
|
+
var CreateAndAttachS3AccessPointS3Configuration$ = [3, n0, _CAASAPSC,
|
|
1675
|
+
0,
|
|
1676
|
+
[_VC, _Po],
|
|
1677
|
+
[() => S3AccessPointVpcConfiguration$, 0]
|
|
1678
|
+
];
|
|
1679
|
+
var CreateBackupRequest$ = [3, n0, _CBRr,
|
|
1680
|
+
0,
|
|
1681
|
+
[_FSI, _CRT, _Ta, _VI],
|
|
1682
|
+
[0, [0, 4], () => Tags, 0]
|
|
1683
|
+
];
|
|
1684
|
+
var CreateBackupResponse$ = [3, n0, _CBRre,
|
|
1685
|
+
0,
|
|
1686
|
+
[_B],
|
|
1687
|
+
[[() => Backup$, 0]]
|
|
1688
|
+
];
|
|
1689
|
+
var CreateDataRepositoryAssociationRequest$ = [3, n0, _CDRAR,
|
|
1690
|
+
0,
|
|
1691
|
+
[_FSI, _DRP, _FSP, _BIMDOC, _IFCS, _S_, _CRT, _Ta],
|
|
1692
|
+
[0, 0, 0, 2, 1, () => S3DataRepositoryConfiguration$, [0, 4], () => Tags], 2
|
|
1693
|
+
];
|
|
1694
|
+
var CreateDataRepositoryAssociationResponse$ = [3, n0, _CDRARr,
|
|
1695
|
+
0,
|
|
1696
|
+
[_As],
|
|
1697
|
+
[() => DataRepositoryAssociation$]
|
|
1698
|
+
];
|
|
1699
|
+
var CreateDataRepositoryTaskRequest$ = [3, n0, _CDRTRr,
|
|
1700
|
+
0,
|
|
1701
|
+
[_T, _FSI, _R, _Pat, _CRT, _Ta, _CTR, _RC],
|
|
1702
|
+
[0, 0, () => CompletionReport$, 64 | 0, [0, 4], () => Tags, 1, () => ReleaseConfiguration$], 3
|
|
1703
|
+
];
|
|
1704
|
+
var CreateDataRepositoryTaskResponse$ = [3, n0, _CDRTRre,
|
|
1705
|
+
0,
|
|
1706
|
+
[_DRT],
|
|
1707
|
+
[() => DataRepositoryTask$]
|
|
1708
|
+
];
|
|
1709
|
+
var CreateFileCacheLustreConfiguration$ = [3, n0, _CFCLC,
|
|
1710
|
+
0,
|
|
1711
|
+
[_PUST, _DT, _MC, _WMST],
|
|
1712
|
+
[1, 0, () => FileCacheLustreMetadataConfiguration$, 0], 3
|
|
1713
|
+
];
|
|
1714
|
+
var CreateFileCacheRequest$ = [3, n0, _CFCR,
|
|
1715
|
+
0,
|
|
1716
|
+
[_FCT, _FCTV, _SC, _SI, _CRT, _SGI, _Ta, _CTTDRA, _KKI, _LC, _DRA],
|
|
1717
|
+
[0, 0, 1, 64 | 0, [0, 4], 64 | 0, () => Tags, 2, 0, () => CreateFileCacheLustreConfiguration$, () => CreateFileCacheDataRepositoryAssociations], 4
|
|
1718
|
+
];
|
|
1719
|
+
var CreateFileCacheResponse$ = [3, n0, _CFCRr,
|
|
1720
|
+
0,
|
|
1721
|
+
[_FC],
|
|
1722
|
+
[() => FileCacheCreating$]
|
|
1723
|
+
];
|
|
1724
|
+
var CreateFileSystemFromBackupRequest$ = [3, n0, _CFSFBR,
|
|
1725
|
+
0,
|
|
1726
|
+
[_BI, _SI, _CRT, _SGI, _Ta, _WC, _LC, _ST, _KKI, _FSTV, _OZFSC, _SC, _NT],
|
|
1727
|
+
[0, 64 | 0, [0, 4], 64 | 0, () => Tags, [() => CreateFileSystemWindowsConfiguration$, 0], () => CreateFileSystemLustreConfiguration$, 0, 0, 0, () => CreateFileSystemOpenZFSConfiguration$, 1, 0], 2
|
|
1728
|
+
];
|
|
1729
|
+
var CreateFileSystemFromBackupResponse$ = [3, n0, _CFSFBRr,
|
|
1730
|
+
0,
|
|
1731
|
+
[_FS],
|
|
1732
|
+
[[() => FileSystem$, 0]]
|
|
1733
|
+
];
|
|
1734
|
+
var CreateFileSystemLustreConfiguration$ = [3, n0, _CFSLC,
|
|
1735
|
+
0,
|
|
1736
|
+
[_WMST, _IP, _EP, _IFCS, _DT, _AIP, _PUST, _DABST, _ABRD, _CTTB, _DCT, _DCTa, _EE, _LCo, _RSC, _MC, _TCh, _DRCC],
|
|
1737
|
+
[0, 0, 0, 1, 0, 0, 1, 0, 1, 2, 0, 0, 2, () => LustreLogCreateConfiguration$, () => LustreRootSquashConfiguration$, () => CreateFileSystemLustreMetadataConfiguration$, 1, () => LustreReadCacheConfiguration$]
|
|
1738
|
+
];
|
|
1739
|
+
var CreateFileSystemLustreMetadataConfiguration$ = [3, n0, _CFSLMC,
|
|
1740
|
+
0,
|
|
1741
|
+
[_Mo, _I],
|
|
1742
|
+
[0, 1], 1
|
|
1743
|
+
];
|
|
1744
|
+
var CreateFileSystemOntapConfiguration$ = [3, n0, _CFSOC,
|
|
1745
|
+
0,
|
|
1746
|
+
[_DT, _ABRD, _DABST, _EIAR, _FAP, _DIC, _PSI, _RTI, _TCh, _WMST, _HAP, _TCPHAP, _EIARn],
|
|
1747
|
+
[0, 1, 0, 0, [() => AdminPassword, 0], () => DiskIopsConfiguration$, 0, 64 | 0, 1, 0, 1, 1, 0], 1
|
|
1748
|
+
];
|
|
1749
|
+
var CreateFileSystemOpenZFSConfiguration$ = [3, n0, _CFSOZFSC,
|
|
1750
|
+
0,
|
|
1751
|
+
[_DT, _TCh, _ABRD, _CTTB, _CTTV, _DABST, _WMST, _DIC, _RVC, _PSI, _EIAR, _EIARn, _RTI, _RCC],
|
|
1752
|
+
[0, 1, 1, 2, 2, 0, 0, () => DiskIopsConfiguration$, () => OpenZFSCreateRootVolumeConfiguration$, 0, 0, 0, 64 | 0, () => OpenZFSReadCacheConfiguration$], 2
|
|
1753
|
+
];
|
|
1754
|
+
var CreateFileSystemRequest$ = [3, n0, _CFSR,
|
|
1755
|
+
0,
|
|
1756
|
+
[_FST, _SI, _CRT, _SC, _ST, _SGI, _Ta, _KKI, _WC, _LC, _OC, _FSTV, _OZFSC, _NT],
|
|
1757
|
+
[0, 64 | 0, [0, 4], 1, 0, 64 | 0, () => Tags, 0, [() => CreateFileSystemWindowsConfiguration$, 0], () => CreateFileSystemLustreConfiguration$, [() => CreateFileSystemOntapConfiguration$, 0], 0, () => CreateFileSystemOpenZFSConfiguration$, 0], 2
|
|
1758
|
+
];
|
|
1759
|
+
var CreateFileSystemResponse$ = [3, n0, _CFSRr,
|
|
1760
|
+
0,
|
|
1761
|
+
[_FS],
|
|
1762
|
+
[[() => FileSystem$, 0]]
|
|
1763
|
+
];
|
|
1764
|
+
var CreateFileSystemWindowsConfiguration$ = [3, n0, _CFSWC,
|
|
1765
|
+
0,
|
|
1766
|
+
[_TCh, _ADI, _SMADC, _DT, _PSI, _WMST, _DABST, _ABRD, _CTTB, _Ali, _ALC, _DIC, _FCs],
|
|
1767
|
+
[1, 0, [() => SelfManagedActiveDirectoryConfiguration$, 0], 0, 0, 0, 0, 1, 2, 64 | 0, () => WindowsAuditLogCreateConfiguration$, () => DiskIopsConfiguration$, () => WindowsFsrmConfiguration$], 1
|
|
1768
|
+
];
|
|
1769
|
+
var CreateOntapVolumeConfiguration$ = [3, n0, _COVC,
|
|
1770
|
+
0,
|
|
1771
|
+
[_SVMI, _JP, _SS, _SIM, _SEE, _TP, _OVT, _SP, _CTTB, _SCn, _VS, _AC, _SIB],
|
|
1772
|
+
[0, 0, 0, 1, 2, () => TieringPolicy$, 0, 0, 2, () => CreateSnaplockConfiguration$, 0, () => CreateAggregateConfiguration$, 1], 1
|
|
1773
|
+
];
|
|
1774
|
+
var CreateOpenZFSOriginSnapshotConfiguration$ = [3, n0, _COZFSOSC,
|
|
1775
|
+
0,
|
|
1776
|
+
[_SARN, _CS],
|
|
1777
|
+
[0, 0], 2
|
|
1778
|
+
];
|
|
1779
|
+
var CreateOpenZFSVolumeConfiguration$ = [3, n0, _COZFSVC,
|
|
1780
|
+
0,
|
|
1781
|
+
[_PVI, _SCRGB, _SCQGB, _RSKB, _DCTa, _CTTS, _OS, _RO, _NE, _UAGQ],
|
|
1782
|
+
[0, 1, 1, 1, 0, 2, () => CreateOpenZFSOriginSnapshotConfiguration$, 2, () => OpenZFSNfsExports, () => OpenZFSUserAndGroupQuotas], 1
|
|
1783
|
+
];
|
|
1784
|
+
var CreateSnaplockConfiguration$ = [3, n0, _CSC,
|
|
1785
|
+
0,
|
|
1786
|
+
[_STn, _ALV, _APu, _PD, _RP, _VAME],
|
|
1787
|
+
[0, 2, () => AutocommitPeriod$, 0, () => SnaplockRetentionPeriod$, 2], 1
|
|
1788
|
+
];
|
|
1789
|
+
var CreateSnapshotRequest$ = [3, n0, _CSR,
|
|
1790
|
+
0,
|
|
1791
|
+
[_N, _VI, _CRT, _Ta],
|
|
1792
|
+
[0, 0, [0, 4], () => Tags], 2
|
|
1793
|
+
];
|
|
1794
|
+
var CreateSnapshotResponse$ = [3, n0, _CSRr,
|
|
1795
|
+
0,
|
|
1796
|
+
[_Sn],
|
|
1797
|
+
[() => Snapshot$]
|
|
1798
|
+
];
|
|
1799
|
+
var CreateStorageVirtualMachineRequest$ = [3, n0, _CSVMR,
|
|
1800
|
+
0,
|
|
1801
|
+
[_FSI, _N, _ADC, _CRT, _SAPv, _Ta, _RVSS],
|
|
1802
|
+
[0, 0, [() => CreateSvmActiveDirectoryConfiguration$, 0], [0, 4], [() => AdminPassword, 0], () => Tags, 0], 2
|
|
1803
|
+
];
|
|
1804
|
+
var CreateStorageVirtualMachineResponse$ = [3, n0, _CSVMRr,
|
|
1805
|
+
0,
|
|
1806
|
+
[_SVM],
|
|
1807
|
+
[() => StorageVirtualMachine$]
|
|
1808
|
+
];
|
|
1809
|
+
var CreateSvmActiveDirectoryConfiguration$ = [3, n0, _CSADC,
|
|
1810
|
+
0,
|
|
1811
|
+
[_NBN, _SMADC],
|
|
1812
|
+
[0, [() => SelfManagedActiveDirectoryConfiguration$, 0]], 1
|
|
1813
|
+
];
|
|
1814
|
+
var CreateVolumeFromBackupRequest$ = [3, n0, _CVFBR,
|
|
1815
|
+
0,
|
|
1816
|
+
[_BI, _N, _CRT, _OC, _Ta],
|
|
1817
|
+
[0, 0, [0, 4], () => CreateOntapVolumeConfiguration$, () => Tags], 2
|
|
1818
|
+
];
|
|
1819
|
+
var CreateVolumeFromBackupResponse$ = [3, n0, _CVFBRr,
|
|
1820
|
+
0,
|
|
1821
|
+
[_Vo],
|
|
1822
|
+
[() => Volume$]
|
|
1823
|
+
];
|
|
1824
|
+
var CreateVolumeRequest$ = [3, n0, _CVR,
|
|
1825
|
+
0,
|
|
1826
|
+
[_VT, _N, _CRT, _OC, _Ta, _OZFSC],
|
|
1827
|
+
[0, 0, [0, 4], () => CreateOntapVolumeConfiguration$, () => Tags, () => CreateOpenZFSVolumeConfiguration$], 2
|
|
1828
|
+
];
|
|
1829
|
+
var CreateVolumeResponse$ = [3, n0, _CVRr,
|
|
1830
|
+
0,
|
|
1831
|
+
[_Vo],
|
|
1832
|
+
[() => Volume$]
|
|
1833
|
+
];
|
|
1834
|
+
var DataRepositoryAssociation$ = [3, n0, _DRAa,
|
|
1835
|
+
0,
|
|
1836
|
+
[_AI, _RARN, _FSI, _Li, _FD, _FSP, _DRP, _BIMDOC, _IFCS, _S_, _Ta, _CT, _FCI, _FCP, _DRS, _NFS],
|
|
1837
|
+
[0, 0, 0, 0, () => DataRepositoryFailureDetails$, 0, 0, 2, 1, () => S3DataRepositoryConfiguration$, () => Tags, 4, 0, 0, 64 | 0, () => NFSDataRepositoryConfiguration$]
|
|
1838
|
+
];
|
|
1839
|
+
var DataRepositoryConfiguration$ = [3, n0, _DRC,
|
|
1840
|
+
0,
|
|
1841
|
+
[_Li, _IP, _EP, _IFCS, _AIP, _FD],
|
|
1842
|
+
[0, 0, 0, 1, 0, () => DataRepositoryFailureDetails$]
|
|
1843
|
+
];
|
|
1844
|
+
var DataRepositoryFailureDetails$ = [3, n0, _DRFD,
|
|
1845
|
+
0,
|
|
1846
|
+
[_M],
|
|
1847
|
+
[0]
|
|
1848
|
+
];
|
|
1849
|
+
var DataRepositoryTask$ = [3, n0, _DRT,
|
|
1850
|
+
0,
|
|
1851
|
+
[_TI, _Li, _T, _CT, _STt, _ET, _RARN, _Ta, _FSI, _Pat, _FD, _S, _R, _CTR, _FCI, _RC],
|
|
1852
|
+
[0, 0, 0, 4, 4, 4, 0, () => Tags, 0, 64 | 0, () => DataRepositoryTaskFailureDetails$, () => DataRepositoryTaskStatus$, () => CompletionReport$, 1, 0, () => ReleaseConfiguration$], 4
|
|
1853
|
+
];
|
|
1854
|
+
var DataRepositoryTaskFailureDetails$ = [3, n0, _DRTFD,
|
|
1855
|
+
0,
|
|
1856
|
+
[_M],
|
|
1857
|
+
[0]
|
|
1858
|
+
];
|
|
1859
|
+
var DataRepositoryTaskFilter$ = [3, n0, _DRTF,
|
|
1860
|
+
0,
|
|
1861
|
+
[_N, _Va],
|
|
1862
|
+
[0, 64 | 0]
|
|
1863
|
+
];
|
|
1864
|
+
var DataRepositoryTaskStatus$ = [3, n0, _DRTS,
|
|
1865
|
+
0,
|
|
1866
|
+
[_TCo, _SCu, _FCa, _LUT, _RCe],
|
|
1867
|
+
[1, 1, 1, 4, 1]
|
|
1868
|
+
];
|
|
1869
|
+
var DeleteBackupRequest$ = [3, n0, _DBR,
|
|
1870
|
+
0,
|
|
1871
|
+
[_BI, _CRT],
|
|
1872
|
+
[0, [0, 4]], 1
|
|
1873
|
+
];
|
|
1874
|
+
var DeleteBackupResponse$ = [3, n0, _DBRe,
|
|
1875
|
+
0,
|
|
1876
|
+
[_BI, _Li],
|
|
1877
|
+
[0, 0]
|
|
1878
|
+
];
|
|
1879
|
+
var DeleteDataRepositoryAssociationRequest$ = [3, n0, _DDRAR,
|
|
1880
|
+
0,
|
|
1881
|
+
[_AI, _CRT, _DDIFS],
|
|
1882
|
+
[0, [0, 4], 2], 1
|
|
1883
|
+
];
|
|
1884
|
+
var DeleteDataRepositoryAssociationResponse$ = [3, n0, _DDRARe,
|
|
1885
|
+
0,
|
|
1886
|
+
[_AI, _Li, _DDIFS],
|
|
1887
|
+
[0, 0, 2]
|
|
1888
|
+
];
|
|
1889
|
+
var DeleteFileCacheRequest$ = [3, n0, _DFCR,
|
|
1890
|
+
0,
|
|
1891
|
+
[_FCI, _CRT],
|
|
1892
|
+
[0, [0, 4]], 1
|
|
1893
|
+
];
|
|
1894
|
+
var DeleteFileCacheResponse$ = [3, n0, _DFCRe,
|
|
1895
|
+
0,
|
|
1896
|
+
[_FCI, _Li],
|
|
1897
|
+
[0, 0]
|
|
1898
|
+
];
|
|
1899
|
+
var DeleteFileSystemLustreConfiguration$ = [3, n0, _DFSLC,
|
|
1900
|
+
0,
|
|
1901
|
+
[_SFB, _FBT],
|
|
1902
|
+
[2, () => Tags]
|
|
1903
|
+
];
|
|
1904
|
+
var DeleteFileSystemLustreResponse$ = [3, n0, _DFSLR,
|
|
1905
|
+
0,
|
|
1906
|
+
[_FBI, _FBT],
|
|
1907
|
+
[0, () => Tags]
|
|
1908
|
+
];
|
|
1909
|
+
var DeleteFileSystemOpenZFSConfiguration$ = [3, n0, _DFSOZFSC,
|
|
1910
|
+
0,
|
|
1911
|
+
[_SFB, _FBT, _O],
|
|
1912
|
+
[2, () => Tags, 64 | 0]
|
|
1913
|
+
];
|
|
1914
|
+
var DeleteFileSystemOpenZFSResponse$ = [3, n0, _DFSOZFSR,
|
|
1915
|
+
0,
|
|
1916
|
+
[_FBI, _FBT],
|
|
1917
|
+
[0, () => Tags]
|
|
1918
|
+
];
|
|
1919
|
+
var DeleteFileSystemRequest$ = [3, n0, _DFSR,
|
|
1920
|
+
0,
|
|
1921
|
+
[_FSI, _CRT, _WC, _LC, _OZFSC],
|
|
1922
|
+
[0, [0, 4], () => DeleteFileSystemWindowsConfiguration$, () => DeleteFileSystemLustreConfiguration$, () => DeleteFileSystemOpenZFSConfiguration$], 1
|
|
1923
|
+
];
|
|
1924
|
+
var DeleteFileSystemResponse$ = [3, n0, _DFSRe,
|
|
1925
|
+
0,
|
|
1926
|
+
[_FSI, _Li, _WR, _LR, _OZFSR],
|
|
1927
|
+
[0, 0, () => DeleteFileSystemWindowsResponse$, () => DeleteFileSystemLustreResponse$, () => DeleteFileSystemOpenZFSResponse$]
|
|
1928
|
+
];
|
|
1929
|
+
var DeleteFileSystemWindowsConfiguration$ = [3, n0, _DFSWC,
|
|
1930
|
+
0,
|
|
1931
|
+
[_SFB, _FBT],
|
|
1932
|
+
[2, () => Tags]
|
|
1933
|
+
];
|
|
1934
|
+
var DeleteFileSystemWindowsResponse$ = [3, n0, _DFSWR,
|
|
1935
|
+
0,
|
|
1936
|
+
[_FBI, _FBT],
|
|
1937
|
+
[0, () => Tags]
|
|
1938
|
+
];
|
|
1939
|
+
var DeleteSnapshotRequest$ = [3, n0, _DSR,
|
|
1940
|
+
0,
|
|
1941
|
+
[_SIn, _CRT],
|
|
1942
|
+
[0, [0, 4]], 1
|
|
1943
|
+
];
|
|
1944
|
+
var DeleteSnapshotResponse$ = [3, n0, _DSRe,
|
|
1945
|
+
0,
|
|
1946
|
+
[_SIn, _Li],
|
|
1947
|
+
[0, 0]
|
|
1948
|
+
];
|
|
1949
|
+
var DeleteStorageVirtualMachineRequest$ = [3, n0, _DSVMR,
|
|
1950
|
+
0,
|
|
1951
|
+
[_SVMI, _CRT],
|
|
1952
|
+
[0, [0, 4]], 1
|
|
1953
|
+
];
|
|
1954
|
+
var DeleteStorageVirtualMachineResponse$ = [3, n0, _DSVMRe,
|
|
1955
|
+
0,
|
|
1956
|
+
[_SVMI, _Li],
|
|
1957
|
+
[0, 0]
|
|
1958
|
+
];
|
|
1959
|
+
var DeleteVolumeOntapConfiguration$ = [3, n0, _DVOC,
|
|
1960
|
+
0,
|
|
1961
|
+
[_SFB, _FBT, _BSER],
|
|
1962
|
+
[2, () => Tags, 2]
|
|
1963
|
+
];
|
|
1964
|
+
var DeleteVolumeOntapResponse$ = [3, n0, _DVOR,
|
|
1965
|
+
0,
|
|
1966
|
+
[_FBI, _FBT],
|
|
1967
|
+
[0, () => Tags]
|
|
1968
|
+
];
|
|
1969
|
+
var DeleteVolumeOpenZFSConfiguration$ = [3, n0, _DVOZFSC,
|
|
1970
|
+
0,
|
|
1971
|
+
[_O],
|
|
1972
|
+
[64 | 0]
|
|
1973
|
+
];
|
|
1974
|
+
var DeleteVolumeRequest$ = [3, n0, _DVR,
|
|
1975
|
+
0,
|
|
1976
|
+
[_VI, _CRT, _OC, _OZFSC],
|
|
1977
|
+
[0, [0, 4], () => DeleteVolumeOntapConfiguration$, () => DeleteVolumeOpenZFSConfiguration$], 1
|
|
1978
|
+
];
|
|
1979
|
+
var DeleteVolumeResponse$ = [3, n0, _DVRe,
|
|
1980
|
+
0,
|
|
1981
|
+
[_VI, _Li, _OR],
|
|
1982
|
+
[0, 0, () => DeleteVolumeOntapResponse$]
|
|
1983
|
+
];
|
|
1984
|
+
var DescribeBackupsRequest$ = [3, n0, _DBRes,
|
|
1985
|
+
0,
|
|
1986
|
+
[_BIa, _Fi, _MR, _NTe],
|
|
1987
|
+
[64 | 0, () => Filters, 1, 0]
|
|
1988
|
+
];
|
|
1989
|
+
var DescribeBackupsResponse$ = [3, n0, _DBResc,
|
|
1990
|
+
0,
|
|
1991
|
+
[_Ba, _NTe],
|
|
1992
|
+
[[() => Backups, 0], 0]
|
|
1993
|
+
];
|
|
1994
|
+
var DescribeDataRepositoryAssociationsRequest$ = [3, n0, _DDRARes,
|
|
1995
|
+
0,
|
|
1996
|
+
[_AIs, _Fi, _MR, _NTe],
|
|
1997
|
+
[64 | 0, () => Filters, 1, 0]
|
|
1998
|
+
];
|
|
1999
|
+
var DescribeDataRepositoryAssociationsResponse$ = [3, n0, _DDRAResc,
|
|
2000
|
+
0,
|
|
2001
|
+
[_Ass, _NTe],
|
|
2002
|
+
[() => DataRepositoryAssociations, 0]
|
|
2003
|
+
];
|
|
2004
|
+
var DescribeDataRepositoryTasksRequest$ = [3, n0, _DDRTR,
|
|
2005
|
+
0,
|
|
2006
|
+
[_TIa, _Fi, _MR, _NTe],
|
|
2007
|
+
[64 | 0, () => DataRepositoryTaskFilters, 1, 0]
|
|
2008
|
+
];
|
|
2009
|
+
var DescribeDataRepositoryTasksResponse$ = [3, n0, _DDRTRe,
|
|
2010
|
+
0,
|
|
2011
|
+
[_DRTa, _NTe],
|
|
2012
|
+
[() => DataRepositoryTasks, 0]
|
|
2013
|
+
];
|
|
2014
|
+
var DescribeFileCachesRequest$ = [3, n0, _DFCRes,
|
|
2015
|
+
0,
|
|
2016
|
+
[_FCIi, _MR, _NTe],
|
|
2017
|
+
[64 | 0, 1, 0]
|
|
2018
|
+
];
|
|
2019
|
+
var DescribeFileCachesResponse$ = [3, n0, _DFCResc,
|
|
2020
|
+
0,
|
|
2021
|
+
[_FCi, _NTe],
|
|
2022
|
+
[() => FileCaches, 0]
|
|
2023
|
+
];
|
|
2024
|
+
var DescribeFileSystemAliasesRequest$ = [3, n0, _DFSAR,
|
|
2025
|
+
0,
|
|
2026
|
+
[_FSI, _CRT, _MR, _NTe],
|
|
2027
|
+
[0, [0, 4], 1, 0], 1
|
|
2028
|
+
];
|
|
2029
|
+
var DescribeFileSystemAliasesResponse$ = [3, n0, _DFSARe,
|
|
2030
|
+
0,
|
|
2031
|
+
[_Ali, _NTe],
|
|
2032
|
+
[() => Aliases, 0]
|
|
2033
|
+
];
|
|
2034
|
+
var DescribeFileSystemsRequest$ = [3, n0, _DFSRes,
|
|
2035
|
+
0,
|
|
2036
|
+
[_FSIil, _MR, _NTe],
|
|
2037
|
+
[64 | 0, 1, 0]
|
|
2038
|
+
];
|
|
2039
|
+
var DescribeFileSystemsResponse$ = [3, n0, _DFSResc,
|
|
2040
|
+
0,
|
|
2041
|
+
[_FSi, _NTe],
|
|
2042
|
+
[[() => FileSystems, 0], 0]
|
|
2043
|
+
];
|
|
2044
|
+
var DescribeS3AccessPointAttachmentsRequest$ = [3, n0, _DSAPAR,
|
|
2045
|
+
0,
|
|
2046
|
+
[_Na, _Fi, _MR, _NTe],
|
|
2047
|
+
[64 | 0, () => S3AccessPointAttachmentsFilters, 1, 0]
|
|
2048
|
+
];
|
|
2049
|
+
var DescribeS3AccessPointAttachmentsResponse$ = [3, n0, _DSAPARe,
|
|
2050
|
+
0,
|
|
2051
|
+
[_SAPAc, _NTe],
|
|
2052
|
+
[() => S3AccessPointAttachments, 0]
|
|
2053
|
+
];
|
|
2054
|
+
var DescribeSharedVpcConfigurationRequest$ = [3, n0, _DSVCR,
|
|
2055
|
+
0,
|
|
2056
|
+
[],
|
|
2057
|
+
[]
|
|
2058
|
+
];
|
|
2059
|
+
var DescribeSharedVpcConfigurationResponse$ = [3, n0, _DSVCRe,
|
|
2060
|
+
0,
|
|
2061
|
+
[_EFRTUFPA],
|
|
2062
|
+
[0]
|
|
2063
|
+
];
|
|
2064
|
+
var DescribeSnapshotsRequest$ = [3, n0, _DSRes,
|
|
2065
|
+
0,
|
|
2066
|
+
[_SIna, _Fi, _MR, _NTe, _IS],
|
|
2067
|
+
[64 | 0, () => SnapshotFilters, 1, 0, 2]
|
|
2068
|
+
];
|
|
2069
|
+
var DescribeSnapshotsResponse$ = [3, n0, _DSResc,
|
|
2070
|
+
0,
|
|
2071
|
+
[_Sna, _NTe],
|
|
2072
|
+
[() => Snapshots, 0]
|
|
2073
|
+
];
|
|
2074
|
+
var DescribeStorageVirtualMachinesRequest$ = [3, n0, _DSVMRes,
|
|
2075
|
+
0,
|
|
2076
|
+
[_SVMIt, _Fi, _MR, _NTe],
|
|
2077
|
+
[64 | 0, () => StorageVirtualMachineFilters, 1, 0]
|
|
2078
|
+
];
|
|
2079
|
+
var DescribeStorageVirtualMachinesResponse$ = [3, n0, _DSVMResc,
|
|
2080
|
+
0,
|
|
2081
|
+
[_SVMt, _NTe],
|
|
2082
|
+
[() => StorageVirtualMachines, 0]
|
|
2083
|
+
];
|
|
2084
|
+
var DescribeVolumesRequest$ = [3, n0, _DVRes,
|
|
2085
|
+
0,
|
|
2086
|
+
[_VIo, _Fi, _MR, _NTe],
|
|
2087
|
+
[64 | 0, () => VolumeFilters, 1, 0]
|
|
2088
|
+
];
|
|
2089
|
+
var DescribeVolumesResponse$ = [3, n0, _DVResc,
|
|
2090
|
+
0,
|
|
2091
|
+
[_Vol, _NTe],
|
|
2092
|
+
[() => Volumes, 0]
|
|
2093
|
+
];
|
|
2094
|
+
var DetachAndDeleteS3AccessPointRequest$ = [3, n0, _DADSAPR,
|
|
2095
|
+
0,
|
|
2096
|
+
[_N, _CRT],
|
|
2097
|
+
[0, [0, 4]], 1
|
|
2098
|
+
];
|
|
2099
|
+
var DetachAndDeleteS3AccessPointResponse$ = [3, n0, _DADSAPRe,
|
|
2100
|
+
0,
|
|
2101
|
+
[_Li, _N],
|
|
2102
|
+
[0, 0]
|
|
2103
|
+
];
|
|
2104
|
+
var DisassociateFileSystemAliasesRequest$ = [3, n0, _DFSARi,
|
|
2105
|
+
0,
|
|
2106
|
+
[_FSI, _Ali, _CRT],
|
|
2107
|
+
[0, 64 | 0, [0, 4]], 2
|
|
2108
|
+
];
|
|
2109
|
+
var DisassociateFileSystemAliasesResponse$ = [3, n0, _DFSARis,
|
|
2110
|
+
0,
|
|
2111
|
+
[_Ali],
|
|
2112
|
+
[() => Aliases]
|
|
2113
|
+
];
|
|
2114
|
+
var DiskIopsConfiguration$ = [3, n0, _DIC,
|
|
2115
|
+
0,
|
|
2116
|
+
[_Mo, _I],
|
|
2117
|
+
[0, 1]
|
|
2118
|
+
];
|
|
2119
|
+
var DurationSinceLastAccess$ = [3, n0, _DSLA,
|
|
2120
|
+
0,
|
|
2121
|
+
[_U, _V],
|
|
2122
|
+
[0, 1]
|
|
2123
|
+
];
|
|
2124
|
+
var FileCache$ = [3, n0, _FC,
|
|
2125
|
+
0,
|
|
2126
|
+
[_OI, _CT, _FCI, _FCT, _FCTV, _Li, _FD, _SC, _VIp, _SI, _NII, _DNSN, _KKI, _RARN, _LC, _DRAI],
|
|
2127
|
+
[0, 4, 0, 0, 0, 0, () => FileCacheFailureDetails$, 1, 0, 64 | 0, 64 | 0, 0, 0, 0, () => FileCacheLustreConfiguration$, 64 | 0]
|
|
2128
|
+
];
|
|
2129
|
+
var FileCacheCreating$ = [3, n0, _FCC,
|
|
2130
|
+
0,
|
|
2131
|
+
[_OI, _CT, _FCI, _FCT, _FCTV, _Li, _FD, _SC, _VIp, _SI, _NII, _DNSN, _KKI, _RARN, _Ta, _CTTDRA, _LC, _DRAI],
|
|
2132
|
+
[0, 4, 0, 0, 0, 0, () => FileCacheFailureDetails$, 1, 0, 64 | 0, 64 | 0, 0, 0, 0, () => Tags, 2, () => FileCacheLustreConfiguration$, 64 | 0]
|
|
2133
|
+
];
|
|
2134
|
+
var FileCacheDataRepositoryAssociation$ = [3, n0, _FCDRA,
|
|
2135
|
+
0,
|
|
2136
|
+
[_FCP, _DRP, _DRS, _NFS],
|
|
2137
|
+
[0, 0, 64 | 0, () => FileCacheNFSConfiguration$], 2
|
|
2138
|
+
];
|
|
2139
|
+
var FileCacheFailureDetails$ = [3, n0, _FCFD,
|
|
2140
|
+
0,
|
|
2141
|
+
[_M],
|
|
2142
|
+
[0]
|
|
2143
|
+
];
|
|
2144
|
+
var FileCacheLustreConfiguration$ = [3, n0, _FCLC,
|
|
2145
|
+
0,
|
|
2146
|
+
[_PUST, _DT, _MN, _WMST, _MC, _LCo],
|
|
2147
|
+
[1, 0, 0, 0, () => FileCacheLustreMetadataConfiguration$, () => LustreLogConfiguration$]
|
|
2148
|
+
];
|
|
2149
|
+
var FileCacheLustreMetadataConfiguration$ = [3, n0, _FCLMC,
|
|
2150
|
+
0,
|
|
2151
|
+
[_SC],
|
|
2152
|
+
[1], 1
|
|
2153
|
+
];
|
|
2154
|
+
var FileCacheNFSConfiguration$ = [3, n0, _FCNFSC,
|
|
2155
|
+
0,
|
|
2156
|
+
[_Ve, _DIn],
|
|
2157
|
+
[0, 64 | 0], 1
|
|
2158
|
+
];
|
|
2159
|
+
var FileSystem$ = [3, n0, _FS,
|
|
2160
|
+
0,
|
|
2161
|
+
[_OI, _CT, _FSI, _FST, _Li, _FD, _SC, _ST, _VIp, _SI, _NII, _DNSN, _KKI, _RARN, _Ta, _WC, _LC, _AAd, _OC, _FSTV, _OZFSC, _NT],
|
|
2162
|
+
[0, 4, 0, 0, 0, () => FileSystemFailureDetails$, 1, 0, 0, 64 | 0, 64 | 0, 0, 0, 0, () => Tags, () => WindowsFileSystemConfiguration$, () => LustreFileSystemConfiguration$, [() => AdministrativeActions, 0], [() => OntapFileSystemConfiguration$, 0], 0, () => OpenZFSFileSystemConfiguration$, 0]
|
|
2163
|
+
];
|
|
2164
|
+
var FileSystemEndpoint$ = [3, n0, _FSE,
|
|
2165
|
+
0,
|
|
2166
|
+
[_DNSN, _IA, _IAp],
|
|
2167
|
+
[0, 64 | 0, 64 | 0]
|
|
2168
|
+
];
|
|
2169
|
+
var FileSystemEndpoints$ = [3, n0, _FSEi,
|
|
2170
|
+
0,
|
|
2171
|
+
[_In, _Ma],
|
|
2172
|
+
[() => FileSystemEndpoint$, () => FileSystemEndpoint$]
|
|
2173
|
+
];
|
|
2174
|
+
var FileSystemFailureDetails$ = [3, n0, _FSFD,
|
|
2175
|
+
0,
|
|
2176
|
+
[_M],
|
|
2177
|
+
[0]
|
|
2178
|
+
];
|
|
2179
|
+
var FileSystemLustreMetadataConfiguration$ = [3, n0, _FSLMC,
|
|
2180
|
+
0,
|
|
2181
|
+
[_Mo, _I],
|
|
2182
|
+
[0, 1], 1
|
|
2183
|
+
];
|
|
2184
|
+
var Filter$ = [3, n0, _Fil,
|
|
2185
|
+
0,
|
|
2186
|
+
[_N, _Va],
|
|
2187
|
+
[0, 64 | 0]
|
|
2188
|
+
];
|
|
2189
|
+
var LifecycleTransitionReason$ = [3, n0, _LTR,
|
|
2190
|
+
0,
|
|
2191
|
+
[_M],
|
|
2192
|
+
[0]
|
|
2193
|
+
];
|
|
2194
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
2195
|
+
0,
|
|
2196
|
+
[_RARN, _MR, _NTe],
|
|
2197
|
+
[0, 1, 0], 1
|
|
2198
|
+
];
|
|
2199
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
2200
|
+
0,
|
|
2201
|
+
[_Ta, _NTe],
|
|
2202
|
+
[() => Tags, 0]
|
|
2203
|
+
];
|
|
2204
|
+
var LustreFileSystemConfiguration$ = [3, n0, _LFSC,
|
|
2205
|
+
0,
|
|
2206
|
+
[_WMST, _DRC, _DT, _PUST, _MN, _DABST, _ABRD, _CTTB, _DCT, _DCTa, _LCo, _RSC, _MC, _EE, _TCh, _DRCC],
|
|
2207
|
+
[0, () => DataRepositoryConfiguration$, 0, 1, 0, 0, 1, 2, 0, 0, () => LustreLogConfiguration$, () => LustreRootSquashConfiguration$, () => FileSystemLustreMetadataConfiguration$, 2, 1, () => LustreReadCacheConfiguration$]
|
|
2208
|
+
];
|
|
2209
|
+
var LustreLogConfiguration$ = [3, n0, _LLC,
|
|
2210
|
+
0,
|
|
2211
|
+
[_Le, _D],
|
|
2212
|
+
[0, 0], 1
|
|
2213
|
+
];
|
|
2214
|
+
var LustreLogCreateConfiguration$ = [3, n0, _LLCC,
|
|
2215
|
+
0,
|
|
2216
|
+
[_Le, _D],
|
|
2217
|
+
[0, 0], 1
|
|
2218
|
+
];
|
|
2219
|
+
var LustreReadCacheConfiguration$ = [3, n0, _LRCC,
|
|
2220
|
+
0,
|
|
2221
|
+
[_SM, _SGB],
|
|
2222
|
+
[0, 1]
|
|
2223
|
+
];
|
|
2224
|
+
var LustreRootSquashConfiguration$ = [3, n0, _LRSC,
|
|
2225
|
+
0,
|
|
2226
|
+
[_RS, _NSN],
|
|
2227
|
+
[0, 64 | 0]
|
|
2228
|
+
];
|
|
2229
|
+
var NFSDataRepositoryConfiguration$ = [3, n0, _NFSDRC,
|
|
2230
|
+
0,
|
|
2231
|
+
[_Ve, _DIn, _AEP],
|
|
2232
|
+
[0, 64 | 0, () => AutoExportPolicy$], 1
|
|
2233
|
+
];
|
|
2234
|
+
var OntapFileSystemConfiguration$ = [3, n0, _OFSC,
|
|
2235
|
+
0,
|
|
2236
|
+
[_ABRD, _DABST, _DT, _EIAR, _End, _DIC, _PSI, _RTI, _TCh, _WMST, _FAP, _HAP, _TCPHAP, _EIARn],
|
|
2237
|
+
[1, 0, 0, 0, () => FileSystemEndpoints$, () => DiskIopsConfiguration$, 0, 64 | 0, 1, 0, [() => AdminPassword, 0], 1, 1, 0]
|
|
2238
|
+
];
|
|
2239
|
+
var OntapFileSystemIdentity$ = [3, n0, _OFSI,
|
|
2240
|
+
0,
|
|
2241
|
+
[_T, _UU, _WU],
|
|
2242
|
+
[0, () => OntapUnixFileSystemUser$, () => OntapWindowsFileSystemUser$], 1
|
|
2243
|
+
];
|
|
2244
|
+
var OntapUnixFileSystemUser$ = [3, n0, _OUFSU,
|
|
2245
|
+
0,
|
|
2246
|
+
[_N],
|
|
2247
|
+
[0], 1
|
|
2248
|
+
];
|
|
2249
|
+
var OntapVolumeConfiguration$ = [3, n0, _OVC,
|
|
2250
|
+
0,
|
|
2251
|
+
[_FCET, _JP, _SS, _SIM, _SEE, _SVMI, _SVMR, _TP, _UUID, _OVT, _SP, _CTTB, _SCn, _VS, _AC, _SIB],
|
|
2252
|
+
[0, 0, 0, 1, 2, 0, 2, () => TieringPolicy$, 0, 0, 0, 2, () => SnaplockConfiguration$, 0, () => AggregateConfiguration$, 1]
|
|
2253
|
+
];
|
|
2254
|
+
var OntapWindowsFileSystemUser$ = [3, n0, _OWFSU,
|
|
2255
|
+
0,
|
|
2256
|
+
[_N],
|
|
2257
|
+
[0], 1
|
|
2258
|
+
];
|
|
2259
|
+
var OpenZFSClientConfiguration$ = [3, n0, _OZFSCC,
|
|
2260
|
+
0,
|
|
2261
|
+
[_C, _O],
|
|
2262
|
+
[0, 64 | 0], 2
|
|
2263
|
+
];
|
|
2264
|
+
var OpenZFSCreateRootVolumeConfiguration$ = [3, n0, _OZFSCRVC,
|
|
2265
|
+
0,
|
|
2266
|
+
[_RSKB, _DCTa, _NE, _UAGQ, _CTTS, _RO],
|
|
2267
|
+
[1, 0, () => OpenZFSNfsExports, () => OpenZFSUserAndGroupQuotas, 2, 2]
|
|
2268
|
+
];
|
|
2269
|
+
var OpenZFSFileSystemConfiguration$ = [3, n0, _OZFSFSC,
|
|
2270
|
+
0,
|
|
2271
|
+
[_ABRD, _CTTB, _CTTV, _DABST, _DT, _TCh, _WMST, _DIC, _RVI, _PSI, _EIAR, _EIARn, _RTI, _EIA, _EIAn, _RCC],
|
|
2272
|
+
[1, 2, 2, 0, 0, 1, 0, () => DiskIopsConfiguration$, 0, 0, 0, 0, 64 | 0, 0, 0, () => OpenZFSReadCacheConfiguration$]
|
|
2273
|
+
];
|
|
2274
|
+
var OpenZFSFileSystemIdentity$ = [3, n0, _OZFSFSI,
|
|
2275
|
+
0,
|
|
2276
|
+
[_T, _PU],
|
|
2277
|
+
[0, () => OpenZFSPosixFileSystemUser$], 1
|
|
2278
|
+
];
|
|
2279
|
+
var OpenZFSNfsExport$ = [3, n0, _OZFSNE,
|
|
2280
|
+
0,
|
|
2281
|
+
[_CC],
|
|
2282
|
+
[() => OpenZFSClientConfigurations], 1
|
|
2283
|
+
];
|
|
2284
|
+
var OpenZFSOriginSnapshotConfiguration$ = [3, n0, _OZFSOSC,
|
|
2285
|
+
0,
|
|
2286
|
+
[_SARN, _CS],
|
|
2287
|
+
[0, 0]
|
|
2288
|
+
];
|
|
2289
|
+
var OpenZFSPosixFileSystemUser$ = [3, n0, _OZFSPFSU,
|
|
2290
|
+
0,
|
|
2291
|
+
[_Ui, _G, _SG],
|
|
2292
|
+
[1, 1, 64 | 1], 2
|
|
2293
|
+
];
|
|
2294
|
+
var OpenZFSReadCacheConfiguration$ = [3, n0, _OZFSRCC,
|
|
2295
|
+
0,
|
|
2296
|
+
[_SM, _SGB],
|
|
2297
|
+
[0, 1]
|
|
2298
|
+
];
|
|
2299
|
+
var OpenZFSUserOrGroupQuota$ = [3, n0, _OZFSUOGQ,
|
|
2300
|
+
0,
|
|
2301
|
+
[_T, _Id, _SCQGB],
|
|
2302
|
+
[0, 1, 1], 3
|
|
2303
|
+
];
|
|
2304
|
+
var OpenZFSVolumeConfiguration$ = [3, n0, _OZFSVC,
|
|
2305
|
+
0,
|
|
2306
|
+
[_PVI, _VP, _SCRGB, _SCQGB, _RSKB, _DCTa, _CTTS, _OS, _RO, _NE, _UAGQ, _RTS, _DIS, _DCV, _DID, _SSARN, _DS, _CS],
|
|
2307
|
+
[0, 0, 1, 1, 1, 0, 2, () => OpenZFSOriginSnapshotConfiguration$, 2, () => OpenZFSNfsExports, () => OpenZFSUserAndGroupQuotas, 0, 2, 2, 2, 0, 0, 0]
|
|
2308
|
+
];
|
|
2309
|
+
var ReleaseConfiguration$ = [3, n0, _RC,
|
|
2310
|
+
0,
|
|
2311
|
+
[_DSLA],
|
|
2312
|
+
[() => DurationSinceLastAccess$]
|
|
2313
|
+
];
|
|
2314
|
+
var ReleaseFileSystemNfsV3LocksRequest$ = [3, n0, _RFSNVLR,
|
|
2315
|
+
0,
|
|
2316
|
+
[_FSI, _CRT],
|
|
2317
|
+
[0, [0, 4]], 1
|
|
2318
|
+
];
|
|
2319
|
+
var ReleaseFileSystemNfsV3LocksResponse$ = [3, n0, _RFSNVLRe,
|
|
2320
|
+
0,
|
|
2321
|
+
[_FS],
|
|
2322
|
+
[[() => FileSystem$, 0]]
|
|
2323
|
+
];
|
|
2324
|
+
var RestoreVolumeFromSnapshotRequest$ = [3, n0, _RVFSR,
|
|
2325
|
+
0,
|
|
2326
|
+
[_VI, _SIn, _CRT, _O],
|
|
2327
|
+
[0, 0, [0, 4], 64 | 0], 2
|
|
2328
|
+
];
|
|
2329
|
+
var RestoreVolumeFromSnapshotResponse$ = [3, n0, _RVFSRe,
|
|
2330
|
+
0,
|
|
2331
|
+
[_VI, _Li, _AAd],
|
|
2332
|
+
[0, 0, [() => AdministrativeActions, 0]]
|
|
2333
|
+
];
|
|
2334
|
+
var RetentionPeriod$ = [3, n0, _RP,
|
|
2335
|
+
0,
|
|
2336
|
+
[_T, _V],
|
|
2337
|
+
[0, 1], 1
|
|
2338
|
+
];
|
|
2339
|
+
var S3AccessPoint$ = [3, n0, _SAP,
|
|
2340
|
+
0,
|
|
2341
|
+
[_RARN, _Al, _VC],
|
|
2342
|
+
[0, 0, () => S3AccessPointVpcConfiguration$]
|
|
2343
|
+
];
|
|
2344
|
+
var S3AccessPointAttachment$ = [3, n0, _SAPA,
|
|
2345
|
+
0,
|
|
2346
|
+
[_Li, _LTR, _CT, _N, _T, _OZFSC, _OC, _SAP],
|
|
2347
|
+
[0, () => LifecycleTransitionReason$, 4, 0, 0, () => S3AccessPointOpenZFSConfiguration$, () => S3AccessPointOntapConfiguration$, () => S3AccessPoint$]
|
|
2348
|
+
];
|
|
2349
|
+
var S3AccessPointAttachmentsFilter$ = [3, n0, _SAPAF,
|
|
2350
|
+
0,
|
|
2351
|
+
[_N, _Va],
|
|
2352
|
+
[0, 64 | 0]
|
|
2353
|
+
];
|
|
2354
|
+
var S3AccessPointOntapConfiguration$ = [3, n0, _SAPOC,
|
|
2355
|
+
0,
|
|
2356
|
+
[_VI, _FSIi],
|
|
2357
|
+
[0, () => OntapFileSystemIdentity$]
|
|
2358
|
+
];
|
|
2359
|
+
var S3AccessPointOpenZFSConfiguration$ = [3, n0, _SAPOZFSC,
|
|
2360
|
+
0,
|
|
2361
|
+
[_VI, _FSIi],
|
|
2362
|
+
[0, () => OpenZFSFileSystemIdentity$]
|
|
2363
|
+
];
|
|
2364
|
+
var S3AccessPointVpcConfiguration$ = [3, n0, _SAPVC,
|
|
2365
|
+
0,
|
|
2366
|
+
[_VIp],
|
|
2367
|
+
[0]
|
|
2368
|
+
];
|
|
2369
|
+
var S3DataRepositoryConfiguration$ = [3, n0, _SDRC,
|
|
2370
|
+
0,
|
|
2371
|
+
[_AIP, _AEP],
|
|
2372
|
+
[() => AutoImportPolicy$, () => AutoExportPolicy$]
|
|
2373
|
+
];
|
|
2374
|
+
var SelfManagedActiveDirectoryAttributes$ = [3, n0, _SMADA,
|
|
2375
|
+
0,
|
|
2376
|
+
[_DN, _OUDN, _FSAG, _UN, _DIn, _DJSAS],
|
|
2377
|
+
[0, 0, 0, 0, 64 | 0, 0]
|
|
2378
|
+
];
|
|
2379
|
+
var SelfManagedActiveDirectoryConfiguration$ = [3, n0, _SMADC,
|
|
2380
|
+
0,
|
|
2381
|
+
[_DN, _DIn, _OUDN, _FSAG, _UN, _Pas, _DJSAS],
|
|
2382
|
+
[0, 64 | 0, 0, 0, 0, [() => DirectoryPassword, 0], 0], 2
|
|
2383
|
+
];
|
|
2384
|
+
var SelfManagedActiveDirectoryConfigurationUpdates$ = [3, n0, _SMADCU,
|
|
2385
|
+
0,
|
|
2386
|
+
[_UN, _Pas, _DIn, _DN, _OUDN, _FSAG, _DJSAS],
|
|
2387
|
+
[0, [() => DirectoryPassword, 0], 64 | 0, 0, 0, 0, 0]
|
|
2388
|
+
];
|
|
2389
|
+
var SnaplockConfiguration$ = [3, n0, _SCn,
|
|
2390
|
+
0,
|
|
2391
|
+
[_ALV, _APu, _PD, _RP, _STn, _VAME],
|
|
2392
|
+
[2, () => AutocommitPeriod$, 0, () => SnaplockRetentionPeriod$, 0, 2]
|
|
2393
|
+
];
|
|
2394
|
+
var SnaplockRetentionPeriod$ = [3, n0, _SRP,
|
|
2395
|
+
0,
|
|
2396
|
+
[_DR, _MRi, _MRa],
|
|
2397
|
+
[() => RetentionPeriod$, () => RetentionPeriod$, () => RetentionPeriod$], 3
|
|
2398
|
+
];
|
|
2399
|
+
var Snapshot$ = [3, n0, _Sn,
|
|
2400
|
+
0,
|
|
2401
|
+
[_RARN, _SIn, _N, _VI, _CT, _Li, _LTR, _Ta, _AAd],
|
|
2402
|
+
[0, 0, 0, 0, 4, 0, () => LifecycleTransitionReason$, () => Tags, [() => AdministrativeActions, 0]]
|
|
2403
|
+
];
|
|
2404
|
+
var SnapshotFilter$ = [3, n0, _SF,
|
|
2405
|
+
0,
|
|
2406
|
+
[_N, _Va],
|
|
2407
|
+
[0, 64 | 0]
|
|
2408
|
+
];
|
|
2409
|
+
var StartMisconfiguredStateRecoveryRequest$ = [3, n0, _SMSRR,
|
|
2410
|
+
0,
|
|
2411
|
+
[_FSI, _CRT],
|
|
2412
|
+
[0, [0, 4]], 1
|
|
2413
|
+
];
|
|
2414
|
+
var StartMisconfiguredStateRecoveryResponse$ = [3, n0, _SMSRRt,
|
|
2415
|
+
0,
|
|
2416
|
+
[_FS],
|
|
2417
|
+
[[() => FileSystem$, 0]]
|
|
2418
|
+
];
|
|
2419
|
+
var StorageVirtualMachine$ = [3, n0, _SVM,
|
|
2420
|
+
0,
|
|
2421
|
+
[_ADC, _CT, _End, _FSI, _Li, _N, _RARN, _SVMI, _Su, _UUID, _Ta, _LTR, _RVSS],
|
|
2422
|
+
[() => SvmActiveDirectoryConfiguration$, 4, () => SvmEndpoints$, 0, 0, 0, 0, 0, 0, 0, () => Tags, () => LifecycleTransitionReason$, 0]
|
|
2423
|
+
];
|
|
2424
|
+
var StorageVirtualMachineFilter$ = [3, n0, _SVMF,
|
|
2425
|
+
0,
|
|
2426
|
+
[_N, _Va],
|
|
2427
|
+
[0, 64 | 0]
|
|
2428
|
+
];
|
|
2429
|
+
var SvmActiveDirectoryConfiguration$ = [3, n0, _SADC,
|
|
2430
|
+
0,
|
|
2431
|
+
[_NBN, _SMADC],
|
|
2432
|
+
[0, () => SelfManagedActiveDirectoryAttributes$]
|
|
2433
|
+
];
|
|
2434
|
+
var SvmEndpoint$ = [3, n0, _SE,
|
|
2435
|
+
0,
|
|
2436
|
+
[_DNSN, _IA, _IAp],
|
|
2437
|
+
[0, 64 | 0, 64 | 0]
|
|
2438
|
+
];
|
|
2439
|
+
var SvmEndpoints$ = [3, n0, _SEv,
|
|
2440
|
+
0,
|
|
2441
|
+
[_Is, _Ma, _Nf, _Sm],
|
|
2442
|
+
[() => SvmEndpoint$, () => SvmEndpoint$, () => SvmEndpoint$, () => SvmEndpoint$]
|
|
2443
|
+
];
|
|
2444
|
+
var Tag$ = [3, n0, _Tag,
|
|
2445
|
+
0,
|
|
2446
|
+
[_K, _V],
|
|
2447
|
+
[0, 0], 2
|
|
2448
|
+
];
|
|
2449
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
2450
|
+
0,
|
|
2451
|
+
[_RARN, _Ta],
|
|
2452
|
+
[0, () => Tags], 2
|
|
2453
|
+
];
|
|
2454
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
2455
|
+
0,
|
|
2456
|
+
[],
|
|
2457
|
+
[]
|
|
2458
|
+
];
|
|
2459
|
+
var TieringPolicy$ = [3, n0, _TP,
|
|
2460
|
+
0,
|
|
2461
|
+
[_CP, _N],
|
|
2462
|
+
[1, 0]
|
|
2463
|
+
];
|
|
2464
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
2465
|
+
0,
|
|
2466
|
+
[_RARN, _TK],
|
|
2467
|
+
[0, 64 | 0], 2
|
|
2468
|
+
];
|
|
2469
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
2470
|
+
0,
|
|
2471
|
+
[],
|
|
2472
|
+
[]
|
|
2473
|
+
];
|
|
2474
|
+
var UpdateDataRepositoryAssociationRequest$ = [3, n0, _UDRAR,
|
|
2475
|
+
0,
|
|
2476
|
+
[_AI, _CRT, _IFCS, _S_],
|
|
2477
|
+
[0, [0, 4], 1, () => S3DataRepositoryConfiguration$], 1
|
|
2478
|
+
];
|
|
2479
|
+
var UpdateDataRepositoryAssociationResponse$ = [3, n0, _UDRARp,
|
|
2480
|
+
0,
|
|
2481
|
+
[_As],
|
|
2482
|
+
[() => DataRepositoryAssociation$]
|
|
2483
|
+
];
|
|
2484
|
+
var UpdateFileCacheLustreConfiguration$ = [3, n0, _UFCLC,
|
|
2485
|
+
0,
|
|
2486
|
+
[_WMST],
|
|
2487
|
+
[0]
|
|
2488
|
+
];
|
|
2489
|
+
var UpdateFileCacheRequest$ = [3, n0, _UFCR,
|
|
2490
|
+
0,
|
|
2491
|
+
[_FCI, _CRT, _LC],
|
|
2492
|
+
[0, [0, 4], () => UpdateFileCacheLustreConfiguration$], 1
|
|
2493
|
+
];
|
|
2494
|
+
var UpdateFileCacheResponse$ = [3, n0, _UFCRp,
|
|
2495
|
+
0,
|
|
2496
|
+
[_FC],
|
|
2497
|
+
[() => FileCache$]
|
|
2498
|
+
];
|
|
2499
|
+
var UpdateFileSystemLustreConfiguration$ = [3, n0, _UFSLC,
|
|
2500
|
+
0,
|
|
2501
|
+
[_WMST, _DABST, _ABRD, _AIP, _DCTa, _LCo, _RSC, _PUST, _MC, _TCh, _DRCC],
|
|
2502
|
+
[0, 0, 1, 0, 0, () => LustreLogCreateConfiguration$, () => LustreRootSquashConfiguration$, 1, () => UpdateFileSystemLustreMetadataConfiguration$, 1, () => LustreReadCacheConfiguration$]
|
|
2503
|
+
];
|
|
2504
|
+
var UpdateFileSystemLustreMetadataConfiguration$ = [3, n0, _UFSLMC,
|
|
2505
|
+
0,
|
|
2506
|
+
[_I, _Mo],
|
|
2507
|
+
[1, 0]
|
|
2508
|
+
];
|
|
2509
|
+
var UpdateFileSystemOntapConfiguration$ = [3, n0, _UFSOC,
|
|
2510
|
+
0,
|
|
2511
|
+
[_ABRD, _DABST, _FAP, _WMST, _DIC, _TCh, _ARTI, _RRTI, _TCPHAP, _HAP, _EIARn],
|
|
2512
|
+
[1, 0, [() => AdminPassword, 0], 0, () => DiskIopsConfiguration$, 1, 64 | 0, 64 | 0, 1, 1, 0]
|
|
2513
|
+
];
|
|
2514
|
+
var UpdateFileSystemOpenZFSConfiguration$ = [3, n0, _UFSOZFSC,
|
|
2515
|
+
0,
|
|
2516
|
+
[_ABRD, _CTTB, _CTTV, _DABST, _TCh, _WMST, _DIC, _ARTI, _RRTI, _RCC, _EIARn],
|
|
2517
|
+
[1, 2, 2, 0, 1, 0, () => DiskIopsConfiguration$, 64 | 0, 64 | 0, () => OpenZFSReadCacheConfiguration$, 0]
|
|
2518
|
+
];
|
|
2519
|
+
var UpdateFileSystemRequest$ = [3, n0, _UFSR,
|
|
2520
|
+
0,
|
|
2521
|
+
[_FSI, _CRT, _SC, _WC, _LC, _OC, _OZFSC, _ST, _FSTV, _NT],
|
|
2522
|
+
[0, [0, 4], 1, [() => UpdateFileSystemWindowsConfiguration$, 0], () => UpdateFileSystemLustreConfiguration$, [() => UpdateFileSystemOntapConfiguration$, 0], () => UpdateFileSystemOpenZFSConfiguration$, 0, 0, 0], 1
|
|
2523
|
+
];
|
|
2524
|
+
var UpdateFileSystemResponse$ = [3, n0, _UFSRp,
|
|
2525
|
+
0,
|
|
2526
|
+
[_FS],
|
|
2527
|
+
[[() => FileSystem$, 0]]
|
|
2528
|
+
];
|
|
2529
|
+
var UpdateFileSystemWindowsConfiguration$ = [3, n0, _UFSWC,
|
|
2530
|
+
0,
|
|
2531
|
+
[_WMST, _DABST, _ABRD, _TCh, _SMADC, _ALC, _DIC, _FCs],
|
|
2532
|
+
[0, 0, 1, 1, [() => SelfManagedActiveDirectoryConfigurationUpdates$, 0], () => WindowsAuditLogCreateConfiguration$, () => DiskIopsConfiguration$, () => WindowsFsrmConfiguration$]
|
|
2533
|
+
];
|
|
2534
|
+
var UpdateOntapVolumeConfiguration$ = [3, n0, _UOVC,
|
|
2535
|
+
0,
|
|
2536
|
+
[_JP, _SS, _SIM, _SEE, _TP, _SP, _CTTB, _SCn, _SIB],
|
|
2537
|
+
[0, 0, 1, 2, () => TieringPolicy$, 0, 2, () => UpdateSnaplockConfiguration$, 1]
|
|
2538
|
+
];
|
|
2539
|
+
var UpdateOpenZFSVolumeConfiguration$ = [3, n0, _UOZFSVC,
|
|
2540
|
+
0,
|
|
2541
|
+
[_SCRGB, _SCQGB, _RSKB, _DCTa, _NE, _UAGQ, _RO],
|
|
2542
|
+
[1, 1, 1, 0, () => OpenZFSNfsExports, () => OpenZFSUserAndGroupQuotas, 2]
|
|
2543
|
+
];
|
|
2544
|
+
var UpdateSharedVpcConfigurationRequest$ = [3, n0, _USVCR,
|
|
2545
|
+
0,
|
|
2546
|
+
[_EFRTUFPA, _CRT],
|
|
2547
|
+
[0, [0, 4]]
|
|
2548
|
+
];
|
|
2549
|
+
var UpdateSharedVpcConfigurationResponse$ = [3, n0, _USVCRp,
|
|
2550
|
+
0,
|
|
2551
|
+
[_EFRTUFPA],
|
|
2552
|
+
[0]
|
|
2553
|
+
];
|
|
2554
|
+
var UpdateSnaplockConfiguration$ = [3, n0, _USC,
|
|
2555
|
+
0,
|
|
2556
|
+
[_ALV, _APu, _PD, _RP, _VAME],
|
|
2557
|
+
[2, () => AutocommitPeriod$, 0, () => SnaplockRetentionPeriod$, 2]
|
|
2558
|
+
];
|
|
2559
|
+
var UpdateSnapshotRequest$ = [3, n0, _USR,
|
|
2560
|
+
0,
|
|
2561
|
+
[_N, _SIn, _CRT],
|
|
2562
|
+
[0, 0, [0, 4]], 2
|
|
2563
|
+
];
|
|
2564
|
+
var UpdateSnapshotResponse$ = [3, n0, _USRp,
|
|
2565
|
+
0,
|
|
2566
|
+
[_Sn],
|
|
2567
|
+
[() => Snapshot$]
|
|
2568
|
+
];
|
|
2569
|
+
var UpdateStorageVirtualMachineRequest$ = [3, n0, _USVMR,
|
|
2570
|
+
0,
|
|
2571
|
+
[_SVMI, _ADC, _CRT, _SAPv],
|
|
2572
|
+
[0, [() => UpdateSvmActiveDirectoryConfiguration$, 0], [0, 4], [() => AdminPassword, 0]], 1
|
|
2573
|
+
];
|
|
2574
|
+
var UpdateStorageVirtualMachineResponse$ = [3, n0, _USVMRp,
|
|
2575
|
+
0,
|
|
2576
|
+
[_SVM],
|
|
2577
|
+
[() => StorageVirtualMachine$]
|
|
2578
|
+
];
|
|
2579
|
+
var UpdateSvmActiveDirectoryConfiguration$ = [3, n0, _USADC,
|
|
2580
|
+
0,
|
|
2581
|
+
[_SMADC, _NBN],
|
|
2582
|
+
[[() => SelfManagedActiveDirectoryConfigurationUpdates$, 0], 0]
|
|
2583
|
+
];
|
|
2584
|
+
var UpdateVolumeRequest$ = [3, n0, _UVR,
|
|
2585
|
+
0,
|
|
2586
|
+
[_VI, _CRT, _OC, _N, _OZFSC],
|
|
2587
|
+
[0, [0, 4], () => UpdateOntapVolumeConfiguration$, 0, () => UpdateOpenZFSVolumeConfiguration$], 1
|
|
2588
|
+
];
|
|
2589
|
+
var UpdateVolumeResponse$ = [3, n0, _UVRp,
|
|
2590
|
+
0,
|
|
2591
|
+
[_Vo],
|
|
2592
|
+
[() => Volume$]
|
|
2593
|
+
];
|
|
2594
|
+
var Volume$ = [3, n0, _Vo,
|
|
2595
|
+
0,
|
|
2596
|
+
[_CT, _FSI, _Li, _N, _OC, _RARN, _Ta, _VI, _VT, _LTR, _AAd, _OZFSC],
|
|
2597
|
+
[4, 0, 0, 0, () => OntapVolumeConfiguration$, 0, () => Tags, 0, 0, () => LifecycleTransitionReason$, [() => AdministrativeActions, 0], () => OpenZFSVolumeConfiguration$]
|
|
2598
|
+
];
|
|
2599
|
+
var VolumeFilter$ = [3, n0, _VF,
|
|
2600
|
+
0,
|
|
2601
|
+
[_N, _Va],
|
|
2602
|
+
[0, 64 | 0]
|
|
2603
|
+
];
|
|
2604
|
+
var WindowsAuditLogConfiguration$ = [3, n0, _WALC,
|
|
2605
|
+
0,
|
|
2606
|
+
[_FAALL, _FSAALL, _ALD],
|
|
2607
|
+
[0, 0, 0], 2
|
|
2608
|
+
];
|
|
2609
|
+
var WindowsAuditLogCreateConfiguration$ = [3, n0, _WALCC,
|
|
2610
|
+
0,
|
|
2611
|
+
[_FAALL, _FSAALL, _ALD],
|
|
2612
|
+
[0, 0, 0], 2
|
|
2613
|
+
];
|
|
2614
|
+
var WindowsFileSystemConfiguration$ = [3, n0, _WFSC,
|
|
2615
|
+
0,
|
|
2616
|
+
[_ADI, _SMADC, _DT, _RAE, _PSI, _PFSI, _TCh, _MOIP, _WMST, _DABST, _ABRD, _CTTB, _Ali, _ALC, _DIC, _PFSIr, _FCs],
|
|
2617
|
+
[0, () => SelfManagedActiveDirectoryAttributes$, 0, 0, 0, 0, 1, 64 | 0, 0, 0, 1, 2, () => Aliases, () => WindowsAuditLogConfiguration$, () => DiskIopsConfiguration$, 0, () => WindowsFsrmConfiguration$]
|
|
2618
|
+
];
|
|
2619
|
+
var WindowsFsrmConfiguration$ = [3, n0, _WFC,
|
|
2620
|
+
0,
|
|
2621
|
+
[_FSEs, _ELD],
|
|
2622
|
+
[2, 0], 1
|
|
2623
|
+
];
|
|
2624
|
+
var AdministrativeActions = [1, n0, _AAd,
|
|
2625
|
+
0, [() => AdministrativeAction$,
|
|
2626
|
+
0]
|
|
2627
|
+
];
|
|
2628
|
+
var Aliases = [1, n0, _Ali,
|
|
2629
|
+
0, () => Alias$
|
|
2630
|
+
];
|
|
2631
|
+
var Backups = [1, n0, _Ba,
|
|
2632
|
+
0, [() => Backup$,
|
|
2633
|
+
0]
|
|
2634
|
+
];
|
|
2635
|
+
var CreateFileCacheDataRepositoryAssociations = [1, n0, _CFCDRA,
|
|
2636
|
+
0, () => FileCacheDataRepositoryAssociation$
|
|
2637
|
+
];
|
|
2638
|
+
var DataRepositoryAssociations = [1, n0, _DRA,
|
|
2639
|
+
0, () => DataRepositoryAssociation$
|
|
2640
|
+
];
|
|
2641
|
+
var DataRepositoryTaskFilters = [1, n0, _DRTFa,
|
|
2642
|
+
0, () => DataRepositoryTaskFilter$
|
|
2643
|
+
];
|
|
2644
|
+
var DataRepositoryTasks = [1, n0, _DRTa,
|
|
2645
|
+
0, () => DataRepositoryTask$
|
|
2646
|
+
];
|
|
2647
|
+
var FileCaches = [1, n0, _FCi,
|
|
2648
|
+
0, () => FileCache$
|
|
2649
|
+
];
|
|
2650
|
+
var FileSystems = [1, n0, _FSi,
|
|
2651
|
+
0, [() => FileSystem$,
|
|
2652
|
+
0]
|
|
2653
|
+
];
|
|
2654
|
+
var Filters = [1, n0, _Fi,
|
|
2655
|
+
0, () => Filter$
|
|
2656
|
+
];
|
|
2657
|
+
var OpenZFSClientConfigurations = [1, n0, _OZFSCCp,
|
|
2658
|
+
0, () => OpenZFSClientConfiguration$
|
|
2659
|
+
];
|
|
2660
|
+
var OpenZFSNfsExports = [1, n0, _OZFSNEp,
|
|
2661
|
+
0, () => OpenZFSNfsExport$
|
|
2662
|
+
];
|
|
2663
|
+
var OpenZFSUserAndGroupQuotas = [1, n0, _OZFSUAGQ,
|
|
2664
|
+
0, () => OpenZFSUserOrGroupQuota$
|
|
2665
|
+
];
|
|
2666
|
+
var S3AccessPointAttachments = [1, n0, _SAPAc,
|
|
2667
|
+
0, () => S3AccessPointAttachment$
|
|
2668
|
+
];
|
|
2669
|
+
var S3AccessPointAttachmentsFilters = [1, n0, _SAPAFc,
|
|
2670
|
+
0, () => S3AccessPointAttachmentsFilter$
|
|
2671
|
+
];
|
|
2672
|
+
var SnapshotFilters = [1, n0, _SFn,
|
|
2673
|
+
0, () => SnapshotFilter$
|
|
2674
|
+
];
|
|
2675
|
+
var Snapshots = [1, n0, _Sna,
|
|
2676
|
+
0, () => Snapshot$
|
|
2677
|
+
];
|
|
2678
|
+
var StorageVirtualMachineFilters = [1, n0, _SVMFt,
|
|
2679
|
+
0, () => StorageVirtualMachineFilter$
|
|
2680
|
+
];
|
|
2681
|
+
var StorageVirtualMachines = [1, n0, _SVMt,
|
|
2682
|
+
0, () => StorageVirtualMachine$
|
|
2683
|
+
];
|
|
2684
|
+
var Tags = [1, n0, _Ta,
|
|
2685
|
+
0, () => Tag$
|
|
2686
|
+
];
|
|
2687
|
+
var VolumeFilters = [1, n0, _VFo,
|
|
2688
|
+
0, () => VolumeFilter$
|
|
2689
|
+
];
|
|
2690
|
+
var Volumes = [1, n0, _Vol,
|
|
2691
|
+
0, () => Volume$
|
|
2692
|
+
];
|
|
2693
|
+
var AssociateFileSystemAliases$ = [9, n0, _AFSA,
|
|
2694
|
+
0, () => AssociateFileSystemAliasesRequest$, () => AssociateFileSystemAliasesResponse$
|
|
2695
|
+
];
|
|
2696
|
+
var CancelDataRepositoryTask$ = [9, n0, _CDRT,
|
|
2697
|
+
2, () => CancelDataRepositoryTaskRequest$, () => CancelDataRepositoryTaskResponse$
|
|
2698
|
+
];
|
|
2699
|
+
var CopyBackup$ = [9, n0, _CB,
|
|
2700
|
+
2, () => CopyBackupRequest$, () => CopyBackupResponse$
|
|
2701
|
+
];
|
|
2702
|
+
var CopySnapshotAndUpdateVolume$ = [9, n0, _CSAUV,
|
|
2703
|
+
2, () => CopySnapshotAndUpdateVolumeRequest$, () => CopySnapshotAndUpdateVolumeResponse$
|
|
2704
|
+
];
|
|
2705
|
+
var CreateAndAttachS3AccessPoint$ = [9, n0, _CAASAP,
|
|
2706
|
+
0, () => CreateAndAttachS3AccessPointRequest$, () => CreateAndAttachS3AccessPointResponse$
|
|
2707
|
+
];
|
|
2708
|
+
var CreateBackup$ = [9, n0, _CBr,
|
|
2709
|
+
2, () => CreateBackupRequest$, () => CreateBackupResponse$
|
|
2710
|
+
];
|
|
2711
|
+
var CreateDataRepositoryAssociation$ = [9, n0, _CDRA,
|
|
2712
|
+
2, () => CreateDataRepositoryAssociationRequest$, () => CreateDataRepositoryAssociationResponse$
|
|
2713
|
+
];
|
|
2714
|
+
var CreateDataRepositoryTask$ = [9, n0, _CDRTr,
|
|
2715
|
+
2, () => CreateDataRepositoryTaskRequest$, () => CreateDataRepositoryTaskResponse$
|
|
2716
|
+
];
|
|
2717
|
+
var CreateFileCache$ = [9, n0, _CFC,
|
|
2718
|
+
2, () => CreateFileCacheRequest$, () => CreateFileCacheResponse$
|
|
2719
|
+
];
|
|
2720
|
+
var CreateFileSystem$ = [9, n0, _CFS,
|
|
2721
|
+
0, () => CreateFileSystemRequest$, () => CreateFileSystemResponse$
|
|
2722
|
+
];
|
|
2723
|
+
var CreateFileSystemFromBackup$ = [9, n0, _CFSFB,
|
|
2724
|
+
0, () => CreateFileSystemFromBackupRequest$, () => CreateFileSystemFromBackupResponse$
|
|
2725
|
+
];
|
|
2726
|
+
var CreateSnapshot$ = [9, n0, _CSr,
|
|
2727
|
+
2, () => CreateSnapshotRequest$, () => CreateSnapshotResponse$
|
|
2728
|
+
];
|
|
2729
|
+
var CreateStorageVirtualMachine$ = [9, n0, _CSVM,
|
|
2730
|
+
0, () => CreateStorageVirtualMachineRequest$, () => CreateStorageVirtualMachineResponse$
|
|
2731
|
+
];
|
|
2732
|
+
var CreateVolume$ = [9, n0, _CV,
|
|
2733
|
+
0, () => CreateVolumeRequest$, () => CreateVolumeResponse$
|
|
2734
|
+
];
|
|
2735
|
+
var CreateVolumeFromBackup$ = [9, n0, _CVFB,
|
|
2736
|
+
0, () => CreateVolumeFromBackupRequest$, () => CreateVolumeFromBackupResponse$
|
|
2737
|
+
];
|
|
2738
|
+
var DeleteBackup$ = [9, n0, _DB,
|
|
2739
|
+
2, () => DeleteBackupRequest$, () => DeleteBackupResponse$
|
|
2740
|
+
];
|
|
2741
|
+
var DeleteDataRepositoryAssociation$ = [9, n0, _DDRA,
|
|
2742
|
+
2, () => DeleteDataRepositoryAssociationRequest$, () => DeleteDataRepositoryAssociationResponse$
|
|
2743
|
+
];
|
|
2744
|
+
var DeleteFileCache$ = [9, n0, _DFC,
|
|
2745
|
+
2, () => DeleteFileCacheRequest$, () => DeleteFileCacheResponse$
|
|
2746
|
+
];
|
|
2747
|
+
var DeleteFileSystem$ = [9, n0, _DFS,
|
|
2748
|
+
2, () => DeleteFileSystemRequest$, () => DeleteFileSystemResponse$
|
|
2749
|
+
];
|
|
2750
|
+
var DeleteSnapshot$ = [9, n0, _DSe,
|
|
2751
|
+
2, () => DeleteSnapshotRequest$, () => DeleteSnapshotResponse$
|
|
2752
|
+
];
|
|
2753
|
+
var DeleteStorageVirtualMachine$ = [9, n0, _DSVM,
|
|
2754
|
+
0, () => DeleteStorageVirtualMachineRequest$, () => DeleteStorageVirtualMachineResponse$
|
|
2755
|
+
];
|
|
2756
|
+
var DeleteVolume$ = [9, n0, _DV,
|
|
2757
|
+
0, () => DeleteVolumeRequest$, () => DeleteVolumeResponse$
|
|
2758
|
+
];
|
|
2759
|
+
var DescribeBackups$ = [9, n0, _DBe,
|
|
2760
|
+
0, () => DescribeBackupsRequest$, () => DescribeBackupsResponse$
|
|
2761
|
+
];
|
|
2762
|
+
var DescribeDataRepositoryAssociations$ = [9, n0, _DDRAe,
|
|
2763
|
+
2, () => DescribeDataRepositoryAssociationsRequest$, () => DescribeDataRepositoryAssociationsResponse$
|
|
2764
|
+
];
|
|
2765
|
+
var DescribeDataRepositoryTasks$ = [9, n0, _DDRT,
|
|
2766
|
+
0, () => DescribeDataRepositoryTasksRequest$, () => DescribeDataRepositoryTasksResponse$
|
|
2767
|
+
];
|
|
2768
|
+
var DescribeFileCaches$ = [9, n0, _DFCe,
|
|
2769
|
+
2, () => DescribeFileCachesRequest$, () => DescribeFileCachesResponse$
|
|
2770
|
+
];
|
|
2771
|
+
var DescribeFileSystemAliases$ = [9, n0, _DFSA,
|
|
2772
|
+
0, () => DescribeFileSystemAliasesRequest$, () => DescribeFileSystemAliasesResponse$
|
|
2773
|
+
];
|
|
2774
|
+
var DescribeFileSystems$ = [9, n0, _DFSe,
|
|
2775
|
+
0, () => DescribeFileSystemsRequest$, () => DescribeFileSystemsResponse$
|
|
2776
|
+
];
|
|
2777
|
+
var DescribeS3AccessPointAttachments$ = [9, n0, _DSAPA,
|
|
2778
|
+
0, () => DescribeS3AccessPointAttachmentsRequest$, () => DescribeS3AccessPointAttachmentsResponse$
|
|
2779
|
+
];
|
|
2780
|
+
var DescribeSharedVpcConfiguration$ = [9, n0, _DSVC,
|
|
2781
|
+
0, () => DescribeSharedVpcConfigurationRequest$, () => DescribeSharedVpcConfigurationResponse$
|
|
2782
|
+
];
|
|
2783
|
+
var DescribeSnapshots$ = [9, n0, _DSes,
|
|
2784
|
+
0, () => DescribeSnapshotsRequest$, () => DescribeSnapshotsResponse$
|
|
2785
|
+
];
|
|
2786
|
+
var DescribeStorageVirtualMachines$ = [9, n0, _DSVMe,
|
|
2787
|
+
0, () => DescribeStorageVirtualMachinesRequest$, () => DescribeStorageVirtualMachinesResponse$
|
|
2788
|
+
];
|
|
2789
|
+
var DescribeVolumes$ = [9, n0, _DVe,
|
|
2790
|
+
0, () => DescribeVolumesRequest$, () => DescribeVolumesResponse$
|
|
2791
|
+
];
|
|
2792
|
+
var DetachAndDeleteS3AccessPoint$ = [9, n0, _DADSAP,
|
|
2793
|
+
0, () => DetachAndDeleteS3AccessPointRequest$, () => DetachAndDeleteS3AccessPointResponse$
|
|
2794
|
+
];
|
|
2795
|
+
var DisassociateFileSystemAliases$ = [9, n0, _DFSAi,
|
|
2796
|
+
0, () => DisassociateFileSystemAliasesRequest$, () => DisassociateFileSystemAliasesResponse$
|
|
2797
|
+
];
|
|
2798
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2799
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2800
|
+
];
|
|
2801
|
+
var ReleaseFileSystemNfsV3Locks$ = [9, n0, _RFSNVL,
|
|
2802
|
+
2, () => ReleaseFileSystemNfsV3LocksRequest$, () => ReleaseFileSystemNfsV3LocksResponse$
|
|
2803
|
+
];
|
|
2804
|
+
var RestoreVolumeFromSnapshot$ = [9, n0, _RVFS,
|
|
2805
|
+
2, () => RestoreVolumeFromSnapshotRequest$, () => RestoreVolumeFromSnapshotResponse$
|
|
2806
|
+
];
|
|
2807
|
+
var StartMisconfiguredStateRecovery$ = [9, n0, _SMSR,
|
|
2808
|
+
0, () => StartMisconfiguredStateRecoveryRequest$, () => StartMisconfiguredStateRecoveryResponse$
|
|
2809
|
+
];
|
|
2810
|
+
var TagResource$ = [9, n0, _TR,
|
|
2811
|
+
2, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2812
|
+
];
|
|
2813
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2814
|
+
2, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2815
|
+
];
|
|
2816
|
+
var UpdateDataRepositoryAssociation$ = [9, n0, _UDRA,
|
|
2817
|
+
2, () => UpdateDataRepositoryAssociationRequest$, () => UpdateDataRepositoryAssociationResponse$
|
|
2818
|
+
];
|
|
2819
|
+
var UpdateFileCache$ = [9, n0, _UFC,
|
|
2820
|
+
2, () => UpdateFileCacheRequest$, () => UpdateFileCacheResponse$
|
|
2821
|
+
];
|
|
2822
|
+
var UpdateFileSystem$ = [9, n0, _UFS,
|
|
2823
|
+
0, () => UpdateFileSystemRequest$, () => UpdateFileSystemResponse$
|
|
2824
|
+
];
|
|
2825
|
+
var UpdateSharedVpcConfiguration$ = [9, n0, _USVC,
|
|
2826
|
+
0, () => UpdateSharedVpcConfigurationRequest$, () => UpdateSharedVpcConfigurationResponse$
|
|
2827
|
+
];
|
|
2828
|
+
var UpdateSnapshot$ = [9, n0, _US,
|
|
2829
|
+
2, () => UpdateSnapshotRequest$, () => UpdateSnapshotResponse$
|
|
2830
|
+
];
|
|
2831
|
+
var UpdateStorageVirtualMachine$ = [9, n0, _USVM,
|
|
2832
|
+
0, () => UpdateStorageVirtualMachineRequest$, () => UpdateStorageVirtualMachineResponse$
|
|
2833
|
+
];
|
|
2834
|
+
var UpdateVolume$ = [9, n0, _UV,
|
|
2835
|
+
0, () => UpdateVolumeRequest$, () => UpdateVolumeResponse$
|
|
2836
|
+
];
|
|
2837
|
+
|
|
2838
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2839
|
+
return {
|
|
2840
|
+
apiVersion: "2018-03-01",
|
|
2841
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2842
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2843
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2844
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2845
|
+
extensions: config?.extensions ?? [],
|
|
2846
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultFSxHttpAuthSchemeProvider,
|
|
2847
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2848
|
+
{
|
|
2849
|
+
schemeId: "aws.auth#sigv4",
|
|
2850
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2851
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2852
|
+
},
|
|
2853
|
+
],
|
|
2854
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2855
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
2856
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2857
|
+
defaultNamespace: "com.amazonaws.fsx",
|
|
2858
|
+
errorTypeRegistries,
|
|
2859
|
+
version: "2018-03-01",
|
|
2860
|
+
serviceTarget: "AWSSimbaAPIService_v20180301",
|
|
2861
|
+
},
|
|
2862
|
+
serviceId: config?.serviceId ?? "FSx",
|
|
2863
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2864
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2865
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2866
|
+
};
|
|
2867
|
+
};
|
|
2868
|
+
|
|
2869
|
+
const getRuntimeConfig = (config) => {
|
|
2870
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2871
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2872
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2873
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2874
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2875
|
+
const loaderConfig = {
|
|
2876
|
+
profile: config?.profile,
|
|
2877
|
+
logger: clientSharedValues.logger,
|
|
2878
|
+
};
|
|
2879
|
+
return {
|
|
2880
|
+
...clientSharedValues,
|
|
2881
|
+
...config,
|
|
2882
|
+
runtime: "node",
|
|
2883
|
+
defaultsMode,
|
|
2884
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2885
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2886
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2887
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2888
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2889
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2890
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2891
|
+
retryMode: config?.retryMode ??
|
|
2892
|
+
loadConfig({
|
|
2893
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2894
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2895
|
+
}, config),
|
|
2896
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2897
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2898
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2899
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2900
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2901
|
+
};
|
|
2902
|
+
};
|
|
2903
|
+
|
|
34
2904
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2905
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2906
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1169,126 +4039,471 @@ const RestoreOpenZFSVolumeOption = {
|
|
|
1169
4039
|
DELETE_INTERMEDIATE_SNAPSHOTS: "DELETE_INTERMEDIATE_SNAPSHOTS",
|
|
1170
4040
|
};
|
|
1171
4041
|
|
|
4042
|
+
exports.AccessPointAlreadyOwnedByYou = AccessPointAlreadyOwnedByYou;
|
|
4043
|
+
exports.AccessPointAlreadyOwnedByYou$ = AccessPointAlreadyOwnedByYou$;
|
|
4044
|
+
exports.ActiveDirectoryBackupAttributes$ = ActiveDirectoryBackupAttributes$;
|
|
4045
|
+
exports.ActiveDirectoryError = ActiveDirectoryError;
|
|
4046
|
+
exports.ActiveDirectoryError$ = ActiveDirectoryError$;
|
|
1172
4047
|
exports.ActiveDirectoryErrorType = ActiveDirectoryErrorType;
|
|
4048
|
+
exports.AdministrativeAction$ = AdministrativeAction$;
|
|
4049
|
+
exports.AdministrativeActionFailureDetails$ = AdministrativeActionFailureDetails$;
|
|
1173
4050
|
exports.AdministrativeActionType = AdministrativeActionType;
|
|
4051
|
+
exports.AggregateConfiguration$ = AggregateConfiguration$;
|
|
4052
|
+
exports.Alias$ = Alias$;
|
|
1174
4053
|
exports.AliasLifecycle = AliasLifecycle;
|
|
4054
|
+
exports.AssociateFileSystemAliases$ = AssociateFileSystemAliases$;
|
|
1175
4055
|
exports.AssociateFileSystemAliasesCommand = AssociateFileSystemAliasesCommand;
|
|
4056
|
+
exports.AssociateFileSystemAliasesRequest$ = AssociateFileSystemAliasesRequest$;
|
|
4057
|
+
exports.AssociateFileSystemAliasesResponse$ = AssociateFileSystemAliasesResponse$;
|
|
4058
|
+
exports.AutoExportPolicy$ = AutoExportPolicy$;
|
|
4059
|
+
exports.AutoImportPolicy$ = AutoImportPolicy$;
|
|
1176
4060
|
exports.AutoImportPolicyType = AutoImportPolicyType;
|
|
4061
|
+
exports.AutocommitPeriod$ = AutocommitPeriod$;
|
|
1177
4062
|
exports.AutocommitPeriodType = AutocommitPeriodType;
|
|
4063
|
+
exports.Backup$ = Backup$;
|
|
4064
|
+
exports.BackupBeingCopied = BackupBeingCopied;
|
|
4065
|
+
exports.BackupBeingCopied$ = BackupBeingCopied$;
|
|
4066
|
+
exports.BackupFailureDetails$ = BackupFailureDetails$;
|
|
4067
|
+
exports.BackupInProgress = BackupInProgress;
|
|
4068
|
+
exports.BackupInProgress$ = BackupInProgress$;
|
|
1178
4069
|
exports.BackupLifecycle = BackupLifecycle;
|
|
4070
|
+
exports.BackupNotFound = BackupNotFound;
|
|
4071
|
+
exports.BackupNotFound$ = BackupNotFound$;
|
|
4072
|
+
exports.BackupRestoring = BackupRestoring;
|
|
4073
|
+
exports.BackupRestoring$ = BackupRestoring$;
|
|
1179
4074
|
exports.BackupType = BackupType;
|
|
4075
|
+
exports.BadRequest = BadRequest;
|
|
4076
|
+
exports.BadRequest$ = BadRequest$;
|
|
4077
|
+
exports.CancelDataRepositoryTask$ = CancelDataRepositoryTask$;
|
|
1180
4078
|
exports.CancelDataRepositoryTaskCommand = CancelDataRepositoryTaskCommand;
|
|
4079
|
+
exports.CancelDataRepositoryTaskRequest$ = CancelDataRepositoryTaskRequest$;
|
|
4080
|
+
exports.CancelDataRepositoryTaskResponse$ = CancelDataRepositoryTaskResponse$;
|
|
4081
|
+
exports.CompletionReport$ = CompletionReport$;
|
|
4082
|
+
exports.CopyBackup$ = CopyBackup$;
|
|
1181
4083
|
exports.CopyBackupCommand = CopyBackupCommand;
|
|
4084
|
+
exports.CopyBackupRequest$ = CopyBackupRequest$;
|
|
4085
|
+
exports.CopyBackupResponse$ = CopyBackupResponse$;
|
|
4086
|
+
exports.CopySnapshotAndUpdateVolume$ = CopySnapshotAndUpdateVolume$;
|
|
1182
4087
|
exports.CopySnapshotAndUpdateVolumeCommand = CopySnapshotAndUpdateVolumeCommand;
|
|
4088
|
+
exports.CopySnapshotAndUpdateVolumeRequest$ = CopySnapshotAndUpdateVolumeRequest$;
|
|
4089
|
+
exports.CopySnapshotAndUpdateVolumeResponse$ = CopySnapshotAndUpdateVolumeResponse$;
|
|
4090
|
+
exports.CreateAggregateConfiguration$ = CreateAggregateConfiguration$;
|
|
4091
|
+
exports.CreateAndAttachS3AccessPoint$ = CreateAndAttachS3AccessPoint$;
|
|
1183
4092
|
exports.CreateAndAttachS3AccessPointCommand = CreateAndAttachS3AccessPointCommand;
|
|
4093
|
+
exports.CreateAndAttachS3AccessPointOntapConfiguration$ = CreateAndAttachS3AccessPointOntapConfiguration$;
|
|
4094
|
+
exports.CreateAndAttachS3AccessPointOpenZFSConfiguration$ = CreateAndAttachS3AccessPointOpenZFSConfiguration$;
|
|
4095
|
+
exports.CreateAndAttachS3AccessPointRequest$ = CreateAndAttachS3AccessPointRequest$;
|
|
4096
|
+
exports.CreateAndAttachS3AccessPointResponse$ = CreateAndAttachS3AccessPointResponse$;
|
|
4097
|
+
exports.CreateAndAttachS3AccessPointS3Configuration$ = CreateAndAttachS3AccessPointS3Configuration$;
|
|
4098
|
+
exports.CreateBackup$ = CreateBackup$;
|
|
1184
4099
|
exports.CreateBackupCommand = CreateBackupCommand;
|
|
4100
|
+
exports.CreateBackupRequest$ = CreateBackupRequest$;
|
|
4101
|
+
exports.CreateBackupResponse$ = CreateBackupResponse$;
|
|
4102
|
+
exports.CreateDataRepositoryAssociation$ = CreateDataRepositoryAssociation$;
|
|
1185
4103
|
exports.CreateDataRepositoryAssociationCommand = CreateDataRepositoryAssociationCommand;
|
|
4104
|
+
exports.CreateDataRepositoryAssociationRequest$ = CreateDataRepositoryAssociationRequest$;
|
|
4105
|
+
exports.CreateDataRepositoryAssociationResponse$ = CreateDataRepositoryAssociationResponse$;
|
|
4106
|
+
exports.CreateDataRepositoryTask$ = CreateDataRepositoryTask$;
|
|
1186
4107
|
exports.CreateDataRepositoryTaskCommand = CreateDataRepositoryTaskCommand;
|
|
4108
|
+
exports.CreateDataRepositoryTaskRequest$ = CreateDataRepositoryTaskRequest$;
|
|
4109
|
+
exports.CreateDataRepositoryTaskResponse$ = CreateDataRepositoryTaskResponse$;
|
|
4110
|
+
exports.CreateFileCache$ = CreateFileCache$;
|
|
1187
4111
|
exports.CreateFileCacheCommand = CreateFileCacheCommand;
|
|
4112
|
+
exports.CreateFileCacheLustreConfiguration$ = CreateFileCacheLustreConfiguration$;
|
|
4113
|
+
exports.CreateFileCacheRequest$ = CreateFileCacheRequest$;
|
|
4114
|
+
exports.CreateFileCacheResponse$ = CreateFileCacheResponse$;
|
|
4115
|
+
exports.CreateFileSystem$ = CreateFileSystem$;
|
|
1188
4116
|
exports.CreateFileSystemCommand = CreateFileSystemCommand;
|
|
4117
|
+
exports.CreateFileSystemFromBackup$ = CreateFileSystemFromBackup$;
|
|
1189
4118
|
exports.CreateFileSystemFromBackupCommand = CreateFileSystemFromBackupCommand;
|
|
4119
|
+
exports.CreateFileSystemFromBackupRequest$ = CreateFileSystemFromBackupRequest$;
|
|
4120
|
+
exports.CreateFileSystemFromBackupResponse$ = CreateFileSystemFromBackupResponse$;
|
|
4121
|
+
exports.CreateFileSystemLustreConfiguration$ = CreateFileSystemLustreConfiguration$;
|
|
4122
|
+
exports.CreateFileSystemLustreMetadataConfiguration$ = CreateFileSystemLustreMetadataConfiguration$;
|
|
4123
|
+
exports.CreateFileSystemOntapConfiguration$ = CreateFileSystemOntapConfiguration$;
|
|
4124
|
+
exports.CreateFileSystemOpenZFSConfiguration$ = CreateFileSystemOpenZFSConfiguration$;
|
|
4125
|
+
exports.CreateFileSystemRequest$ = CreateFileSystemRequest$;
|
|
4126
|
+
exports.CreateFileSystemResponse$ = CreateFileSystemResponse$;
|
|
4127
|
+
exports.CreateFileSystemWindowsConfiguration$ = CreateFileSystemWindowsConfiguration$;
|
|
4128
|
+
exports.CreateOntapVolumeConfiguration$ = CreateOntapVolumeConfiguration$;
|
|
4129
|
+
exports.CreateOpenZFSOriginSnapshotConfiguration$ = CreateOpenZFSOriginSnapshotConfiguration$;
|
|
4130
|
+
exports.CreateOpenZFSVolumeConfiguration$ = CreateOpenZFSVolumeConfiguration$;
|
|
4131
|
+
exports.CreateSnaplockConfiguration$ = CreateSnaplockConfiguration$;
|
|
4132
|
+
exports.CreateSnapshot$ = CreateSnapshot$;
|
|
1190
4133
|
exports.CreateSnapshotCommand = CreateSnapshotCommand;
|
|
4134
|
+
exports.CreateSnapshotRequest$ = CreateSnapshotRequest$;
|
|
4135
|
+
exports.CreateSnapshotResponse$ = CreateSnapshotResponse$;
|
|
4136
|
+
exports.CreateStorageVirtualMachine$ = CreateStorageVirtualMachine$;
|
|
1191
4137
|
exports.CreateStorageVirtualMachineCommand = CreateStorageVirtualMachineCommand;
|
|
4138
|
+
exports.CreateStorageVirtualMachineRequest$ = CreateStorageVirtualMachineRequest$;
|
|
4139
|
+
exports.CreateStorageVirtualMachineResponse$ = CreateStorageVirtualMachineResponse$;
|
|
4140
|
+
exports.CreateSvmActiveDirectoryConfiguration$ = CreateSvmActiveDirectoryConfiguration$;
|
|
4141
|
+
exports.CreateVolume$ = CreateVolume$;
|
|
1192
4142
|
exports.CreateVolumeCommand = CreateVolumeCommand;
|
|
4143
|
+
exports.CreateVolumeFromBackup$ = CreateVolumeFromBackup$;
|
|
1193
4144
|
exports.CreateVolumeFromBackupCommand = CreateVolumeFromBackupCommand;
|
|
4145
|
+
exports.CreateVolumeFromBackupRequest$ = CreateVolumeFromBackupRequest$;
|
|
4146
|
+
exports.CreateVolumeFromBackupResponse$ = CreateVolumeFromBackupResponse$;
|
|
4147
|
+
exports.CreateVolumeRequest$ = CreateVolumeRequest$;
|
|
4148
|
+
exports.CreateVolumeResponse$ = CreateVolumeResponse$;
|
|
1194
4149
|
exports.DataCompressionType = DataCompressionType;
|
|
4150
|
+
exports.DataRepositoryAssociation$ = DataRepositoryAssociation$;
|
|
4151
|
+
exports.DataRepositoryAssociationNotFound = DataRepositoryAssociationNotFound;
|
|
4152
|
+
exports.DataRepositoryAssociationNotFound$ = DataRepositoryAssociationNotFound$;
|
|
4153
|
+
exports.DataRepositoryConfiguration$ = DataRepositoryConfiguration$;
|
|
4154
|
+
exports.DataRepositoryFailureDetails$ = DataRepositoryFailureDetails$;
|
|
1195
4155
|
exports.DataRepositoryLifecycle = DataRepositoryLifecycle;
|
|
4156
|
+
exports.DataRepositoryTask$ = DataRepositoryTask$;
|
|
4157
|
+
exports.DataRepositoryTaskEnded = DataRepositoryTaskEnded;
|
|
4158
|
+
exports.DataRepositoryTaskEnded$ = DataRepositoryTaskEnded$;
|
|
4159
|
+
exports.DataRepositoryTaskExecuting = DataRepositoryTaskExecuting;
|
|
4160
|
+
exports.DataRepositoryTaskExecuting$ = DataRepositoryTaskExecuting$;
|
|
4161
|
+
exports.DataRepositoryTaskFailureDetails$ = DataRepositoryTaskFailureDetails$;
|
|
4162
|
+
exports.DataRepositoryTaskFilter$ = DataRepositoryTaskFilter$;
|
|
1196
4163
|
exports.DataRepositoryTaskFilterName = DataRepositoryTaskFilterName;
|
|
1197
4164
|
exports.DataRepositoryTaskLifecycle = DataRepositoryTaskLifecycle;
|
|
4165
|
+
exports.DataRepositoryTaskNotFound = DataRepositoryTaskNotFound;
|
|
4166
|
+
exports.DataRepositoryTaskNotFound$ = DataRepositoryTaskNotFound$;
|
|
4167
|
+
exports.DataRepositoryTaskStatus$ = DataRepositoryTaskStatus$;
|
|
1198
4168
|
exports.DataRepositoryTaskType = DataRepositoryTaskType;
|
|
4169
|
+
exports.DeleteBackup$ = DeleteBackup$;
|
|
1199
4170
|
exports.DeleteBackupCommand = DeleteBackupCommand;
|
|
4171
|
+
exports.DeleteBackupRequest$ = DeleteBackupRequest$;
|
|
4172
|
+
exports.DeleteBackupResponse$ = DeleteBackupResponse$;
|
|
4173
|
+
exports.DeleteDataRepositoryAssociation$ = DeleteDataRepositoryAssociation$;
|
|
1200
4174
|
exports.DeleteDataRepositoryAssociationCommand = DeleteDataRepositoryAssociationCommand;
|
|
4175
|
+
exports.DeleteDataRepositoryAssociationRequest$ = DeleteDataRepositoryAssociationRequest$;
|
|
4176
|
+
exports.DeleteDataRepositoryAssociationResponse$ = DeleteDataRepositoryAssociationResponse$;
|
|
4177
|
+
exports.DeleteFileCache$ = DeleteFileCache$;
|
|
1201
4178
|
exports.DeleteFileCacheCommand = DeleteFileCacheCommand;
|
|
4179
|
+
exports.DeleteFileCacheRequest$ = DeleteFileCacheRequest$;
|
|
4180
|
+
exports.DeleteFileCacheResponse$ = DeleteFileCacheResponse$;
|
|
4181
|
+
exports.DeleteFileSystem$ = DeleteFileSystem$;
|
|
1202
4182
|
exports.DeleteFileSystemCommand = DeleteFileSystemCommand;
|
|
4183
|
+
exports.DeleteFileSystemLustreConfiguration$ = DeleteFileSystemLustreConfiguration$;
|
|
4184
|
+
exports.DeleteFileSystemLustreResponse$ = DeleteFileSystemLustreResponse$;
|
|
4185
|
+
exports.DeleteFileSystemOpenZFSConfiguration$ = DeleteFileSystemOpenZFSConfiguration$;
|
|
1203
4186
|
exports.DeleteFileSystemOpenZFSOption = DeleteFileSystemOpenZFSOption;
|
|
4187
|
+
exports.DeleteFileSystemOpenZFSResponse$ = DeleteFileSystemOpenZFSResponse$;
|
|
4188
|
+
exports.DeleteFileSystemRequest$ = DeleteFileSystemRequest$;
|
|
4189
|
+
exports.DeleteFileSystemResponse$ = DeleteFileSystemResponse$;
|
|
4190
|
+
exports.DeleteFileSystemWindowsConfiguration$ = DeleteFileSystemWindowsConfiguration$;
|
|
4191
|
+
exports.DeleteFileSystemWindowsResponse$ = DeleteFileSystemWindowsResponse$;
|
|
1204
4192
|
exports.DeleteOpenZFSVolumeOption = DeleteOpenZFSVolumeOption;
|
|
4193
|
+
exports.DeleteSnapshot$ = DeleteSnapshot$;
|
|
1205
4194
|
exports.DeleteSnapshotCommand = DeleteSnapshotCommand;
|
|
4195
|
+
exports.DeleteSnapshotRequest$ = DeleteSnapshotRequest$;
|
|
4196
|
+
exports.DeleteSnapshotResponse$ = DeleteSnapshotResponse$;
|
|
4197
|
+
exports.DeleteStorageVirtualMachine$ = DeleteStorageVirtualMachine$;
|
|
1206
4198
|
exports.DeleteStorageVirtualMachineCommand = DeleteStorageVirtualMachineCommand;
|
|
4199
|
+
exports.DeleteStorageVirtualMachineRequest$ = DeleteStorageVirtualMachineRequest$;
|
|
4200
|
+
exports.DeleteStorageVirtualMachineResponse$ = DeleteStorageVirtualMachineResponse$;
|
|
4201
|
+
exports.DeleteVolume$ = DeleteVolume$;
|
|
1207
4202
|
exports.DeleteVolumeCommand = DeleteVolumeCommand;
|
|
4203
|
+
exports.DeleteVolumeOntapConfiguration$ = DeleteVolumeOntapConfiguration$;
|
|
4204
|
+
exports.DeleteVolumeOntapResponse$ = DeleteVolumeOntapResponse$;
|
|
4205
|
+
exports.DeleteVolumeOpenZFSConfiguration$ = DeleteVolumeOpenZFSConfiguration$;
|
|
4206
|
+
exports.DeleteVolumeRequest$ = DeleteVolumeRequest$;
|
|
4207
|
+
exports.DeleteVolumeResponse$ = DeleteVolumeResponse$;
|
|
4208
|
+
exports.DescribeBackups$ = DescribeBackups$;
|
|
1208
4209
|
exports.DescribeBackupsCommand = DescribeBackupsCommand;
|
|
4210
|
+
exports.DescribeBackupsRequest$ = DescribeBackupsRequest$;
|
|
4211
|
+
exports.DescribeBackupsResponse$ = DescribeBackupsResponse$;
|
|
4212
|
+
exports.DescribeDataRepositoryAssociations$ = DescribeDataRepositoryAssociations$;
|
|
1209
4213
|
exports.DescribeDataRepositoryAssociationsCommand = DescribeDataRepositoryAssociationsCommand;
|
|
4214
|
+
exports.DescribeDataRepositoryAssociationsRequest$ = DescribeDataRepositoryAssociationsRequest$;
|
|
4215
|
+
exports.DescribeDataRepositoryAssociationsResponse$ = DescribeDataRepositoryAssociationsResponse$;
|
|
4216
|
+
exports.DescribeDataRepositoryTasks$ = DescribeDataRepositoryTasks$;
|
|
1210
4217
|
exports.DescribeDataRepositoryTasksCommand = DescribeDataRepositoryTasksCommand;
|
|
4218
|
+
exports.DescribeDataRepositoryTasksRequest$ = DescribeDataRepositoryTasksRequest$;
|
|
4219
|
+
exports.DescribeDataRepositoryTasksResponse$ = DescribeDataRepositoryTasksResponse$;
|
|
4220
|
+
exports.DescribeFileCaches$ = DescribeFileCaches$;
|
|
1211
4221
|
exports.DescribeFileCachesCommand = DescribeFileCachesCommand;
|
|
4222
|
+
exports.DescribeFileCachesRequest$ = DescribeFileCachesRequest$;
|
|
4223
|
+
exports.DescribeFileCachesResponse$ = DescribeFileCachesResponse$;
|
|
4224
|
+
exports.DescribeFileSystemAliases$ = DescribeFileSystemAliases$;
|
|
1212
4225
|
exports.DescribeFileSystemAliasesCommand = DescribeFileSystemAliasesCommand;
|
|
4226
|
+
exports.DescribeFileSystemAliasesRequest$ = DescribeFileSystemAliasesRequest$;
|
|
4227
|
+
exports.DescribeFileSystemAliasesResponse$ = DescribeFileSystemAliasesResponse$;
|
|
4228
|
+
exports.DescribeFileSystems$ = DescribeFileSystems$;
|
|
1213
4229
|
exports.DescribeFileSystemsCommand = DescribeFileSystemsCommand;
|
|
4230
|
+
exports.DescribeFileSystemsRequest$ = DescribeFileSystemsRequest$;
|
|
4231
|
+
exports.DescribeFileSystemsResponse$ = DescribeFileSystemsResponse$;
|
|
4232
|
+
exports.DescribeS3AccessPointAttachments$ = DescribeS3AccessPointAttachments$;
|
|
1214
4233
|
exports.DescribeS3AccessPointAttachmentsCommand = DescribeS3AccessPointAttachmentsCommand;
|
|
4234
|
+
exports.DescribeS3AccessPointAttachmentsRequest$ = DescribeS3AccessPointAttachmentsRequest$;
|
|
4235
|
+
exports.DescribeS3AccessPointAttachmentsResponse$ = DescribeS3AccessPointAttachmentsResponse$;
|
|
4236
|
+
exports.DescribeSharedVpcConfiguration$ = DescribeSharedVpcConfiguration$;
|
|
1215
4237
|
exports.DescribeSharedVpcConfigurationCommand = DescribeSharedVpcConfigurationCommand;
|
|
4238
|
+
exports.DescribeSharedVpcConfigurationRequest$ = DescribeSharedVpcConfigurationRequest$;
|
|
4239
|
+
exports.DescribeSharedVpcConfigurationResponse$ = DescribeSharedVpcConfigurationResponse$;
|
|
4240
|
+
exports.DescribeSnapshots$ = DescribeSnapshots$;
|
|
1216
4241
|
exports.DescribeSnapshotsCommand = DescribeSnapshotsCommand;
|
|
4242
|
+
exports.DescribeSnapshotsRequest$ = DescribeSnapshotsRequest$;
|
|
4243
|
+
exports.DescribeSnapshotsResponse$ = DescribeSnapshotsResponse$;
|
|
4244
|
+
exports.DescribeStorageVirtualMachines$ = DescribeStorageVirtualMachines$;
|
|
1217
4245
|
exports.DescribeStorageVirtualMachinesCommand = DescribeStorageVirtualMachinesCommand;
|
|
4246
|
+
exports.DescribeStorageVirtualMachinesRequest$ = DescribeStorageVirtualMachinesRequest$;
|
|
4247
|
+
exports.DescribeStorageVirtualMachinesResponse$ = DescribeStorageVirtualMachinesResponse$;
|
|
4248
|
+
exports.DescribeVolumes$ = DescribeVolumes$;
|
|
1218
4249
|
exports.DescribeVolumesCommand = DescribeVolumesCommand;
|
|
4250
|
+
exports.DescribeVolumesRequest$ = DescribeVolumesRequest$;
|
|
4251
|
+
exports.DescribeVolumesResponse$ = DescribeVolumesResponse$;
|
|
4252
|
+
exports.DetachAndDeleteS3AccessPoint$ = DetachAndDeleteS3AccessPoint$;
|
|
1219
4253
|
exports.DetachAndDeleteS3AccessPointCommand = DetachAndDeleteS3AccessPointCommand;
|
|
4254
|
+
exports.DetachAndDeleteS3AccessPointRequest$ = DetachAndDeleteS3AccessPointRequest$;
|
|
4255
|
+
exports.DetachAndDeleteS3AccessPointResponse$ = DetachAndDeleteS3AccessPointResponse$;
|
|
4256
|
+
exports.DisassociateFileSystemAliases$ = DisassociateFileSystemAliases$;
|
|
1220
4257
|
exports.DisassociateFileSystemAliasesCommand = DisassociateFileSystemAliasesCommand;
|
|
4258
|
+
exports.DisassociateFileSystemAliasesRequest$ = DisassociateFileSystemAliasesRequest$;
|
|
4259
|
+
exports.DisassociateFileSystemAliasesResponse$ = DisassociateFileSystemAliasesResponse$;
|
|
4260
|
+
exports.DiskIopsConfiguration$ = DiskIopsConfiguration$;
|
|
1221
4261
|
exports.DiskIopsConfigurationMode = DiskIopsConfigurationMode;
|
|
1222
4262
|
exports.DriveCacheType = DriveCacheType;
|
|
4263
|
+
exports.DurationSinceLastAccess$ = DurationSinceLastAccess$;
|
|
1223
4264
|
exports.EventType = EventType;
|
|
1224
4265
|
exports.FSx = FSx;
|
|
1225
4266
|
exports.FSxClient = FSxClient;
|
|
4267
|
+
exports.FSxServiceException = FSxServiceException;
|
|
4268
|
+
exports.FSxServiceException$ = FSxServiceException$;
|
|
4269
|
+
exports.FileCache$ = FileCache$;
|
|
4270
|
+
exports.FileCacheCreating$ = FileCacheCreating$;
|
|
4271
|
+
exports.FileCacheDataRepositoryAssociation$ = FileCacheDataRepositoryAssociation$;
|
|
4272
|
+
exports.FileCacheFailureDetails$ = FileCacheFailureDetails$;
|
|
1226
4273
|
exports.FileCacheLifecycle = FileCacheLifecycle;
|
|
4274
|
+
exports.FileCacheLustreConfiguration$ = FileCacheLustreConfiguration$;
|
|
1227
4275
|
exports.FileCacheLustreDeploymentType = FileCacheLustreDeploymentType;
|
|
4276
|
+
exports.FileCacheLustreMetadataConfiguration$ = FileCacheLustreMetadataConfiguration$;
|
|
4277
|
+
exports.FileCacheNFSConfiguration$ = FileCacheNFSConfiguration$;
|
|
4278
|
+
exports.FileCacheNotFound = FileCacheNotFound;
|
|
4279
|
+
exports.FileCacheNotFound$ = FileCacheNotFound$;
|
|
1228
4280
|
exports.FileCacheType = FileCacheType;
|
|
4281
|
+
exports.FileSystem$ = FileSystem$;
|
|
4282
|
+
exports.FileSystemEndpoint$ = FileSystemEndpoint$;
|
|
4283
|
+
exports.FileSystemEndpoints$ = FileSystemEndpoints$;
|
|
4284
|
+
exports.FileSystemFailureDetails$ = FileSystemFailureDetails$;
|
|
1229
4285
|
exports.FileSystemLifecycle = FileSystemLifecycle;
|
|
4286
|
+
exports.FileSystemLustreMetadataConfiguration$ = FileSystemLustreMetadataConfiguration$;
|
|
1230
4287
|
exports.FileSystemMaintenanceOperation = FileSystemMaintenanceOperation;
|
|
4288
|
+
exports.FileSystemNotFound = FileSystemNotFound;
|
|
4289
|
+
exports.FileSystemNotFound$ = FileSystemNotFound$;
|
|
1231
4290
|
exports.FileSystemType = FileSystemType;
|
|
4291
|
+
exports.Filter$ = Filter$;
|
|
1232
4292
|
exports.FilterName = FilterName;
|
|
1233
4293
|
exports.FlexCacheEndpointType = FlexCacheEndpointType;
|
|
4294
|
+
exports.IncompatibleParameterError = IncompatibleParameterError;
|
|
4295
|
+
exports.IncompatibleParameterError$ = IncompatibleParameterError$;
|
|
4296
|
+
exports.IncompatibleRegionForMultiAZ = IncompatibleRegionForMultiAZ;
|
|
4297
|
+
exports.IncompatibleRegionForMultiAZ$ = IncompatibleRegionForMultiAZ$;
|
|
1234
4298
|
exports.InputOntapVolumeType = InputOntapVolumeType;
|
|
4299
|
+
exports.InternalServerError = InternalServerError;
|
|
4300
|
+
exports.InternalServerError$ = InternalServerError$;
|
|
4301
|
+
exports.InvalidAccessPoint = InvalidAccessPoint;
|
|
4302
|
+
exports.InvalidAccessPoint$ = InvalidAccessPoint$;
|
|
4303
|
+
exports.InvalidDataRepositoryType = InvalidDataRepositoryType;
|
|
4304
|
+
exports.InvalidDataRepositoryType$ = InvalidDataRepositoryType$;
|
|
4305
|
+
exports.InvalidDestinationKmsKey = InvalidDestinationKmsKey;
|
|
4306
|
+
exports.InvalidDestinationKmsKey$ = InvalidDestinationKmsKey$;
|
|
4307
|
+
exports.InvalidExportPath = InvalidExportPath;
|
|
4308
|
+
exports.InvalidExportPath$ = InvalidExportPath$;
|
|
4309
|
+
exports.InvalidImportPath = InvalidImportPath;
|
|
4310
|
+
exports.InvalidImportPath$ = InvalidImportPath$;
|
|
4311
|
+
exports.InvalidNetworkSettings = InvalidNetworkSettings;
|
|
4312
|
+
exports.InvalidNetworkSettings$ = InvalidNetworkSettings$;
|
|
4313
|
+
exports.InvalidPerUnitStorageThroughput = InvalidPerUnitStorageThroughput;
|
|
4314
|
+
exports.InvalidPerUnitStorageThroughput$ = InvalidPerUnitStorageThroughput$;
|
|
4315
|
+
exports.InvalidRegion = InvalidRegion;
|
|
4316
|
+
exports.InvalidRegion$ = InvalidRegion$;
|
|
4317
|
+
exports.InvalidRequest = InvalidRequest;
|
|
4318
|
+
exports.InvalidRequest$ = InvalidRequest$;
|
|
4319
|
+
exports.InvalidSourceKmsKey = InvalidSourceKmsKey;
|
|
4320
|
+
exports.InvalidSourceKmsKey$ = InvalidSourceKmsKey$;
|
|
4321
|
+
exports.LifecycleTransitionReason$ = LifecycleTransitionReason$;
|
|
4322
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1235
4323
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4324
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
4325
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1236
4326
|
exports.LustreAccessAuditLogLevel = LustreAccessAuditLogLevel;
|
|
1237
4327
|
exports.LustreDeploymentType = LustreDeploymentType;
|
|
4328
|
+
exports.LustreFileSystemConfiguration$ = LustreFileSystemConfiguration$;
|
|
4329
|
+
exports.LustreLogConfiguration$ = LustreLogConfiguration$;
|
|
4330
|
+
exports.LustreLogCreateConfiguration$ = LustreLogCreateConfiguration$;
|
|
4331
|
+
exports.LustreReadCacheConfiguration$ = LustreReadCacheConfiguration$;
|
|
1238
4332
|
exports.LustreReadCacheSizingMode = LustreReadCacheSizingMode;
|
|
4333
|
+
exports.LustreRootSquashConfiguration$ = LustreRootSquashConfiguration$;
|
|
1239
4334
|
exports.MetadataConfigurationMode = MetadataConfigurationMode;
|
|
4335
|
+
exports.MissingFileCacheConfiguration = MissingFileCacheConfiguration;
|
|
4336
|
+
exports.MissingFileCacheConfiguration$ = MissingFileCacheConfiguration$;
|
|
4337
|
+
exports.MissingFileSystemConfiguration = MissingFileSystemConfiguration;
|
|
4338
|
+
exports.MissingFileSystemConfiguration$ = MissingFileSystemConfiguration$;
|
|
4339
|
+
exports.MissingVolumeConfiguration = MissingVolumeConfiguration;
|
|
4340
|
+
exports.MissingVolumeConfiguration$ = MissingVolumeConfiguration$;
|
|
4341
|
+
exports.NFSDataRepositoryConfiguration$ = NFSDataRepositoryConfiguration$;
|
|
1240
4342
|
exports.NetworkType = NetworkType;
|
|
1241
4343
|
exports.NfsVersion = NfsVersion;
|
|
4344
|
+
exports.NotServiceResourceError = NotServiceResourceError;
|
|
4345
|
+
exports.NotServiceResourceError$ = NotServiceResourceError$;
|
|
1242
4346
|
exports.OntapDeploymentType = OntapDeploymentType;
|
|
4347
|
+
exports.OntapFileSystemConfiguration$ = OntapFileSystemConfiguration$;
|
|
4348
|
+
exports.OntapFileSystemIdentity$ = OntapFileSystemIdentity$;
|
|
1243
4349
|
exports.OntapFileSystemUserType = OntapFileSystemUserType;
|
|
4350
|
+
exports.OntapUnixFileSystemUser$ = OntapUnixFileSystemUser$;
|
|
4351
|
+
exports.OntapVolumeConfiguration$ = OntapVolumeConfiguration$;
|
|
1244
4352
|
exports.OntapVolumeType = OntapVolumeType;
|
|
4353
|
+
exports.OntapWindowsFileSystemUser$ = OntapWindowsFileSystemUser$;
|
|
4354
|
+
exports.OpenZFSClientConfiguration$ = OpenZFSClientConfiguration$;
|
|
1245
4355
|
exports.OpenZFSCopyStrategy = OpenZFSCopyStrategy;
|
|
4356
|
+
exports.OpenZFSCreateRootVolumeConfiguration$ = OpenZFSCreateRootVolumeConfiguration$;
|
|
1246
4357
|
exports.OpenZFSDataCompressionType = OpenZFSDataCompressionType;
|
|
1247
4358
|
exports.OpenZFSDeploymentType = OpenZFSDeploymentType;
|
|
4359
|
+
exports.OpenZFSFileSystemConfiguration$ = OpenZFSFileSystemConfiguration$;
|
|
4360
|
+
exports.OpenZFSFileSystemIdentity$ = OpenZFSFileSystemIdentity$;
|
|
1248
4361
|
exports.OpenZFSFileSystemUserType = OpenZFSFileSystemUserType;
|
|
4362
|
+
exports.OpenZFSNfsExport$ = OpenZFSNfsExport$;
|
|
4363
|
+
exports.OpenZFSOriginSnapshotConfiguration$ = OpenZFSOriginSnapshotConfiguration$;
|
|
4364
|
+
exports.OpenZFSPosixFileSystemUser$ = OpenZFSPosixFileSystemUser$;
|
|
1249
4365
|
exports.OpenZFSQuotaType = OpenZFSQuotaType;
|
|
4366
|
+
exports.OpenZFSReadCacheConfiguration$ = OpenZFSReadCacheConfiguration$;
|
|
1250
4367
|
exports.OpenZFSReadCacheSizingMode = OpenZFSReadCacheSizingMode;
|
|
4368
|
+
exports.OpenZFSUserOrGroupQuota$ = OpenZFSUserOrGroupQuota$;
|
|
4369
|
+
exports.OpenZFSVolumeConfiguration$ = OpenZFSVolumeConfiguration$;
|
|
1251
4370
|
exports.PrivilegedDelete = PrivilegedDelete;
|
|
4371
|
+
exports.ReleaseConfiguration$ = ReleaseConfiguration$;
|
|
4372
|
+
exports.ReleaseFileSystemNfsV3Locks$ = ReleaseFileSystemNfsV3Locks$;
|
|
1252
4373
|
exports.ReleaseFileSystemNfsV3LocksCommand = ReleaseFileSystemNfsV3LocksCommand;
|
|
4374
|
+
exports.ReleaseFileSystemNfsV3LocksRequest$ = ReleaseFileSystemNfsV3LocksRequest$;
|
|
4375
|
+
exports.ReleaseFileSystemNfsV3LocksResponse$ = ReleaseFileSystemNfsV3LocksResponse$;
|
|
1253
4376
|
exports.ReportFormat = ReportFormat;
|
|
1254
4377
|
exports.ReportScope = ReportScope;
|
|
4378
|
+
exports.ResourceDoesNotSupportTagging = ResourceDoesNotSupportTagging;
|
|
4379
|
+
exports.ResourceDoesNotSupportTagging$ = ResourceDoesNotSupportTagging$;
|
|
4380
|
+
exports.ResourceNotFound = ResourceNotFound;
|
|
4381
|
+
exports.ResourceNotFound$ = ResourceNotFound$;
|
|
1255
4382
|
exports.ResourceType = ResourceType;
|
|
1256
4383
|
exports.RestoreOpenZFSVolumeOption = RestoreOpenZFSVolumeOption;
|
|
4384
|
+
exports.RestoreVolumeFromSnapshot$ = RestoreVolumeFromSnapshot$;
|
|
1257
4385
|
exports.RestoreVolumeFromSnapshotCommand = RestoreVolumeFromSnapshotCommand;
|
|
4386
|
+
exports.RestoreVolumeFromSnapshotRequest$ = RestoreVolumeFromSnapshotRequest$;
|
|
4387
|
+
exports.RestoreVolumeFromSnapshotResponse$ = RestoreVolumeFromSnapshotResponse$;
|
|
4388
|
+
exports.RetentionPeriod$ = RetentionPeriod$;
|
|
1258
4389
|
exports.RetentionPeriodType = RetentionPeriodType;
|
|
4390
|
+
exports.S3AccessPoint$ = S3AccessPoint$;
|
|
4391
|
+
exports.S3AccessPointAttachment$ = S3AccessPointAttachment$;
|
|
1259
4392
|
exports.S3AccessPointAttachmentLifecycle = S3AccessPointAttachmentLifecycle;
|
|
4393
|
+
exports.S3AccessPointAttachmentNotFound = S3AccessPointAttachmentNotFound;
|
|
4394
|
+
exports.S3AccessPointAttachmentNotFound$ = S3AccessPointAttachmentNotFound$;
|
|
1260
4395
|
exports.S3AccessPointAttachmentType = S3AccessPointAttachmentType;
|
|
4396
|
+
exports.S3AccessPointAttachmentsFilter$ = S3AccessPointAttachmentsFilter$;
|
|
1261
4397
|
exports.S3AccessPointAttachmentsFilterName = S3AccessPointAttachmentsFilterName;
|
|
4398
|
+
exports.S3AccessPointOntapConfiguration$ = S3AccessPointOntapConfiguration$;
|
|
4399
|
+
exports.S3AccessPointOpenZFSConfiguration$ = S3AccessPointOpenZFSConfiguration$;
|
|
4400
|
+
exports.S3AccessPointVpcConfiguration$ = S3AccessPointVpcConfiguration$;
|
|
4401
|
+
exports.S3DataRepositoryConfiguration$ = S3DataRepositoryConfiguration$;
|
|
1262
4402
|
exports.SecurityStyle = SecurityStyle;
|
|
4403
|
+
exports.SelfManagedActiveDirectoryAttributes$ = SelfManagedActiveDirectoryAttributes$;
|
|
4404
|
+
exports.SelfManagedActiveDirectoryConfiguration$ = SelfManagedActiveDirectoryConfiguration$;
|
|
4405
|
+
exports.SelfManagedActiveDirectoryConfigurationUpdates$ = SelfManagedActiveDirectoryConfigurationUpdates$;
|
|
1263
4406
|
exports.ServiceLimit = ServiceLimit;
|
|
4407
|
+
exports.ServiceLimitExceeded = ServiceLimitExceeded;
|
|
4408
|
+
exports.ServiceLimitExceeded$ = ServiceLimitExceeded$;
|
|
4409
|
+
exports.SnaplockConfiguration$ = SnaplockConfiguration$;
|
|
4410
|
+
exports.SnaplockRetentionPeriod$ = SnaplockRetentionPeriod$;
|
|
1264
4411
|
exports.SnaplockType = SnaplockType;
|
|
4412
|
+
exports.Snapshot$ = Snapshot$;
|
|
4413
|
+
exports.SnapshotFilter$ = SnapshotFilter$;
|
|
1265
4414
|
exports.SnapshotFilterName = SnapshotFilterName;
|
|
1266
4415
|
exports.SnapshotLifecycle = SnapshotLifecycle;
|
|
4416
|
+
exports.SnapshotNotFound = SnapshotNotFound;
|
|
4417
|
+
exports.SnapshotNotFound$ = SnapshotNotFound$;
|
|
4418
|
+
exports.SourceBackupUnavailable = SourceBackupUnavailable;
|
|
4419
|
+
exports.SourceBackupUnavailable$ = SourceBackupUnavailable$;
|
|
4420
|
+
exports.StartMisconfiguredStateRecovery$ = StartMisconfiguredStateRecovery$;
|
|
1267
4421
|
exports.StartMisconfiguredStateRecoveryCommand = StartMisconfiguredStateRecoveryCommand;
|
|
4422
|
+
exports.StartMisconfiguredStateRecoveryRequest$ = StartMisconfiguredStateRecoveryRequest$;
|
|
4423
|
+
exports.StartMisconfiguredStateRecoveryResponse$ = StartMisconfiguredStateRecoveryResponse$;
|
|
1268
4424
|
exports.Status = Status;
|
|
1269
4425
|
exports.StorageType = StorageType;
|
|
4426
|
+
exports.StorageVirtualMachine$ = StorageVirtualMachine$;
|
|
4427
|
+
exports.StorageVirtualMachineFilter$ = StorageVirtualMachineFilter$;
|
|
1270
4428
|
exports.StorageVirtualMachineFilterName = StorageVirtualMachineFilterName;
|
|
1271
4429
|
exports.StorageVirtualMachineLifecycle = StorageVirtualMachineLifecycle;
|
|
4430
|
+
exports.StorageVirtualMachineNotFound = StorageVirtualMachineNotFound;
|
|
4431
|
+
exports.StorageVirtualMachineNotFound$ = StorageVirtualMachineNotFound$;
|
|
1272
4432
|
exports.StorageVirtualMachineRootVolumeSecurityStyle = StorageVirtualMachineRootVolumeSecurityStyle;
|
|
1273
4433
|
exports.StorageVirtualMachineSubtype = StorageVirtualMachineSubtype;
|
|
4434
|
+
exports.SvmActiveDirectoryConfiguration$ = SvmActiveDirectoryConfiguration$;
|
|
4435
|
+
exports.SvmEndpoint$ = SvmEndpoint$;
|
|
4436
|
+
exports.SvmEndpoints$ = SvmEndpoints$;
|
|
4437
|
+
exports.Tag$ = Tag$;
|
|
4438
|
+
exports.TagResource$ = TagResource$;
|
|
1274
4439
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4440
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4441
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
4442
|
+
exports.TieringPolicy$ = TieringPolicy$;
|
|
1275
4443
|
exports.TieringPolicyName = TieringPolicyName;
|
|
4444
|
+
exports.TooManyAccessPoints = TooManyAccessPoints;
|
|
4445
|
+
exports.TooManyAccessPoints$ = TooManyAccessPoints$;
|
|
1276
4446
|
exports.Unit = Unit;
|
|
4447
|
+
exports.UnsupportedOperation = UnsupportedOperation;
|
|
4448
|
+
exports.UnsupportedOperation$ = UnsupportedOperation$;
|
|
4449
|
+
exports.UntagResource$ = UntagResource$;
|
|
1277
4450
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4451
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4452
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
4453
|
+
exports.UpdateDataRepositoryAssociation$ = UpdateDataRepositoryAssociation$;
|
|
1278
4454
|
exports.UpdateDataRepositoryAssociationCommand = UpdateDataRepositoryAssociationCommand;
|
|
4455
|
+
exports.UpdateDataRepositoryAssociationRequest$ = UpdateDataRepositoryAssociationRequest$;
|
|
4456
|
+
exports.UpdateDataRepositoryAssociationResponse$ = UpdateDataRepositoryAssociationResponse$;
|
|
4457
|
+
exports.UpdateFileCache$ = UpdateFileCache$;
|
|
1279
4458
|
exports.UpdateFileCacheCommand = UpdateFileCacheCommand;
|
|
4459
|
+
exports.UpdateFileCacheLustreConfiguration$ = UpdateFileCacheLustreConfiguration$;
|
|
4460
|
+
exports.UpdateFileCacheRequest$ = UpdateFileCacheRequest$;
|
|
4461
|
+
exports.UpdateFileCacheResponse$ = UpdateFileCacheResponse$;
|
|
4462
|
+
exports.UpdateFileSystem$ = UpdateFileSystem$;
|
|
1280
4463
|
exports.UpdateFileSystemCommand = UpdateFileSystemCommand;
|
|
4464
|
+
exports.UpdateFileSystemLustreConfiguration$ = UpdateFileSystemLustreConfiguration$;
|
|
4465
|
+
exports.UpdateFileSystemLustreMetadataConfiguration$ = UpdateFileSystemLustreMetadataConfiguration$;
|
|
4466
|
+
exports.UpdateFileSystemOntapConfiguration$ = UpdateFileSystemOntapConfiguration$;
|
|
4467
|
+
exports.UpdateFileSystemOpenZFSConfiguration$ = UpdateFileSystemOpenZFSConfiguration$;
|
|
4468
|
+
exports.UpdateFileSystemRequest$ = UpdateFileSystemRequest$;
|
|
4469
|
+
exports.UpdateFileSystemResponse$ = UpdateFileSystemResponse$;
|
|
4470
|
+
exports.UpdateFileSystemWindowsConfiguration$ = UpdateFileSystemWindowsConfiguration$;
|
|
4471
|
+
exports.UpdateOntapVolumeConfiguration$ = UpdateOntapVolumeConfiguration$;
|
|
4472
|
+
exports.UpdateOpenZFSVolumeConfiguration$ = UpdateOpenZFSVolumeConfiguration$;
|
|
1281
4473
|
exports.UpdateOpenZFSVolumeOption = UpdateOpenZFSVolumeOption;
|
|
4474
|
+
exports.UpdateSharedVpcConfiguration$ = UpdateSharedVpcConfiguration$;
|
|
1282
4475
|
exports.UpdateSharedVpcConfigurationCommand = UpdateSharedVpcConfigurationCommand;
|
|
4476
|
+
exports.UpdateSharedVpcConfigurationRequest$ = UpdateSharedVpcConfigurationRequest$;
|
|
4477
|
+
exports.UpdateSharedVpcConfigurationResponse$ = UpdateSharedVpcConfigurationResponse$;
|
|
4478
|
+
exports.UpdateSnaplockConfiguration$ = UpdateSnaplockConfiguration$;
|
|
4479
|
+
exports.UpdateSnapshot$ = UpdateSnapshot$;
|
|
1283
4480
|
exports.UpdateSnapshotCommand = UpdateSnapshotCommand;
|
|
4481
|
+
exports.UpdateSnapshotRequest$ = UpdateSnapshotRequest$;
|
|
4482
|
+
exports.UpdateSnapshotResponse$ = UpdateSnapshotResponse$;
|
|
4483
|
+
exports.UpdateStorageVirtualMachine$ = UpdateStorageVirtualMachine$;
|
|
1284
4484
|
exports.UpdateStorageVirtualMachineCommand = UpdateStorageVirtualMachineCommand;
|
|
4485
|
+
exports.UpdateStorageVirtualMachineRequest$ = UpdateStorageVirtualMachineRequest$;
|
|
4486
|
+
exports.UpdateStorageVirtualMachineResponse$ = UpdateStorageVirtualMachineResponse$;
|
|
4487
|
+
exports.UpdateSvmActiveDirectoryConfiguration$ = UpdateSvmActiveDirectoryConfiguration$;
|
|
4488
|
+
exports.UpdateVolume$ = UpdateVolume$;
|
|
1285
4489
|
exports.UpdateVolumeCommand = UpdateVolumeCommand;
|
|
4490
|
+
exports.UpdateVolumeRequest$ = UpdateVolumeRequest$;
|
|
4491
|
+
exports.UpdateVolumeResponse$ = UpdateVolumeResponse$;
|
|
4492
|
+
exports.Volume$ = Volume$;
|
|
4493
|
+
exports.VolumeFilter$ = VolumeFilter$;
|
|
1286
4494
|
exports.VolumeFilterName = VolumeFilterName;
|
|
1287
4495
|
exports.VolumeLifecycle = VolumeLifecycle;
|
|
4496
|
+
exports.VolumeNotFound = VolumeNotFound;
|
|
4497
|
+
exports.VolumeNotFound$ = VolumeNotFound$;
|
|
1288
4498
|
exports.VolumeStyle = VolumeStyle;
|
|
1289
4499
|
exports.VolumeType = VolumeType;
|
|
1290
4500
|
exports.WindowsAccessAuditLogLevel = WindowsAccessAuditLogLevel;
|
|
4501
|
+
exports.WindowsAuditLogConfiguration$ = WindowsAuditLogConfiguration$;
|
|
4502
|
+
exports.WindowsAuditLogCreateConfiguration$ = WindowsAuditLogCreateConfiguration$;
|
|
1291
4503
|
exports.WindowsDeploymentType = WindowsDeploymentType;
|
|
4504
|
+
exports.WindowsFileSystemConfiguration$ = WindowsFileSystemConfiguration$;
|
|
4505
|
+
exports.WindowsFsrmConfiguration$ = WindowsFsrmConfiguration$;
|
|
4506
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1292
4507
|
exports.paginateDescribeBackups = paginateDescribeBackups;
|
|
1293
4508
|
exports.paginateDescribeDataRepositoryAssociations = paginateDescribeDataRepositoryAssociations;
|
|
1294
4509
|
exports.paginateDescribeDataRepositoryTasks = paginateDescribeDataRepositoryTasks;
|