@aws-sdk/client-outposts 3.554.0 → 3.556.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 +40 -0
- package/dist-cjs/index.js +302 -1
- package/dist-es/Outposts.js +10 -0
- package/dist-es/commands/CancelCapacityTaskCommand.js +24 -0
- package/dist-es/commands/GetCapacityTaskCommand.js +24 -0
- package/dist-es/commands/GetOutpostSupportedInstanceTypesCommand.js +24 -0
- package/dist-es/commands/ListCapacityTasksCommand.js +24 -0
- package/dist-es/commands/StartCapacityTaskCommand.js +24 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +11 -0
- package/dist-es/pagination/GetOutpostSupportedInstanceTypesPaginator.js +4 -0
- package/dist-es/pagination/ListCapacityTasksPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +175 -1
- package/dist-types/Outposts.d.ts +36 -0
- package/dist-types/OutpostsClient.d.ts +7 -2
- package/dist-types/commands/CancelCapacityTaskCommand.d.ts +73 -0
- package/dist-types/commands/CreateOrderCommand.d.ts +1 -1
- package/dist-types/commands/GetCapacityTaskCommand.d.ts +89 -0
- package/dist-types/commands/GetOrderCommand.d.ts +1 -1
- package/dist-types/commands/GetOutpostSupportedInstanceTypesCommand.d.ts +82 -0
- package/dist-types/commands/ListCapacityTasksCommand.d.ts +90 -0
- package/dist-types/commands/StartCapacityTaskCommand.d.ts +99 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +381 -8
- package/dist-types/pagination/GetOutpostSupportedInstanceTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCapacityTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/Outposts.d.ts +86 -0
- package/dist-types/ts3.4/OutpostsClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CancelCapacityTaskCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetCapacityTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetOutpostSupportedInstanceTypesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListCapacityTasksCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartCapacityTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +94 -3
- package/dist-types/ts3.4/pagination/GetOutpostSupportedInstanceTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCapacityTasksPaginator.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 +60 -0
- package/package.json +4 -4
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CancelCapacityTaskCommandInput,
|
|
8
|
+
CancelCapacityTaskCommandOutput,
|
|
9
|
+
} from "../commands/CancelCapacityTaskCommand";
|
|
6
10
|
import {
|
|
7
11
|
CancelOrderCommandInput,
|
|
8
12
|
CancelOrderCommandOutput,
|
|
@@ -27,6 +31,10 @@ import {
|
|
|
27
31
|
DeleteSiteCommandInput,
|
|
28
32
|
DeleteSiteCommandOutput,
|
|
29
33
|
} from "../commands/DeleteSiteCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetCapacityTaskCommandInput,
|
|
36
|
+
GetCapacityTaskCommandOutput,
|
|
37
|
+
} from "../commands/GetCapacityTaskCommand";
|
|
30
38
|
import {
|
|
31
39
|
GetCatalogItemCommandInput,
|
|
32
40
|
GetCatalogItemCommandOutput,
|
|
@@ -47,6 +55,10 @@ import {
|
|
|
47
55
|
GetOutpostInstanceTypesCommandInput,
|
|
48
56
|
GetOutpostInstanceTypesCommandOutput,
|
|
49
57
|
} from "../commands/GetOutpostInstanceTypesCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetOutpostSupportedInstanceTypesCommandInput,
|
|
60
|
+
GetOutpostSupportedInstanceTypesCommandOutput,
|
|
61
|
+
} from "../commands/GetOutpostSupportedInstanceTypesCommand";
|
|
50
62
|
import {
|
|
51
63
|
GetSiteAddressCommandInput,
|
|
52
64
|
GetSiteAddressCommandOutput,
|
|
@@ -59,6 +71,10 @@ import {
|
|
|
59
71
|
ListAssetsCommandInput,
|
|
60
72
|
ListAssetsCommandOutput,
|
|
61
73
|
} from "../commands/ListAssetsCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListCapacityTasksCommandInput,
|
|
76
|
+
ListCapacityTasksCommandOutput,
|
|
77
|
+
} from "../commands/ListCapacityTasksCommand";
|
|
62
78
|
import {
|
|
63
79
|
ListCatalogItemsCommandInput,
|
|
64
80
|
ListCatalogItemsCommandOutput,
|
|
@@ -79,6 +95,10 @@ import {
|
|
|
79
95
|
ListTagsForResourceCommandInput,
|
|
80
96
|
ListTagsForResourceCommandOutput,
|
|
81
97
|
} from "../commands/ListTagsForResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
StartCapacityTaskCommandInput,
|
|
100
|
+
StartCapacityTaskCommandOutput,
|
|
101
|
+
} from "../commands/StartCapacityTaskCommand";
|
|
82
102
|
import {
|
|
83
103
|
StartConnectionCommandInput,
|
|
84
104
|
StartConnectionCommandOutput,
|
|
@@ -107,6 +127,10 @@ import {
|
|
|
107
127
|
UpdateSiteRackPhysicalPropertiesCommandInput,
|
|
108
128
|
UpdateSiteRackPhysicalPropertiesCommandOutput,
|
|
109
129
|
} from "../commands/UpdateSiteRackPhysicalPropertiesCommand";
|
|
130
|
+
export declare const se_CancelCapacityTaskCommand: (
|
|
131
|
+
input: CancelCapacityTaskCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
110
134
|
export declare const se_CancelOrderCommand: (
|
|
111
135
|
input: CancelOrderCommandInput,
|
|
112
136
|
context: __SerdeContext
|
|
@@ -131,6 +155,10 @@ export declare const se_DeleteSiteCommand: (
|
|
|
131
155
|
input: DeleteSiteCommandInput,
|
|
132
156
|
context: __SerdeContext
|
|
133
157
|
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_GetCapacityTaskCommand: (
|
|
159
|
+
input: GetCapacityTaskCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
134
162
|
export declare const se_GetCatalogItemCommand: (
|
|
135
163
|
input: GetCatalogItemCommandInput,
|
|
136
164
|
context: __SerdeContext
|
|
@@ -151,6 +179,10 @@ export declare const se_GetOutpostInstanceTypesCommand: (
|
|
|
151
179
|
input: GetOutpostInstanceTypesCommandInput,
|
|
152
180
|
context: __SerdeContext
|
|
153
181
|
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const se_GetOutpostSupportedInstanceTypesCommand: (
|
|
183
|
+
input: GetOutpostSupportedInstanceTypesCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
154
186
|
export declare const se_GetSiteCommand: (
|
|
155
187
|
input: GetSiteCommandInput,
|
|
156
188
|
context: __SerdeContext
|
|
@@ -163,6 +195,10 @@ export declare const se_ListAssetsCommand: (
|
|
|
163
195
|
input: ListAssetsCommandInput,
|
|
164
196
|
context: __SerdeContext
|
|
165
197
|
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const se_ListCapacityTasksCommand: (
|
|
199
|
+
input: ListCapacityTasksCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
166
202
|
export declare const se_ListCatalogItemsCommand: (
|
|
167
203
|
input: ListCatalogItemsCommandInput,
|
|
168
204
|
context: __SerdeContext
|
|
@@ -183,6 +219,10 @@ export declare const se_ListTagsForResourceCommand: (
|
|
|
183
219
|
input: ListTagsForResourceCommandInput,
|
|
184
220
|
context: __SerdeContext
|
|
185
221
|
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const se_StartCapacityTaskCommand: (
|
|
223
|
+
input: StartCapacityTaskCommandInput,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<__HttpRequest>;
|
|
186
226
|
export declare const se_StartConnectionCommand: (
|
|
187
227
|
input: StartConnectionCommandInput,
|
|
188
228
|
context: __SerdeContext
|
|
@@ -211,6 +251,10 @@ export declare const se_UpdateSiteRackPhysicalPropertiesCommand: (
|
|
|
211
251
|
input: UpdateSiteRackPhysicalPropertiesCommandInput,
|
|
212
252
|
context: __SerdeContext
|
|
213
253
|
) => Promise<__HttpRequest>;
|
|
254
|
+
export declare const de_CancelCapacityTaskCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<CancelCapacityTaskCommandOutput>;
|
|
214
258
|
export declare const de_CancelOrderCommand: (
|
|
215
259
|
output: __HttpResponse,
|
|
216
260
|
context: __SerdeContext
|
|
@@ -235,6 +279,10 @@ export declare const de_DeleteSiteCommand: (
|
|
|
235
279
|
output: __HttpResponse,
|
|
236
280
|
context: __SerdeContext
|
|
237
281
|
) => Promise<DeleteSiteCommandOutput>;
|
|
282
|
+
export declare const de_GetCapacityTaskCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<GetCapacityTaskCommandOutput>;
|
|
238
286
|
export declare const de_GetCatalogItemCommand: (
|
|
239
287
|
output: __HttpResponse,
|
|
240
288
|
context: __SerdeContext
|
|
@@ -255,6 +303,10 @@ export declare const de_GetOutpostInstanceTypesCommand: (
|
|
|
255
303
|
output: __HttpResponse,
|
|
256
304
|
context: __SerdeContext
|
|
257
305
|
) => Promise<GetOutpostInstanceTypesCommandOutput>;
|
|
306
|
+
export declare const de_GetOutpostSupportedInstanceTypesCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<GetOutpostSupportedInstanceTypesCommandOutput>;
|
|
258
310
|
export declare const de_GetSiteCommand: (
|
|
259
311
|
output: __HttpResponse,
|
|
260
312
|
context: __SerdeContext
|
|
@@ -267,6 +319,10 @@ export declare const de_ListAssetsCommand: (
|
|
|
267
319
|
output: __HttpResponse,
|
|
268
320
|
context: __SerdeContext
|
|
269
321
|
) => Promise<ListAssetsCommandOutput>;
|
|
322
|
+
export declare const de_ListCapacityTasksCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<ListCapacityTasksCommandOutput>;
|
|
270
326
|
export declare const de_ListCatalogItemsCommand: (
|
|
271
327
|
output: __HttpResponse,
|
|
272
328
|
context: __SerdeContext
|
|
@@ -287,6 +343,10 @@ export declare const de_ListTagsForResourceCommand: (
|
|
|
287
343
|
output: __HttpResponse,
|
|
288
344
|
context: __SerdeContext
|
|
289
345
|
) => Promise<ListTagsForResourceCommandOutput>;
|
|
346
|
+
export declare const de_StartCapacityTaskCommand: (
|
|
347
|
+
output: __HttpResponse,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<StartCapacityTaskCommandOutput>;
|
|
290
350
|
export declare const de_StartConnectionCommand: (
|
|
291
351
|
output: __HttpResponse,
|
|
292
352
|
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.556.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,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.556.0",
|
|
24
|
+
"@aws-sdk/core": "3.556.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.556.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|