@aws-sdk/client-snowball 3.183.0 → 3.185.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/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/Snowball.js +109 -102
- package/dist-es/SnowballClient.js +28 -22
- package/dist-es/commands/CancelClusterCommand.js +28 -21
- package/dist-es/commands/CancelJobCommand.js +28 -21
- package/dist-es/commands/CreateAddressCommand.js +28 -21
- package/dist-es/commands/CreateClusterCommand.js +28 -21
- package/dist-es/commands/CreateJobCommand.js +28 -21
- package/dist-es/commands/CreateLongTermPricingCommand.js +28 -21
- package/dist-es/commands/CreateReturnShippingLabelCommand.js +28 -21
- package/dist-es/commands/DescribeAddressCommand.js +28 -21
- package/dist-es/commands/DescribeAddressesCommand.js +28 -21
- package/dist-es/commands/DescribeClusterCommand.js +28 -21
- package/dist-es/commands/DescribeJobCommand.js +28 -21
- package/dist-es/commands/DescribeReturnShippingLabelCommand.js +28 -21
- package/dist-es/commands/GetJobManifestCommand.js +28 -21
- package/dist-es/commands/GetJobUnlockCodeCommand.js +28 -21
- package/dist-es/commands/GetSnowballUsageCommand.js +28 -21
- package/dist-es/commands/GetSoftwareUpdatesCommand.js +28 -21
- package/dist-es/commands/ListClusterJobsCommand.js +28 -21
- package/dist-es/commands/ListClustersCommand.js +28 -21
- package/dist-es/commands/ListCompatibleImagesCommand.js +28 -21
- package/dist-es/commands/ListJobsCommand.js +28 -21
- package/dist-es/commands/ListLongTermPricingCommand.js +28 -21
- package/dist-es/commands/UpdateClusterCommand.js +28 -21
- package/dist-es/commands/UpdateJobCommand.js +28 -21
- package/dist-es/commands/UpdateJobShipmentStateCommand.js +28 -21
- package/dist-es/commands/UpdateLongTermPricingCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/SnowballServiceException.js +10 -5
- package/dist-es/models/models_0.js +212 -365
- package/dist-es/pagination/DescribeAddressesPaginator.js +68 -25
- package/dist-es/pagination/ListClusterJobsPaginator.js +68 -25
- package/dist-es/pagination/ListClustersPaginator.js +68 -25
- package/dist-es/pagination/ListCompatibleImagesPaginator.js +68 -25
- package/dist-es/pagination/ListJobsPaginator.js +68 -25
- package/dist-es/pagination/ListLongTermPricingPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +2088 -1699
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,70 +1,71 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SnowballServiceException as __BaseException } from "./SnowballServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Object.setPrototypeOf(this, InvalidJobStateException.prototype);
|
|
12
|
-
this.Message = opts.Message;
|
|
3
|
+
var InvalidJobStateException = (function (_super) {
|
|
4
|
+
__extends(InvalidJobStateException, _super);
|
|
5
|
+
function InvalidJobStateException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "InvalidJobStateException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "InvalidJobStateException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, InvalidJobStateException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
13
12
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
13
|
+
return InvalidJobStateException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { InvalidJobStateException };
|
|
16
|
+
var InvalidResourceException = (function (_super) {
|
|
17
|
+
__extends(InvalidResourceException, _super);
|
|
18
|
+
function InvalidResourceException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "InvalidResourceException", $fault: "client" }, opts)) || this;
|
|
20
|
+
_this.name = "InvalidResourceException";
|
|
21
|
+
_this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(_this, InvalidResourceException.prototype);
|
|
23
|
+
_this.Message = opts.Message;
|
|
24
|
+
_this.ResourceType = opts.ResourceType;
|
|
25
|
+
return _this;
|
|
27
26
|
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
27
|
+
return InvalidResourceException;
|
|
28
|
+
}(__BaseException));
|
|
29
|
+
export { InvalidResourceException };
|
|
30
|
+
var KMSRequestFailedException = (function (_super) {
|
|
31
|
+
__extends(KMSRequestFailedException, _super);
|
|
32
|
+
function KMSRequestFailedException(opts) {
|
|
33
|
+
var _this = _super.call(this, __assign({ name: "KMSRequestFailedException", $fault: "client" }, opts)) || this;
|
|
34
|
+
_this.name = "KMSRequestFailedException";
|
|
35
|
+
_this.$fault = "client";
|
|
36
|
+
Object.setPrototypeOf(_this, KMSRequestFailedException.prototype);
|
|
37
|
+
_this.Message = opts.Message;
|
|
38
|
+
return _this;
|
|
40
39
|
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
40
|
+
return KMSRequestFailedException;
|
|
41
|
+
}(__BaseException));
|
|
42
|
+
export { KMSRequestFailedException };
|
|
43
|
+
var InvalidAddressException = (function (_super) {
|
|
44
|
+
__extends(InvalidAddressException, _super);
|
|
45
|
+
function InvalidAddressException(opts) {
|
|
46
|
+
var _this = _super.call(this, __assign({ name: "InvalidAddressException", $fault: "client" }, opts)) || this;
|
|
47
|
+
_this.name = "InvalidAddressException";
|
|
48
|
+
_this.$fault = "client";
|
|
49
|
+
Object.setPrototypeOf(_this, InvalidAddressException.prototype);
|
|
50
|
+
_this.Message = opts.Message;
|
|
51
|
+
return _this;
|
|
53
52
|
}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
53
|
+
return InvalidAddressException;
|
|
54
|
+
}(__BaseException));
|
|
55
|
+
export { InvalidAddressException };
|
|
56
|
+
var UnsupportedAddressException = (function (_super) {
|
|
57
|
+
__extends(UnsupportedAddressException, _super);
|
|
58
|
+
function UnsupportedAddressException(opts) {
|
|
59
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedAddressException", $fault: "client" }, opts)) || this;
|
|
60
|
+
_this.name = "UnsupportedAddressException";
|
|
61
|
+
_this.$fault = "client";
|
|
62
|
+
Object.setPrototypeOf(_this, UnsupportedAddressException.prototype);
|
|
63
|
+
_this.Message = opts.Message;
|
|
64
|
+
return _this;
|
|
66
65
|
}
|
|
67
|
-
|
|
66
|
+
return UnsupportedAddressException;
|
|
67
|
+
}(__BaseException));
|
|
68
|
+
export { UnsupportedAddressException };
|
|
68
69
|
export var JobType;
|
|
69
70
|
(function (JobType) {
|
|
70
71
|
JobType["EXPORT"] = "EXPORT";
|
|
@@ -125,45 +126,45 @@ export var SnowballType;
|
|
|
125
126
|
SnowballType["STANDARD"] = "STANDARD";
|
|
126
127
|
SnowballType["V3_5C"] = "V3_5C";
|
|
127
128
|
})(SnowballType || (SnowballType = {}));
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
Object.setPrototypeOf(this, Ec2RequestFailedException.prototype);
|
|
138
|
-
this.Message = opts.Message;
|
|
129
|
+
var Ec2RequestFailedException = (function (_super) {
|
|
130
|
+
__extends(Ec2RequestFailedException, _super);
|
|
131
|
+
function Ec2RequestFailedException(opts) {
|
|
132
|
+
var _this = _super.call(this, __assign({ name: "Ec2RequestFailedException", $fault: "client" }, opts)) || this;
|
|
133
|
+
_this.name = "Ec2RequestFailedException";
|
|
134
|
+
_this.$fault = "client";
|
|
135
|
+
Object.setPrototypeOf(_this, Ec2RequestFailedException.prototype);
|
|
136
|
+
_this.Message = opts.Message;
|
|
137
|
+
return _this;
|
|
139
138
|
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
139
|
+
return Ec2RequestFailedException;
|
|
140
|
+
}(__BaseException));
|
|
141
|
+
export { Ec2RequestFailedException };
|
|
142
|
+
var InvalidInputCombinationException = (function (_super) {
|
|
143
|
+
__extends(InvalidInputCombinationException, _super);
|
|
144
|
+
function InvalidInputCombinationException(opts) {
|
|
145
|
+
var _this = _super.call(this, __assign({ name: "InvalidInputCombinationException", $fault: "client" }, opts)) || this;
|
|
146
|
+
_this.name = "InvalidInputCombinationException";
|
|
147
|
+
_this.$fault = "client";
|
|
148
|
+
Object.setPrototypeOf(_this, InvalidInputCombinationException.prototype);
|
|
149
|
+
_this.Message = opts.Message;
|
|
150
|
+
return _this;
|
|
152
151
|
}
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
152
|
+
return InvalidInputCombinationException;
|
|
153
|
+
}(__BaseException));
|
|
154
|
+
export { InvalidInputCombinationException };
|
|
155
|
+
var ClusterLimitExceededException = (function (_super) {
|
|
156
|
+
__extends(ClusterLimitExceededException, _super);
|
|
157
|
+
function ClusterLimitExceededException(opts) {
|
|
158
|
+
var _this = _super.call(this, __assign({ name: "ClusterLimitExceededException", $fault: "client" }, opts)) || this;
|
|
159
|
+
_this.name = "ClusterLimitExceededException";
|
|
160
|
+
_this.$fault = "client";
|
|
161
|
+
Object.setPrototypeOf(_this, ClusterLimitExceededException.prototype);
|
|
162
|
+
_this.Message = opts.Message;
|
|
163
|
+
return _this;
|
|
165
164
|
}
|
|
166
|
-
|
|
165
|
+
return ClusterLimitExceededException;
|
|
166
|
+
}(__BaseException));
|
|
167
|
+
export { ClusterLimitExceededException };
|
|
167
168
|
export var SnowballCapacity;
|
|
168
169
|
(function (SnowballCapacity) {
|
|
169
170
|
SnowballCapacity["NO_PREFERENCE"] = "NoPreference";
|
|
@@ -181,20 +182,20 @@ export var LongTermPricingType;
|
|
|
181
182
|
LongTermPricingType["ONE_YEAR"] = "OneYear";
|
|
182
183
|
LongTermPricingType["THREE_YEAR"] = "ThreeYear";
|
|
183
184
|
})(LongTermPricingType || (LongTermPricingType = {}));
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
this.ConflictResource = opts.ConflictResource;
|
|
195
|
-
this.Message = opts.Message;
|
|
185
|
+
var ConflictException = (function (_super) {
|
|
186
|
+
__extends(ConflictException, _super);
|
|
187
|
+
function ConflictException(opts) {
|
|
188
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
189
|
+
_this.name = "ConflictException";
|
|
190
|
+
_this.$fault = "client";
|
|
191
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
192
|
+
_this.ConflictResource = opts.ConflictResource;
|
|
193
|
+
_this.Message = opts.Message;
|
|
194
|
+
return _this;
|
|
196
195
|
}
|
|
197
|
-
|
|
196
|
+
return ConflictException;
|
|
197
|
+
}(__BaseException));
|
|
198
|
+
export { ConflictException };
|
|
198
199
|
export var ShippingLabelStatus;
|
|
199
200
|
(function (ShippingLabelStatus) {
|
|
200
201
|
ShippingLabelStatus["FAILED"] = "Failed";
|
|
@@ -202,32 +203,32 @@ export var ShippingLabelStatus;
|
|
|
202
203
|
ShippingLabelStatus["SUCCEEDED"] = "Succeeded";
|
|
203
204
|
ShippingLabelStatus["TIMED_OUT"] = "TimedOut";
|
|
204
205
|
})(ShippingLabelStatus || (ShippingLabelStatus = {}));
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
Object.setPrototypeOf(this, ReturnShippingLabelAlreadyExistsException.prototype);
|
|
215
|
-
this.Message = opts.Message;
|
|
206
|
+
var ReturnShippingLabelAlreadyExistsException = (function (_super) {
|
|
207
|
+
__extends(ReturnShippingLabelAlreadyExistsException, _super);
|
|
208
|
+
function ReturnShippingLabelAlreadyExistsException(opts) {
|
|
209
|
+
var _this = _super.call(this, __assign({ name: "ReturnShippingLabelAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
210
|
+
_this.name = "ReturnShippingLabelAlreadyExistsException";
|
|
211
|
+
_this.$fault = "client";
|
|
212
|
+
Object.setPrototypeOf(_this, ReturnShippingLabelAlreadyExistsException.prototype);
|
|
213
|
+
_this.Message = opts.Message;
|
|
214
|
+
return _this;
|
|
216
215
|
}
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
216
|
+
return ReturnShippingLabelAlreadyExistsException;
|
|
217
|
+
}(__BaseException));
|
|
218
|
+
export { ReturnShippingLabelAlreadyExistsException };
|
|
219
|
+
var InvalidNextTokenException = (function (_super) {
|
|
220
|
+
__extends(InvalidNextTokenException, _super);
|
|
221
|
+
function InvalidNextTokenException(opts) {
|
|
222
|
+
var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
|
|
223
|
+
_this.name = "InvalidNextTokenException";
|
|
224
|
+
_this.$fault = "client";
|
|
225
|
+
Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
|
|
226
|
+
_this.Message = opts.Message;
|
|
227
|
+
return _this;
|
|
229
228
|
}
|
|
230
|
-
|
|
229
|
+
return InvalidNextTokenException;
|
|
230
|
+
}(__BaseException));
|
|
231
|
+
export { InvalidNextTokenException };
|
|
231
232
|
export var ClusterState;
|
|
232
233
|
(function (ClusterState) {
|
|
233
234
|
ClusterState["AWAITING_QUORUM"] = "AwaitingQuorum";
|
|
@@ -241,234 +242,80 @@ export var ShipmentState;
|
|
|
241
242
|
ShipmentState["RECEIVED"] = "RECEIVED";
|
|
242
243
|
ShipmentState["RETURNED"] = "RETURNED";
|
|
243
244
|
})(ShipmentState || (ShipmentState = {}));
|
|
244
|
-
export
|
|
245
|
-
|
|
246
|
-
});
|
|
247
|
-
export
|
|
248
|
-
|
|
249
|
-
});
|
|
250
|
-
export
|
|
251
|
-
|
|
252
|
-
});
|
|
253
|
-
export
|
|
254
|
-
|
|
255
|
-
});
|
|
256
|
-
export
|
|
257
|
-
|
|
258
|
-
});
|
|
259
|
-
export
|
|
260
|
-
|
|
261
|
-
});
|
|
262
|
-
export
|
|
263
|
-
|
|
264
|
-
});
|
|
265
|
-
export
|
|
266
|
-
|
|
267
|
-
});
|
|
268
|
-
export
|
|
269
|
-
|
|
270
|
-
});
|
|
271
|
-
export
|
|
272
|
-
|
|
273
|
-
});
|
|
274
|
-
export
|
|
275
|
-
|
|
276
|
-
});
|
|
277
|
-
export
|
|
278
|
-
|
|
279
|
-
});
|
|
280
|
-
export
|
|
281
|
-
|
|
282
|
-
});
|
|
283
|
-
export
|
|
284
|
-
|
|
285
|
-
});
|
|
286
|
-
export
|
|
287
|
-
|
|
288
|
-
});
|
|
289
|
-
export
|
|
290
|
-
|
|
291
|
-
});
|
|
292
|
-
export
|
|
293
|
-
|
|
294
|
-
});
|
|
295
|
-
export
|
|
296
|
-
|
|
297
|
-
});
|
|
298
|
-
export
|
|
299
|
-
|
|
300
|
-
});
|
|
301
|
-
export
|
|
302
|
-
|
|
303
|
-
});
|
|
304
|
-
export
|
|
305
|
-
|
|
306
|
-
});
|
|
307
|
-
export
|
|
308
|
-
|
|
309
|
-
});
|
|
310
|
-
export
|
|
311
|
-
|
|
312
|
-
});
|
|
313
|
-
export
|
|
314
|
-
|
|
315
|
-
});
|
|
316
|
-
export
|
|
317
|
-
|
|
318
|
-
});
|
|
319
|
-
export
|
|
320
|
-
|
|
321
|
-
});
|
|
322
|
-
export const CreateJobResultFilterSensitiveLog = (obj) => ({
|
|
323
|
-
...obj,
|
|
324
|
-
});
|
|
325
|
-
export const CreateLongTermPricingRequestFilterSensitiveLog = (obj) => ({
|
|
326
|
-
...obj,
|
|
327
|
-
});
|
|
328
|
-
export const CreateLongTermPricingResultFilterSensitiveLog = (obj) => ({
|
|
329
|
-
...obj,
|
|
330
|
-
});
|
|
331
|
-
export const CreateReturnShippingLabelRequestFilterSensitiveLog = (obj) => ({
|
|
332
|
-
...obj,
|
|
333
|
-
});
|
|
334
|
-
export const CreateReturnShippingLabelResultFilterSensitiveLog = (obj) => ({
|
|
335
|
-
...obj,
|
|
336
|
-
});
|
|
337
|
-
export const DescribeAddressRequestFilterSensitiveLog = (obj) => ({
|
|
338
|
-
...obj,
|
|
339
|
-
});
|
|
340
|
-
export const DescribeAddressResultFilterSensitiveLog = (obj) => ({
|
|
341
|
-
...obj,
|
|
342
|
-
});
|
|
343
|
-
export const DescribeAddressesRequestFilterSensitiveLog = (obj) => ({
|
|
344
|
-
...obj,
|
|
345
|
-
});
|
|
346
|
-
export const DescribeAddressesResultFilterSensitiveLog = (obj) => ({
|
|
347
|
-
...obj,
|
|
348
|
-
});
|
|
349
|
-
export const DescribeClusterRequestFilterSensitiveLog = (obj) => ({
|
|
350
|
-
...obj,
|
|
351
|
-
});
|
|
352
|
-
export const ClusterMetadataFilterSensitiveLog = (obj) => ({
|
|
353
|
-
...obj,
|
|
354
|
-
});
|
|
355
|
-
export const DescribeClusterResultFilterSensitiveLog = (obj) => ({
|
|
356
|
-
...obj,
|
|
357
|
-
});
|
|
358
|
-
export const DescribeJobRequestFilterSensitiveLog = (obj) => ({
|
|
359
|
-
...obj,
|
|
360
|
-
});
|
|
361
|
-
export const DataTransferFilterSensitiveLog = (obj) => ({
|
|
362
|
-
...obj,
|
|
363
|
-
});
|
|
364
|
-
export const JobLogsFilterSensitiveLog = (obj) => ({
|
|
365
|
-
...obj,
|
|
366
|
-
});
|
|
367
|
-
export const ShipmentFilterSensitiveLog = (obj) => ({
|
|
368
|
-
...obj,
|
|
369
|
-
});
|
|
370
|
-
export const ShippingDetailsFilterSensitiveLog = (obj) => ({
|
|
371
|
-
...obj,
|
|
372
|
-
});
|
|
373
|
-
export const JobMetadataFilterSensitiveLog = (obj) => ({
|
|
374
|
-
...obj,
|
|
375
|
-
});
|
|
376
|
-
export const DescribeJobResultFilterSensitiveLog = (obj) => ({
|
|
377
|
-
...obj,
|
|
378
|
-
});
|
|
379
|
-
export const DescribeReturnShippingLabelRequestFilterSensitiveLog = (obj) => ({
|
|
380
|
-
...obj,
|
|
381
|
-
});
|
|
382
|
-
export const DescribeReturnShippingLabelResultFilterSensitiveLog = (obj) => ({
|
|
383
|
-
...obj,
|
|
384
|
-
});
|
|
385
|
-
export const GetJobManifestRequestFilterSensitiveLog = (obj) => ({
|
|
386
|
-
...obj,
|
|
387
|
-
});
|
|
388
|
-
export const GetJobManifestResultFilterSensitiveLog = (obj) => ({
|
|
389
|
-
...obj,
|
|
390
|
-
});
|
|
391
|
-
export const GetJobUnlockCodeRequestFilterSensitiveLog = (obj) => ({
|
|
392
|
-
...obj,
|
|
393
|
-
});
|
|
394
|
-
export const GetJobUnlockCodeResultFilterSensitiveLog = (obj) => ({
|
|
395
|
-
...obj,
|
|
396
|
-
});
|
|
397
|
-
export const GetSnowballUsageRequestFilterSensitiveLog = (obj) => ({
|
|
398
|
-
...obj,
|
|
399
|
-
});
|
|
400
|
-
export const GetSnowballUsageResultFilterSensitiveLog = (obj) => ({
|
|
401
|
-
...obj,
|
|
402
|
-
});
|
|
403
|
-
export const GetSoftwareUpdatesRequestFilterSensitiveLog = (obj) => ({
|
|
404
|
-
...obj,
|
|
405
|
-
});
|
|
406
|
-
export const GetSoftwareUpdatesResultFilterSensitiveLog = (obj) => ({
|
|
407
|
-
...obj,
|
|
408
|
-
});
|
|
409
|
-
export const ListClusterJobsRequestFilterSensitiveLog = (obj) => ({
|
|
410
|
-
...obj,
|
|
411
|
-
});
|
|
412
|
-
export const JobListEntryFilterSensitiveLog = (obj) => ({
|
|
413
|
-
...obj,
|
|
414
|
-
});
|
|
415
|
-
export const ListClusterJobsResultFilterSensitiveLog = (obj) => ({
|
|
416
|
-
...obj,
|
|
417
|
-
});
|
|
418
|
-
export const ListClustersRequestFilterSensitiveLog = (obj) => ({
|
|
419
|
-
...obj,
|
|
420
|
-
});
|
|
421
|
-
export const ClusterListEntryFilterSensitiveLog = (obj) => ({
|
|
422
|
-
...obj,
|
|
423
|
-
});
|
|
424
|
-
export const ListClustersResultFilterSensitiveLog = (obj) => ({
|
|
425
|
-
...obj,
|
|
426
|
-
});
|
|
427
|
-
export const ListCompatibleImagesRequestFilterSensitiveLog = (obj) => ({
|
|
428
|
-
...obj,
|
|
429
|
-
});
|
|
430
|
-
export const CompatibleImageFilterSensitiveLog = (obj) => ({
|
|
431
|
-
...obj,
|
|
432
|
-
});
|
|
433
|
-
export const ListCompatibleImagesResultFilterSensitiveLog = (obj) => ({
|
|
434
|
-
...obj,
|
|
435
|
-
});
|
|
436
|
-
export const ListJobsRequestFilterSensitiveLog = (obj) => ({
|
|
437
|
-
...obj,
|
|
438
|
-
});
|
|
439
|
-
export const ListJobsResultFilterSensitiveLog = (obj) => ({
|
|
440
|
-
...obj,
|
|
441
|
-
});
|
|
442
|
-
export const ListLongTermPricingRequestFilterSensitiveLog = (obj) => ({
|
|
443
|
-
...obj,
|
|
444
|
-
});
|
|
445
|
-
export const LongTermPricingListEntryFilterSensitiveLog = (obj) => ({
|
|
446
|
-
...obj,
|
|
447
|
-
});
|
|
448
|
-
export const ListLongTermPricingResultFilterSensitiveLog = (obj) => ({
|
|
449
|
-
...obj,
|
|
450
|
-
});
|
|
451
|
-
export const UpdateClusterRequestFilterSensitiveLog = (obj) => ({
|
|
452
|
-
...obj,
|
|
453
|
-
});
|
|
454
|
-
export const UpdateClusterResultFilterSensitiveLog = (obj) => ({
|
|
455
|
-
...obj,
|
|
456
|
-
});
|
|
457
|
-
export const UpdateJobRequestFilterSensitiveLog = (obj) => ({
|
|
458
|
-
...obj,
|
|
459
|
-
});
|
|
460
|
-
export const UpdateJobResultFilterSensitiveLog = (obj) => ({
|
|
461
|
-
...obj,
|
|
462
|
-
});
|
|
463
|
-
export const UpdateJobShipmentStateRequestFilterSensitiveLog = (obj) => ({
|
|
464
|
-
...obj,
|
|
465
|
-
});
|
|
466
|
-
export const UpdateJobShipmentStateResultFilterSensitiveLog = (obj) => ({
|
|
467
|
-
...obj,
|
|
468
|
-
});
|
|
469
|
-
export const UpdateLongTermPricingRequestFilterSensitiveLog = (obj) => ({
|
|
470
|
-
...obj,
|
|
471
|
-
});
|
|
472
|
-
export const UpdateLongTermPricingResultFilterSensitiveLog = (obj) => ({
|
|
473
|
-
...obj,
|
|
474
|
-
});
|
|
245
|
+
export var AddressFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
246
|
+
export var CancelClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
+
export var CancelClusterResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
248
|
+
export var CancelJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
249
|
+
export var CancelJobResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
250
|
+
export var CreateAddressRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
+
export var CreateAddressResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
252
|
+
export var NotificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
253
|
+
export var NFSOnDeviceServiceConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
254
|
+
export var TGWOnDeviceServiceConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
255
|
+
export var OnDeviceServiceConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
256
|
+
export var Ec2AmiResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
export var EventTriggerDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
+
export var LambdaResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
export var KeyRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
260
|
+
export var TargetOnDeviceServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
export var S3ResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
+
export var JobResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
|
+
export var INDTaxDocumentsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
264
|
+
export var TaxDocumentsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
export var CreateClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
266
|
+
export var CreateClusterResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
+
export var WirelessConnectionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
|
+
export var SnowconeDeviceConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
|
+
export var DeviceConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
+
export var CreateJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var CreateJobResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
+
export var CreateLongTermPricingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
export var CreateLongTermPricingResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
+
export var CreateReturnShippingLabelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
+
export var CreateReturnShippingLabelResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
|
+
export var DescribeAddressRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
|
+
export var DescribeAddressResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var DescribeAddressesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
+
export var DescribeAddressesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
+
export var DescribeClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
281
|
+
export var ClusterMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
+
export var DescribeClusterResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
283
|
+
export var DescribeJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var DataTransferFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var JobLogsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
+
export var ShipmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
|
+
export var ShippingDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var JobMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var DescribeJobResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
export var DescribeReturnShippingLabelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var DescribeReturnShippingLabelResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
export var GetJobManifestRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
293
|
+
export var GetJobManifestResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
export var GetJobUnlockCodeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var GetJobUnlockCodeResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var GetSnowballUsageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
|
+
export var GetSnowballUsageResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
export var GetSoftwareUpdatesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
export var GetSoftwareUpdatesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
|
+
export var ListClusterJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
301
|
+
export var JobListEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
+
export var ListClusterJobsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
+
export var ListClustersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
304
|
+
export var ClusterListEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
305
|
+
export var ListClustersResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
+
export var ListCompatibleImagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
export var CompatibleImageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
|
+
export var ListCompatibleImagesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
+
export var ListJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
+
export var ListJobsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var ListLongTermPricingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
312
|
+
export var LongTermPricingListEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var ListLongTermPricingResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
export var UpdateClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var UpdateClusterResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var UpdateJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var UpdateJobResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var UpdateJobShipmentStateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var UpdateJobShipmentStateResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
|
+
export var UpdateLongTermPricingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var UpdateLongTermPricingResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|