@aws-sdk/client-snowball 3.1075.0 → 3.1076.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1368 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/SnowballServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -159
- 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 -988
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultSnowballHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "snowball",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultSnowballHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1185 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://snowball-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://snowball-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://snowball.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://snowball.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class SnowballServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, SnowballServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class InvalidJobStateException extends SnowballServiceException {
|
|
140
|
+
name = "InvalidJobStateException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "InvalidJobStateException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, InvalidJobStateException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class InvalidResourceException extends SnowballServiceException {
|
|
154
|
+
name = "InvalidResourceException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
157
|
+
ResourceType;
|
|
158
|
+
constructor(opts) {
|
|
159
|
+
super({
|
|
160
|
+
name: "InvalidResourceException",
|
|
161
|
+
$fault: "client",
|
|
162
|
+
...opts,
|
|
163
|
+
});
|
|
164
|
+
Object.setPrototypeOf(this, InvalidResourceException.prototype);
|
|
165
|
+
this.Message = opts.Message;
|
|
166
|
+
this.ResourceType = opts.ResourceType;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
class KMSRequestFailedException extends SnowballServiceException {
|
|
170
|
+
name = "KMSRequestFailedException";
|
|
171
|
+
$fault = "client";
|
|
172
|
+
Message;
|
|
173
|
+
constructor(opts) {
|
|
174
|
+
super({
|
|
175
|
+
name: "KMSRequestFailedException",
|
|
176
|
+
$fault: "client",
|
|
177
|
+
...opts,
|
|
178
|
+
});
|
|
179
|
+
Object.setPrototypeOf(this, KMSRequestFailedException.prototype);
|
|
180
|
+
this.Message = opts.Message;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
class InvalidAddressException extends SnowballServiceException {
|
|
184
|
+
name = "InvalidAddressException";
|
|
185
|
+
$fault = "client";
|
|
186
|
+
Message;
|
|
187
|
+
constructor(opts) {
|
|
188
|
+
super({
|
|
189
|
+
name: "InvalidAddressException",
|
|
190
|
+
$fault: "client",
|
|
191
|
+
...opts,
|
|
192
|
+
});
|
|
193
|
+
Object.setPrototypeOf(this, InvalidAddressException.prototype);
|
|
194
|
+
this.Message = opts.Message;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
class UnsupportedAddressException extends SnowballServiceException {
|
|
198
|
+
name = "UnsupportedAddressException";
|
|
199
|
+
$fault = "client";
|
|
200
|
+
Message;
|
|
201
|
+
constructor(opts) {
|
|
202
|
+
super({
|
|
203
|
+
name: "UnsupportedAddressException",
|
|
204
|
+
$fault: "client",
|
|
205
|
+
...opts,
|
|
206
|
+
});
|
|
207
|
+
Object.setPrototypeOf(this, UnsupportedAddressException.prototype);
|
|
208
|
+
this.Message = opts.Message;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
class Ec2RequestFailedException extends SnowballServiceException {
|
|
212
|
+
name = "Ec2RequestFailedException";
|
|
213
|
+
$fault = "client";
|
|
214
|
+
Message;
|
|
215
|
+
constructor(opts) {
|
|
216
|
+
super({
|
|
217
|
+
name: "Ec2RequestFailedException",
|
|
218
|
+
$fault: "client",
|
|
219
|
+
...opts,
|
|
220
|
+
});
|
|
221
|
+
Object.setPrototypeOf(this, Ec2RequestFailedException.prototype);
|
|
222
|
+
this.Message = opts.Message;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
class InvalidInputCombinationException extends SnowballServiceException {
|
|
226
|
+
name = "InvalidInputCombinationException";
|
|
227
|
+
$fault = "client";
|
|
228
|
+
Message;
|
|
229
|
+
constructor(opts) {
|
|
230
|
+
super({
|
|
231
|
+
name: "InvalidInputCombinationException",
|
|
232
|
+
$fault: "client",
|
|
233
|
+
...opts,
|
|
234
|
+
});
|
|
235
|
+
Object.setPrototypeOf(this, InvalidInputCombinationException.prototype);
|
|
236
|
+
this.Message = opts.Message;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
class ClusterLimitExceededException extends SnowballServiceException {
|
|
240
|
+
name = "ClusterLimitExceededException";
|
|
241
|
+
$fault = "client";
|
|
242
|
+
Message;
|
|
243
|
+
constructor(opts) {
|
|
244
|
+
super({
|
|
245
|
+
name: "ClusterLimitExceededException",
|
|
246
|
+
$fault: "client",
|
|
247
|
+
...opts,
|
|
248
|
+
});
|
|
249
|
+
Object.setPrototypeOf(this, ClusterLimitExceededException.prototype);
|
|
250
|
+
this.Message = opts.Message;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
class ConflictException extends SnowballServiceException {
|
|
254
|
+
name = "ConflictException";
|
|
255
|
+
$fault = "client";
|
|
256
|
+
ConflictResource;
|
|
257
|
+
Message;
|
|
258
|
+
constructor(opts) {
|
|
259
|
+
super({
|
|
260
|
+
name: "ConflictException",
|
|
261
|
+
$fault: "client",
|
|
262
|
+
...opts,
|
|
263
|
+
});
|
|
264
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
265
|
+
this.ConflictResource = opts.ConflictResource;
|
|
266
|
+
this.Message = opts.Message;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
class ReturnShippingLabelAlreadyExistsException extends SnowballServiceException {
|
|
270
|
+
name = "ReturnShippingLabelAlreadyExistsException";
|
|
271
|
+
$fault = "client";
|
|
272
|
+
Message;
|
|
273
|
+
constructor(opts) {
|
|
274
|
+
super({
|
|
275
|
+
name: "ReturnShippingLabelAlreadyExistsException",
|
|
276
|
+
$fault: "client",
|
|
277
|
+
...opts,
|
|
278
|
+
});
|
|
279
|
+
Object.setPrototypeOf(this, ReturnShippingLabelAlreadyExistsException.prototype);
|
|
280
|
+
this.Message = opts.Message;
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
class InvalidNextTokenException extends SnowballServiceException {
|
|
284
|
+
name = "InvalidNextTokenException";
|
|
285
|
+
$fault = "client";
|
|
286
|
+
Message;
|
|
287
|
+
constructor(opts) {
|
|
288
|
+
super({
|
|
289
|
+
name: "InvalidNextTokenException",
|
|
290
|
+
$fault: "client",
|
|
291
|
+
...opts,
|
|
292
|
+
});
|
|
293
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
294
|
+
this.Message = opts.Message;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
const _A = "Address";
|
|
299
|
+
const _AI = "AddressId";
|
|
300
|
+
const _AIm = "AmiId";
|
|
301
|
+
const _AL = "AddressList";
|
|
302
|
+
const _Ad = "Addresses";
|
|
303
|
+
const _BA = "BucketArn";
|
|
304
|
+
const _BM = "BeginMarker";
|
|
305
|
+
const _BT = "BytesTransferred";
|
|
306
|
+
const _C = "Company";
|
|
307
|
+
const _CA = "CreateAddress";
|
|
308
|
+
const _CAJ = "CurrentActiveJob";
|
|
309
|
+
const _CAR = "CreateAddressRequest";
|
|
310
|
+
const _CARr = "CreateAddressResult";
|
|
311
|
+
const _CC = "CancelCluster";
|
|
312
|
+
const _CCR = "CancelClusterRequest";
|
|
313
|
+
const _CCRa = "CancelClusterResult";
|
|
314
|
+
const _CCRr = "CreateClusterRequest";
|
|
315
|
+
const _CCRre = "CreateClusterResult";
|
|
316
|
+
const _CCr = "CreateCluster";
|
|
317
|
+
const _CD = "CreationDate";
|
|
318
|
+
const _CE = "ConflictException";
|
|
319
|
+
const _CI = "ClusterId";
|
|
320
|
+
const _CIL = "CompatibleImageList";
|
|
321
|
+
const _CIo = "CompatibleImage";
|
|
322
|
+
const _CIom = "CompatibleImages";
|
|
323
|
+
const _CJ = "CancelJob";
|
|
324
|
+
const _CJR = "CancelJobRequest";
|
|
325
|
+
const _CJRa = "CancelJobResult";
|
|
326
|
+
const _CJRr = "CreateJobRequest";
|
|
327
|
+
const _CJRre = "CreateJobResult";
|
|
328
|
+
const _CJr = "CreateJob";
|
|
329
|
+
const _CLE = "ClusterListEntry";
|
|
330
|
+
const _CLEE = "ClusterLimitExceededException";
|
|
331
|
+
const _CLEL = "ClusterListEntryList";
|
|
332
|
+
const _CLEl = "ClusterListEntries";
|
|
333
|
+
const _CLTP = "CreateLongTermPricing";
|
|
334
|
+
const _CLTPR = "CreateLongTermPricingRequest";
|
|
335
|
+
const _CLTPRr = "CreateLongTermPricingResult";
|
|
336
|
+
const _CM = "ClusterMetadata";
|
|
337
|
+
const _CR = "ConflictResource";
|
|
338
|
+
const _CRSL = "CreateReturnShippingLabel";
|
|
339
|
+
const _CRSLR = "CreateReturnShippingLabelRequest";
|
|
340
|
+
const _CRSLRr = "CreateReturnShippingLabelResult";
|
|
341
|
+
const _CS = "ClusterState";
|
|
342
|
+
const _Ci = "City";
|
|
343
|
+
const _Co = "Country";
|
|
344
|
+
const _D = "Description";
|
|
345
|
+
const _DA = "DescribeAddress";
|
|
346
|
+
const _DAR = "DescribeAddressesRequest";
|
|
347
|
+
const _DARe = "DescribeAddressesResult";
|
|
348
|
+
const _DARes = "DescribeAddressRequest";
|
|
349
|
+
const _DAResc = "DescribeAddressResult";
|
|
350
|
+
const _DAe = "DescribeAddresses";
|
|
351
|
+
const _DC = "DeviceConfiguration";
|
|
352
|
+
const _DCR = "DescribeClusterRequest";
|
|
353
|
+
const _DCRe = "DescribeClusterResult";
|
|
354
|
+
const _DCe = "DescribeCluster";
|
|
355
|
+
const _DJ = "DescribeJob";
|
|
356
|
+
const _DJR = "DescribeJobRequest";
|
|
357
|
+
const _DJRe = "DescribeJobResult";
|
|
358
|
+
const _DPI = "DevicePickupId";
|
|
359
|
+
const _DPSTARN = "DevicePickupSnsTopicARN";
|
|
360
|
+
const _DRSL = "DescribeReturnShippingLabel";
|
|
361
|
+
const _DRSLR = "DescribeReturnShippingLabelRequest";
|
|
362
|
+
const _DRSLRe = "DescribeReturnShippingLabelResult";
|
|
363
|
+
const _DS = "DependentService";
|
|
364
|
+
const _DSL = "DependentServiceList";
|
|
365
|
+
const _DSe = "DependentServices";
|
|
366
|
+
const _DT = "DataTransfer";
|
|
367
|
+
const _DTP = "DataTransferProgress";
|
|
368
|
+
const _E = "Email";
|
|
369
|
+
const _EAR = "Ec2AmiResource";
|
|
370
|
+
const _EARL = "Ec2AmiResourceList";
|
|
371
|
+
const _EARc = "Ec2AmiResources";
|
|
372
|
+
const _ED = "ExpirationDate";
|
|
373
|
+
const _EKSAV = "EKSAnywhereVersion";
|
|
374
|
+
const _EKSODS = "EKSOnDeviceService";
|
|
375
|
+
const _EKSODSC = "EKSOnDeviceServiceConfiguration";
|
|
376
|
+
const _EM = "EndMarker";
|
|
377
|
+
const _ERARN = "EventResourceARN";
|
|
378
|
+
const _ERFE = "Ec2RequestFailedException";
|
|
379
|
+
const _ET = "EventTriggers";
|
|
380
|
+
const _ETD = "EventTriggerDefinition";
|
|
381
|
+
const _ETDL = "EventTriggerDefinitionList";
|
|
382
|
+
const _FAI = "ForwardingAddressId";
|
|
383
|
+
const _FCJ = "ForceCreateJobs";
|
|
384
|
+
const _FT = "FaultTolerance";
|
|
385
|
+
const _GJM = "GetJobManifest";
|
|
386
|
+
const _GJMR = "GetJobManifestRequest";
|
|
387
|
+
const _GJMRe = "GetJobManifestResult";
|
|
388
|
+
const _GJUC = "GetJobUnlockCode";
|
|
389
|
+
const _GJUCR = "GetJobUnlockCodeRequest";
|
|
390
|
+
const _GJUCRe = "GetJobUnlockCodeResult";
|
|
391
|
+
const _GSTIN = "GSTIN";
|
|
392
|
+
const _GSU = "GetSnowballUsage";
|
|
393
|
+
const _GSUR = "GetSnowballUsageRequest";
|
|
394
|
+
const _GSURe = "GetSnowballUsageResult";
|
|
395
|
+
const _GSURet = "GetSoftwareUpdatesRequest";
|
|
396
|
+
const _GSUReto = "GetSoftwareUpdatesResult";
|
|
397
|
+
const _GSUe = "GetSoftwareUpdates";
|
|
398
|
+
const _IAE = "InvalidAddressException";
|
|
399
|
+
const _ICS = "InitialClusterSize";
|
|
400
|
+
const _IED = "IdentificationExpirationDate";
|
|
401
|
+
const _IICE = "InvalidInputCombinationException";
|
|
402
|
+
const _IIO = "IdentificationIssuingOrg";
|
|
403
|
+
const _IJSE = "InvalidJobStateException";
|
|
404
|
+
const _IL = "ImpactLevel";
|
|
405
|
+
const _ILTPAR = "IsLongTermPricingAutoRenew";
|
|
406
|
+
const _IM = "IsMaster";
|
|
407
|
+
const _IN = "IdentificationNumber";
|
|
408
|
+
const _IND = "IND";
|
|
409
|
+
const _INDTD = "INDTaxDocuments";
|
|
410
|
+
const _INTE = "InvalidNextTokenException";
|
|
411
|
+
const _IR = "IsRestricted";
|
|
412
|
+
const _IRE = "InvalidResourceException";
|
|
413
|
+
const _IS = "InboundShipment";
|
|
414
|
+
const _IWE = "IsWifiEnabled";
|
|
415
|
+
const _JCRURI = "JobCompletionReportURI";
|
|
416
|
+
const _JFLURI = "JobFailureLogURI";
|
|
417
|
+
const _JI = "JobId";
|
|
418
|
+
const _JIo = "JobIds";
|
|
419
|
+
const _JL = "JobLogs";
|
|
420
|
+
const _JLE = "JobListEntries";
|
|
421
|
+
const _JLEL = "JobListEntryList";
|
|
422
|
+
const _JLEo = "JobListEntry";
|
|
423
|
+
const _JLI = "JobLogInfo";
|
|
424
|
+
const _JM = "JobMetadata";
|
|
425
|
+
const _JML = "JobMetadataList";
|
|
426
|
+
const _JR = "JobResource";
|
|
427
|
+
const _JS = "JobState";
|
|
428
|
+
const _JSLURI = "JobSuccessLogURI";
|
|
429
|
+
const _JSTN = "JobStatesToNotify";
|
|
430
|
+
const _JT = "JobType";
|
|
431
|
+
const _KKARN = "KmsKeyARN";
|
|
432
|
+
const _KMSRFE = "KMSRequestFailedException";
|
|
433
|
+
const _KR = "KeyRange";
|
|
434
|
+
const _KV = "KubernetesVersion";
|
|
435
|
+
const _L = "Landmark";
|
|
436
|
+
const _LA = "LambdaArn";
|
|
437
|
+
const _LC = "ListClusters";
|
|
438
|
+
const _LCI = "ListCompatibleImages";
|
|
439
|
+
const _LCIR = "ListCompatibleImagesRequest";
|
|
440
|
+
const _LCIRi = "ListCompatibleImagesResult";
|
|
441
|
+
const _LCJ = "ListClusterJobs";
|
|
442
|
+
const _LCJR = "ListClusterJobsRequest";
|
|
443
|
+
const _LCJRi = "ListClusterJobsResult";
|
|
444
|
+
const _LCR = "ListClustersRequest";
|
|
445
|
+
const _LCRi = "ListClustersResult";
|
|
446
|
+
const _LJ = "ListJobs";
|
|
447
|
+
const _LJR = "ListJobsRequest";
|
|
448
|
+
const _LJRi = "ListJobsResult";
|
|
449
|
+
const _LLTP = "ListLongTermPricing";
|
|
450
|
+
const _LLTPR = "ListLongTermPricingRequest";
|
|
451
|
+
const _LLTPRi = "ListLongTermPricingResult";
|
|
452
|
+
const _LPL = "ListPickupLocations";
|
|
453
|
+
const _LPLR = "ListPickupLocationsRequest";
|
|
454
|
+
const _LPLRi = "ListPickupLocationsResult";
|
|
455
|
+
const _LR = "LambdaResources";
|
|
456
|
+
const _LRL = "LambdaResourceList";
|
|
457
|
+
const _LRa = "LambdaResource";
|
|
458
|
+
const _LSV = "ListServiceVersions";
|
|
459
|
+
const _LSVR = "ListServiceVersionsRequest";
|
|
460
|
+
const _LSVRi = "ListServiceVersionsResult";
|
|
461
|
+
const _LTPE = "LongTermPricingEntries";
|
|
462
|
+
const _LTPED = "LongTermPricingEndDate";
|
|
463
|
+
const _LTPEL = "LongTermPricingEntryList";
|
|
464
|
+
const _LTPI = "LongTermPricingIds";
|
|
465
|
+
const _LTPIo = "LongTermPricingId";
|
|
466
|
+
const _LTPLE = "LongTermPricingListEntry";
|
|
467
|
+
const _LTPS = "LongTermPricingStatus";
|
|
468
|
+
const _LTPSD = "LongTermPricingStartDate";
|
|
469
|
+
const _LTPT = "LongTermPricingType";
|
|
470
|
+
const _M = "Message";
|
|
471
|
+
const _MR = "MaxResults";
|
|
472
|
+
const _MURI = "ManifestURI";
|
|
473
|
+
const _N = "Name";
|
|
474
|
+
const _NA = "NotifyAll";
|
|
475
|
+
const _NFSODS = "NFSOnDeviceService";
|
|
476
|
+
const _NFSODSC = "NFSOnDeviceServiceConfiguration";
|
|
477
|
+
const _NT = "NextToken";
|
|
478
|
+
const _No = "Notification";
|
|
479
|
+
const _ODSC = "OnDeviceServiceConfiguration";
|
|
480
|
+
const _OS = "OutboundShipment";
|
|
481
|
+
const _OT = "ObjectsTransferred";
|
|
482
|
+
const _PC = "PostalCode";
|
|
483
|
+
const _PD = "PickupDetails";
|
|
484
|
+
const _PN = "PhoneNumber";
|
|
485
|
+
const _POD = "PrefectureOrDistrict";
|
|
486
|
+
const _R = "Resources";
|
|
487
|
+
const _RARN = "RoleARN";
|
|
488
|
+
const _RJ = "ReplacementJob";
|
|
489
|
+
const _RM = "RemoteManagement";
|
|
490
|
+
const _RSLAEE = "ReturnShippingLabelAlreadyExistsException";
|
|
491
|
+
const _RSLURI = "ReturnShippingLabelURI";
|
|
492
|
+
const _RT = "ResourceType";
|
|
493
|
+
const _S = "Street1";
|
|
494
|
+
const _SAI = "SnowballAmiId";
|
|
495
|
+
const _SCP = "SnowballCapacityPreference";
|
|
496
|
+
const _SD = "ShippingDetails";
|
|
497
|
+
const _SDC = "SnowconeDeviceConfiguration";
|
|
498
|
+
const _SI = "SnowballId";
|
|
499
|
+
const _SIU = "SnowballsInUse";
|
|
500
|
+
const _SJM = "SubJobMetadata";
|
|
501
|
+
const _SL = "SnowballLimit";
|
|
502
|
+
const _SLt = "StorageLimit";
|
|
503
|
+
const _SN = "ServiceName";
|
|
504
|
+
const _SO = "ShippingOption";
|
|
505
|
+
const _SODS = "S3OnDeviceService";
|
|
506
|
+
const _SODSC = "S3OnDeviceServiceConfiguration";
|
|
507
|
+
const _SOP = "StateOrProvince";
|
|
508
|
+
const _SR = "S3Resources";
|
|
509
|
+
const _SRL = "S3ResourceList";
|
|
510
|
+
const _SRe = "S3Resource";
|
|
511
|
+
const _SS = "ServiceSize";
|
|
512
|
+
const _SSh = "ShipmentState";
|
|
513
|
+
const _ST = "SnowballType";
|
|
514
|
+
const _STARN = "SnsTopicARN";
|
|
515
|
+
const _SU = "StorageUnit";
|
|
516
|
+
const _SV = "ServiceVersion";
|
|
517
|
+
const _SVL = "ServiceVersionList";
|
|
518
|
+
const _SVe = "ServiceVersions";
|
|
519
|
+
const _Sh = "Shipment";
|
|
520
|
+
const _St = "Street2";
|
|
521
|
+
const _Sta = "Status";
|
|
522
|
+
const _Str = "Street3";
|
|
523
|
+
const _T = "Type";
|
|
524
|
+
const _TB = "TotalBytes";
|
|
525
|
+
const _TD = "TaxDocuments";
|
|
526
|
+
const _TGWODS = "TGWOnDeviceService";
|
|
527
|
+
const _TGWODSC = "TGWOnDeviceServiceConfiguration";
|
|
528
|
+
const _TN = "TrackingNumber";
|
|
529
|
+
const _TO = "TotalObjects";
|
|
530
|
+
const _TODS = "TargetOnDeviceServices";
|
|
531
|
+
const _TODSL = "TargetOnDeviceServiceList";
|
|
532
|
+
const _TODSa = "TargetOnDeviceService";
|
|
533
|
+
const _TOr = "TransferOption";
|
|
534
|
+
const _UAE = "UnsupportedAddressException";
|
|
535
|
+
const _UC = "UnlockCode";
|
|
536
|
+
const _UCR = "UpdateClusterRequest";
|
|
537
|
+
const _UCRp = "UpdateClusterResult";
|
|
538
|
+
const _UCp = "UpdateCluster";
|
|
539
|
+
const _UJ = "UpdateJob";
|
|
540
|
+
const _UJR = "UpdateJobRequest";
|
|
541
|
+
const _UJRp = "UpdateJobResult";
|
|
542
|
+
const _UJSS = "UpdateJobShipmentState";
|
|
543
|
+
const _UJSSR = "UpdateJobShipmentStateRequest";
|
|
544
|
+
const _UJSSRp = "UpdateJobShipmentStateResult";
|
|
545
|
+
const _ULTP = "UpdateLongTermPricing";
|
|
546
|
+
const _ULTPR = "UpdateLongTermPricingRequest";
|
|
547
|
+
const _ULTPRp = "UpdateLongTermPricingResult";
|
|
548
|
+
const _UURI = "UpdatesURI";
|
|
549
|
+
const _V = "Version";
|
|
550
|
+
const _WC = "WirelessConnection";
|
|
551
|
+
const _c = "client";
|
|
552
|
+
const _e = "error";
|
|
553
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.snowball";
|
|
554
|
+
const n0 = "com.amazonaws.snowball";
|
|
555
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
556
|
+
var SnowballServiceException$ = [-3, _s, "SnowballServiceException", 0, [], []];
|
|
557
|
+
_s_registry.registerError(SnowballServiceException$, SnowballServiceException);
|
|
558
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
559
|
+
var ClusterLimitExceededException$ = [-3, n0, _CLEE,
|
|
560
|
+
{ [_e]: _c },
|
|
561
|
+
[_M],
|
|
562
|
+
[0]
|
|
563
|
+
];
|
|
564
|
+
n0_registry.registerError(ClusterLimitExceededException$, ClusterLimitExceededException);
|
|
565
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
566
|
+
{ [_e]: _c },
|
|
567
|
+
[_CR, _M],
|
|
568
|
+
[0, 0]
|
|
569
|
+
];
|
|
570
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
571
|
+
var Ec2RequestFailedException$ = [-3, n0, _ERFE,
|
|
572
|
+
{ [_e]: _c },
|
|
573
|
+
[_M],
|
|
574
|
+
[0]
|
|
575
|
+
];
|
|
576
|
+
n0_registry.registerError(Ec2RequestFailedException$, Ec2RequestFailedException);
|
|
577
|
+
var InvalidAddressException$ = [-3, n0, _IAE,
|
|
578
|
+
{ [_e]: _c },
|
|
579
|
+
[_M],
|
|
580
|
+
[0]
|
|
581
|
+
];
|
|
582
|
+
n0_registry.registerError(InvalidAddressException$, InvalidAddressException);
|
|
583
|
+
var InvalidInputCombinationException$ = [-3, n0, _IICE,
|
|
584
|
+
{ [_e]: _c },
|
|
585
|
+
[_M],
|
|
586
|
+
[0]
|
|
587
|
+
];
|
|
588
|
+
n0_registry.registerError(InvalidInputCombinationException$, InvalidInputCombinationException);
|
|
589
|
+
var InvalidJobStateException$ = [-3, n0, _IJSE,
|
|
590
|
+
{ [_e]: _c },
|
|
591
|
+
[_M],
|
|
592
|
+
[0]
|
|
593
|
+
];
|
|
594
|
+
n0_registry.registerError(InvalidJobStateException$, InvalidJobStateException);
|
|
595
|
+
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
596
|
+
{ [_e]: _c },
|
|
597
|
+
[_M],
|
|
598
|
+
[0]
|
|
599
|
+
];
|
|
600
|
+
n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
601
|
+
var InvalidResourceException$ = [-3, n0, _IRE,
|
|
602
|
+
{ [_e]: _c },
|
|
603
|
+
[_M, _RT],
|
|
604
|
+
[0, 0]
|
|
605
|
+
];
|
|
606
|
+
n0_registry.registerError(InvalidResourceException$, InvalidResourceException);
|
|
607
|
+
var KMSRequestFailedException$ = [-3, n0, _KMSRFE,
|
|
608
|
+
{ [_e]: _c },
|
|
609
|
+
[_M],
|
|
610
|
+
[0]
|
|
611
|
+
];
|
|
612
|
+
n0_registry.registerError(KMSRequestFailedException$, KMSRequestFailedException);
|
|
613
|
+
var ReturnShippingLabelAlreadyExistsException$ = [-3, n0, _RSLAEE,
|
|
614
|
+
{ [_e]: _c },
|
|
615
|
+
[_M],
|
|
616
|
+
[0]
|
|
617
|
+
];
|
|
618
|
+
n0_registry.registerError(ReturnShippingLabelAlreadyExistsException$, ReturnShippingLabelAlreadyExistsException);
|
|
619
|
+
var UnsupportedAddressException$ = [-3, n0, _UAE,
|
|
620
|
+
{ [_e]: _c },
|
|
621
|
+
[_M],
|
|
622
|
+
[0]
|
|
623
|
+
];
|
|
624
|
+
n0_registry.registerError(UnsupportedAddressException$, UnsupportedAddressException);
|
|
625
|
+
const errorTypeRegistries = [
|
|
626
|
+
_s_registry,
|
|
627
|
+
n0_registry,
|
|
628
|
+
];
|
|
629
|
+
var Email = [0, n0, _E, 8, 0];
|
|
630
|
+
var PhoneNumber = [0, n0, _PN, 8, 0];
|
|
631
|
+
var Address$ = [3, n0, _A,
|
|
632
|
+
0,
|
|
633
|
+
[_AI, _N, _C, _S, _St, _Str, _Ci, _SOP, _POD, _L, _Co, _PC, _PN, _IR, _T],
|
|
634
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]
|
|
635
|
+
];
|
|
636
|
+
var CancelClusterRequest$ = [3, n0, _CCR,
|
|
637
|
+
0,
|
|
638
|
+
[_CI],
|
|
639
|
+
[0], 1
|
|
640
|
+
];
|
|
641
|
+
var CancelClusterResult$ = [3, n0, _CCRa,
|
|
642
|
+
0,
|
|
643
|
+
[],
|
|
644
|
+
[]
|
|
645
|
+
];
|
|
646
|
+
var CancelJobRequest$ = [3, n0, _CJR,
|
|
647
|
+
0,
|
|
648
|
+
[_JI],
|
|
649
|
+
[0], 1
|
|
650
|
+
];
|
|
651
|
+
var CancelJobResult$ = [3, n0, _CJRa,
|
|
652
|
+
0,
|
|
653
|
+
[],
|
|
654
|
+
[]
|
|
655
|
+
];
|
|
656
|
+
var ClusterListEntry$ = [3, n0, _CLE,
|
|
657
|
+
0,
|
|
658
|
+
[_CI, _CS, _CD, _D],
|
|
659
|
+
[0, 0, 4, 0]
|
|
660
|
+
];
|
|
661
|
+
var ClusterMetadata$ = [3, n0, _CM,
|
|
662
|
+
0,
|
|
663
|
+
[_CI, _D, _KKARN, _RARN, _CS, _JT, _ST, _CD, _R, _AI, _SO, _No, _FAI, _TD, _ODSC],
|
|
664
|
+
[0, 0, 0, 0, 0, 0, 0, 4, () => JobResource$, 0, 0, () => Notification$, 0, () => TaxDocuments$, () => OnDeviceServiceConfiguration$]
|
|
665
|
+
];
|
|
666
|
+
var CompatibleImage$ = [3, n0, _CIo,
|
|
667
|
+
0,
|
|
668
|
+
[_AIm, _N],
|
|
669
|
+
[0, 0]
|
|
670
|
+
];
|
|
671
|
+
var CreateAddressRequest$ = [3, n0, _CAR,
|
|
672
|
+
0,
|
|
673
|
+
[_A],
|
|
674
|
+
[() => Address$], 1
|
|
675
|
+
];
|
|
676
|
+
var CreateAddressResult$ = [3, n0, _CARr,
|
|
677
|
+
0,
|
|
678
|
+
[_AI],
|
|
679
|
+
[0]
|
|
680
|
+
];
|
|
681
|
+
var CreateClusterRequest$ = [3, n0, _CCRr,
|
|
682
|
+
0,
|
|
683
|
+
[_JT, _AI, _ST, _SO, _R, _ODSC, _D, _KKARN, _RARN, _No, _FAI, _TD, _RM, _ICS, _FCJ, _LTPI, _SCP],
|
|
684
|
+
[0, 0, 0, 0, () => JobResource$, () => OnDeviceServiceConfiguration$, 0, 0, 0, () => Notification$, 0, () => TaxDocuments$, 0, 1, 2, 64 | 0, 0], 4
|
|
685
|
+
];
|
|
686
|
+
var CreateClusterResult$ = [3, n0, _CCRre,
|
|
687
|
+
0,
|
|
688
|
+
[_CI, _JLE],
|
|
689
|
+
[0, () => JobListEntryList]
|
|
690
|
+
];
|
|
691
|
+
var CreateJobRequest$ = [3, n0, _CJRr,
|
|
692
|
+
0,
|
|
693
|
+
[_JT, _R, _ODSC, _D, _AI, _KKARN, _RARN, _SCP, _SO, _No, _CI, _ST, _FAI, _TD, _DC, _RM, _LTPIo, _IL, _PD],
|
|
694
|
+
[0, () => JobResource$, () => OnDeviceServiceConfiguration$, 0, 0, 0, 0, 0, 0, () => Notification$, 0, 0, 0, () => TaxDocuments$, () => DeviceConfiguration$, 0, 0, 0, [() => PickupDetails$, 0]]
|
|
695
|
+
];
|
|
696
|
+
var CreateJobResult$ = [3, n0, _CJRre,
|
|
697
|
+
0,
|
|
698
|
+
[_JI],
|
|
699
|
+
[0]
|
|
700
|
+
];
|
|
701
|
+
var CreateLongTermPricingRequest$ = [3, n0, _CLTPR,
|
|
702
|
+
0,
|
|
703
|
+
[_LTPT, _ST, _ILTPAR],
|
|
704
|
+
[0, 0, 2], 2
|
|
705
|
+
];
|
|
706
|
+
var CreateLongTermPricingResult$ = [3, n0, _CLTPRr,
|
|
707
|
+
0,
|
|
708
|
+
[_LTPIo],
|
|
709
|
+
[0]
|
|
710
|
+
];
|
|
711
|
+
var CreateReturnShippingLabelRequest$ = [3, n0, _CRSLR,
|
|
712
|
+
0,
|
|
713
|
+
[_JI, _SO],
|
|
714
|
+
[0, 0], 1
|
|
715
|
+
];
|
|
716
|
+
var CreateReturnShippingLabelResult$ = [3, n0, _CRSLRr,
|
|
717
|
+
0,
|
|
718
|
+
[_Sta],
|
|
719
|
+
[0]
|
|
720
|
+
];
|
|
721
|
+
var DataTransfer$ = [3, n0, _DT,
|
|
722
|
+
0,
|
|
723
|
+
[_BT, _OT, _TB, _TO],
|
|
724
|
+
[1, 1, 1, 1]
|
|
725
|
+
];
|
|
726
|
+
var DependentService$ = [3, n0, _DS,
|
|
727
|
+
0,
|
|
728
|
+
[_SN, _SV],
|
|
729
|
+
[0, () => ServiceVersion$]
|
|
730
|
+
];
|
|
731
|
+
var DescribeAddressesRequest$ = [3, n0, _DAR,
|
|
732
|
+
0,
|
|
733
|
+
[_MR, _NT],
|
|
734
|
+
[1, 0]
|
|
735
|
+
];
|
|
736
|
+
var DescribeAddressesResult$ = [3, n0, _DARe,
|
|
737
|
+
0,
|
|
738
|
+
[_Ad, _NT],
|
|
739
|
+
[() => AddressList, 0]
|
|
740
|
+
];
|
|
741
|
+
var DescribeAddressRequest$ = [3, n0, _DARes,
|
|
742
|
+
0,
|
|
743
|
+
[_AI],
|
|
744
|
+
[0], 1
|
|
745
|
+
];
|
|
746
|
+
var DescribeAddressResult$ = [3, n0, _DAResc,
|
|
747
|
+
0,
|
|
748
|
+
[_A],
|
|
749
|
+
[() => Address$]
|
|
750
|
+
];
|
|
751
|
+
var DescribeClusterRequest$ = [3, n0, _DCR,
|
|
752
|
+
0,
|
|
753
|
+
[_CI],
|
|
754
|
+
[0], 1
|
|
755
|
+
];
|
|
756
|
+
var DescribeClusterResult$ = [3, n0, _DCRe,
|
|
757
|
+
0,
|
|
758
|
+
[_CM],
|
|
759
|
+
[() => ClusterMetadata$]
|
|
760
|
+
];
|
|
761
|
+
var DescribeJobRequest$ = [3, n0, _DJR,
|
|
762
|
+
0,
|
|
763
|
+
[_JI],
|
|
764
|
+
[0], 1
|
|
765
|
+
];
|
|
766
|
+
var DescribeJobResult$ = [3, n0, _DJRe,
|
|
767
|
+
0,
|
|
768
|
+
[_JM, _SJM],
|
|
769
|
+
[[() => JobMetadata$, 0], [() => JobMetadataList, 0]]
|
|
770
|
+
];
|
|
771
|
+
var DescribeReturnShippingLabelRequest$ = [3, n0, _DRSLR,
|
|
772
|
+
0,
|
|
773
|
+
[_JI],
|
|
774
|
+
[0], 1
|
|
775
|
+
];
|
|
776
|
+
var DescribeReturnShippingLabelResult$ = [3, n0, _DRSLRe,
|
|
777
|
+
0,
|
|
778
|
+
[_Sta, _ED, _RSLURI],
|
|
779
|
+
[0, 4, 0]
|
|
780
|
+
];
|
|
781
|
+
var DeviceConfiguration$ = [3, n0, _DC,
|
|
782
|
+
0,
|
|
783
|
+
[_SDC],
|
|
784
|
+
[() => SnowconeDeviceConfiguration$]
|
|
785
|
+
];
|
|
786
|
+
var Ec2AmiResource$ = [3, n0, _EAR,
|
|
787
|
+
0,
|
|
788
|
+
[_AIm, _SAI],
|
|
789
|
+
[0, 0], 1
|
|
790
|
+
];
|
|
791
|
+
var EKSOnDeviceServiceConfiguration$ = [3, n0, _EKSODSC,
|
|
792
|
+
0,
|
|
793
|
+
[_KV, _EKSAV],
|
|
794
|
+
[0, 0]
|
|
795
|
+
];
|
|
796
|
+
var EventTriggerDefinition$ = [3, n0, _ETD,
|
|
797
|
+
0,
|
|
798
|
+
[_ERARN],
|
|
799
|
+
[0]
|
|
800
|
+
];
|
|
801
|
+
var GetJobManifestRequest$ = [3, n0, _GJMR,
|
|
802
|
+
0,
|
|
803
|
+
[_JI],
|
|
804
|
+
[0], 1
|
|
805
|
+
];
|
|
806
|
+
var GetJobManifestResult$ = [3, n0, _GJMRe,
|
|
807
|
+
0,
|
|
808
|
+
[_MURI],
|
|
809
|
+
[0]
|
|
810
|
+
];
|
|
811
|
+
var GetJobUnlockCodeRequest$ = [3, n0, _GJUCR,
|
|
812
|
+
0,
|
|
813
|
+
[_JI],
|
|
814
|
+
[0], 1
|
|
815
|
+
];
|
|
816
|
+
var GetJobUnlockCodeResult$ = [3, n0, _GJUCRe,
|
|
817
|
+
0,
|
|
818
|
+
[_UC],
|
|
819
|
+
[0]
|
|
820
|
+
];
|
|
821
|
+
var GetSnowballUsageRequest$ = [3, n0, _GSUR,
|
|
822
|
+
0,
|
|
823
|
+
[],
|
|
824
|
+
[]
|
|
825
|
+
];
|
|
826
|
+
var GetSnowballUsageResult$ = [3, n0, _GSURe,
|
|
827
|
+
0,
|
|
828
|
+
[_SL, _SIU],
|
|
829
|
+
[1, 1]
|
|
830
|
+
];
|
|
831
|
+
var GetSoftwareUpdatesRequest$ = [3, n0, _GSURet,
|
|
832
|
+
0,
|
|
833
|
+
[_JI],
|
|
834
|
+
[0], 1
|
|
835
|
+
];
|
|
836
|
+
var GetSoftwareUpdatesResult$ = [3, n0, _GSUReto,
|
|
837
|
+
0,
|
|
838
|
+
[_UURI],
|
|
839
|
+
[0]
|
|
840
|
+
];
|
|
841
|
+
var INDTaxDocuments$ = [3, n0, _INDTD,
|
|
842
|
+
0,
|
|
843
|
+
[_GSTIN],
|
|
844
|
+
[0]
|
|
845
|
+
];
|
|
846
|
+
var JobListEntry$ = [3, n0, _JLEo,
|
|
847
|
+
0,
|
|
848
|
+
[_JI, _JS, _IM, _JT, _ST, _CD, _D],
|
|
849
|
+
[0, 0, 2, 0, 0, 4, 0]
|
|
850
|
+
];
|
|
851
|
+
var JobLogs$ = [3, n0, _JL,
|
|
852
|
+
0,
|
|
853
|
+
[_JCRURI, _JSLURI, _JFLURI],
|
|
854
|
+
[0, 0, 0]
|
|
855
|
+
];
|
|
856
|
+
var JobMetadata$ = [3, n0, _JM,
|
|
857
|
+
0,
|
|
858
|
+
[_JI, _JS, _JT, _ST, _CD, _R, _D, _KKARN, _RARN, _AI, _SD, _SCP, _No, _DTP, _JLI, _CI, _FAI, _TD, _DC, _RM, _LTPIo, _ODSC, _IL, _PD, _SI],
|
|
859
|
+
[0, 0, 0, 0, 4, () => JobResource$, 0, 0, 0, 0, () => ShippingDetails$, 0, () => Notification$, () => DataTransfer$, () => JobLogs$, 0, 0, () => TaxDocuments$, () => DeviceConfiguration$, 0, 0, () => OnDeviceServiceConfiguration$, 0, [() => PickupDetails$, 0], 0]
|
|
860
|
+
];
|
|
861
|
+
var JobResource$ = [3, n0, _JR,
|
|
862
|
+
0,
|
|
863
|
+
[_SR, _LR, _EARc],
|
|
864
|
+
[() => S3ResourceList, () => LambdaResourceList, () => Ec2AmiResourceList]
|
|
865
|
+
];
|
|
866
|
+
var KeyRange$ = [3, n0, _KR,
|
|
867
|
+
0,
|
|
868
|
+
[_BM, _EM],
|
|
869
|
+
[0, 0]
|
|
870
|
+
];
|
|
871
|
+
var LambdaResource$ = [3, n0, _LRa,
|
|
872
|
+
0,
|
|
873
|
+
[_LA, _ET],
|
|
874
|
+
[0, () => EventTriggerDefinitionList]
|
|
875
|
+
];
|
|
876
|
+
var ListClusterJobsRequest$ = [3, n0, _LCJR,
|
|
877
|
+
0,
|
|
878
|
+
[_CI, _MR, _NT],
|
|
879
|
+
[0, 1, 0], 1
|
|
880
|
+
];
|
|
881
|
+
var ListClusterJobsResult$ = [3, n0, _LCJRi,
|
|
882
|
+
0,
|
|
883
|
+
[_JLE, _NT],
|
|
884
|
+
[() => JobListEntryList, 0]
|
|
885
|
+
];
|
|
886
|
+
var ListClustersRequest$ = [3, n0, _LCR,
|
|
887
|
+
0,
|
|
888
|
+
[_MR, _NT],
|
|
889
|
+
[1, 0]
|
|
890
|
+
];
|
|
891
|
+
var ListClustersResult$ = [3, n0, _LCRi,
|
|
892
|
+
0,
|
|
893
|
+
[_CLEl, _NT],
|
|
894
|
+
[() => ClusterListEntryList, 0]
|
|
895
|
+
];
|
|
896
|
+
var ListCompatibleImagesRequest$ = [3, n0, _LCIR,
|
|
897
|
+
0,
|
|
898
|
+
[_MR, _NT],
|
|
899
|
+
[1, 0]
|
|
900
|
+
];
|
|
901
|
+
var ListCompatibleImagesResult$ = [3, n0, _LCIRi,
|
|
902
|
+
0,
|
|
903
|
+
[_CIom, _NT],
|
|
904
|
+
[() => CompatibleImageList, 0]
|
|
905
|
+
];
|
|
906
|
+
var ListJobsRequest$ = [3, n0, _LJR,
|
|
907
|
+
0,
|
|
908
|
+
[_MR, _NT],
|
|
909
|
+
[1, 0]
|
|
910
|
+
];
|
|
911
|
+
var ListJobsResult$ = [3, n0, _LJRi,
|
|
912
|
+
0,
|
|
913
|
+
[_JLE, _NT],
|
|
914
|
+
[() => JobListEntryList, 0]
|
|
915
|
+
];
|
|
916
|
+
var ListLongTermPricingRequest$ = [3, n0, _LLTPR,
|
|
917
|
+
0,
|
|
918
|
+
[_MR, _NT],
|
|
919
|
+
[1, 0]
|
|
920
|
+
];
|
|
921
|
+
var ListLongTermPricingResult$ = [3, n0, _LLTPRi,
|
|
922
|
+
0,
|
|
923
|
+
[_LTPE, _NT],
|
|
924
|
+
[() => LongTermPricingEntryList, 0]
|
|
925
|
+
];
|
|
926
|
+
var ListPickupLocationsRequest$ = [3, n0, _LPLR,
|
|
927
|
+
0,
|
|
928
|
+
[_MR, _NT],
|
|
929
|
+
[1, 0]
|
|
930
|
+
];
|
|
931
|
+
var ListPickupLocationsResult$ = [3, n0, _LPLRi,
|
|
932
|
+
0,
|
|
933
|
+
[_Ad, _NT],
|
|
934
|
+
[() => AddressList, 0]
|
|
935
|
+
];
|
|
936
|
+
var ListServiceVersionsRequest$ = [3, n0, _LSVR,
|
|
937
|
+
0,
|
|
938
|
+
[_SN, _DSe, _MR, _NT],
|
|
939
|
+
[0, () => DependentServiceList, 1, 0], 1
|
|
940
|
+
];
|
|
941
|
+
var ListServiceVersionsResult$ = [3, n0, _LSVRi,
|
|
942
|
+
0,
|
|
943
|
+
[_SVe, _SN, _DSe, _NT],
|
|
944
|
+
[() => ServiceVersionList, 0, () => DependentServiceList, 0], 2
|
|
945
|
+
];
|
|
946
|
+
var LongTermPricingListEntry$ = [3, n0, _LTPLE,
|
|
947
|
+
0,
|
|
948
|
+
[_LTPIo, _LTPED, _LTPSD, _LTPT, _CAJ, _RJ, _ILTPAR, _LTPS, _ST, _JIo],
|
|
949
|
+
[0, 4, 4, 0, 0, 0, 2, 0, 0, 64 | 0]
|
|
950
|
+
];
|
|
951
|
+
var NFSOnDeviceServiceConfiguration$ = [3, n0, _NFSODSC,
|
|
952
|
+
0,
|
|
953
|
+
[_SLt, _SU],
|
|
954
|
+
[1, 0]
|
|
955
|
+
];
|
|
956
|
+
var Notification$ = [3, n0, _No,
|
|
957
|
+
0,
|
|
958
|
+
[_STARN, _JSTN, _NA, _DPSTARN],
|
|
959
|
+
[0, 64 | 0, 2, 0]
|
|
960
|
+
];
|
|
961
|
+
var OnDeviceServiceConfiguration$ = [3, n0, _ODSC,
|
|
962
|
+
0,
|
|
963
|
+
[_NFSODS, _TGWODS, _EKSODS, _SODS],
|
|
964
|
+
[() => NFSOnDeviceServiceConfiguration$, () => TGWOnDeviceServiceConfiguration$, () => EKSOnDeviceServiceConfiguration$, () => S3OnDeviceServiceConfiguration$]
|
|
965
|
+
];
|
|
966
|
+
var PickupDetails$ = [3, n0, _PD,
|
|
967
|
+
0,
|
|
968
|
+
[_N, _PN, _E, _IN, _IED, _IIO, _DPI],
|
|
969
|
+
[0, [() => PhoneNumber, 0], [() => Email, 0], 0, 4, 0, 0]
|
|
970
|
+
];
|
|
971
|
+
var S3OnDeviceServiceConfiguration$ = [3, n0, _SODSC,
|
|
972
|
+
0,
|
|
973
|
+
[_SLt, _SU, _SS, _FT],
|
|
974
|
+
[1, 0, 1, 1]
|
|
975
|
+
];
|
|
976
|
+
var S3Resource$ = [3, n0, _SRe,
|
|
977
|
+
0,
|
|
978
|
+
[_BA, _KR, _TODS],
|
|
979
|
+
[0, () => KeyRange$, () => TargetOnDeviceServiceList]
|
|
980
|
+
];
|
|
981
|
+
var ServiceVersion$ = [3, n0, _SV,
|
|
982
|
+
0,
|
|
983
|
+
[_V],
|
|
984
|
+
[0]
|
|
985
|
+
];
|
|
986
|
+
var Shipment$ = [3, n0, _Sh,
|
|
987
|
+
0,
|
|
988
|
+
[_Sta, _TN],
|
|
989
|
+
[0, 0]
|
|
990
|
+
];
|
|
991
|
+
var ShippingDetails$ = [3, n0, _SD,
|
|
992
|
+
0,
|
|
993
|
+
[_SO, _IS, _OS],
|
|
994
|
+
[0, () => Shipment$, () => Shipment$]
|
|
995
|
+
];
|
|
996
|
+
var SnowconeDeviceConfiguration$ = [3, n0, _SDC,
|
|
997
|
+
0,
|
|
998
|
+
[_WC],
|
|
999
|
+
[() => WirelessConnection$]
|
|
1000
|
+
];
|
|
1001
|
+
var TargetOnDeviceService$ = [3, n0, _TODSa,
|
|
1002
|
+
0,
|
|
1003
|
+
[_SN, _TOr],
|
|
1004
|
+
[0, 0]
|
|
1005
|
+
];
|
|
1006
|
+
var TaxDocuments$ = [3, n0, _TD,
|
|
1007
|
+
0,
|
|
1008
|
+
[_IND],
|
|
1009
|
+
[() => INDTaxDocuments$]
|
|
1010
|
+
];
|
|
1011
|
+
var TGWOnDeviceServiceConfiguration$ = [3, n0, _TGWODSC,
|
|
1012
|
+
0,
|
|
1013
|
+
[_SLt, _SU],
|
|
1014
|
+
[1, 0]
|
|
1015
|
+
];
|
|
1016
|
+
var UpdateClusterRequest$ = [3, n0, _UCR,
|
|
1017
|
+
0,
|
|
1018
|
+
[_CI, _RARN, _D, _R, _ODSC, _AI, _SO, _No, _FAI],
|
|
1019
|
+
[0, 0, 0, () => JobResource$, () => OnDeviceServiceConfiguration$, 0, 0, () => Notification$, 0], 1
|
|
1020
|
+
];
|
|
1021
|
+
var UpdateClusterResult$ = [3, n0, _UCRp,
|
|
1022
|
+
0,
|
|
1023
|
+
[],
|
|
1024
|
+
[]
|
|
1025
|
+
];
|
|
1026
|
+
var UpdateJobRequest$ = [3, n0, _UJR,
|
|
1027
|
+
0,
|
|
1028
|
+
[_JI, _RARN, _No, _R, _ODSC, _AI, _SO, _D, _SCP, _FAI, _PD],
|
|
1029
|
+
[0, 0, () => Notification$, () => JobResource$, () => OnDeviceServiceConfiguration$, 0, 0, 0, 0, 0, [() => PickupDetails$, 0]], 1
|
|
1030
|
+
];
|
|
1031
|
+
var UpdateJobResult$ = [3, n0, _UJRp,
|
|
1032
|
+
0,
|
|
1033
|
+
[],
|
|
1034
|
+
[]
|
|
1035
|
+
];
|
|
1036
|
+
var UpdateJobShipmentStateRequest$ = [3, n0, _UJSSR,
|
|
1037
|
+
0,
|
|
1038
|
+
[_JI, _SSh],
|
|
1039
|
+
[0, 0], 2
|
|
1040
|
+
];
|
|
1041
|
+
var UpdateJobShipmentStateResult$ = [3, n0, _UJSSRp,
|
|
1042
|
+
0,
|
|
1043
|
+
[],
|
|
1044
|
+
[]
|
|
1045
|
+
];
|
|
1046
|
+
var UpdateLongTermPricingRequest$ = [3, n0, _ULTPR,
|
|
1047
|
+
0,
|
|
1048
|
+
[_LTPIo, _RJ, _ILTPAR],
|
|
1049
|
+
[0, 0, 2], 1
|
|
1050
|
+
];
|
|
1051
|
+
var UpdateLongTermPricingResult$ = [3, n0, _ULTPRp,
|
|
1052
|
+
0,
|
|
1053
|
+
[],
|
|
1054
|
+
[]
|
|
1055
|
+
];
|
|
1056
|
+
var WirelessConnection$ = [3, n0, _WC,
|
|
1057
|
+
0,
|
|
1058
|
+
[_IWE],
|
|
1059
|
+
[2]
|
|
1060
|
+
];
|
|
1061
|
+
var AddressList = [1, n0, _AL,
|
|
1062
|
+
0, () => Address$
|
|
1063
|
+
];
|
|
1064
|
+
var ClusterListEntryList = [1, n0, _CLEL,
|
|
1065
|
+
0, () => ClusterListEntry$
|
|
1066
|
+
];
|
|
1067
|
+
var CompatibleImageList = [1, n0, _CIL,
|
|
1068
|
+
0, () => CompatibleImage$
|
|
1069
|
+
];
|
|
1070
|
+
var DependentServiceList = [1, n0, _DSL,
|
|
1071
|
+
0, () => DependentService$
|
|
1072
|
+
];
|
|
1073
|
+
var Ec2AmiResourceList = [1, n0, _EARL,
|
|
1074
|
+
0, () => Ec2AmiResource$
|
|
1075
|
+
];
|
|
1076
|
+
var EventTriggerDefinitionList = [1, n0, _ETDL,
|
|
1077
|
+
0, () => EventTriggerDefinition$
|
|
1078
|
+
];
|
|
1079
|
+
var JobListEntryList = [1, n0, _JLEL,
|
|
1080
|
+
0, () => JobListEntry$
|
|
1081
|
+
];
|
|
1082
|
+
var JobMetadataList = [1, n0, _JML,
|
|
1083
|
+
0, [() => JobMetadata$,
|
|
1084
|
+
0]
|
|
1085
|
+
];
|
|
1086
|
+
var LambdaResourceList = [1, n0, _LRL,
|
|
1087
|
+
0, () => LambdaResource$
|
|
1088
|
+
];
|
|
1089
|
+
var LongTermPricingEntryList = [1, n0, _LTPEL,
|
|
1090
|
+
0, () => LongTermPricingListEntry$
|
|
1091
|
+
];
|
|
1092
|
+
var S3ResourceList = [1, n0, _SRL,
|
|
1093
|
+
0, () => S3Resource$
|
|
1094
|
+
];
|
|
1095
|
+
var ServiceVersionList = [1, n0, _SVL,
|
|
1096
|
+
0, () => ServiceVersion$
|
|
1097
|
+
];
|
|
1098
|
+
var TargetOnDeviceServiceList = [1, n0, _TODSL,
|
|
1099
|
+
0, () => TargetOnDeviceService$
|
|
1100
|
+
];
|
|
1101
|
+
var CancelCluster$ = [9, n0, _CC,
|
|
1102
|
+
0, () => CancelClusterRequest$, () => CancelClusterResult$
|
|
1103
|
+
];
|
|
1104
|
+
var CancelJob$ = [9, n0, _CJ,
|
|
1105
|
+
0, () => CancelJobRequest$, () => CancelJobResult$
|
|
1106
|
+
];
|
|
1107
|
+
var CreateAddress$ = [9, n0, _CA,
|
|
1108
|
+
0, () => CreateAddressRequest$, () => CreateAddressResult$
|
|
1109
|
+
];
|
|
1110
|
+
var CreateCluster$ = [9, n0, _CCr,
|
|
1111
|
+
0, () => CreateClusterRequest$, () => CreateClusterResult$
|
|
1112
|
+
];
|
|
1113
|
+
var CreateJob$ = [9, n0, _CJr,
|
|
1114
|
+
0, () => CreateJobRequest$, () => CreateJobResult$
|
|
1115
|
+
];
|
|
1116
|
+
var CreateLongTermPricing$ = [9, n0, _CLTP,
|
|
1117
|
+
0, () => CreateLongTermPricingRequest$, () => CreateLongTermPricingResult$
|
|
1118
|
+
];
|
|
1119
|
+
var CreateReturnShippingLabel$ = [9, n0, _CRSL,
|
|
1120
|
+
0, () => CreateReturnShippingLabelRequest$, () => CreateReturnShippingLabelResult$
|
|
1121
|
+
];
|
|
1122
|
+
var DescribeAddress$ = [9, n0, _DA,
|
|
1123
|
+
0, () => DescribeAddressRequest$, () => DescribeAddressResult$
|
|
1124
|
+
];
|
|
1125
|
+
var DescribeAddresses$ = [9, n0, _DAe,
|
|
1126
|
+
0, () => DescribeAddressesRequest$, () => DescribeAddressesResult$
|
|
1127
|
+
];
|
|
1128
|
+
var DescribeCluster$ = [9, n0, _DCe,
|
|
1129
|
+
0, () => DescribeClusterRequest$, () => DescribeClusterResult$
|
|
1130
|
+
];
|
|
1131
|
+
var DescribeJob$ = [9, n0, _DJ,
|
|
1132
|
+
0, () => DescribeJobRequest$, () => DescribeJobResult$
|
|
1133
|
+
];
|
|
1134
|
+
var DescribeReturnShippingLabel$ = [9, n0, _DRSL,
|
|
1135
|
+
0, () => DescribeReturnShippingLabelRequest$, () => DescribeReturnShippingLabelResult$
|
|
1136
|
+
];
|
|
1137
|
+
var GetJobManifest$ = [9, n0, _GJM,
|
|
1138
|
+
0, () => GetJobManifestRequest$, () => GetJobManifestResult$
|
|
1139
|
+
];
|
|
1140
|
+
var GetJobUnlockCode$ = [9, n0, _GJUC,
|
|
1141
|
+
0, () => GetJobUnlockCodeRequest$, () => GetJobUnlockCodeResult$
|
|
1142
|
+
];
|
|
1143
|
+
var GetSnowballUsage$ = [9, n0, _GSU,
|
|
1144
|
+
0, () => GetSnowballUsageRequest$, () => GetSnowballUsageResult$
|
|
1145
|
+
];
|
|
1146
|
+
var GetSoftwareUpdates$ = [9, n0, _GSUe,
|
|
1147
|
+
0, () => GetSoftwareUpdatesRequest$, () => GetSoftwareUpdatesResult$
|
|
1148
|
+
];
|
|
1149
|
+
var ListClusterJobs$ = [9, n0, _LCJ,
|
|
1150
|
+
0, () => ListClusterJobsRequest$, () => ListClusterJobsResult$
|
|
1151
|
+
];
|
|
1152
|
+
var ListClusters$ = [9, n0, _LC,
|
|
1153
|
+
0, () => ListClustersRequest$, () => ListClustersResult$
|
|
1154
|
+
];
|
|
1155
|
+
var ListCompatibleImages$ = [9, n0, _LCI,
|
|
1156
|
+
0, () => ListCompatibleImagesRequest$, () => ListCompatibleImagesResult$
|
|
1157
|
+
];
|
|
1158
|
+
var ListJobs$ = [9, n0, _LJ,
|
|
1159
|
+
0, () => ListJobsRequest$, () => ListJobsResult$
|
|
1160
|
+
];
|
|
1161
|
+
var ListLongTermPricing$ = [9, n0, _LLTP,
|
|
1162
|
+
0, () => ListLongTermPricingRequest$, () => ListLongTermPricingResult$
|
|
1163
|
+
];
|
|
1164
|
+
var ListPickupLocations$ = [9, n0, _LPL,
|
|
1165
|
+
0, () => ListPickupLocationsRequest$, () => ListPickupLocationsResult$
|
|
1166
|
+
];
|
|
1167
|
+
var ListServiceVersions$ = [9, n0, _LSV,
|
|
1168
|
+
0, () => ListServiceVersionsRequest$, () => ListServiceVersionsResult$
|
|
1169
|
+
];
|
|
1170
|
+
var UpdateCluster$ = [9, n0, _UCp,
|
|
1171
|
+
0, () => UpdateClusterRequest$, () => UpdateClusterResult$
|
|
1172
|
+
];
|
|
1173
|
+
var UpdateJob$ = [9, n0, _UJ,
|
|
1174
|
+
0, () => UpdateJobRequest$, () => UpdateJobResult$
|
|
1175
|
+
];
|
|
1176
|
+
var UpdateJobShipmentState$ = [9, n0, _UJSS,
|
|
1177
|
+
0, () => UpdateJobShipmentStateRequest$, () => UpdateJobShipmentStateResult$
|
|
1178
|
+
];
|
|
1179
|
+
var UpdateLongTermPricing$ = [9, n0, _ULTP,
|
|
1180
|
+
0, () => UpdateLongTermPricingRequest$, () => UpdateLongTermPricingResult$
|
|
1181
|
+
];
|
|
1182
|
+
|
|
1183
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1184
|
+
return {
|
|
1185
|
+
apiVersion: "2016-06-30",
|
|
1186
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1187
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1188
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1189
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1190
|
+
extensions: config?.extensions ?? [],
|
|
1191
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSnowballHttpAuthSchemeProvider,
|
|
1192
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1193
|
+
{
|
|
1194
|
+
schemeId: "aws.auth#sigv4",
|
|
1195
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1196
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1197
|
+
},
|
|
1198
|
+
],
|
|
1199
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1200
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
1201
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1202
|
+
defaultNamespace: "com.amazonaws.snowball",
|
|
1203
|
+
errorTypeRegistries,
|
|
1204
|
+
version: "2016-06-30",
|
|
1205
|
+
serviceTarget: "AWSIESnowballJobManagementService",
|
|
1206
|
+
},
|
|
1207
|
+
serviceId: config?.serviceId ?? "Snowball",
|
|
1208
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1209
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1210
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1211
|
+
};
|
|
1212
|
+
};
|
|
1213
|
+
|
|
1214
|
+
const getRuntimeConfig = (config) => {
|
|
1215
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1216
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1217
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1218
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1219
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1220
|
+
const loaderConfig = {
|
|
1221
|
+
profile: config?.profile,
|
|
1222
|
+
logger: clientSharedValues.logger,
|
|
1223
|
+
};
|
|
1224
|
+
return {
|
|
1225
|
+
...clientSharedValues,
|
|
1226
|
+
...config,
|
|
1227
|
+
runtime: "node",
|
|
1228
|
+
defaultsMode,
|
|
1229
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1230
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1231
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1232
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1233
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1234
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1235
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1236
|
+
retryMode: config?.retryMode ??
|
|
1237
|
+
loadConfig({
|
|
1238
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1239
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1240
|
+
}, config),
|
|
1241
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1242
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1243
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1244
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1245
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1246
|
+
};
|
|
1247
|
+
};
|
|
1248
|
+
|
|
34
1249
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1250
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1251
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -597,51 +1812,189 @@ const ShipmentState = {
|
|
|
597
1812
|
RETURNED: "RETURNED",
|
|
598
1813
|
};
|
|
599
1814
|
|
|
1815
|
+
exports.Address$ = Address$;
|
|
600
1816
|
exports.AddressType = AddressType;
|
|
1817
|
+
exports.CancelCluster$ = CancelCluster$;
|
|
601
1818
|
exports.CancelClusterCommand = CancelClusterCommand;
|
|
1819
|
+
exports.CancelClusterRequest$ = CancelClusterRequest$;
|
|
1820
|
+
exports.CancelClusterResult$ = CancelClusterResult$;
|
|
1821
|
+
exports.CancelJob$ = CancelJob$;
|
|
602
1822
|
exports.CancelJobCommand = CancelJobCommand;
|
|
1823
|
+
exports.CancelJobRequest$ = CancelJobRequest$;
|
|
1824
|
+
exports.CancelJobResult$ = CancelJobResult$;
|
|
1825
|
+
exports.ClusterLimitExceededException = ClusterLimitExceededException;
|
|
1826
|
+
exports.ClusterLimitExceededException$ = ClusterLimitExceededException$;
|
|
1827
|
+
exports.ClusterListEntry$ = ClusterListEntry$;
|
|
1828
|
+
exports.ClusterMetadata$ = ClusterMetadata$;
|
|
603
1829
|
exports.ClusterState = ClusterState;
|
|
1830
|
+
exports.CompatibleImage$ = CompatibleImage$;
|
|
1831
|
+
exports.ConflictException = ConflictException;
|
|
1832
|
+
exports.ConflictException$ = ConflictException$;
|
|
1833
|
+
exports.CreateAddress$ = CreateAddress$;
|
|
604
1834
|
exports.CreateAddressCommand = CreateAddressCommand;
|
|
1835
|
+
exports.CreateAddressRequest$ = CreateAddressRequest$;
|
|
1836
|
+
exports.CreateAddressResult$ = CreateAddressResult$;
|
|
1837
|
+
exports.CreateCluster$ = CreateCluster$;
|
|
605
1838
|
exports.CreateClusterCommand = CreateClusterCommand;
|
|
1839
|
+
exports.CreateClusterRequest$ = CreateClusterRequest$;
|
|
1840
|
+
exports.CreateClusterResult$ = CreateClusterResult$;
|
|
1841
|
+
exports.CreateJob$ = CreateJob$;
|
|
606
1842
|
exports.CreateJobCommand = CreateJobCommand;
|
|
1843
|
+
exports.CreateJobRequest$ = CreateJobRequest$;
|
|
1844
|
+
exports.CreateJobResult$ = CreateJobResult$;
|
|
1845
|
+
exports.CreateLongTermPricing$ = CreateLongTermPricing$;
|
|
607
1846
|
exports.CreateLongTermPricingCommand = CreateLongTermPricingCommand;
|
|
1847
|
+
exports.CreateLongTermPricingRequest$ = CreateLongTermPricingRequest$;
|
|
1848
|
+
exports.CreateLongTermPricingResult$ = CreateLongTermPricingResult$;
|
|
1849
|
+
exports.CreateReturnShippingLabel$ = CreateReturnShippingLabel$;
|
|
608
1850
|
exports.CreateReturnShippingLabelCommand = CreateReturnShippingLabelCommand;
|
|
1851
|
+
exports.CreateReturnShippingLabelRequest$ = CreateReturnShippingLabelRequest$;
|
|
1852
|
+
exports.CreateReturnShippingLabelResult$ = CreateReturnShippingLabelResult$;
|
|
1853
|
+
exports.DataTransfer$ = DataTransfer$;
|
|
1854
|
+
exports.DependentService$ = DependentService$;
|
|
1855
|
+
exports.DescribeAddress$ = DescribeAddress$;
|
|
609
1856
|
exports.DescribeAddressCommand = DescribeAddressCommand;
|
|
1857
|
+
exports.DescribeAddressRequest$ = DescribeAddressRequest$;
|
|
1858
|
+
exports.DescribeAddressResult$ = DescribeAddressResult$;
|
|
1859
|
+
exports.DescribeAddresses$ = DescribeAddresses$;
|
|
610
1860
|
exports.DescribeAddressesCommand = DescribeAddressesCommand;
|
|
1861
|
+
exports.DescribeAddressesRequest$ = DescribeAddressesRequest$;
|
|
1862
|
+
exports.DescribeAddressesResult$ = DescribeAddressesResult$;
|
|
1863
|
+
exports.DescribeCluster$ = DescribeCluster$;
|
|
611
1864
|
exports.DescribeClusterCommand = DescribeClusterCommand;
|
|
1865
|
+
exports.DescribeClusterRequest$ = DescribeClusterRequest$;
|
|
1866
|
+
exports.DescribeClusterResult$ = DescribeClusterResult$;
|
|
1867
|
+
exports.DescribeJob$ = DescribeJob$;
|
|
612
1868
|
exports.DescribeJobCommand = DescribeJobCommand;
|
|
1869
|
+
exports.DescribeJobRequest$ = DescribeJobRequest$;
|
|
1870
|
+
exports.DescribeJobResult$ = DescribeJobResult$;
|
|
1871
|
+
exports.DescribeReturnShippingLabel$ = DescribeReturnShippingLabel$;
|
|
613
1872
|
exports.DescribeReturnShippingLabelCommand = DescribeReturnShippingLabelCommand;
|
|
1873
|
+
exports.DescribeReturnShippingLabelRequest$ = DescribeReturnShippingLabelRequest$;
|
|
1874
|
+
exports.DescribeReturnShippingLabelResult$ = DescribeReturnShippingLabelResult$;
|
|
1875
|
+
exports.DeviceConfiguration$ = DeviceConfiguration$;
|
|
614
1876
|
exports.DeviceServiceName = DeviceServiceName;
|
|
1877
|
+
exports.EKSOnDeviceServiceConfiguration$ = EKSOnDeviceServiceConfiguration$;
|
|
1878
|
+
exports.Ec2AmiResource$ = Ec2AmiResource$;
|
|
1879
|
+
exports.Ec2RequestFailedException = Ec2RequestFailedException;
|
|
1880
|
+
exports.Ec2RequestFailedException$ = Ec2RequestFailedException$;
|
|
1881
|
+
exports.EventTriggerDefinition$ = EventTriggerDefinition$;
|
|
1882
|
+
exports.GetJobManifest$ = GetJobManifest$;
|
|
615
1883
|
exports.GetJobManifestCommand = GetJobManifestCommand;
|
|
1884
|
+
exports.GetJobManifestRequest$ = GetJobManifestRequest$;
|
|
1885
|
+
exports.GetJobManifestResult$ = GetJobManifestResult$;
|
|
1886
|
+
exports.GetJobUnlockCode$ = GetJobUnlockCode$;
|
|
616
1887
|
exports.GetJobUnlockCodeCommand = GetJobUnlockCodeCommand;
|
|
1888
|
+
exports.GetJobUnlockCodeRequest$ = GetJobUnlockCodeRequest$;
|
|
1889
|
+
exports.GetJobUnlockCodeResult$ = GetJobUnlockCodeResult$;
|
|
1890
|
+
exports.GetSnowballUsage$ = GetSnowballUsage$;
|
|
617
1891
|
exports.GetSnowballUsageCommand = GetSnowballUsageCommand;
|
|
1892
|
+
exports.GetSnowballUsageRequest$ = GetSnowballUsageRequest$;
|
|
1893
|
+
exports.GetSnowballUsageResult$ = GetSnowballUsageResult$;
|
|
1894
|
+
exports.GetSoftwareUpdates$ = GetSoftwareUpdates$;
|
|
618
1895
|
exports.GetSoftwareUpdatesCommand = GetSoftwareUpdatesCommand;
|
|
1896
|
+
exports.GetSoftwareUpdatesRequest$ = GetSoftwareUpdatesRequest$;
|
|
1897
|
+
exports.GetSoftwareUpdatesResult$ = GetSoftwareUpdatesResult$;
|
|
1898
|
+
exports.INDTaxDocuments$ = INDTaxDocuments$;
|
|
619
1899
|
exports.ImpactLevel = ImpactLevel;
|
|
1900
|
+
exports.InvalidAddressException = InvalidAddressException;
|
|
1901
|
+
exports.InvalidAddressException$ = InvalidAddressException$;
|
|
1902
|
+
exports.InvalidInputCombinationException = InvalidInputCombinationException;
|
|
1903
|
+
exports.InvalidInputCombinationException$ = InvalidInputCombinationException$;
|
|
1904
|
+
exports.InvalidJobStateException = InvalidJobStateException;
|
|
1905
|
+
exports.InvalidJobStateException$ = InvalidJobStateException$;
|
|
1906
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
1907
|
+
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
1908
|
+
exports.InvalidResourceException = InvalidResourceException;
|
|
1909
|
+
exports.InvalidResourceException$ = InvalidResourceException$;
|
|
1910
|
+
exports.JobListEntry$ = JobListEntry$;
|
|
1911
|
+
exports.JobLogs$ = JobLogs$;
|
|
1912
|
+
exports.JobMetadata$ = JobMetadata$;
|
|
1913
|
+
exports.JobResource$ = JobResource$;
|
|
620
1914
|
exports.JobState = JobState;
|
|
621
1915
|
exports.JobType = JobType;
|
|
1916
|
+
exports.KMSRequestFailedException = KMSRequestFailedException;
|
|
1917
|
+
exports.KMSRequestFailedException$ = KMSRequestFailedException$;
|
|
1918
|
+
exports.KeyRange$ = KeyRange$;
|
|
1919
|
+
exports.LambdaResource$ = LambdaResource$;
|
|
1920
|
+
exports.ListClusterJobs$ = ListClusterJobs$;
|
|
622
1921
|
exports.ListClusterJobsCommand = ListClusterJobsCommand;
|
|
1922
|
+
exports.ListClusterJobsRequest$ = ListClusterJobsRequest$;
|
|
1923
|
+
exports.ListClusterJobsResult$ = ListClusterJobsResult$;
|
|
1924
|
+
exports.ListClusters$ = ListClusters$;
|
|
623
1925
|
exports.ListClustersCommand = ListClustersCommand;
|
|
1926
|
+
exports.ListClustersRequest$ = ListClustersRequest$;
|
|
1927
|
+
exports.ListClustersResult$ = ListClustersResult$;
|
|
1928
|
+
exports.ListCompatibleImages$ = ListCompatibleImages$;
|
|
624
1929
|
exports.ListCompatibleImagesCommand = ListCompatibleImagesCommand;
|
|
1930
|
+
exports.ListCompatibleImagesRequest$ = ListCompatibleImagesRequest$;
|
|
1931
|
+
exports.ListCompatibleImagesResult$ = ListCompatibleImagesResult$;
|
|
1932
|
+
exports.ListJobs$ = ListJobs$;
|
|
625
1933
|
exports.ListJobsCommand = ListJobsCommand;
|
|
1934
|
+
exports.ListJobsRequest$ = ListJobsRequest$;
|
|
1935
|
+
exports.ListJobsResult$ = ListJobsResult$;
|
|
1936
|
+
exports.ListLongTermPricing$ = ListLongTermPricing$;
|
|
626
1937
|
exports.ListLongTermPricingCommand = ListLongTermPricingCommand;
|
|
1938
|
+
exports.ListLongTermPricingRequest$ = ListLongTermPricingRequest$;
|
|
1939
|
+
exports.ListLongTermPricingResult$ = ListLongTermPricingResult$;
|
|
1940
|
+
exports.ListPickupLocations$ = ListPickupLocations$;
|
|
627
1941
|
exports.ListPickupLocationsCommand = ListPickupLocationsCommand;
|
|
1942
|
+
exports.ListPickupLocationsRequest$ = ListPickupLocationsRequest$;
|
|
1943
|
+
exports.ListPickupLocationsResult$ = ListPickupLocationsResult$;
|
|
1944
|
+
exports.ListServiceVersions$ = ListServiceVersions$;
|
|
628
1945
|
exports.ListServiceVersionsCommand = ListServiceVersionsCommand;
|
|
1946
|
+
exports.ListServiceVersionsRequest$ = ListServiceVersionsRequest$;
|
|
1947
|
+
exports.ListServiceVersionsResult$ = ListServiceVersionsResult$;
|
|
1948
|
+
exports.LongTermPricingListEntry$ = LongTermPricingListEntry$;
|
|
629
1949
|
exports.LongTermPricingType = LongTermPricingType;
|
|
1950
|
+
exports.NFSOnDeviceServiceConfiguration$ = NFSOnDeviceServiceConfiguration$;
|
|
1951
|
+
exports.Notification$ = Notification$;
|
|
1952
|
+
exports.OnDeviceServiceConfiguration$ = OnDeviceServiceConfiguration$;
|
|
1953
|
+
exports.PickupDetails$ = PickupDetails$;
|
|
630
1954
|
exports.RemoteManagement = RemoteManagement;
|
|
1955
|
+
exports.ReturnShippingLabelAlreadyExistsException = ReturnShippingLabelAlreadyExistsException;
|
|
1956
|
+
exports.ReturnShippingLabelAlreadyExistsException$ = ReturnShippingLabelAlreadyExistsException$;
|
|
1957
|
+
exports.S3OnDeviceServiceConfiguration$ = S3OnDeviceServiceConfiguration$;
|
|
1958
|
+
exports.S3Resource$ = S3Resource$;
|
|
631
1959
|
exports.ServiceName = ServiceName;
|
|
1960
|
+
exports.ServiceVersion$ = ServiceVersion$;
|
|
1961
|
+
exports.Shipment$ = Shipment$;
|
|
632
1962
|
exports.ShipmentState = ShipmentState;
|
|
1963
|
+
exports.ShippingDetails$ = ShippingDetails$;
|
|
633
1964
|
exports.ShippingLabelStatus = ShippingLabelStatus;
|
|
634
1965
|
exports.ShippingOption = ShippingOption;
|
|
635
1966
|
exports.Snowball = Snowball;
|
|
636
1967
|
exports.SnowballCapacity = SnowballCapacity;
|
|
637
1968
|
exports.SnowballClient = SnowballClient;
|
|
1969
|
+
exports.SnowballServiceException = SnowballServiceException;
|
|
1970
|
+
exports.SnowballServiceException$ = SnowballServiceException$;
|
|
638
1971
|
exports.SnowballType = SnowballType;
|
|
1972
|
+
exports.SnowconeDeviceConfiguration$ = SnowconeDeviceConfiguration$;
|
|
639
1973
|
exports.StorageUnit = StorageUnit;
|
|
1974
|
+
exports.TGWOnDeviceServiceConfiguration$ = TGWOnDeviceServiceConfiguration$;
|
|
1975
|
+
exports.TargetOnDeviceService$ = TargetOnDeviceService$;
|
|
1976
|
+
exports.TaxDocuments$ = TaxDocuments$;
|
|
640
1977
|
exports.TransferOption = TransferOption;
|
|
1978
|
+
exports.UnsupportedAddressException = UnsupportedAddressException;
|
|
1979
|
+
exports.UnsupportedAddressException$ = UnsupportedAddressException$;
|
|
1980
|
+
exports.UpdateCluster$ = UpdateCluster$;
|
|
641
1981
|
exports.UpdateClusterCommand = UpdateClusterCommand;
|
|
1982
|
+
exports.UpdateClusterRequest$ = UpdateClusterRequest$;
|
|
1983
|
+
exports.UpdateClusterResult$ = UpdateClusterResult$;
|
|
1984
|
+
exports.UpdateJob$ = UpdateJob$;
|
|
642
1985
|
exports.UpdateJobCommand = UpdateJobCommand;
|
|
1986
|
+
exports.UpdateJobRequest$ = UpdateJobRequest$;
|
|
1987
|
+
exports.UpdateJobResult$ = UpdateJobResult$;
|
|
1988
|
+
exports.UpdateJobShipmentState$ = UpdateJobShipmentState$;
|
|
643
1989
|
exports.UpdateJobShipmentStateCommand = UpdateJobShipmentStateCommand;
|
|
1990
|
+
exports.UpdateJobShipmentStateRequest$ = UpdateJobShipmentStateRequest$;
|
|
1991
|
+
exports.UpdateJobShipmentStateResult$ = UpdateJobShipmentStateResult$;
|
|
1992
|
+
exports.UpdateLongTermPricing$ = UpdateLongTermPricing$;
|
|
644
1993
|
exports.UpdateLongTermPricingCommand = UpdateLongTermPricingCommand;
|
|
1994
|
+
exports.UpdateLongTermPricingRequest$ = UpdateLongTermPricingRequest$;
|
|
1995
|
+
exports.UpdateLongTermPricingResult$ = UpdateLongTermPricingResult$;
|
|
1996
|
+
exports.WirelessConnection$ = WirelessConnection$;
|
|
1997
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
645
1998
|
exports.paginateDescribeAddresses = paginateDescribeAddresses;
|
|
646
1999
|
exports.paginateListClusterJobs = paginateListClusterJobs;
|
|
647
2000
|
exports.paginateListClusters = paginateListClusters;
|