@aws-sdk/client-outposts 3.300.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +142 -166
- package/dist-es/models/models_0.js +142 -166
- package/dist-types/commands/CancelOrderCommand.d.ts +1 -1
- package/dist-types/commands/CreateOrderCommand.d.ts +3 -3
- package/dist-types/commands/CreateOutpostCommand.d.ts +2 -2
- package/dist-types/commands/CreateSiteCommand.d.ts +4 -4
- package/dist-types/commands/DeleteOutpostCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSiteCommand.d.ts +1 -1
- package/dist-types/commands/GetCatalogItemCommand.d.ts +1 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +1 -1
- package/dist-types/commands/GetOrderCommand.d.ts +1 -1
- package/dist-types/commands/GetOutpostCommand.d.ts +1 -1
- package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +1 -1
- package/dist-types/commands/GetSiteAddressCommand.d.ts +1 -1
- package/dist-types/commands/GetSiteCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetsCommand.d.ts +3 -3
- package/dist-types/commands/ListCatalogItemsCommand.d.ts +4 -4
- package/dist-types/commands/ListOrdersCommand.d.ts +1 -1
- package/dist-types/commands/ListOutpostsCommand.d.ts +4 -4
- package/dist-types/commands/ListSitesCommand.d.ts +4 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartConnectionCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateOutpostCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSiteAddressCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSiteCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +262 -142
- package/dist-types/ts3.4/models/models_0.d.ts +177 -142
- package/package.json +34 -34
|
@@ -21,21 +21,25 @@ export interface Address {
|
|
|
21
21
|
CountryCode: string | undefined;
|
|
22
22
|
Municipality?: string;
|
|
23
23
|
}
|
|
24
|
-
export declare
|
|
25
|
-
OPERATING_ADDRESS
|
|
26
|
-
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
|
|
32
|
-
COMPUTE
|
|
33
|
-
}
|
|
34
|
-
export
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|
|
51
|
-
ACTIVE
|
|
52
|
-
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
|
|
59
|
-
ORDER
|
|
60
|
-
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
|
|
98
|
-
AVAILABLE
|
|
99
|
-
DISCONTINUED
|
|
100
|
-
}
|
|
101
|
-
export
|
|
102
|
-
|
|
103
|
-
|
|
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
|
|
115
|
-
RACK
|
|
116
|
-
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
|
|
131
|
-
ALL_UPFRONT
|
|
132
|
-
NO_UPFRONT
|
|
133
|
-
PARTIAL_UPFRONT
|
|
134
|
-
}
|
|
135
|
-
export
|
|
136
|
-
|
|
137
|
-
|
|
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
|
|
150
|
-
DBS
|
|
151
|
-
DHL
|
|
152
|
-
FEDEX
|
|
153
|
-
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
|
|
160
|
-
BUILDING
|
|
161
|
-
CANCELLED
|
|
162
|
-
DELIVERED
|
|
163
|
-
ERROR
|
|
164
|
-
INSTALLED
|
|
165
|
-
INSTALLING
|
|
166
|
-
PREPARING
|
|
167
|
-
REPLACED
|
|
168
|
-
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
|
|
181
|
-
OUTPOST
|
|
182
|
-
REPLACEMENT
|
|
183
|
-
}
|
|
184
|
-
export
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
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
|
|
219
|
-
RACK
|
|
220
|
-
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
|
|
249
|
-
MULTI_MODE
|
|
250
|
-
SINGLE_MODE
|
|
251
|
-
}
|
|
252
|
-
export
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
export declare
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
}
|
|
286
|
-
export
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
}
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
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.
|
|
4
|
+
"version": "3.303.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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.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.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.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.
|
|
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",
|