@aws-sdk/client-outposts 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.
@@ -21,21 +21,25 @@ export interface Address {
21
21
  CountryCode: string | undefined;
22
22
  Municipality?: string;
23
23
  }
24
- export declare enum AddressType {
25
- OPERATING_ADDRESS = "OPERATING_ADDRESS",
26
- SHIPPING_ADDRESS = "SHIPPING_ADDRESS",
27
- }
24
+ export declare const AddressType: {
25
+ readonly OPERATING_ADDRESS: "OPERATING_ADDRESS";
26
+ readonly SHIPPING_ADDRESS: "SHIPPING_ADDRESS";
27
+ };
28
+ export type AddressType = (typeof AddressType)[keyof typeof AddressType];
28
29
  export interface AssetLocation {
29
30
  RackElevation?: number;
30
31
  }
31
- export declare enum AssetType {
32
- COMPUTE = "COMPUTE",
33
- }
34
- export declare enum ComputeAssetState {
35
- ACTIVE = "ACTIVE",
36
- ISOLATED = "ISOLATED",
37
- RETIRING = "RETIRING",
38
- }
32
+ export declare const AssetType: {
33
+ readonly COMPUTE: "COMPUTE";
34
+ };
35
+ export type AssetType = (typeof AssetType)[keyof typeof AssetType];
36
+ export declare const ComputeAssetState: {
37
+ readonly ACTIVE: "ACTIVE";
38
+ readonly ISOLATED: "ISOLATED";
39
+ readonly RETIRING: "RETIRING";
40
+ };
41
+ export type ComputeAssetState =
42
+ (typeof ComputeAssetState)[keyof typeof ComputeAssetState];
39
43
  export interface ComputeAttributes {
40
44
  HostId?: string;
41
45
  State?: ComputeAssetState | string;
@@ -47,18 +51,20 @@ export interface AssetInfo {
47
51
  ComputeAttributes?: ComputeAttributes;
48
52
  AssetLocation?: AssetLocation;
49
53
  }
50
- export declare enum AssetState {
51
- ACTIVE = "ACTIVE",
52
- RETIRING = "RETIRING",
53
- }
54
+ export declare const AssetState: {
55
+ readonly ACTIVE: "ACTIVE";
56
+ readonly RETIRING: "RETIRING";
57
+ };
58
+ export type AssetState = (typeof AssetState)[keyof typeof AssetState];
54
59
  export interface CancelOrderInput {
55
60
  OrderId: string | undefined;
56
61
  }
57
62
  export interface CancelOrderOutput {}
58
- export declare enum ResourceType {
59
- ORDER = "ORDER",
60
- OUTPOST = "OUTPOST",
61
- }
63
+ export declare const ResourceType: {
64
+ readonly ORDER: "ORDER";
65
+ readonly OUTPOST: "OUTPOST";
66
+ };
67
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
62
68
  export declare class ConflictException extends __BaseException {
63
69
  readonly name: "ConflictException";
64
70
  readonly $fault: "client";
@@ -94,14 +100,18 @@ export interface EC2Capacity {
94
100
  MaxSize?: string;
95
101
  Quantity?: string;
96
102
  }
97
- export declare enum CatalogItemStatus {
98
- AVAILABLE = "AVAILABLE",
99
- DISCONTINUED = "DISCONTINUED",
100
- }
101
- export declare enum SupportedStorageEnum {
102
- EBS = "EBS",
103
- S3 = "S3",
104
- }
103
+ export declare const CatalogItemStatus: {
104
+ readonly AVAILABLE: "AVAILABLE";
105
+ readonly DISCONTINUED: "DISCONTINUED";
106
+ };
107
+ export type CatalogItemStatus =
108
+ (typeof CatalogItemStatus)[keyof typeof CatalogItemStatus];
109
+ export declare const SupportedStorageEnum: {
110
+ readonly EBS: "EBS";
111
+ readonly S3: "S3";
112
+ };
113
+ export type SupportedStorageEnum =
114
+ (typeof SupportedStorageEnum)[keyof typeof SupportedStorageEnum];
105
115
  export interface CatalogItem {
106
116
  CatalogItemId?: string;
107
117
  ItemStatus?: CatalogItemStatus | string;
@@ -111,10 +121,12 @@ export interface CatalogItem {
111
121
  SupportedUplinkGbps?: number[];
112
122
  SupportedStorage?: (SupportedStorageEnum | string)[];
113
123
  }
114
- export declare enum CatalogItemClass {
115
- RACK = "RACK",
116
- SERVER = "SERVER",
117
- }
124
+ export declare const CatalogItemClass: {
125
+ readonly RACK: "RACK";
126
+ readonly SERVER: "SERVER";
127
+ };
128
+ export type CatalogItemClass =
129
+ (typeof CatalogItemClass)[keyof typeof CatalogItemClass];
118
130
  export interface ConnectionDetails {
119
131
  ClientPublicKey?: string;
120
132
  ServerPublicKey?: string;
@@ -127,15 +139,17 @@ export interface LineItemRequest {
127
139
  CatalogItemId?: string;
128
140
  Quantity?: number;
129
141
  }
130
- export declare enum PaymentOption {
131
- ALL_UPFRONT = "ALL_UPFRONT",
132
- NO_UPFRONT = "NO_UPFRONT",
133
- PARTIAL_UPFRONT = "PARTIAL_UPFRONT",
134
- }
135
- export declare enum PaymentTerm {
136
- ONE_YEAR = "ONE_YEAR",
137
- THREE_YEARS = "THREE_YEARS",
138
- }
142
+ export declare const PaymentOption: {
143
+ readonly ALL_UPFRONT: "ALL_UPFRONT";
144
+ readonly NO_UPFRONT: "NO_UPFRONT";
145
+ readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
146
+ };
147
+ export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
148
+ export declare const PaymentTerm: {
149
+ readonly ONE_YEAR: "ONE_YEAR";
150
+ readonly THREE_YEARS: "THREE_YEARS";
151
+ };
152
+ export type PaymentTerm = (typeof PaymentTerm)[keyof typeof PaymentTerm];
139
153
  export interface CreateOrderInput {
140
154
  OutpostIdentifier: string | undefined;
141
155
  LineItems: LineItemRequest[] | undefined;
@@ -146,27 +160,31 @@ export interface LineItemAssetInformation {
146
160
  AssetId?: string;
147
161
  MacAddressList?: string[];
148
162
  }
149
- export declare enum ShipmentCarrier {
150
- DBS = "DBS",
151
- DHL = "DHL",
152
- FEDEX = "FEDEX",
153
- UPS = "UPS",
154
- }
163
+ export declare const ShipmentCarrier: {
164
+ readonly DBS: "DBS";
165
+ readonly DHL: "DHL";
166
+ readonly FEDEX: "FEDEX";
167
+ readonly UPS: "UPS";
168
+ };
169
+ export type ShipmentCarrier =
170
+ (typeof ShipmentCarrier)[keyof typeof ShipmentCarrier];
155
171
  export interface ShipmentInformation {
156
172
  ShipmentTrackingNumber?: string;
157
173
  ShipmentCarrier?: ShipmentCarrier | string;
158
174
  }
159
- export declare enum LineItemStatus {
160
- BUILDING = "BUILDING",
161
- CANCELLED = "CANCELLED",
162
- DELIVERED = "DELIVERED",
163
- ERROR = "ERROR",
164
- INSTALLED = "INSTALLED",
165
- INSTALLING = "INSTALLING",
166
- PREPARING = "PREPARING",
167
- REPLACED = "REPLACED",
168
- SHIPPED = "SHIPPED",
169
- }
175
+ export declare const LineItemStatus: {
176
+ readonly BUILDING: "BUILDING";
177
+ readonly CANCELLED: "CANCELLED";
178
+ readonly DELIVERED: "DELIVERED";
179
+ readonly ERROR: "ERROR";
180
+ readonly INSTALLED: "INSTALLED";
181
+ readonly INSTALLING: "INSTALLING";
182
+ readonly PREPARING: "PREPARING";
183
+ readonly REPLACED: "REPLACED";
184
+ readonly SHIPPED: "SHIPPED";
185
+ };
186
+ export type LineItemStatus =
187
+ (typeof LineItemStatus)[keyof typeof LineItemStatus];
170
188
  export interface LineItem {
171
189
  CatalogItemId?: string;
172
190
  LineItemId?: string;
@@ -177,22 +195,24 @@ export interface LineItem {
177
195
  PreviousLineItemId?: string;
178
196
  PreviousOrderId?: string;
179
197
  }
180
- export declare enum OrderType {
181
- OUTPOST = "OUTPOST",
182
- REPLACEMENT = "REPLACEMENT",
183
- }
184
- export declare enum OrderStatus {
185
- CANCELLED = "CANCELLED",
186
- COMPLETED = "COMPLETED",
187
- ERROR = "ERROR",
188
- FULFILLED = "FULFILLED",
189
- INSTALLING = "INSTALLING",
190
- IN_PROGRESS = "IN_PROGRESS",
191
- PENDING = "PENDING",
192
- PREPARING = "PREPARING",
193
- PROCESSING = "PROCESSING",
194
- RECEIVED = "RECEIVED",
195
- }
198
+ export declare const OrderType: {
199
+ readonly OUTPOST: "OUTPOST";
200
+ readonly REPLACEMENT: "REPLACEMENT";
201
+ };
202
+ export type OrderType = (typeof OrderType)[keyof typeof OrderType];
203
+ export declare const OrderStatus: {
204
+ readonly CANCELLED: "CANCELLED";
205
+ readonly COMPLETED: "COMPLETED";
206
+ readonly ERROR: "ERROR";
207
+ readonly FULFILLED: "FULFILLED";
208
+ readonly INSTALLING: "INSTALLING";
209
+ readonly IN_PROGRESS: "IN_PROGRESS";
210
+ readonly PENDING: "PENDING";
211
+ readonly PREPARING: "PREPARING";
212
+ readonly PROCESSING: "PROCESSING";
213
+ readonly RECEIVED: "RECEIVED";
214
+ };
215
+ export type OrderStatus = (typeof OrderStatus)[keyof typeof OrderStatus];
196
216
  export interface Order {
197
217
  OutpostId?: string;
198
218
  OrderId?: string;
@@ -215,10 +235,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
215
235
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
216
236
  );
217
237
  }
218
- export declare enum SupportedHardwareType {
219
- RACK = "RACK",
220
- SERVER = "SERVER",
221
- }
238
+ export declare const SupportedHardwareType: {
239
+ readonly RACK: "RACK";
240
+ readonly SERVER: "SERVER";
241
+ };
242
+ export type SupportedHardwareType =
243
+ (typeof SupportedHardwareType)[keyof typeof SupportedHardwareType];
222
244
  export interface CreateOutpostInput {
223
245
  Name: string | undefined;
224
246
  Description?: string;
@@ -245,70 +267,83 @@ export interface Outpost {
245
267
  export interface CreateOutpostOutput {
246
268
  Outpost?: Outpost;
247
269
  }
248
- export declare enum FiberOpticCableType {
249
- MULTI_MODE = "MULTI_MODE",
250
- SINGLE_MODE = "SINGLE_MODE",
251
- }
252
- export declare enum MaximumSupportedWeightLbs {
253
- MAX_1400_LBS = "MAX_1400_LBS",
254
- MAX_1600_LBS = "MAX_1600_LBS",
255
- MAX_1800_LBS = "MAX_1800_LBS",
256
- MAX_2000_LBS = "MAX_2000_LBS",
257
- NO_LIMIT = "NO_LIMIT",
258
- }
259
- export declare enum OpticalStandard {
260
- OPTIC_1000BASE_LX = "OPTIC_1000BASE_LX",
261
- OPTIC_1000BASE_SX = "OPTIC_1000BASE_SX",
262
- OPTIC_100GBASE_CWDM4 = "OPTIC_100GBASE_CWDM4",
263
- OPTIC_100GBASE_LR4 = "OPTIC_100GBASE_LR4",
264
- OPTIC_100GBASE_SR4 = "OPTIC_100GBASE_SR4",
265
- OPTIC_100G_PSM4_MSA = "OPTIC_100G_PSM4_MSA",
266
- OPTIC_10GBASE_IR = "OPTIC_10GBASE_IR",
267
- OPTIC_10GBASE_LR = "OPTIC_10GBASE_LR",
268
- OPTIC_10GBASE_SR = "OPTIC_10GBASE_SR",
269
- OPTIC_40GBASE_ESR = "OPTIC_40GBASE_ESR",
270
- OPTIC_40GBASE_IR4_LR4L = "OPTIC_40GBASE_IR4_LR4L",
271
- OPTIC_40GBASE_LR4 = "OPTIC_40GBASE_LR4",
272
- OPTIC_40GBASE_SR = "OPTIC_40GBASE_SR",
273
- }
274
- export declare enum PowerConnector {
275
- AH530P7W = "AH530P7W",
276
- AH532P6W = "AH532P6W",
277
- IEC309 = "IEC309",
278
- L6_30P = "L6_30P",
279
- }
280
- export declare enum PowerDrawKva {
281
- POWER_10_KVA = "POWER_10_KVA",
282
- POWER_15_KVA = "POWER_15_KVA",
283
- POWER_30_KVA = "POWER_30_KVA",
284
- POWER_5_KVA = "POWER_5_KVA",
285
- }
286
- export declare enum PowerFeedDrop {
287
- ABOVE_RACK = "ABOVE_RACK",
288
- BELOW_RACK = "BELOW_RACK",
289
- }
290
- export declare enum PowerPhase {
291
- SINGLE_PHASE = "SINGLE_PHASE",
292
- THREE_PHASE = "THREE_PHASE",
293
- }
294
- export declare enum UplinkCount {
295
- UPLINK_COUNT_1 = "UPLINK_COUNT_1",
296
- UPLINK_COUNT_12 = "UPLINK_COUNT_12",
297
- UPLINK_COUNT_16 = "UPLINK_COUNT_16",
298
- UPLINK_COUNT_2 = "UPLINK_COUNT_2",
299
- UPLINK_COUNT_3 = "UPLINK_COUNT_3",
300
- UPLINK_COUNT_4 = "UPLINK_COUNT_4",
301
- UPLINK_COUNT_5 = "UPLINK_COUNT_5",
302
- UPLINK_COUNT_6 = "UPLINK_COUNT_6",
303
- UPLINK_COUNT_7 = "UPLINK_COUNT_7",
304
- UPLINK_COUNT_8 = "UPLINK_COUNT_8",
305
- }
306
- export declare enum UplinkGbps {
307
- UPLINK_100G = "UPLINK_100G",
308
- UPLINK_10G = "UPLINK_10G",
309
- UPLINK_1G = "UPLINK_1G",
310
- UPLINK_40G = "UPLINK_40G",
311
- }
270
+ export declare const FiberOpticCableType: {
271
+ readonly MULTI_MODE: "MULTI_MODE";
272
+ readonly SINGLE_MODE: "SINGLE_MODE";
273
+ };
274
+ export type FiberOpticCableType =
275
+ (typeof FiberOpticCableType)[keyof typeof FiberOpticCableType];
276
+ export declare const MaximumSupportedWeightLbs: {
277
+ readonly MAX_1400_LBS: "MAX_1400_LBS";
278
+ readonly MAX_1600_LBS: "MAX_1600_LBS";
279
+ readonly MAX_1800_LBS: "MAX_1800_LBS";
280
+ readonly MAX_2000_LBS: "MAX_2000_LBS";
281
+ readonly NO_LIMIT: "NO_LIMIT";
282
+ };
283
+ export type MaximumSupportedWeightLbs =
284
+ (typeof MaximumSupportedWeightLbs)[keyof typeof MaximumSupportedWeightLbs];
285
+ export declare const OpticalStandard: {
286
+ readonly OPTIC_1000BASE_LX: "OPTIC_1000BASE_LX";
287
+ readonly OPTIC_1000BASE_SX: "OPTIC_1000BASE_SX";
288
+ readonly OPTIC_100GBASE_CWDM4: "OPTIC_100GBASE_CWDM4";
289
+ readonly OPTIC_100GBASE_LR4: "OPTIC_100GBASE_LR4";
290
+ readonly OPTIC_100GBASE_SR4: "OPTIC_100GBASE_SR4";
291
+ readonly OPTIC_100G_PSM4_MSA: "OPTIC_100G_PSM4_MSA";
292
+ readonly OPTIC_10GBASE_IR: "OPTIC_10GBASE_IR";
293
+ readonly OPTIC_10GBASE_LR: "OPTIC_10GBASE_LR";
294
+ readonly OPTIC_10GBASE_SR: "OPTIC_10GBASE_SR";
295
+ readonly OPTIC_40GBASE_ESR: "OPTIC_40GBASE_ESR";
296
+ readonly OPTIC_40GBASE_IR4_LR4L: "OPTIC_40GBASE_IR4_LR4L";
297
+ readonly OPTIC_40GBASE_LR4: "OPTIC_40GBASE_LR4";
298
+ readonly OPTIC_40GBASE_SR: "OPTIC_40GBASE_SR";
299
+ };
300
+ export type OpticalStandard =
301
+ (typeof OpticalStandard)[keyof typeof OpticalStandard];
302
+ export declare const PowerConnector: {
303
+ readonly AH530P7W: "AH530P7W";
304
+ readonly AH532P6W: "AH532P6W";
305
+ readonly IEC309: "IEC309";
306
+ readonly L6_30P: "L6_30P";
307
+ };
308
+ export type PowerConnector =
309
+ (typeof PowerConnector)[keyof typeof PowerConnector];
310
+ export declare const PowerDrawKva: {
311
+ readonly POWER_10_KVA: "POWER_10_KVA";
312
+ readonly POWER_15_KVA: "POWER_15_KVA";
313
+ readonly POWER_30_KVA: "POWER_30_KVA";
314
+ readonly POWER_5_KVA: "POWER_5_KVA";
315
+ };
316
+ export type PowerDrawKva = (typeof PowerDrawKva)[keyof typeof PowerDrawKva];
317
+ export declare const PowerFeedDrop: {
318
+ readonly ABOVE_RACK: "ABOVE_RACK";
319
+ readonly BELOW_RACK: "BELOW_RACK";
320
+ };
321
+ export type PowerFeedDrop = (typeof PowerFeedDrop)[keyof typeof PowerFeedDrop];
322
+ export declare const PowerPhase: {
323
+ readonly SINGLE_PHASE: "SINGLE_PHASE";
324
+ readonly THREE_PHASE: "THREE_PHASE";
325
+ };
326
+ export type PowerPhase = (typeof PowerPhase)[keyof typeof PowerPhase];
327
+ export declare const UplinkCount: {
328
+ readonly UPLINK_COUNT_1: "UPLINK_COUNT_1";
329
+ readonly UPLINK_COUNT_12: "UPLINK_COUNT_12";
330
+ readonly UPLINK_COUNT_16: "UPLINK_COUNT_16";
331
+ readonly UPLINK_COUNT_2: "UPLINK_COUNT_2";
332
+ readonly UPLINK_COUNT_3: "UPLINK_COUNT_3";
333
+ readonly UPLINK_COUNT_4: "UPLINK_COUNT_4";
334
+ readonly UPLINK_COUNT_5: "UPLINK_COUNT_5";
335
+ readonly UPLINK_COUNT_6: "UPLINK_COUNT_6";
336
+ readonly UPLINK_COUNT_7: "UPLINK_COUNT_7";
337
+ readonly UPLINK_COUNT_8: "UPLINK_COUNT_8";
338
+ };
339
+ export type UplinkCount = (typeof UplinkCount)[keyof typeof UplinkCount];
340
+ export declare const UplinkGbps: {
341
+ readonly UPLINK_100G: "UPLINK_100G";
342
+ readonly UPLINK_10G: "UPLINK_10G";
343
+ readonly UPLINK_1G: "UPLINK_1G";
344
+ readonly UPLINK_40G: "UPLINK_40G";
345
+ };
346
+ export type UplinkGbps = (typeof UplinkGbps)[keyof typeof UplinkGbps];
312
347
  export interface RackPhysicalProperties {
313
348
  PowerDrawKva?: PowerDrawKva | string;
314
349
  PowerPhase?: PowerPhase | string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-outposts",
3
3
  "description": "AWS SDK for JavaScript Outposts 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",