@aws-sdk/client-outposts 3.686.0 → 3.689.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/README.md +16 -0
- package/dist-cjs/index.js +145 -6
- package/dist-es/Outposts.js +4 -0
- package/dist-es/commands/ListAssetInstancesCommand.js +22 -0
- package/dist-es/commands/ListBlockingInstancesForCapacityTaskCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +18 -0
- package/dist-es/pagination/ListAssetInstancesPaginator.js +4 -0
- package/dist-es/pagination/ListBlockingInstancesForCapacityTaskPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +72 -1
- package/dist-types/Outposts.d.ts +14 -0
- package/dist-types/OutpostsClient.d.ts +4 -2
- package/dist-types/commands/GetCapacityTaskCommand.d.ts +14 -2
- package/dist-types/commands/GetOutpostSupportedInstanceTypesCommand.d.ts +4 -5
- package/dist-types/commands/ListAssetInstancesCommand.d.ts +107 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +7 -0
- package/dist-types/commands/ListBlockingInstancesForCapacityTaskCommand.d.ts +95 -0
- package/dist-types/commands/ListCapacityTasksCommand.d.ts +2 -2
- package/dist-types/commands/StartCapacityTaskCommand.d.ts +28 -4
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +312 -8
- package/dist-types/pagination/ListAssetInstancesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBlockingInstancesForCapacityTaskPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/Outposts.d.ts +40 -0
- package/dist-types/ts3.4/OutpostsClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/ListAssetInstancesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListBlockingInstancesForCapacityTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +76 -2
- package/dist-types/ts3.4/pagination/ListAssetInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBlockingInstancesForCapacityTaskPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +6 -6
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListBlockingInstancesForCapacityTaskInput,
|
|
5
|
+
ListBlockingInstancesForCapacityTaskOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OutpostsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OutpostsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListBlockingInstancesForCapacityTaskCommandInput
|
|
15
|
+
extends ListBlockingInstancesForCapacityTaskInput {}
|
|
16
|
+
export interface ListBlockingInstancesForCapacityTaskCommandOutput
|
|
17
|
+
extends ListBlockingInstancesForCapacityTaskOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListBlockingInstancesForCapacityTaskCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListBlockingInstancesForCapacityTaskCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListBlockingInstancesForCapacityTaskCommandInput,
|
|
24
|
+
ListBlockingInstancesForCapacityTaskCommandOutput,
|
|
25
|
+
OutpostsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListBlockingInstancesForCapacityTaskCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListBlockingInstancesForCapacityTaskCommandInput,
|
|
33
|
+
ListBlockingInstancesForCapacityTaskCommandOutput,
|
|
34
|
+
OutpostsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListBlockingInstancesForCapacityTaskCommand extends ListBlockingInstancesForCapacityTaskCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListBlockingInstancesForCapacityTaskInput;
|
|
44
|
+
output: ListBlockingInstancesForCapacityTaskOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListBlockingInstancesForCapacityTaskCommandInput;
|
|
48
|
+
output: ListBlockingInstancesForCapacityTaskCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -14,7 +14,9 @@ export * from "./GetOutpostInstanceTypesCommand";
|
|
|
14
14
|
export * from "./GetOutpostSupportedInstanceTypesCommand";
|
|
15
15
|
export * from "./GetSiteAddressCommand";
|
|
16
16
|
export * from "./GetSiteCommand";
|
|
17
|
+
export * from "./ListAssetInstancesCommand";
|
|
17
18
|
export * from "./ListAssetsCommand";
|
|
19
|
+
export * from "./ListBlockingInstancesForCapacityTaskCommand";
|
|
18
20
|
export * from "./ListCapacityTasksCommand";
|
|
19
21
|
export * from "./ListCatalogItemsCommand";
|
|
20
22
|
export * from "./ListOrdersCommand";
|
|
@@ -33,6 +33,10 @@ export declare const AssetType: {
|
|
|
33
33
|
readonly COMPUTE: "COMPUTE";
|
|
34
34
|
};
|
|
35
35
|
export type AssetType = (typeof AssetType)[keyof typeof AssetType];
|
|
36
|
+
export interface AssetInstanceTypeCapacity {
|
|
37
|
+
InstanceType: string | undefined;
|
|
38
|
+
Count: number | undefined;
|
|
39
|
+
}
|
|
36
40
|
export declare const ComputeAssetState: {
|
|
37
41
|
readonly ACTIVE: "ACTIVE";
|
|
38
42
|
readonly ISOLATED: "ISOLATED";
|
|
@@ -44,6 +48,8 @@ export interface ComputeAttributes {
|
|
|
44
48
|
HostId?: string;
|
|
45
49
|
State?: ComputeAssetState;
|
|
46
50
|
InstanceFamilies?: string[];
|
|
51
|
+
InstanceTypeCapacities?: AssetInstanceTypeCapacity[];
|
|
52
|
+
MaxVcpus?: number;
|
|
47
53
|
}
|
|
48
54
|
export interface AssetInfo {
|
|
49
55
|
AssetId?: string;
|
|
@@ -52,12 +58,34 @@ export interface AssetInfo {
|
|
|
52
58
|
ComputeAttributes?: ComputeAttributes;
|
|
53
59
|
AssetLocation?: AssetLocation;
|
|
54
60
|
}
|
|
61
|
+
export declare const AWSServiceName: {
|
|
62
|
+
readonly AWS: "AWS";
|
|
63
|
+
readonly EC2: "EC2";
|
|
64
|
+
readonly ELASTICACHE: "ELASTICACHE";
|
|
65
|
+
readonly ELB: "ELB";
|
|
66
|
+
readonly RDS: "RDS";
|
|
67
|
+
readonly ROUTE53: "ROUTE53";
|
|
68
|
+
};
|
|
69
|
+
export type AWSServiceName =
|
|
70
|
+
(typeof AWSServiceName)[keyof typeof AWSServiceName];
|
|
71
|
+
export interface AssetInstance {
|
|
72
|
+
InstanceId?: string;
|
|
73
|
+
InstanceType?: string;
|
|
74
|
+
AssetId?: string;
|
|
75
|
+
AccountId?: string;
|
|
76
|
+
AwsServiceName?: AWSServiceName;
|
|
77
|
+
}
|
|
55
78
|
export declare const AssetState: {
|
|
56
79
|
readonly ACTIVE: "ACTIVE";
|
|
57
80
|
readonly ISOLATED: "ISOLATED";
|
|
58
81
|
readonly RETIRING: "RETIRING";
|
|
59
82
|
};
|
|
60
83
|
export type AssetState = (typeof AssetState)[keyof typeof AssetState];
|
|
84
|
+
export interface BlockingInstance {
|
|
85
|
+
InstanceId?: string;
|
|
86
|
+
AccountId?: string;
|
|
87
|
+
AwsServiceName?: AWSServiceName;
|
|
88
|
+
}
|
|
61
89
|
export interface CancelCapacityTaskInput {
|
|
62
90
|
CapacityTaskId: string | undefined;
|
|
63
91
|
OutpostIdentifier: string | undefined;
|
|
@@ -103,6 +131,10 @@ export interface CancelOrderInput {
|
|
|
103
131
|
}
|
|
104
132
|
export interface CancelOrderOutput {}
|
|
105
133
|
export declare const CapacityTaskFailureType: {
|
|
134
|
+
readonly BLOCKING_INSTANCES_NOT_EVACUATED: "BLOCKING_INSTANCES_NOT_EVACUATED";
|
|
135
|
+
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
136
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
137
|
+
readonly UNEXPECTED_ASSET_STATE: "UNEXPECTED_ASSET_STATE";
|
|
106
138
|
readonly UNSUPPORTED_CAPACITY_CONFIGURATION: "UNSUPPORTED_CAPACITY_CONFIGURATION";
|
|
107
139
|
};
|
|
108
140
|
export type CapacityTaskFailureType =
|
|
@@ -112,11 +144,13 @@ export interface CapacityTaskFailure {
|
|
|
112
144
|
Type?: CapacityTaskFailureType;
|
|
113
145
|
}
|
|
114
146
|
export declare const CapacityTaskStatus: {
|
|
147
|
+
readonly CANCELLATION_IN_PROGRESS: "CANCELLATION_IN_PROGRESS";
|
|
115
148
|
readonly CANCELLED: "CANCELLED";
|
|
116
149
|
readonly COMPLETED: "COMPLETED";
|
|
117
150
|
readonly FAILED: "FAILED";
|
|
118
151
|
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
119
152
|
readonly REQUESTED: "REQUESTED";
|
|
153
|
+
readonly WAITING_FOR_EVACUATION: "WAITING_FOR_EVACUATION";
|
|
120
154
|
};
|
|
121
155
|
export type CapacityTaskStatus =
|
|
122
156
|
(typeof CapacityTaskStatus)[keyof typeof CapacityTaskStatus];
|
|
@@ -428,21 +462,34 @@ export interface GetCapacityTaskInput {
|
|
|
428
462
|
CapacityTaskId: string | undefined;
|
|
429
463
|
OutpostIdentifier: string | undefined;
|
|
430
464
|
}
|
|
465
|
+
export interface InstancesToExclude {
|
|
466
|
+
Instances?: string[];
|
|
467
|
+
AccountIds?: string[];
|
|
468
|
+
Services?: AWSServiceName[];
|
|
469
|
+
}
|
|
431
470
|
export interface InstanceTypeCapacity {
|
|
432
471
|
InstanceType: string | undefined;
|
|
433
472
|
Count: number | undefined;
|
|
434
473
|
}
|
|
474
|
+
export declare const TaskActionOnBlockingInstances: {
|
|
475
|
+
readonly FAIL_TASK: "FAIL_TASK";
|
|
476
|
+
readonly WAIT_FOR_EVACUATION: "WAIT_FOR_EVACUATION";
|
|
477
|
+
};
|
|
478
|
+
export type TaskActionOnBlockingInstances =
|
|
479
|
+
(typeof TaskActionOnBlockingInstances)[keyof typeof TaskActionOnBlockingInstances];
|
|
435
480
|
export interface GetCapacityTaskOutput {
|
|
436
481
|
CapacityTaskId?: string;
|
|
437
482
|
OutpostId?: string;
|
|
438
483
|
OrderId?: string;
|
|
439
484
|
RequestedInstancePools?: InstanceTypeCapacity[];
|
|
485
|
+
InstancesToExclude?: InstancesToExclude;
|
|
440
486
|
DryRun?: boolean;
|
|
441
487
|
CapacityTaskStatus?: CapacityTaskStatus;
|
|
442
488
|
Failed?: CapacityTaskFailure;
|
|
443
489
|
CreationDate?: Date;
|
|
444
490
|
CompletionDate?: Date;
|
|
445
491
|
LastModifiedDate?: Date;
|
|
492
|
+
TaskActionOnBlockingInstances?: TaskActionOnBlockingInstances;
|
|
446
493
|
}
|
|
447
494
|
export interface GetCatalogItemInput {
|
|
448
495
|
CatalogItemId: string | undefined;
|
|
@@ -486,7 +533,7 @@ export interface GetOutpostInstanceTypesOutput {
|
|
|
486
533
|
}
|
|
487
534
|
export interface GetOutpostSupportedInstanceTypesInput {
|
|
488
535
|
OutpostIdentifier: string | undefined;
|
|
489
|
-
OrderId
|
|
536
|
+
OrderId?: string;
|
|
490
537
|
MaxResults?: number;
|
|
491
538
|
NextToken?: string;
|
|
492
539
|
}
|
|
@@ -509,6 +556,19 @@ export interface GetSiteAddressOutput {
|
|
|
509
556
|
AddressType?: AddressType;
|
|
510
557
|
Address?: Address;
|
|
511
558
|
}
|
|
559
|
+
export interface ListAssetInstancesInput {
|
|
560
|
+
OutpostIdentifier: string | undefined;
|
|
561
|
+
AssetIdFilter?: string[];
|
|
562
|
+
InstanceTypeFilter?: string[];
|
|
563
|
+
AccountIdFilter?: string[];
|
|
564
|
+
AwsServiceFilter?: AWSServiceName[];
|
|
565
|
+
MaxResults?: number;
|
|
566
|
+
NextToken?: string;
|
|
567
|
+
}
|
|
568
|
+
export interface ListAssetInstancesOutput {
|
|
569
|
+
AssetInstances?: AssetInstance[];
|
|
570
|
+
NextToken?: string;
|
|
571
|
+
}
|
|
512
572
|
export interface ListAssetsInput {
|
|
513
573
|
OutpostIdentifier: string | undefined;
|
|
514
574
|
HostIdFilter?: string[];
|
|
@@ -520,6 +580,16 @@ export interface ListAssetsOutput {
|
|
|
520
580
|
Assets?: AssetInfo[];
|
|
521
581
|
NextToken?: string;
|
|
522
582
|
}
|
|
583
|
+
export interface ListBlockingInstancesForCapacityTaskInput {
|
|
584
|
+
OutpostIdentifier: string | undefined;
|
|
585
|
+
CapacityTaskId: string | undefined;
|
|
586
|
+
MaxResults?: number;
|
|
587
|
+
NextToken?: string;
|
|
588
|
+
}
|
|
589
|
+
export interface ListBlockingInstancesForCapacityTaskOutput {
|
|
590
|
+
BlockingInstances?: BlockingInstance[];
|
|
591
|
+
NextToken?: string;
|
|
592
|
+
}
|
|
523
593
|
export interface ListCapacityTasksInput {
|
|
524
594
|
OutpostIdentifierFilter?: string;
|
|
525
595
|
MaxResults?: number;
|
|
@@ -589,21 +659,25 @@ export interface ListTagsForResourceResponse {
|
|
|
589
659
|
}
|
|
590
660
|
export interface StartCapacityTaskInput {
|
|
591
661
|
OutpostIdentifier: string | undefined;
|
|
592
|
-
OrderId
|
|
662
|
+
OrderId?: string;
|
|
593
663
|
InstancePools: InstanceTypeCapacity[] | undefined;
|
|
664
|
+
InstancesToExclude?: InstancesToExclude;
|
|
594
665
|
DryRun?: boolean;
|
|
666
|
+
TaskActionOnBlockingInstances?: TaskActionOnBlockingInstances;
|
|
595
667
|
}
|
|
596
668
|
export interface StartCapacityTaskOutput {
|
|
597
669
|
CapacityTaskId?: string;
|
|
598
670
|
OutpostId?: string;
|
|
599
671
|
OrderId?: string;
|
|
600
672
|
RequestedInstancePools?: InstanceTypeCapacity[];
|
|
673
|
+
InstancesToExclude?: InstancesToExclude;
|
|
601
674
|
DryRun?: boolean;
|
|
602
675
|
CapacityTaskStatus?: CapacityTaskStatus;
|
|
603
676
|
Failed?: CapacityTaskFailure;
|
|
604
677
|
CreationDate?: Date;
|
|
605
678
|
CompletionDate?: Date;
|
|
606
679
|
LastModifiedDate?: Date;
|
|
680
|
+
TaskActionOnBlockingInstances?: TaskActionOnBlockingInstances;
|
|
607
681
|
}
|
|
608
682
|
export interface StartConnectionRequest {
|
|
609
683
|
DeviceSerialNumber?: string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAssetInstancesCommandInput,
|
|
4
|
+
ListAssetInstancesCommandOutput,
|
|
5
|
+
} from "../commands/ListAssetInstancesCommand";
|
|
6
|
+
import { OutpostsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAssetInstances: (
|
|
8
|
+
config: OutpostsPaginationConfiguration,
|
|
9
|
+
input: ListAssetInstancesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAssetInstancesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListBlockingInstancesForCapacityTaskCommandInput,
|
|
4
|
+
ListBlockingInstancesForCapacityTaskCommandOutput,
|
|
5
|
+
} from "../commands/ListBlockingInstancesForCapacityTaskCommand";
|
|
6
|
+
import { OutpostsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListBlockingInstancesForCapacityTask: (
|
|
8
|
+
config: OutpostsPaginationConfiguration,
|
|
9
|
+
input: ListBlockingInstancesForCapacityTaskCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListBlockingInstancesForCapacityTaskCommandOutput>;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from "./GetOutpostInstanceTypesPaginator";
|
|
2
2
|
export * from "./GetOutpostSupportedInstanceTypesPaginator";
|
|
3
3
|
export * from "./Interfaces";
|
|
4
|
+
export * from "./ListAssetInstancesPaginator";
|
|
4
5
|
export * from "./ListAssetsPaginator";
|
|
6
|
+
export * from "./ListBlockingInstancesForCapacityTaskPaginator";
|
|
5
7
|
export * from "./ListCapacityTasksPaginator";
|
|
6
8
|
export * from "./ListCatalogItemsPaginator";
|
|
7
9
|
export * from "./ListOrdersPaginator";
|
|
@@ -67,10 +67,18 @@ import {
|
|
|
67
67
|
GetSiteCommandInput,
|
|
68
68
|
GetSiteCommandOutput,
|
|
69
69
|
} from "../commands/GetSiteCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListAssetInstancesCommandInput,
|
|
72
|
+
ListAssetInstancesCommandOutput,
|
|
73
|
+
} from "../commands/ListAssetInstancesCommand";
|
|
70
74
|
import {
|
|
71
75
|
ListAssetsCommandInput,
|
|
72
76
|
ListAssetsCommandOutput,
|
|
73
77
|
} from "../commands/ListAssetsCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListBlockingInstancesForCapacityTaskCommandInput,
|
|
80
|
+
ListBlockingInstancesForCapacityTaskCommandOutput,
|
|
81
|
+
} from "../commands/ListBlockingInstancesForCapacityTaskCommand";
|
|
74
82
|
import {
|
|
75
83
|
ListCapacityTasksCommandInput,
|
|
76
84
|
ListCapacityTasksCommandOutput,
|
|
@@ -191,10 +199,18 @@ export declare const se_GetSiteAddressCommand: (
|
|
|
191
199
|
input: GetSiteAddressCommandInput,
|
|
192
200
|
context: __SerdeContext
|
|
193
201
|
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const se_ListAssetInstancesCommand: (
|
|
203
|
+
input: ListAssetInstancesCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
194
206
|
export declare const se_ListAssetsCommand: (
|
|
195
207
|
input: ListAssetsCommandInput,
|
|
196
208
|
context: __SerdeContext
|
|
197
209
|
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const se_ListBlockingInstancesForCapacityTaskCommand: (
|
|
211
|
+
input: ListBlockingInstancesForCapacityTaskCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
198
214
|
export declare const se_ListCapacityTasksCommand: (
|
|
199
215
|
input: ListCapacityTasksCommandInput,
|
|
200
216
|
context: __SerdeContext
|
|
@@ -315,10 +331,18 @@ export declare const de_GetSiteAddressCommand: (
|
|
|
315
331
|
output: __HttpResponse,
|
|
316
332
|
context: __SerdeContext
|
|
317
333
|
) => Promise<GetSiteAddressCommandOutput>;
|
|
334
|
+
export declare const de_ListAssetInstancesCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<ListAssetInstancesCommandOutput>;
|
|
318
338
|
export declare const de_ListAssetsCommand: (
|
|
319
339
|
output: __HttpResponse,
|
|
320
340
|
context: __SerdeContext
|
|
321
341
|
) => Promise<ListAssetsCommandOutput>;
|
|
342
|
+
export declare const de_ListBlockingInstancesForCapacityTaskCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<ListBlockingInstancesForCapacityTaskCommandOutput>;
|
|
322
346
|
export declare const de_ListCapacityTasksCommand: (
|
|
323
347
|
output: __HttpResponse,
|
|
324
348
|
context: __SerdeContext
|
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.689.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-outposts",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.687.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.687.0",
|
|
25
25
|
"@aws-sdk/core": "3.686.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.687.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.687.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.687.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|