@aws-sdk/client-outposts 3.687.0 → 3.691.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 +540 -236
- 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 +304 -230
- 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 +7 -7
|
@@ -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.691.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.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.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.691.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.691.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",
|