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