@aws-sdk/client-snowball 3.301.0 → 3.306.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.
@@ -73,66 +73,58 @@ class UnsupportedAddressException extends SnowballServiceException_1.SnowballSer
73
73
  }
74
74
  }
75
75
  exports.UnsupportedAddressException = UnsupportedAddressException;
76
- var JobType;
77
- (function (JobType) {
78
- JobType["EXPORT"] = "EXPORT";
79
- JobType["IMPORT"] = "IMPORT";
80
- JobType["LOCAL_USE"] = "LOCAL_USE";
81
- })(JobType = exports.JobType || (exports.JobType = {}));
82
- var JobState;
83
- (function (JobState) {
84
- JobState["CANCELLED"] = "Cancelled";
85
- JobState["COMPLETE"] = "Complete";
86
- JobState["IN_PROGRESS"] = "InProgress";
87
- JobState["IN_TRANSIT_TO_AWS"] = "InTransitToAWS";
88
- JobState["IN_TRANSIT_TO_CUSTOMER"] = "InTransitToCustomer";
89
- JobState["LISTING"] = "Listing";
90
- JobState["NEW"] = "New";
91
- JobState["PENDING"] = "Pending";
92
- JobState["PREPARING_APPLIANCE"] = "PreparingAppliance";
93
- JobState["PREPARING_SHIPMENT"] = "PreparingShipment";
94
- JobState["WITH_AWS"] = "WithAWS";
95
- JobState["WITH_AWS_SORTING_FACILITY"] = "WithAWSSortingFacility";
96
- JobState["WITH_CUSTOMER"] = "WithCustomer";
97
- })(JobState = exports.JobState || (exports.JobState = {}));
98
- var StorageUnit;
99
- (function (StorageUnit) {
100
- StorageUnit["TB"] = "TB";
101
- })(StorageUnit = exports.StorageUnit || (exports.StorageUnit = {}));
102
- var RemoteManagement;
103
- (function (RemoteManagement) {
104
- RemoteManagement["INSTALLED_AUTOSTART"] = "INSTALLED_AUTOSTART";
105
- RemoteManagement["INSTALLED_ONLY"] = "INSTALLED_ONLY";
106
- })(RemoteManagement = exports.RemoteManagement || (exports.RemoteManagement = {}));
107
- var DeviceServiceName;
108
- (function (DeviceServiceName) {
109
- DeviceServiceName["NFS_ON_DEVICE_SERVICE"] = "NFS_ON_DEVICE_SERVICE";
110
- DeviceServiceName["S3_ON_DEVICE_SERVICE"] = "S3_ON_DEVICE_SERVICE";
111
- })(DeviceServiceName = exports.DeviceServiceName || (exports.DeviceServiceName = {}));
112
- var TransferOption;
113
- (function (TransferOption) {
114
- TransferOption["EXPORT"] = "EXPORT";
115
- TransferOption["IMPORT"] = "IMPORT";
116
- TransferOption["LOCAL_USE"] = "LOCAL_USE";
117
- })(TransferOption = exports.TransferOption || (exports.TransferOption = {}));
118
- var ShippingOption;
119
- (function (ShippingOption) {
120
- ShippingOption["EXPRESS"] = "EXPRESS";
121
- ShippingOption["NEXT_DAY"] = "NEXT_DAY";
122
- ShippingOption["SECOND_DAY"] = "SECOND_DAY";
123
- ShippingOption["STANDARD"] = "STANDARD";
124
- })(ShippingOption = exports.ShippingOption || (exports.ShippingOption = {}));
125
- var SnowballType;
126
- (function (SnowballType) {
127
- SnowballType["EDGE"] = "EDGE";
128
- SnowballType["EDGE_C"] = "EDGE_C";
129
- SnowballType["EDGE_CG"] = "EDGE_CG";
130
- SnowballType["EDGE_S"] = "EDGE_S";
131
- SnowballType["SNC1_HDD"] = "SNC1_HDD";
132
- SnowballType["SNC1_SSD"] = "SNC1_SSD";
133
- SnowballType["STANDARD"] = "STANDARD";
134
- SnowballType["V3_5C"] = "V3_5C";
135
- })(SnowballType = exports.SnowballType || (exports.SnowballType = {}));
76
+ exports.JobType = {
77
+ EXPORT: "EXPORT",
78
+ IMPORT: "IMPORT",
79
+ LOCAL_USE: "LOCAL_USE",
80
+ };
81
+ exports.JobState = {
82
+ CANCELLED: "Cancelled",
83
+ COMPLETE: "Complete",
84
+ IN_PROGRESS: "InProgress",
85
+ IN_TRANSIT_TO_AWS: "InTransitToAWS",
86
+ IN_TRANSIT_TO_CUSTOMER: "InTransitToCustomer",
87
+ LISTING: "Listing",
88
+ NEW: "New",
89
+ PENDING: "Pending",
90
+ PREPARING_APPLIANCE: "PreparingAppliance",
91
+ PREPARING_SHIPMENT: "PreparingShipment",
92
+ WITH_AWS: "WithAWS",
93
+ WITH_AWS_SORTING_FACILITY: "WithAWSSortingFacility",
94
+ WITH_CUSTOMER: "WithCustomer",
95
+ };
96
+ exports.StorageUnit = {
97
+ TB: "TB",
98
+ };
99
+ exports.RemoteManagement = {
100
+ INSTALLED_AUTOSTART: "INSTALLED_AUTOSTART",
101
+ INSTALLED_ONLY: "INSTALLED_ONLY",
102
+ };
103
+ exports.DeviceServiceName = {
104
+ NFS_ON_DEVICE_SERVICE: "NFS_ON_DEVICE_SERVICE",
105
+ S3_ON_DEVICE_SERVICE: "S3_ON_DEVICE_SERVICE",
106
+ };
107
+ exports.TransferOption = {
108
+ EXPORT: "EXPORT",
109
+ IMPORT: "IMPORT",
110
+ LOCAL_USE: "LOCAL_USE",
111
+ };
112
+ exports.ShippingOption = {
113
+ EXPRESS: "EXPRESS",
114
+ NEXT_DAY: "NEXT_DAY",
115
+ SECOND_DAY: "SECOND_DAY",
116
+ STANDARD: "STANDARD",
117
+ };
118
+ exports.SnowballType = {
119
+ EDGE: "EDGE",
120
+ EDGE_C: "EDGE_C",
121
+ EDGE_CG: "EDGE_CG",
122
+ EDGE_S: "EDGE_S",
123
+ SNC1_HDD: "SNC1_HDD",
124
+ SNC1_SSD: "SNC1_SSD",
125
+ STANDARD: "STANDARD",
126
+ V3_5C: "V3_5C",
127
+ };
136
128
  class Ec2RequestFailedException extends SnowballServiceException_1.SnowballServiceException {
137
129
  constructor(opts) {
138
130
  super({
@@ -175,23 +167,21 @@ class ClusterLimitExceededException extends SnowballServiceException_1.SnowballS
175
167
  }
176
168
  }
177
169
  exports.ClusterLimitExceededException = ClusterLimitExceededException;
178
- var SnowballCapacity;
179
- (function (SnowballCapacity) {
180
- SnowballCapacity["NO_PREFERENCE"] = "NoPreference";
181
- SnowballCapacity["T100"] = "T100";
182
- SnowballCapacity["T14"] = "T14";
183
- SnowballCapacity["T32"] = "T32";
184
- SnowballCapacity["T42"] = "T42";
185
- SnowballCapacity["T50"] = "T50";
186
- SnowballCapacity["T8"] = "T8";
187
- SnowballCapacity["T80"] = "T80";
188
- SnowballCapacity["T98"] = "T98";
189
- })(SnowballCapacity = exports.SnowballCapacity || (exports.SnowballCapacity = {}));
190
- var LongTermPricingType;
191
- (function (LongTermPricingType) {
192
- LongTermPricingType["ONE_YEAR"] = "OneYear";
193
- LongTermPricingType["THREE_YEAR"] = "ThreeYear";
194
- })(LongTermPricingType = exports.LongTermPricingType || (exports.LongTermPricingType = {}));
170
+ exports.SnowballCapacity = {
171
+ NO_PREFERENCE: "NoPreference",
172
+ T100: "T100",
173
+ T14: "T14",
174
+ T32: "T32",
175
+ T42: "T42",
176
+ T50: "T50",
177
+ T8: "T8",
178
+ T80: "T80",
179
+ T98: "T98",
180
+ };
181
+ exports.LongTermPricingType = {
182
+ ONE_YEAR: "OneYear",
183
+ THREE_YEAR: "ThreeYear",
184
+ };
195
185
  class ConflictException extends SnowballServiceException_1.SnowballServiceException {
196
186
  constructor(opts) {
197
187
  super({
@@ -207,13 +197,12 @@ class ConflictException extends SnowballServiceException_1.SnowballServiceExcept
207
197
  }
208
198
  }
209
199
  exports.ConflictException = ConflictException;
210
- var ShippingLabelStatus;
211
- (function (ShippingLabelStatus) {
212
- ShippingLabelStatus["FAILED"] = "Failed";
213
- ShippingLabelStatus["IN_PROGRESS"] = "InProgress";
214
- ShippingLabelStatus["SUCCEEDED"] = "Succeeded";
215
- ShippingLabelStatus["TIMED_OUT"] = "TimedOut";
216
- })(ShippingLabelStatus = exports.ShippingLabelStatus || (exports.ShippingLabelStatus = {}));
200
+ exports.ShippingLabelStatus = {
201
+ FAILED: "Failed",
202
+ IN_PROGRESS: "InProgress",
203
+ SUCCEEDED: "Succeeded",
204
+ TIMED_OUT: "TimedOut",
205
+ };
217
206
  class ReturnShippingLabelAlreadyExistsException extends SnowballServiceException_1.SnowballServiceException {
218
207
  constructor(opts) {
219
208
  super({
@@ -242,21 +231,18 @@ class InvalidNextTokenException extends SnowballServiceException_1.SnowballServi
242
231
  }
243
232
  }
244
233
  exports.InvalidNextTokenException = InvalidNextTokenException;
245
- var ClusterState;
246
- (function (ClusterState) {
247
- ClusterState["AWAITING_QUORUM"] = "AwaitingQuorum";
248
- ClusterState["CANCELLED"] = "Cancelled";
249
- ClusterState["COMPLETE"] = "Complete";
250
- ClusterState["IN_USE"] = "InUse";
251
- ClusterState["PENDING"] = "Pending";
252
- })(ClusterState = exports.ClusterState || (exports.ClusterState = {}));
253
- var ServiceName;
254
- (function (ServiceName) {
255
- ServiceName["EKS_ANYWHERE"] = "EKS_ANYWHERE";
256
- ServiceName["KUBERNETES"] = "KUBERNETES";
257
- })(ServiceName = exports.ServiceName || (exports.ServiceName = {}));
258
- var ShipmentState;
259
- (function (ShipmentState) {
260
- ShipmentState["RECEIVED"] = "RECEIVED";
261
- ShipmentState["RETURNED"] = "RETURNED";
262
- })(ShipmentState = exports.ShipmentState || (exports.ShipmentState = {}));
234
+ exports.ClusterState = {
235
+ AWAITING_QUORUM: "AwaitingQuorum",
236
+ CANCELLED: "Cancelled",
237
+ COMPLETE: "Complete",
238
+ IN_USE: "InUse",
239
+ PENDING: "Pending",
240
+ };
241
+ exports.ServiceName = {
242
+ EKS_ANYWHERE: "EKS_ANYWHERE",
243
+ KUBERNETES: "KUBERNETES",
244
+ };
245
+ exports.ShipmentState = {
246
+ RECEIVED: "RECEIVED",
247
+ RETURNED: "RETURNED",
248
+ };
@@ -65,66 +65,58 @@ export class UnsupportedAddressException extends __BaseException {
65
65
  this.Message = opts.Message;
66
66
  }
67
67
  }
68
- export var JobType;
69
- (function (JobType) {
70
- JobType["EXPORT"] = "EXPORT";
71
- JobType["IMPORT"] = "IMPORT";
72
- JobType["LOCAL_USE"] = "LOCAL_USE";
73
- })(JobType || (JobType = {}));
74
- export var JobState;
75
- (function (JobState) {
76
- JobState["CANCELLED"] = "Cancelled";
77
- JobState["COMPLETE"] = "Complete";
78
- JobState["IN_PROGRESS"] = "InProgress";
79
- JobState["IN_TRANSIT_TO_AWS"] = "InTransitToAWS";
80
- JobState["IN_TRANSIT_TO_CUSTOMER"] = "InTransitToCustomer";
81
- JobState["LISTING"] = "Listing";
82
- JobState["NEW"] = "New";
83
- JobState["PENDING"] = "Pending";
84
- JobState["PREPARING_APPLIANCE"] = "PreparingAppliance";
85
- JobState["PREPARING_SHIPMENT"] = "PreparingShipment";
86
- JobState["WITH_AWS"] = "WithAWS";
87
- JobState["WITH_AWS_SORTING_FACILITY"] = "WithAWSSortingFacility";
88
- JobState["WITH_CUSTOMER"] = "WithCustomer";
89
- })(JobState || (JobState = {}));
90
- export var StorageUnit;
91
- (function (StorageUnit) {
92
- StorageUnit["TB"] = "TB";
93
- })(StorageUnit || (StorageUnit = {}));
94
- export var RemoteManagement;
95
- (function (RemoteManagement) {
96
- RemoteManagement["INSTALLED_AUTOSTART"] = "INSTALLED_AUTOSTART";
97
- RemoteManagement["INSTALLED_ONLY"] = "INSTALLED_ONLY";
98
- })(RemoteManagement || (RemoteManagement = {}));
99
- export var DeviceServiceName;
100
- (function (DeviceServiceName) {
101
- DeviceServiceName["NFS_ON_DEVICE_SERVICE"] = "NFS_ON_DEVICE_SERVICE";
102
- DeviceServiceName["S3_ON_DEVICE_SERVICE"] = "S3_ON_DEVICE_SERVICE";
103
- })(DeviceServiceName || (DeviceServiceName = {}));
104
- export var TransferOption;
105
- (function (TransferOption) {
106
- TransferOption["EXPORT"] = "EXPORT";
107
- TransferOption["IMPORT"] = "IMPORT";
108
- TransferOption["LOCAL_USE"] = "LOCAL_USE";
109
- })(TransferOption || (TransferOption = {}));
110
- export var ShippingOption;
111
- (function (ShippingOption) {
112
- ShippingOption["EXPRESS"] = "EXPRESS";
113
- ShippingOption["NEXT_DAY"] = "NEXT_DAY";
114
- ShippingOption["SECOND_DAY"] = "SECOND_DAY";
115
- ShippingOption["STANDARD"] = "STANDARD";
116
- })(ShippingOption || (ShippingOption = {}));
117
- export var SnowballType;
118
- (function (SnowballType) {
119
- SnowballType["EDGE"] = "EDGE";
120
- SnowballType["EDGE_C"] = "EDGE_C";
121
- SnowballType["EDGE_CG"] = "EDGE_CG";
122
- SnowballType["EDGE_S"] = "EDGE_S";
123
- SnowballType["SNC1_HDD"] = "SNC1_HDD";
124
- SnowballType["SNC1_SSD"] = "SNC1_SSD";
125
- SnowballType["STANDARD"] = "STANDARD";
126
- SnowballType["V3_5C"] = "V3_5C";
127
- })(SnowballType || (SnowballType = {}));
68
+ export const JobType = {
69
+ EXPORT: "EXPORT",
70
+ IMPORT: "IMPORT",
71
+ LOCAL_USE: "LOCAL_USE",
72
+ };
73
+ export const JobState = {
74
+ CANCELLED: "Cancelled",
75
+ COMPLETE: "Complete",
76
+ IN_PROGRESS: "InProgress",
77
+ IN_TRANSIT_TO_AWS: "InTransitToAWS",
78
+ IN_TRANSIT_TO_CUSTOMER: "InTransitToCustomer",
79
+ LISTING: "Listing",
80
+ NEW: "New",
81
+ PENDING: "Pending",
82
+ PREPARING_APPLIANCE: "PreparingAppliance",
83
+ PREPARING_SHIPMENT: "PreparingShipment",
84
+ WITH_AWS: "WithAWS",
85
+ WITH_AWS_SORTING_FACILITY: "WithAWSSortingFacility",
86
+ WITH_CUSTOMER: "WithCustomer",
87
+ };
88
+ export const StorageUnit = {
89
+ TB: "TB",
90
+ };
91
+ export const RemoteManagement = {
92
+ INSTALLED_AUTOSTART: "INSTALLED_AUTOSTART",
93
+ INSTALLED_ONLY: "INSTALLED_ONLY",
94
+ };
95
+ export const DeviceServiceName = {
96
+ NFS_ON_DEVICE_SERVICE: "NFS_ON_DEVICE_SERVICE",
97
+ S3_ON_DEVICE_SERVICE: "S3_ON_DEVICE_SERVICE",
98
+ };
99
+ export const TransferOption = {
100
+ EXPORT: "EXPORT",
101
+ IMPORT: "IMPORT",
102
+ LOCAL_USE: "LOCAL_USE",
103
+ };
104
+ export const ShippingOption = {
105
+ EXPRESS: "EXPRESS",
106
+ NEXT_DAY: "NEXT_DAY",
107
+ SECOND_DAY: "SECOND_DAY",
108
+ STANDARD: "STANDARD",
109
+ };
110
+ export const SnowballType = {
111
+ EDGE: "EDGE",
112
+ EDGE_C: "EDGE_C",
113
+ EDGE_CG: "EDGE_CG",
114
+ EDGE_S: "EDGE_S",
115
+ SNC1_HDD: "SNC1_HDD",
116
+ SNC1_SSD: "SNC1_SSD",
117
+ STANDARD: "STANDARD",
118
+ V3_5C: "V3_5C",
119
+ };
128
120
  export class Ec2RequestFailedException extends __BaseException {
129
121
  constructor(opts) {
130
122
  super({
@@ -164,23 +156,21 @@ export class ClusterLimitExceededException extends __BaseException {
164
156
  this.Message = opts.Message;
165
157
  }
166
158
  }
167
- export var SnowballCapacity;
168
- (function (SnowballCapacity) {
169
- SnowballCapacity["NO_PREFERENCE"] = "NoPreference";
170
- SnowballCapacity["T100"] = "T100";
171
- SnowballCapacity["T14"] = "T14";
172
- SnowballCapacity["T32"] = "T32";
173
- SnowballCapacity["T42"] = "T42";
174
- SnowballCapacity["T50"] = "T50";
175
- SnowballCapacity["T8"] = "T8";
176
- SnowballCapacity["T80"] = "T80";
177
- SnowballCapacity["T98"] = "T98";
178
- })(SnowballCapacity || (SnowballCapacity = {}));
179
- export var LongTermPricingType;
180
- (function (LongTermPricingType) {
181
- LongTermPricingType["ONE_YEAR"] = "OneYear";
182
- LongTermPricingType["THREE_YEAR"] = "ThreeYear";
183
- })(LongTermPricingType || (LongTermPricingType = {}));
159
+ export const SnowballCapacity = {
160
+ NO_PREFERENCE: "NoPreference",
161
+ T100: "T100",
162
+ T14: "T14",
163
+ T32: "T32",
164
+ T42: "T42",
165
+ T50: "T50",
166
+ T8: "T8",
167
+ T80: "T80",
168
+ T98: "T98",
169
+ };
170
+ export const LongTermPricingType = {
171
+ ONE_YEAR: "OneYear",
172
+ THREE_YEAR: "ThreeYear",
173
+ };
184
174
  export class ConflictException extends __BaseException {
185
175
  constructor(opts) {
186
176
  super({
@@ -195,13 +185,12 @@ export class ConflictException extends __BaseException {
195
185
  this.Message = opts.Message;
196
186
  }
197
187
  }
198
- export var ShippingLabelStatus;
199
- (function (ShippingLabelStatus) {
200
- ShippingLabelStatus["FAILED"] = "Failed";
201
- ShippingLabelStatus["IN_PROGRESS"] = "InProgress";
202
- ShippingLabelStatus["SUCCEEDED"] = "Succeeded";
203
- ShippingLabelStatus["TIMED_OUT"] = "TimedOut";
204
- })(ShippingLabelStatus || (ShippingLabelStatus = {}));
188
+ export const ShippingLabelStatus = {
189
+ FAILED: "Failed",
190
+ IN_PROGRESS: "InProgress",
191
+ SUCCEEDED: "Succeeded",
192
+ TIMED_OUT: "TimedOut",
193
+ };
205
194
  export class ReturnShippingLabelAlreadyExistsException extends __BaseException {
206
195
  constructor(opts) {
207
196
  super({
@@ -228,21 +217,18 @@ export class InvalidNextTokenException extends __BaseException {
228
217
  this.Message = opts.Message;
229
218
  }
230
219
  }
231
- export var ClusterState;
232
- (function (ClusterState) {
233
- ClusterState["AWAITING_QUORUM"] = "AwaitingQuorum";
234
- ClusterState["CANCELLED"] = "Cancelled";
235
- ClusterState["COMPLETE"] = "Complete";
236
- ClusterState["IN_USE"] = "InUse";
237
- ClusterState["PENDING"] = "Pending";
238
- })(ClusterState || (ClusterState = {}));
239
- export var ServiceName;
240
- (function (ServiceName) {
241
- ServiceName["EKS_ANYWHERE"] = "EKS_ANYWHERE";
242
- ServiceName["KUBERNETES"] = "KUBERNETES";
243
- })(ServiceName || (ServiceName = {}));
244
- export var ShipmentState;
245
- (function (ShipmentState) {
246
- ShipmentState["RECEIVED"] = "RECEIVED";
247
- ShipmentState["RETURNED"] = "RETURNED";
248
- })(ShipmentState || (ShipmentState = {}));
220
+ export const ClusterState = {
221
+ AWAITING_QUORUM: "AwaitingQuorum",
222
+ CANCELLED: "Cancelled",
223
+ COMPLETE: "Complete",
224
+ IN_USE: "InUse",
225
+ PENDING: "Pending",
226
+ };
227
+ export const ServiceName = {
228
+ EKS_ANYWHERE: "EKS_ANYWHERE",
229
+ KUBERNETES: "KUBERNETES",
230
+ };
231
+ export const ShipmentState = {
232
+ RECEIVED: "RECEIVED",
233
+ RETURNED: "RETURNED",
234
+ };
@@ -198,30 +198,40 @@ export declare class UnsupportedAddressException extends __BaseException {
198
198
  }
199
199
  /**
200
200
  * @public
201
+ * @enum
201
202
  */
202
- export declare enum JobType {
203
- EXPORT = "EXPORT",
204
- IMPORT = "IMPORT",
205
- LOCAL_USE = "LOCAL_USE"
206
- }
203
+ export declare const JobType: {
204
+ readonly EXPORT: "EXPORT";
205
+ readonly IMPORT: "IMPORT";
206
+ readonly LOCAL_USE: "LOCAL_USE";
207
+ };
207
208
  /**
208
209
  * @public
209
210
  */
210
- export declare enum JobState {
211
- CANCELLED = "Cancelled",
212
- COMPLETE = "Complete",
213
- IN_PROGRESS = "InProgress",
214
- IN_TRANSIT_TO_AWS = "InTransitToAWS",
215
- IN_TRANSIT_TO_CUSTOMER = "InTransitToCustomer",
216
- LISTING = "Listing",
217
- NEW = "New",
218
- PENDING = "Pending",
219
- PREPARING_APPLIANCE = "PreparingAppliance",
220
- PREPARING_SHIPMENT = "PreparingShipment",
221
- WITH_AWS = "WithAWS",
222
- WITH_AWS_SORTING_FACILITY = "WithAWSSortingFacility",
223
- WITH_CUSTOMER = "WithCustomer"
224
- }
211
+ export type JobType = (typeof JobType)[keyof typeof JobType];
212
+ /**
213
+ * @public
214
+ * @enum
215
+ */
216
+ export declare const JobState: {
217
+ readonly CANCELLED: "Cancelled";
218
+ readonly COMPLETE: "Complete";
219
+ readonly IN_PROGRESS: "InProgress";
220
+ readonly IN_TRANSIT_TO_AWS: "InTransitToAWS";
221
+ readonly IN_TRANSIT_TO_CUSTOMER: "InTransitToCustomer";
222
+ readonly LISTING: "Listing";
223
+ readonly NEW: "New";
224
+ readonly PENDING: "Pending";
225
+ readonly PREPARING_APPLIANCE: "PreparingAppliance";
226
+ readonly PREPARING_SHIPMENT: "PreparingShipment";
227
+ readonly WITH_AWS: "WithAWS";
228
+ readonly WITH_AWS_SORTING_FACILITY: "WithAWSSortingFacility";
229
+ readonly WITH_CUSTOMER: "WithCustomer";
230
+ };
231
+ /**
232
+ * @public
233
+ */
234
+ export type JobState = (typeof JobState)[keyof typeof JobState];
225
235
  /**
226
236
  * @public
227
237
  * <p>The Amazon Simple Notification Service (Amazon SNS) notification settings associated
@@ -267,10 +277,15 @@ export interface EKSOnDeviceServiceConfiguration {
267
277
  }
268
278
  /**
269
279
  * @public
280
+ * @enum
270
281
  */
271
- export declare enum StorageUnit {
272
- TB = "TB"
273
- }
282
+ export declare const StorageUnit: {
283
+ readonly TB: "TB";
284
+ };
285
+ /**
286
+ * @public
287
+ */
288
+ export type StorageUnit = (typeof StorageUnit)[keyof typeof StorageUnit];
274
289
  /**
275
290
  * @public
276
291
  * <p>An object that represents the metadata and configuration settings for the NFS (Network
@@ -324,11 +339,16 @@ export interface OnDeviceServiceConfiguration {
324
339
  }
325
340
  /**
326
341
  * @public
342
+ * @enum
327
343
  */
328
- export declare enum RemoteManagement {
329
- INSTALLED_AUTOSTART = "INSTALLED_AUTOSTART",
330
- INSTALLED_ONLY = "INSTALLED_ONLY"
331
- }
344
+ export declare const RemoteManagement: {
345
+ readonly INSTALLED_AUTOSTART: "INSTALLED_AUTOSTART";
346
+ readonly INSTALLED_ONLY: "INSTALLED_ONLY";
347
+ };
348
+ /**
349
+ * @public
350
+ */
351
+ export type RemoteManagement = (typeof RemoteManagement)[keyof typeof RemoteManagement];
332
352
  /**
333
353
  * @public
334
354
  * <p>A JSON-formatted object that contains the IDs for an Amazon Machine Image (AMI),
@@ -391,19 +411,29 @@ export interface KeyRange {
391
411
  }
392
412
  /**
393
413
  * @public
414
+ * @enum
394
415
  */
395
- export declare enum DeviceServiceName {
396
- NFS_ON_DEVICE_SERVICE = "NFS_ON_DEVICE_SERVICE",
397
- S3_ON_DEVICE_SERVICE = "S3_ON_DEVICE_SERVICE"
398
- }
416
+ export declare const DeviceServiceName: {
417
+ readonly NFS_ON_DEVICE_SERVICE: "NFS_ON_DEVICE_SERVICE";
418
+ readonly S3_ON_DEVICE_SERVICE: "S3_ON_DEVICE_SERVICE";
419
+ };
399
420
  /**
400
421
  * @public
401
422
  */
402
- export declare enum TransferOption {
403
- EXPORT = "EXPORT",
404
- IMPORT = "IMPORT",
405
- LOCAL_USE = "LOCAL_USE"
406
- }
423
+ export type DeviceServiceName = (typeof DeviceServiceName)[keyof typeof DeviceServiceName];
424
+ /**
425
+ * @public
426
+ * @enum
427
+ */
428
+ export declare const TransferOption: {
429
+ readonly EXPORT: "EXPORT";
430
+ readonly IMPORT: "IMPORT";
431
+ readonly LOCAL_USE: "LOCAL_USE";
432
+ };
433
+ /**
434
+ * @public
435
+ */
436
+ export type TransferOption = (typeof TransferOption)[keyof typeof TransferOption];
407
437
  /**
408
438
  * @public
409
439
  * <p>An object that represents the service or services on the Snow Family device that your
@@ -471,26 +501,36 @@ export interface JobResource {
471
501
  }
472
502
  /**
473
503
  * @public
504
+ * @enum
474
505
  */
475
- export declare enum ShippingOption {
476
- EXPRESS = "EXPRESS",
477
- NEXT_DAY = "NEXT_DAY",
478
- SECOND_DAY = "SECOND_DAY",
479
- STANDARD = "STANDARD"
480
- }
506
+ export declare const ShippingOption: {
507
+ readonly EXPRESS: "EXPRESS";
508
+ readonly NEXT_DAY: "NEXT_DAY";
509
+ readonly SECOND_DAY: "SECOND_DAY";
510
+ readonly STANDARD: "STANDARD";
511
+ };
481
512
  /**
482
513
  * @public
483
514
  */
484
- export declare enum SnowballType {
485
- EDGE = "EDGE",
486
- EDGE_C = "EDGE_C",
487
- EDGE_CG = "EDGE_CG",
488
- EDGE_S = "EDGE_S",
489
- SNC1_HDD = "SNC1_HDD",
490
- SNC1_SSD = "SNC1_SSD",
491
- STANDARD = "STANDARD",
492
- V3_5C = "V3_5C"
493
- }
515
+ export type ShippingOption = (typeof ShippingOption)[keyof typeof ShippingOption];
516
+ /**
517
+ * @public
518
+ * @enum
519
+ */
520
+ export declare const SnowballType: {
521
+ readonly EDGE: "EDGE";
522
+ readonly EDGE_C: "EDGE_C";
523
+ readonly EDGE_CG: "EDGE_CG";
524
+ readonly EDGE_S: "EDGE_S";
525
+ readonly SNC1_HDD: "SNC1_HDD";
526
+ readonly SNC1_SSD: "SNC1_SSD";
527
+ readonly STANDARD: "STANDARD";
528
+ readonly V3_5C: "V3_5C";
529
+ };
530
+ /**
531
+ * @public
532
+ */
533
+ export type SnowballType = (typeof SnowballType)[keyof typeof SnowballType];
494
534
  /**
495
535
  * @public
496
536
  * <p>The tax documents required in Amazon Web Services Region in India.</p>
@@ -719,18 +759,23 @@ export interface DeviceConfiguration {
719
759
  }
720
760
  /**
721
761
  * @public
762
+ * @enum
722
763
  */
723
- export declare enum SnowballCapacity {
724
- NO_PREFERENCE = "NoPreference",
725
- T100 = "T100",
726
- T14 = "T14",
727
- T32 = "T32",
728
- T42 = "T42",
729
- T50 = "T50",
730
- T8 = "T8",
731
- T80 = "T80",
732
- T98 = "T98"
733
- }
764
+ export declare const SnowballCapacity: {
765
+ readonly NO_PREFERENCE: "NoPreference";
766
+ readonly T100: "T100";
767
+ readonly T14: "T14";
768
+ readonly T32: "T32";
769
+ readonly T42: "T42";
770
+ readonly T50: "T50";
771
+ readonly T8: "T8";
772
+ readonly T80: "T80";
773
+ readonly T98: "T98";
774
+ };
775
+ /**
776
+ * @public
777
+ */
778
+ export type SnowballCapacity = (typeof SnowballCapacity)[keyof typeof SnowballCapacity];
734
779
  /**
735
780
  * @public
736
781
  */
@@ -884,11 +929,16 @@ export interface CreateJobResult {
884
929
  }
885
930
  /**
886
931
  * @public
932
+ * @enum
887
933
  */
888
- export declare enum LongTermPricingType {
889
- ONE_YEAR = "OneYear",
890
- THREE_YEAR = "ThreeYear"
891
- }
934
+ export declare const LongTermPricingType: {
935
+ readonly ONE_YEAR: "OneYear";
936
+ readonly THREE_YEAR: "ThreeYear";
937
+ };
938
+ /**
939
+ * @public
940
+ */
941
+ export type LongTermPricingType = (typeof LongTermPricingType)[keyof typeof LongTermPricingType];
892
942
  /**
893
943
  * @public
894
944
  */
@@ -953,13 +1003,18 @@ export interface CreateReturnShippingLabelRequest {
953
1003
  }
954
1004
  /**
955
1005
  * @public
1006
+ * @enum
956
1007
  */
957
- export declare enum ShippingLabelStatus {
958
- FAILED = "Failed",
959
- IN_PROGRESS = "InProgress",
960
- SUCCEEDED = "Succeeded",
961
- TIMED_OUT = "TimedOut"
962
- }
1008
+ export declare const ShippingLabelStatus: {
1009
+ readonly FAILED: "Failed";
1010
+ readonly IN_PROGRESS: "InProgress";
1011
+ readonly SUCCEEDED: "Succeeded";
1012
+ readonly TIMED_OUT: "TimedOut";
1013
+ };
1014
+ /**
1015
+ * @public
1016
+ */
1017
+ export type ShippingLabelStatus = (typeof ShippingLabelStatus)[keyof typeof ShippingLabelStatus];
963
1018
  /**
964
1019
  * @public
965
1020
  */
@@ -1059,14 +1114,19 @@ export interface DescribeClusterRequest {
1059
1114
  }
1060
1115
  /**
1061
1116
  * @public
1117
+ * @enum
1062
1118
  */
1063
- export declare enum ClusterState {
1064
- AWAITING_QUORUM = "AwaitingQuorum",
1065
- CANCELLED = "Cancelled",
1066
- COMPLETE = "Complete",
1067
- IN_USE = "InUse",
1068
- PENDING = "Pending"
1069
- }
1119
+ export declare const ClusterState: {
1120
+ readonly AWAITING_QUORUM: "AwaitingQuorum";
1121
+ readonly CANCELLED: "Cancelled";
1122
+ readonly COMPLETE: "Complete";
1123
+ readonly IN_USE: "InUse";
1124
+ readonly PENDING: "Pending";
1125
+ };
1126
+ /**
1127
+ * @public
1128
+ */
1129
+ export type ClusterState = (typeof ClusterState)[keyof typeof ClusterState];
1070
1130
  /**
1071
1131
  * @public
1072
1132
  * <p>Contains metadata about a specific cluster.</p>
@@ -1842,11 +1902,16 @@ export interface ListLongTermPricingResult {
1842
1902
  }
1843
1903
  /**
1844
1904
  * @public
1905
+ * @enum
1845
1906
  */
1846
- export declare enum ServiceName {
1847
- EKS_ANYWHERE = "EKS_ANYWHERE",
1848
- KUBERNETES = "KUBERNETES"
1849
- }
1907
+ export declare const ServiceName: {
1908
+ readonly EKS_ANYWHERE: "EKS_ANYWHERE";
1909
+ readonly KUBERNETES: "KUBERNETES";
1910
+ };
1911
+ /**
1912
+ * @public
1913
+ */
1914
+ export type ServiceName = (typeof ServiceName)[keyof typeof ServiceName];
1850
1915
  /**
1851
1916
  * @public
1852
1917
  * <p>The version of the requested service.</p>
@@ -2033,11 +2098,16 @@ export interface UpdateJobResult {
2033
2098
  }
2034
2099
  /**
2035
2100
  * @public
2101
+ * @enum
2036
2102
  */
2037
- export declare enum ShipmentState {
2038
- RECEIVED = "RECEIVED",
2039
- RETURNED = "RETURNED"
2040
- }
2103
+ export declare const ShipmentState: {
2104
+ readonly RECEIVED: "RECEIVED";
2105
+ readonly RETURNED: "RETURNED";
2106
+ };
2107
+ /**
2108
+ * @public
2109
+ */
2110
+ export type ShipmentState = (typeof ShipmentState)[keyof typeof ShipmentState];
2041
2111
  /**
2042
2112
  * @public
2043
2113
  */
@@ -71,26 +71,28 @@ export declare class UnsupportedAddressException extends __BaseException {
71
71
  opts: __ExceptionOptionType<UnsupportedAddressException, __BaseException>
72
72
  );
73
73
  }
74
- export declare enum JobType {
75
- EXPORT = "EXPORT",
76
- IMPORT = "IMPORT",
77
- LOCAL_USE = "LOCAL_USE",
78
- }
79
- export declare enum JobState {
80
- CANCELLED = "Cancelled",
81
- COMPLETE = "Complete",
82
- IN_PROGRESS = "InProgress",
83
- IN_TRANSIT_TO_AWS = "InTransitToAWS",
84
- IN_TRANSIT_TO_CUSTOMER = "InTransitToCustomer",
85
- LISTING = "Listing",
86
- NEW = "New",
87
- PENDING = "Pending",
88
- PREPARING_APPLIANCE = "PreparingAppliance",
89
- PREPARING_SHIPMENT = "PreparingShipment",
90
- WITH_AWS = "WithAWS",
91
- WITH_AWS_SORTING_FACILITY = "WithAWSSortingFacility",
92
- WITH_CUSTOMER = "WithCustomer",
93
- }
74
+ export declare const JobType: {
75
+ readonly EXPORT: "EXPORT";
76
+ readonly IMPORT: "IMPORT";
77
+ readonly LOCAL_USE: "LOCAL_USE";
78
+ };
79
+ export type JobType = (typeof JobType)[keyof typeof JobType];
80
+ export declare const JobState: {
81
+ readonly CANCELLED: "Cancelled";
82
+ readonly COMPLETE: "Complete";
83
+ readonly IN_PROGRESS: "InProgress";
84
+ readonly IN_TRANSIT_TO_AWS: "InTransitToAWS";
85
+ readonly IN_TRANSIT_TO_CUSTOMER: "InTransitToCustomer";
86
+ readonly LISTING: "Listing";
87
+ readonly NEW: "New";
88
+ readonly PENDING: "Pending";
89
+ readonly PREPARING_APPLIANCE: "PreparingAppliance";
90
+ readonly PREPARING_SHIPMENT: "PreparingShipment";
91
+ readonly WITH_AWS: "WithAWS";
92
+ readonly WITH_AWS_SORTING_FACILITY: "WithAWSSortingFacility";
93
+ readonly WITH_CUSTOMER: "WithCustomer";
94
+ };
95
+ export type JobState = (typeof JobState)[keyof typeof JobState];
94
96
  export interface Notification {
95
97
  SnsTopicARN?: string;
96
98
  JobStatesToNotify?: (JobState | string)[];
@@ -100,9 +102,10 @@ export interface EKSOnDeviceServiceConfiguration {
100
102
  KubernetesVersion?: string;
101
103
  EKSAnywhereVersion?: string;
102
104
  }
103
- export declare enum StorageUnit {
104
- TB = "TB",
105
- }
105
+ export declare const StorageUnit: {
106
+ readonly TB: "TB";
107
+ };
108
+ export type StorageUnit = (typeof StorageUnit)[keyof typeof StorageUnit];
106
109
  export interface NFSOnDeviceServiceConfiguration {
107
110
  StorageLimit?: number;
108
111
  StorageUnit?: StorageUnit | string;
@@ -116,10 +119,12 @@ export interface OnDeviceServiceConfiguration {
116
119
  TGWOnDeviceService?: TGWOnDeviceServiceConfiguration;
117
120
  EKSOnDeviceService?: EKSOnDeviceServiceConfiguration;
118
121
  }
119
- export declare enum RemoteManagement {
120
- INSTALLED_AUTOSTART = "INSTALLED_AUTOSTART",
121
- INSTALLED_ONLY = "INSTALLED_ONLY",
122
- }
122
+ export declare const RemoteManagement: {
123
+ readonly INSTALLED_AUTOSTART: "INSTALLED_AUTOSTART";
124
+ readonly INSTALLED_ONLY: "INSTALLED_ONLY";
125
+ };
126
+ export type RemoteManagement =
127
+ (typeof RemoteManagement)[keyof typeof RemoteManagement];
123
128
  export interface Ec2AmiResource {
124
129
  AmiId: string | undefined;
125
130
  SnowballAmiId?: string;
@@ -135,15 +140,19 @@ export interface KeyRange {
135
140
  BeginMarker?: string;
136
141
  EndMarker?: string;
137
142
  }
138
- export declare enum DeviceServiceName {
139
- NFS_ON_DEVICE_SERVICE = "NFS_ON_DEVICE_SERVICE",
140
- S3_ON_DEVICE_SERVICE = "S3_ON_DEVICE_SERVICE",
141
- }
142
- export declare enum TransferOption {
143
- EXPORT = "EXPORT",
144
- IMPORT = "IMPORT",
145
- LOCAL_USE = "LOCAL_USE",
146
- }
143
+ export declare const DeviceServiceName: {
144
+ readonly NFS_ON_DEVICE_SERVICE: "NFS_ON_DEVICE_SERVICE";
145
+ readonly S3_ON_DEVICE_SERVICE: "S3_ON_DEVICE_SERVICE";
146
+ };
147
+ export type DeviceServiceName =
148
+ (typeof DeviceServiceName)[keyof typeof DeviceServiceName];
149
+ export declare const TransferOption: {
150
+ readonly EXPORT: "EXPORT";
151
+ readonly IMPORT: "IMPORT";
152
+ readonly LOCAL_USE: "LOCAL_USE";
153
+ };
154
+ export type TransferOption =
155
+ (typeof TransferOption)[keyof typeof TransferOption];
147
156
  export interface TargetOnDeviceService {
148
157
  ServiceName?: DeviceServiceName | string;
149
158
  TransferOption?: TransferOption | string;
@@ -158,22 +167,25 @@ export interface JobResource {
158
167
  LambdaResources?: LambdaResource[];
159
168
  Ec2AmiResources?: Ec2AmiResource[];
160
169
  }
161
- export declare enum ShippingOption {
162
- EXPRESS = "EXPRESS",
163
- NEXT_DAY = "NEXT_DAY",
164
- SECOND_DAY = "SECOND_DAY",
165
- STANDARD = "STANDARD",
166
- }
167
- export declare enum SnowballType {
168
- EDGE = "EDGE",
169
- EDGE_C = "EDGE_C",
170
- EDGE_CG = "EDGE_CG",
171
- EDGE_S = "EDGE_S",
172
- SNC1_HDD = "SNC1_HDD",
173
- SNC1_SSD = "SNC1_SSD",
174
- STANDARD = "STANDARD",
175
- V3_5C = "V3_5C",
176
- }
170
+ export declare const ShippingOption: {
171
+ readonly EXPRESS: "EXPRESS";
172
+ readonly NEXT_DAY: "NEXT_DAY";
173
+ readonly SECOND_DAY: "SECOND_DAY";
174
+ readonly STANDARD: "STANDARD";
175
+ };
176
+ export type ShippingOption =
177
+ (typeof ShippingOption)[keyof typeof ShippingOption];
178
+ export declare const SnowballType: {
179
+ readonly EDGE: "EDGE";
180
+ readonly EDGE_C: "EDGE_C";
181
+ readonly EDGE_CG: "EDGE_CG";
182
+ readonly EDGE_S: "EDGE_S";
183
+ readonly SNC1_HDD: "SNC1_HDD";
184
+ readonly SNC1_SSD: "SNC1_SSD";
185
+ readonly STANDARD: "STANDARD";
186
+ readonly V3_5C: "V3_5C";
187
+ };
188
+ export type SnowballType = (typeof SnowballType)[keyof typeof SnowballType];
177
189
  export interface INDTaxDocuments {
178
190
  GSTIN?: string;
179
191
  }
@@ -234,17 +246,19 @@ export interface SnowconeDeviceConfiguration {
234
246
  export interface DeviceConfiguration {
235
247
  SnowconeDeviceConfiguration?: SnowconeDeviceConfiguration;
236
248
  }
237
- export declare enum SnowballCapacity {
238
- NO_PREFERENCE = "NoPreference",
239
- T100 = "T100",
240
- T14 = "T14",
241
- T32 = "T32",
242
- T42 = "T42",
243
- T50 = "T50",
244
- T8 = "T8",
245
- T80 = "T80",
246
- T98 = "T98",
247
- }
249
+ export declare const SnowballCapacity: {
250
+ readonly NO_PREFERENCE: "NoPreference";
251
+ readonly T100: "T100";
252
+ readonly T14: "T14";
253
+ readonly T32: "T32";
254
+ readonly T42: "T42";
255
+ readonly T50: "T50";
256
+ readonly T8: "T8";
257
+ readonly T80: "T80";
258
+ readonly T98: "T98";
259
+ };
260
+ export type SnowballCapacity =
261
+ (typeof SnowballCapacity)[keyof typeof SnowballCapacity];
248
262
  export interface CreateJobRequest {
249
263
  JobType?: JobType | string;
250
264
  Resources?: JobResource;
@@ -267,10 +281,12 @@ export interface CreateJobRequest {
267
281
  export interface CreateJobResult {
268
282
  JobId?: string;
269
283
  }
270
- export declare enum LongTermPricingType {
271
- ONE_YEAR = "OneYear",
272
- THREE_YEAR = "ThreeYear",
273
- }
284
+ export declare const LongTermPricingType: {
285
+ readonly ONE_YEAR: "OneYear";
286
+ readonly THREE_YEAR: "ThreeYear";
287
+ };
288
+ export type LongTermPricingType =
289
+ (typeof LongTermPricingType)[keyof typeof LongTermPricingType];
274
290
  export interface CreateLongTermPricingRequest {
275
291
  LongTermPricingType: LongTermPricingType | string | undefined;
276
292
  IsLongTermPricingAutoRenew?: boolean;
@@ -290,12 +306,14 @@ export interface CreateReturnShippingLabelRequest {
290
306
  JobId: string | undefined;
291
307
  ShippingOption?: ShippingOption | string;
292
308
  }
293
- export declare enum ShippingLabelStatus {
294
- FAILED = "Failed",
295
- IN_PROGRESS = "InProgress",
296
- SUCCEEDED = "Succeeded",
297
- TIMED_OUT = "TimedOut",
298
- }
309
+ export declare const ShippingLabelStatus: {
310
+ readonly FAILED: "Failed";
311
+ readonly IN_PROGRESS: "InProgress";
312
+ readonly SUCCEEDED: "Succeeded";
313
+ readonly TIMED_OUT: "TimedOut";
314
+ };
315
+ export type ShippingLabelStatus =
316
+ (typeof ShippingLabelStatus)[keyof typeof ShippingLabelStatus];
299
317
  export interface CreateReturnShippingLabelResult {
300
318
  Status?: ShippingLabelStatus | string;
301
319
  }
@@ -335,13 +353,14 @@ export declare class InvalidNextTokenException extends __BaseException {
335
353
  export interface DescribeClusterRequest {
336
354
  ClusterId: string | undefined;
337
355
  }
338
- export declare enum ClusterState {
339
- AWAITING_QUORUM = "AwaitingQuorum",
340
- CANCELLED = "Cancelled",
341
- COMPLETE = "Complete",
342
- IN_USE = "InUse",
343
- PENDING = "Pending",
344
- }
356
+ export declare const ClusterState: {
357
+ readonly AWAITING_QUORUM: "AwaitingQuorum";
358
+ readonly CANCELLED: "Cancelled";
359
+ readonly COMPLETE: "Complete";
360
+ readonly IN_USE: "InUse";
361
+ readonly PENDING: "Pending";
362
+ };
363
+ export type ClusterState = (typeof ClusterState)[keyof typeof ClusterState];
345
364
  export interface ClusterMetadata {
346
365
  ClusterId?: string;
347
366
  Description?: string;
@@ -516,10 +535,11 @@ export interface ListLongTermPricingResult {
516
535
  LongTermPricingEntries?: LongTermPricingListEntry[];
517
536
  NextToken?: string;
518
537
  }
519
- export declare enum ServiceName {
520
- EKS_ANYWHERE = "EKS_ANYWHERE",
521
- KUBERNETES = "KUBERNETES",
522
- }
538
+ export declare const ServiceName: {
539
+ readonly EKS_ANYWHERE: "EKS_ANYWHERE";
540
+ readonly KUBERNETES: "KUBERNETES";
541
+ };
542
+ export type ServiceName = (typeof ServiceName)[keyof typeof ServiceName];
523
543
  export interface ServiceVersion {
524
544
  Version?: string;
525
545
  }
@@ -564,10 +584,11 @@ export interface UpdateJobRequest {
564
584
  ForwardingAddressId?: string;
565
585
  }
566
586
  export interface UpdateJobResult {}
567
- export declare enum ShipmentState {
568
- RECEIVED = "RECEIVED",
569
- RETURNED = "RETURNED",
570
- }
587
+ export declare const ShipmentState: {
588
+ readonly RECEIVED: "RECEIVED";
589
+ readonly RETURNED: "RETURNED";
590
+ };
591
+ export type ShipmentState = (typeof ShipmentState)[keyof typeof ShipmentState];
571
592
  export interface UpdateJobShipmentStateRequest {
572
593
  JobId: string | undefined;
573
594
  ShipmentState: ShipmentState | string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-snowball",
3
3
  "description": "AWS SDK for JavaScript Snowball Client for Node.js, Browser and React Native",
4
- "version": "3.301.0",
4
+ "version": "3.306.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,42 +21,42 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
24
+ "@aws-sdk/client-sts": "3.306.0",
25
+ "@aws-sdk/config-resolver": "3.306.0",
26
+ "@aws-sdk/credential-provider-node": "3.306.0",
27
+ "@aws-sdk/fetch-http-handler": "3.306.0",
28
+ "@aws-sdk/hash-node": "3.306.0",
29
+ "@aws-sdk/invalid-dependency": "3.306.0",
30
+ "@aws-sdk/middleware-content-length": "3.306.0",
31
+ "@aws-sdk/middleware-endpoint": "3.306.0",
32
+ "@aws-sdk/middleware-host-header": "3.306.0",
33
+ "@aws-sdk/middleware-logger": "3.306.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.306.0",
35
+ "@aws-sdk/middleware-retry": "3.306.0",
36
+ "@aws-sdk/middleware-serde": "3.306.0",
37
+ "@aws-sdk/middleware-signing": "3.306.0",
38
+ "@aws-sdk/middleware-stack": "3.306.0",
39
+ "@aws-sdk/middleware-user-agent": "3.306.0",
40
+ "@aws-sdk/node-config-provider": "3.306.0",
41
+ "@aws-sdk/node-http-handler": "3.306.0",
42
+ "@aws-sdk/protocol-http": "3.306.0",
43
+ "@aws-sdk/smithy-client": "3.306.0",
44
+ "@aws-sdk/types": "3.306.0",
45
+ "@aws-sdk/url-parser": "3.306.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.306.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.306.0",
51
+ "@aws-sdk/util-endpoints": "3.306.0",
52
+ "@aws-sdk/util-retry": "3.306.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.306.0",
54
+ "@aws-sdk/util-user-agent-node": "3.306.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
56
  "tslib": "^2.5.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
59
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
60
60
  "@tsconfig/node14": "1.0.3",
61
61
  "@types/node": "^14.14.31",
62
62
  "concurrently": "7.0.0",