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