@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,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAssetInstancesCommandInput, ListAssetInstancesCommandOutput } from "../commands/ListAssetInstancesCommand";
|
|
3
|
+
import { OutpostsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAssetInstances: (config: OutpostsPaginationConfiguration, input: ListAssetInstancesCommandInput, ...rest: any[]) => Paginator<ListAssetInstancesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListBlockingInstancesForCapacityTaskCommandInput, ListBlockingInstancesForCapacityTaskCommandOutput } from "../commands/ListBlockingInstancesForCapacityTaskCommand";
|
|
3
|
+
import { OutpostsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListBlockingInstancesForCapacityTask: (config: OutpostsPaginationConfiguration, input: ListBlockingInstancesForCapacityTaskCommandInput, ...rest: any[]) => 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";
|
|
@@ -16,7 +16,9 @@ import { GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutp
|
|
|
16
16
|
import { GetOutpostSupportedInstanceTypesCommandInput, GetOutpostSupportedInstanceTypesCommandOutput } from "../commands/GetOutpostSupportedInstanceTypesCommand";
|
|
17
17
|
import { GetSiteAddressCommandInput, GetSiteAddressCommandOutput } from "../commands/GetSiteAddressCommand";
|
|
18
18
|
import { GetSiteCommandInput, GetSiteCommandOutput } from "../commands/GetSiteCommand";
|
|
19
|
+
import { ListAssetInstancesCommandInput, ListAssetInstancesCommandOutput } from "../commands/ListAssetInstancesCommand";
|
|
19
20
|
import { ListAssetsCommandInput, ListAssetsCommandOutput } from "../commands/ListAssetsCommand";
|
|
21
|
+
import { ListBlockingInstancesForCapacityTaskCommandInput, ListBlockingInstancesForCapacityTaskCommandOutput } from "../commands/ListBlockingInstancesForCapacityTaskCommand";
|
|
20
22
|
import { ListCapacityTasksCommandInput, ListCapacityTasksCommandOutput } from "../commands/ListCapacityTasksCommand";
|
|
21
23
|
import { ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput } from "../commands/ListCatalogItemsCommand";
|
|
22
24
|
import { ListOrdersCommandInput, ListOrdersCommandOutput } from "../commands/ListOrdersCommand";
|
|
@@ -95,10 +97,18 @@ export declare const se_GetSiteCommand: (input: GetSiteCommandInput, context: __
|
|
|
95
97
|
* serializeAws_restJson1GetSiteAddressCommand
|
|
96
98
|
*/
|
|
97
99
|
export declare const se_GetSiteAddressCommand: (input: GetSiteAddressCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
+
/**
|
|
101
|
+
* serializeAws_restJson1ListAssetInstancesCommand
|
|
102
|
+
*/
|
|
103
|
+
export declare const se_ListAssetInstancesCommand: (input: ListAssetInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
104
|
/**
|
|
99
105
|
* serializeAws_restJson1ListAssetsCommand
|
|
100
106
|
*/
|
|
101
107
|
export declare const se_ListAssetsCommand: (input: ListAssetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
|
+
/**
|
|
109
|
+
* serializeAws_restJson1ListBlockingInstancesForCapacityTaskCommand
|
|
110
|
+
*/
|
|
111
|
+
export declare const se_ListBlockingInstancesForCapacityTaskCommand: (input: ListBlockingInstancesForCapacityTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
102
112
|
/**
|
|
103
113
|
* serializeAws_restJson1ListCapacityTasksCommand
|
|
104
114
|
*/
|
|
@@ -219,10 +229,18 @@ export declare const de_GetSiteCommand: (output: __HttpResponse, context: __Serd
|
|
|
219
229
|
* deserializeAws_restJson1GetSiteAddressCommand
|
|
220
230
|
*/
|
|
221
231
|
export declare const de_GetSiteAddressCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSiteAddressCommandOutput>;
|
|
232
|
+
/**
|
|
233
|
+
* deserializeAws_restJson1ListAssetInstancesCommand
|
|
234
|
+
*/
|
|
235
|
+
export declare const de_ListAssetInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssetInstancesCommandOutput>;
|
|
222
236
|
/**
|
|
223
237
|
* deserializeAws_restJson1ListAssetsCommand
|
|
224
238
|
*/
|
|
225
239
|
export declare const de_ListAssetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssetsCommandOutput>;
|
|
240
|
+
/**
|
|
241
|
+
* deserializeAws_restJson1ListBlockingInstancesForCapacityTaskCommand
|
|
242
|
+
*/
|
|
243
|
+
export declare const de_ListBlockingInstancesForCapacityTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBlockingInstancesForCapacityTaskCommandOutput>;
|
|
226
244
|
/**
|
|
227
245
|
* deserializeAws_restJson1ListCapacityTasksCommand
|
|
228
246
|
*/
|
|
@@ -63,10 +63,18 @@ import {
|
|
|
63
63
|
GetSiteCommandInput,
|
|
64
64
|
GetSiteCommandOutput,
|
|
65
65
|
} from "./commands/GetSiteCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListAssetInstancesCommandInput,
|
|
68
|
+
ListAssetInstancesCommandOutput,
|
|
69
|
+
} from "./commands/ListAssetInstancesCommand";
|
|
66
70
|
import {
|
|
67
71
|
ListAssetsCommandInput,
|
|
68
72
|
ListAssetsCommandOutput,
|
|
69
73
|
} from "./commands/ListAssetsCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListBlockingInstancesForCapacityTaskCommandInput,
|
|
76
|
+
ListBlockingInstancesForCapacityTaskCommandOutput,
|
|
77
|
+
} from "./commands/ListBlockingInstancesForCapacityTaskCommand";
|
|
70
78
|
import {
|
|
71
79
|
ListCapacityTasksCommandInput,
|
|
72
80
|
ListCapacityTasksCommandOutput,
|
|
@@ -333,6 +341,19 @@ export interface Outposts {
|
|
|
333
341
|
options: __HttpHandlerOptions,
|
|
334
342
|
cb: (err: any, data?: GetSiteAddressCommandOutput) => void
|
|
335
343
|
): void;
|
|
344
|
+
listAssetInstances(
|
|
345
|
+
args: ListAssetInstancesCommandInput,
|
|
346
|
+
options?: __HttpHandlerOptions
|
|
347
|
+
): Promise<ListAssetInstancesCommandOutput>;
|
|
348
|
+
listAssetInstances(
|
|
349
|
+
args: ListAssetInstancesCommandInput,
|
|
350
|
+
cb: (err: any, data?: ListAssetInstancesCommandOutput) => void
|
|
351
|
+
): void;
|
|
352
|
+
listAssetInstances(
|
|
353
|
+
args: ListAssetInstancesCommandInput,
|
|
354
|
+
options: __HttpHandlerOptions,
|
|
355
|
+
cb: (err: any, data?: ListAssetInstancesCommandOutput) => void
|
|
356
|
+
): void;
|
|
336
357
|
listAssets(
|
|
337
358
|
args: ListAssetsCommandInput,
|
|
338
359
|
options?: __HttpHandlerOptions
|
|
@@ -346,6 +367,25 @@ export interface Outposts {
|
|
|
346
367
|
options: __HttpHandlerOptions,
|
|
347
368
|
cb: (err: any, data?: ListAssetsCommandOutput) => void
|
|
348
369
|
): void;
|
|
370
|
+
listBlockingInstancesForCapacityTask(
|
|
371
|
+
args: ListBlockingInstancesForCapacityTaskCommandInput,
|
|
372
|
+
options?: __HttpHandlerOptions
|
|
373
|
+
): Promise<ListBlockingInstancesForCapacityTaskCommandOutput>;
|
|
374
|
+
listBlockingInstancesForCapacityTask(
|
|
375
|
+
args: ListBlockingInstancesForCapacityTaskCommandInput,
|
|
376
|
+
cb: (
|
|
377
|
+
err: any,
|
|
378
|
+
data?: ListBlockingInstancesForCapacityTaskCommandOutput
|
|
379
|
+
) => void
|
|
380
|
+
): void;
|
|
381
|
+
listBlockingInstancesForCapacityTask(
|
|
382
|
+
args: ListBlockingInstancesForCapacityTaskCommandInput,
|
|
383
|
+
options: __HttpHandlerOptions,
|
|
384
|
+
cb: (
|
|
385
|
+
err: any,
|
|
386
|
+
data?: ListBlockingInstancesForCapacityTaskCommandOutput
|
|
387
|
+
) => void
|
|
388
|
+
): void;
|
|
349
389
|
listCapacityTasks(): Promise<ListCapacityTasksCommandOutput>;
|
|
350
390
|
listCapacityTasks(
|
|
351
391
|
args: ListCapacityTasksCommandInput,
|
|
@@ -109,10 +109,18 @@ import {
|
|
|
109
109
|
GetSiteCommandInput,
|
|
110
110
|
GetSiteCommandOutput,
|
|
111
111
|
} from "./commands/GetSiteCommand";
|
|
112
|
+
import {
|
|
113
|
+
ListAssetInstancesCommandInput,
|
|
114
|
+
ListAssetInstancesCommandOutput,
|
|
115
|
+
} from "./commands/ListAssetInstancesCommand";
|
|
112
116
|
import {
|
|
113
117
|
ListAssetsCommandInput,
|
|
114
118
|
ListAssetsCommandOutput,
|
|
115
119
|
} from "./commands/ListAssetsCommand";
|
|
120
|
+
import {
|
|
121
|
+
ListBlockingInstancesForCapacityTaskCommandInput,
|
|
122
|
+
ListBlockingInstancesForCapacityTaskCommandOutput,
|
|
123
|
+
} from "./commands/ListBlockingInstancesForCapacityTaskCommand";
|
|
116
124
|
import {
|
|
117
125
|
ListCapacityTasksCommandInput,
|
|
118
126
|
ListCapacityTasksCommandOutput,
|
|
@@ -193,7 +201,9 @@ export type ServiceInputTypes =
|
|
|
193
201
|
| GetOutpostSupportedInstanceTypesCommandInput
|
|
194
202
|
| GetSiteAddressCommandInput
|
|
195
203
|
| GetSiteCommandInput
|
|
204
|
+
| ListAssetInstancesCommandInput
|
|
196
205
|
| ListAssetsCommandInput
|
|
206
|
+
| ListBlockingInstancesForCapacityTaskCommandInput
|
|
197
207
|
| ListCapacityTasksCommandInput
|
|
198
208
|
| ListCatalogItemsCommandInput
|
|
199
209
|
| ListOrdersCommandInput
|
|
@@ -225,7 +235,9 @@ export type ServiceOutputTypes =
|
|
|
225
235
|
| GetOutpostSupportedInstanceTypesCommandOutput
|
|
226
236
|
| GetSiteAddressCommandOutput
|
|
227
237
|
| GetSiteCommandOutput
|
|
238
|
+
| ListAssetInstancesCommandOutput
|
|
228
239
|
| ListAssetsCommandOutput
|
|
240
|
+
| ListBlockingInstancesForCapacityTaskCommandOutput
|
|
229
241
|
| ListCapacityTasksCommandOutput
|
|
230
242
|
| ListCatalogItemsCommandOutput
|
|
231
243
|
| ListOrdersCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListAssetInstancesInput,
|
|
5
|
+
ListAssetInstancesOutput,
|
|
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 ListAssetInstancesCommandInput
|
|
15
|
+
extends ListAssetInstancesInput {}
|
|
16
|
+
export interface ListAssetInstancesCommandOutput
|
|
17
|
+
extends ListAssetInstancesOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListAssetInstancesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListAssetInstancesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListAssetInstancesCommandInput,
|
|
24
|
+
ListAssetInstancesCommandOutput,
|
|
25
|
+
OutpostsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListAssetInstancesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListAssetInstancesCommandInput,
|
|
33
|
+
ListAssetInstancesCommandOutput,
|
|
34
|
+
OutpostsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListAssetInstancesCommand extends ListAssetInstancesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListAssetInstancesInput;
|
|
44
|
+
output: ListAssetInstancesOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListAssetInstancesCommandInput;
|
|
48
|
+
output: ListAssetInstancesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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";
|