@aws-sdk/client-snowball 3.181.0 → 3.183.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.
Files changed (66) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/models/models_0.js +2 -0
  3. package/dist-cjs/pagination/ListClusterJobsPaginator.js +36 -0
  4. package/dist-cjs/pagination/ListClustersPaginator.js +36 -0
  5. package/dist-cjs/pagination/ListCompatibleImagesPaginator.js +36 -0
  6. package/dist-cjs/pagination/ListLongTermPricingPaginator.js +36 -0
  7. package/dist-cjs/pagination/index.js +4 -0
  8. package/dist-es/Snowball.js +102 -109
  9. package/dist-es/SnowballClient.js +22 -28
  10. package/dist-es/commands/CancelClusterCommand.js +21 -28
  11. package/dist-es/commands/CancelJobCommand.js +21 -28
  12. package/dist-es/commands/CreateAddressCommand.js +21 -28
  13. package/dist-es/commands/CreateClusterCommand.js +21 -28
  14. package/dist-es/commands/CreateJobCommand.js +21 -28
  15. package/dist-es/commands/CreateLongTermPricingCommand.js +21 -28
  16. package/dist-es/commands/CreateReturnShippingLabelCommand.js +21 -28
  17. package/dist-es/commands/DescribeAddressCommand.js +21 -28
  18. package/dist-es/commands/DescribeAddressesCommand.js +21 -28
  19. package/dist-es/commands/DescribeClusterCommand.js +21 -28
  20. package/dist-es/commands/DescribeJobCommand.js +21 -28
  21. package/dist-es/commands/DescribeReturnShippingLabelCommand.js +21 -28
  22. package/dist-es/commands/GetJobManifestCommand.js +21 -28
  23. package/dist-es/commands/GetJobUnlockCodeCommand.js +21 -28
  24. package/dist-es/commands/GetSnowballUsageCommand.js +21 -28
  25. package/dist-es/commands/GetSoftwareUpdatesCommand.js +21 -28
  26. package/dist-es/commands/ListClusterJobsCommand.js +21 -28
  27. package/dist-es/commands/ListClustersCommand.js +21 -28
  28. package/dist-es/commands/ListCompatibleImagesCommand.js +21 -28
  29. package/dist-es/commands/ListJobsCommand.js +21 -28
  30. package/dist-es/commands/ListLongTermPricingCommand.js +21 -28
  31. package/dist-es/commands/UpdateClusterCommand.js +21 -28
  32. package/dist-es/commands/UpdateJobCommand.js +21 -28
  33. package/dist-es/commands/UpdateJobShipmentStateCommand.js +21 -28
  34. package/dist-es/commands/UpdateLongTermPricingCommand.js +21 -28
  35. package/dist-es/endpoints.js +8 -8
  36. package/dist-es/models/SnowballServiceException.js +5 -10
  37. package/dist-es/models/models_0.js +367 -212
  38. package/dist-es/pagination/DescribeAddressesPaginator.js +25 -68
  39. package/dist-es/pagination/ListClusterJobsPaginator.js +32 -0
  40. package/dist-es/pagination/ListClustersPaginator.js +32 -0
  41. package/dist-es/pagination/ListCompatibleImagesPaginator.js +32 -0
  42. package/dist-es/pagination/ListJobsPaginator.js +25 -68
  43. package/dist-es/pagination/ListLongTermPricingPaginator.js +32 -0
  44. package/dist-es/pagination/index.js +4 -0
  45. package/dist-es/protocols/Aws_json1_1.js +1699 -2088
  46. package/dist-es/runtimeConfig.browser.js +26 -12
  47. package/dist-es/runtimeConfig.js +30 -12
  48. package/dist-es/runtimeConfig.native.js +8 -5
  49. package/dist-es/runtimeConfig.shared.js +8 -11
  50. package/dist-types/Snowball.d.ts +21 -4
  51. package/dist-types/commands/CreateJobCommand.d.ts +14 -1
  52. package/dist-types/commands/GetJobManifestCommand.d.ts +4 -2
  53. package/dist-types/commands/GetJobUnlockCodeCommand.d.ts +3 -1
  54. package/dist-types/models/models_0.d.ts +9 -6
  55. package/dist-types/pagination/ListClusterJobsPaginator.d.ts +4 -0
  56. package/dist-types/pagination/ListClustersPaginator.d.ts +4 -0
  57. package/dist-types/pagination/ListCompatibleImagesPaginator.d.ts +4 -0
  58. package/dist-types/pagination/ListLongTermPricingPaginator.d.ts +4 -0
  59. package/dist-types/pagination/index.d.ts +4 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +2 -0
  61. package/dist-types/ts3.4/pagination/ListClusterJobsPaginator.d.ts +11 -0
  62. package/dist-types/ts3.4/pagination/ListClustersPaginator.d.ts +11 -0
  63. package/dist-types/ts3.4/pagination/ListCompatibleImagesPaginator.d.ts +11 -0
  64. package/dist-types/ts3.4/pagination/ListLongTermPricingPaginator.d.ts +11 -0
  65. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  66. package/package.json +33 -33
@@ -1,71 +1,70 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { SnowballServiceException as __BaseException } from "./SnowballServiceException";
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;
2
+ export class InvalidJobStateException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "InvalidJobStateException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "InvalidJobStateException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, InvalidJobStateException.prototype);
12
+ this.Message = opts.Message;
12
13
  }
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;
14
+ }
15
+ export class InvalidResourceException extends __BaseException {
16
+ constructor(opts) {
17
+ super({
18
+ name: "InvalidResourceException",
19
+ $fault: "client",
20
+ ...opts,
21
+ });
22
+ this.name = "InvalidResourceException";
23
+ this.$fault = "client";
24
+ Object.setPrototypeOf(this, InvalidResourceException.prototype);
25
+ this.Message = opts.Message;
26
+ this.ResourceType = opts.ResourceType;
26
27
  }
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;
28
+ }
29
+ export class KMSRequestFailedException extends __BaseException {
30
+ constructor(opts) {
31
+ super({
32
+ name: "KMSRequestFailedException",
33
+ $fault: "client",
34
+ ...opts,
35
+ });
36
+ this.name = "KMSRequestFailedException";
37
+ this.$fault = "client";
38
+ Object.setPrototypeOf(this, KMSRequestFailedException.prototype);
39
+ this.Message = opts.Message;
39
40
  }
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;
41
+ }
42
+ export class InvalidAddressException extends __BaseException {
43
+ constructor(opts) {
44
+ super({
45
+ name: "InvalidAddressException",
46
+ $fault: "client",
47
+ ...opts,
48
+ });
49
+ this.name = "InvalidAddressException";
50
+ this.$fault = "client";
51
+ Object.setPrototypeOf(this, InvalidAddressException.prototype);
52
+ this.Message = opts.Message;
52
53
  }
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;
54
+ }
55
+ export class UnsupportedAddressException extends __BaseException {
56
+ constructor(opts) {
57
+ super({
58
+ name: "UnsupportedAddressException",
59
+ $fault: "client",
60
+ ...opts,
61
+ });
62
+ this.name = "UnsupportedAddressException";
63
+ this.$fault = "client";
64
+ Object.setPrototypeOf(this, UnsupportedAddressException.prototype);
65
+ this.Message = opts.Message;
65
66
  }
66
- return UnsupportedAddressException;
67
- }(__BaseException));
68
- export { UnsupportedAddressException };
67
+ }
69
68
  export var JobType;
70
69
  (function (JobType) {
71
70
  JobType["EXPORT"] = "EXPORT";
@@ -124,51 +123,53 @@ export var SnowballType;
124
123
  SnowballType["SNC1_HDD"] = "SNC1_HDD";
125
124
  SnowballType["SNC1_SSD"] = "SNC1_SSD";
126
125
  SnowballType["STANDARD"] = "STANDARD";
126
+ SnowballType["V3_5C"] = "V3_5C";
127
127
  })(SnowballType || (SnowballType = {}));
128
- var Ec2RequestFailedException = (function (_super) {
129
- __extends(Ec2RequestFailedException, _super);
130
- function Ec2RequestFailedException(opts) {
131
- var _this = _super.call(this, __assign({ name: "Ec2RequestFailedException", $fault: "client" }, opts)) || this;
132
- _this.name = "Ec2RequestFailedException";
133
- _this.$fault = "client";
134
- Object.setPrototypeOf(_this, Ec2RequestFailedException.prototype);
135
- _this.Message = opts.Message;
136
- return _this;
128
+ export class Ec2RequestFailedException extends __BaseException {
129
+ constructor(opts) {
130
+ super({
131
+ name: "Ec2RequestFailedException",
132
+ $fault: "client",
133
+ ...opts,
134
+ });
135
+ this.name = "Ec2RequestFailedException";
136
+ this.$fault = "client";
137
+ Object.setPrototypeOf(this, Ec2RequestFailedException.prototype);
138
+ this.Message = opts.Message;
137
139
  }
138
- return Ec2RequestFailedException;
139
- }(__BaseException));
140
- export { Ec2RequestFailedException };
141
- var InvalidInputCombinationException = (function (_super) {
142
- __extends(InvalidInputCombinationException, _super);
143
- function InvalidInputCombinationException(opts) {
144
- var _this = _super.call(this, __assign({ name: "InvalidInputCombinationException", $fault: "client" }, opts)) || this;
145
- _this.name = "InvalidInputCombinationException";
146
- _this.$fault = "client";
147
- Object.setPrototypeOf(_this, InvalidInputCombinationException.prototype);
148
- _this.Message = opts.Message;
149
- return _this;
140
+ }
141
+ export class InvalidInputCombinationException extends __BaseException {
142
+ constructor(opts) {
143
+ super({
144
+ name: "InvalidInputCombinationException",
145
+ $fault: "client",
146
+ ...opts,
147
+ });
148
+ this.name = "InvalidInputCombinationException";
149
+ this.$fault = "client";
150
+ Object.setPrototypeOf(this, InvalidInputCombinationException.prototype);
151
+ this.Message = opts.Message;
150
152
  }
151
- return InvalidInputCombinationException;
152
- }(__BaseException));
153
- export { InvalidInputCombinationException };
154
- var ClusterLimitExceededException = (function (_super) {
155
- __extends(ClusterLimitExceededException, _super);
156
- function ClusterLimitExceededException(opts) {
157
- var _this = _super.call(this, __assign({ name: "ClusterLimitExceededException", $fault: "client" }, opts)) || this;
158
- _this.name = "ClusterLimitExceededException";
159
- _this.$fault = "client";
160
- Object.setPrototypeOf(_this, ClusterLimitExceededException.prototype);
161
- _this.Message = opts.Message;
162
- return _this;
153
+ }
154
+ export class ClusterLimitExceededException extends __BaseException {
155
+ constructor(opts) {
156
+ super({
157
+ name: "ClusterLimitExceededException",
158
+ $fault: "client",
159
+ ...opts,
160
+ });
161
+ this.name = "ClusterLimitExceededException";
162
+ this.$fault = "client";
163
+ Object.setPrototypeOf(this, ClusterLimitExceededException.prototype);
164
+ this.Message = opts.Message;
163
165
  }
164
- return ClusterLimitExceededException;
165
- }(__BaseException));
166
- export { ClusterLimitExceededException };
166
+ }
167
167
  export var SnowballCapacity;
168
168
  (function (SnowballCapacity) {
169
169
  SnowballCapacity["NO_PREFERENCE"] = "NoPreference";
170
170
  SnowballCapacity["T100"] = "T100";
171
171
  SnowballCapacity["T14"] = "T14";
172
+ SnowballCapacity["T32"] = "T32";
172
173
  SnowballCapacity["T42"] = "T42";
173
174
  SnowballCapacity["T50"] = "T50";
174
175
  SnowballCapacity["T8"] = "T8";
@@ -180,20 +181,20 @@ export var LongTermPricingType;
180
181
  LongTermPricingType["ONE_YEAR"] = "OneYear";
181
182
  LongTermPricingType["THREE_YEAR"] = "ThreeYear";
182
183
  })(LongTermPricingType || (LongTermPricingType = {}));
183
- var ConflictException = (function (_super) {
184
- __extends(ConflictException, _super);
185
- function ConflictException(opts) {
186
- var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
187
- _this.name = "ConflictException";
188
- _this.$fault = "client";
189
- Object.setPrototypeOf(_this, ConflictException.prototype);
190
- _this.ConflictResource = opts.ConflictResource;
191
- _this.Message = opts.Message;
192
- return _this;
184
+ export class ConflictException extends __BaseException {
185
+ constructor(opts) {
186
+ super({
187
+ name: "ConflictException",
188
+ $fault: "client",
189
+ ...opts,
190
+ });
191
+ this.name = "ConflictException";
192
+ this.$fault = "client";
193
+ Object.setPrototypeOf(this, ConflictException.prototype);
194
+ this.ConflictResource = opts.ConflictResource;
195
+ this.Message = opts.Message;
193
196
  }
194
- return ConflictException;
195
- }(__BaseException));
196
- export { ConflictException };
197
+ }
197
198
  export var ShippingLabelStatus;
198
199
  (function (ShippingLabelStatus) {
199
200
  ShippingLabelStatus["FAILED"] = "Failed";
@@ -201,32 +202,32 @@ export var ShippingLabelStatus;
201
202
  ShippingLabelStatus["SUCCEEDED"] = "Succeeded";
202
203
  ShippingLabelStatus["TIMED_OUT"] = "TimedOut";
203
204
  })(ShippingLabelStatus || (ShippingLabelStatus = {}));
204
- var ReturnShippingLabelAlreadyExistsException = (function (_super) {
205
- __extends(ReturnShippingLabelAlreadyExistsException, _super);
206
- function ReturnShippingLabelAlreadyExistsException(opts) {
207
- var _this = _super.call(this, __assign({ name: "ReturnShippingLabelAlreadyExistsException", $fault: "client" }, opts)) || this;
208
- _this.name = "ReturnShippingLabelAlreadyExistsException";
209
- _this.$fault = "client";
210
- Object.setPrototypeOf(_this, ReturnShippingLabelAlreadyExistsException.prototype);
211
- _this.Message = opts.Message;
212
- return _this;
205
+ export class ReturnShippingLabelAlreadyExistsException extends __BaseException {
206
+ constructor(opts) {
207
+ super({
208
+ name: "ReturnShippingLabelAlreadyExistsException",
209
+ $fault: "client",
210
+ ...opts,
211
+ });
212
+ this.name = "ReturnShippingLabelAlreadyExistsException";
213
+ this.$fault = "client";
214
+ Object.setPrototypeOf(this, ReturnShippingLabelAlreadyExistsException.prototype);
215
+ this.Message = opts.Message;
213
216
  }
214
- return ReturnShippingLabelAlreadyExistsException;
215
- }(__BaseException));
216
- export { ReturnShippingLabelAlreadyExistsException };
217
- var InvalidNextTokenException = (function (_super) {
218
- __extends(InvalidNextTokenException, _super);
219
- function InvalidNextTokenException(opts) {
220
- var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
221
- _this.name = "InvalidNextTokenException";
222
- _this.$fault = "client";
223
- Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
224
- _this.Message = opts.Message;
225
- return _this;
217
+ }
218
+ export class InvalidNextTokenException extends __BaseException {
219
+ constructor(opts) {
220
+ super({
221
+ name: "InvalidNextTokenException",
222
+ $fault: "client",
223
+ ...opts,
224
+ });
225
+ this.name = "InvalidNextTokenException";
226
+ this.$fault = "client";
227
+ Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
228
+ this.Message = opts.Message;
226
229
  }
227
- return InvalidNextTokenException;
228
- }(__BaseException));
229
- export { InvalidNextTokenException };
230
+ }
230
231
  export var ClusterState;
231
232
  (function (ClusterState) {
232
233
  ClusterState["AWAITING_QUORUM"] = "AwaitingQuorum";
@@ -240,80 +241,234 @@ export var ShipmentState;
240
241
  ShipmentState["RECEIVED"] = "RECEIVED";
241
242
  ShipmentState["RETURNED"] = "RETURNED";
242
243
  })(ShipmentState || (ShipmentState = {}));
243
- export var AddressFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
244
- export var CancelClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
245
- export var CancelClusterResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
246
- export var CancelJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
247
- export var CancelJobResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
248
- export var CreateAddressRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
249
- export var CreateAddressResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
250
- export var NotificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
251
- export var NFSOnDeviceServiceConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
252
- export var TGWOnDeviceServiceConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
253
- export var OnDeviceServiceConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
254
- export var Ec2AmiResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
255
- export var EventTriggerDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
256
- export var LambdaResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
257
- export var KeyRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
258
- export var TargetOnDeviceServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
259
- export var S3ResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
260
- export var JobResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
261
- export var INDTaxDocumentsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
262
- export var TaxDocumentsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
263
- export var CreateClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
264
- export var CreateClusterResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
265
- export var WirelessConnectionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
266
- export var SnowconeDeviceConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
267
- export var DeviceConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
268
- export var CreateJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
269
- export var CreateJobResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
270
- export var CreateLongTermPricingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
271
- export var CreateLongTermPricingResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
- export var CreateReturnShippingLabelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
273
- export var CreateReturnShippingLabelResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
274
- export var DescribeAddressRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
275
- export var DescribeAddressResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
276
- export var DescribeAddressesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
277
- export var DescribeAddressesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
278
- export var DescribeClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
- export var ClusterMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
- export var DescribeClusterResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
281
- export var DescribeJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
282
- export var DataTransferFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
283
- export var JobLogsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
284
- export var ShipmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
- export var ShippingDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
286
- export var JobMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
287
- export var DescribeJobResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
288
- export var DescribeReturnShippingLabelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
289
- export var DescribeReturnShippingLabelResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
290
- export var GetJobManifestRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
291
- export var GetJobManifestResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
292
- export var GetJobUnlockCodeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
293
- export var GetJobUnlockCodeResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
294
- export var GetSnowballUsageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
295
- export var GetSnowballUsageResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
296
- export var GetSoftwareUpdatesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
297
- export var GetSoftwareUpdatesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
298
- export var ListClusterJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
299
- export var JobListEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
300
- export var ListClusterJobsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
301
- export var ListClustersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
302
- export var ClusterListEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
303
- export var ListClustersResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
304
- export var ListCompatibleImagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
305
- export var CompatibleImageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
306
- export var ListCompatibleImagesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
307
- export var ListJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
308
- export var ListJobsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
309
- export var ListLongTermPricingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
310
- export var LongTermPricingListEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
311
- export var ListLongTermPricingResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
312
- export var UpdateClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
313
- export var UpdateClusterResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
314
- export var UpdateJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
315
- export var UpdateJobResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
316
- export var UpdateJobShipmentStateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
317
- export var UpdateJobShipmentStateResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
318
- export var UpdateLongTermPricingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
319
- export var UpdateLongTermPricingResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
244
+ export const AddressFilterSensitiveLog = (obj) => ({
245
+ ...obj,
246
+ });
247
+ export const CancelClusterRequestFilterSensitiveLog = (obj) => ({
248
+ ...obj,
249
+ });
250
+ export const CancelClusterResultFilterSensitiveLog = (obj) => ({
251
+ ...obj,
252
+ });
253
+ export const CancelJobRequestFilterSensitiveLog = (obj) => ({
254
+ ...obj,
255
+ });
256
+ export const CancelJobResultFilterSensitiveLog = (obj) => ({
257
+ ...obj,
258
+ });
259
+ export const CreateAddressRequestFilterSensitiveLog = (obj) => ({
260
+ ...obj,
261
+ });
262
+ export const CreateAddressResultFilterSensitiveLog = (obj) => ({
263
+ ...obj,
264
+ });
265
+ export const NotificationFilterSensitiveLog = (obj) => ({
266
+ ...obj,
267
+ });
268
+ export const NFSOnDeviceServiceConfigurationFilterSensitiveLog = (obj) => ({
269
+ ...obj,
270
+ });
271
+ export const TGWOnDeviceServiceConfigurationFilterSensitiveLog = (obj) => ({
272
+ ...obj,
273
+ });
274
+ export const OnDeviceServiceConfigurationFilterSensitiveLog = (obj) => ({
275
+ ...obj,
276
+ });
277
+ export const Ec2AmiResourceFilterSensitiveLog = (obj) => ({
278
+ ...obj,
279
+ });
280
+ export const EventTriggerDefinitionFilterSensitiveLog = (obj) => ({
281
+ ...obj,
282
+ });
283
+ export const LambdaResourceFilterSensitiveLog = (obj) => ({
284
+ ...obj,
285
+ });
286
+ export const KeyRangeFilterSensitiveLog = (obj) => ({
287
+ ...obj,
288
+ });
289
+ export const TargetOnDeviceServiceFilterSensitiveLog = (obj) => ({
290
+ ...obj,
291
+ });
292
+ export const S3ResourceFilterSensitiveLog = (obj) => ({
293
+ ...obj,
294
+ });
295
+ export const JobResourceFilterSensitiveLog = (obj) => ({
296
+ ...obj,
297
+ });
298
+ export const INDTaxDocumentsFilterSensitiveLog = (obj) => ({
299
+ ...obj,
300
+ });
301
+ export const TaxDocumentsFilterSensitiveLog = (obj) => ({
302
+ ...obj,
303
+ });
304
+ export const CreateClusterRequestFilterSensitiveLog = (obj) => ({
305
+ ...obj,
306
+ });
307
+ export const CreateClusterResultFilterSensitiveLog = (obj) => ({
308
+ ...obj,
309
+ });
310
+ export const WirelessConnectionFilterSensitiveLog = (obj) => ({
311
+ ...obj,
312
+ });
313
+ export const SnowconeDeviceConfigurationFilterSensitiveLog = (obj) => ({
314
+ ...obj,
315
+ });
316
+ export const DeviceConfigurationFilterSensitiveLog = (obj) => ({
317
+ ...obj,
318
+ });
319
+ export const CreateJobRequestFilterSensitiveLog = (obj) => ({
320
+ ...obj,
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
+ });