@aws-sdk/client-outposts 3.1064.0 → 3.1065.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 +42 -0
- package/dist-cjs/index.js +171 -3
- package/dist-cjs/schemas/schemas_0.js +269 -16
- package/dist-es/Outposts.js +16 -0
- package/dist-es/commands/CreateQuoteCommand.js +16 -0
- package/dist-es/commands/DeleteQuoteCommand.js +16 -0
- package/dist-es/commands/GetQuoteCommand.js +16 -0
- package/dist-es/commands/ListOrderableInstanceTypesCommand.js +16 -0
- package/dist-es/commands/ListQuotesCommand.js +16 -0
- package/dist-es/commands/UpdateQuoteCommand.js +16 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/enums.js +68 -3
- package/dist-es/pagination/ListOrderableInstanceTypesPaginator.js +4 -0
- package/dist-es/pagination/ListQuotesPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +265 -13
- package/dist-types/Outposts.d.ts +58 -0
- package/dist-types/OutpostsClient.d.ts +8 -2
- package/dist-types/commands/CreateQuoteCommand.d.ts +231 -0
- package/dist-types/commands/CreateRenewalCommand.d.ts +1 -0
- package/dist-types/commands/DeleteQuoteCommand.d.ts +86 -0
- package/dist-types/commands/GetOutpostBillingInformationCommand.d.ts +1 -0
- package/dist-types/commands/GetQuoteCommand.d.ts +208 -0
- package/dist-types/commands/GetRenewalPricingCommand.d.ts +1 -0
- package/dist-types/commands/ListOrderableInstanceTypesCommand.d.ts +105 -0
- package/dist-types/commands/ListQuotesCommand.d.ts +199 -0
- package/dist-types/commands/UpdateQuoteCommand.d.ts +231 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/enums.d.ts +164 -11
- package/dist-types/models/models_0.d.ts +881 -59
- package/dist-types/pagination/ListOrderableInstanceTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQuotesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +30 -0
- package/dist-types/ts3.4/Outposts.d.ts +118 -0
- package/dist-types/ts3.4/OutpostsClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateQuoteCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteQuoteCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/GetQuoteCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/ListOrderableInstanceTypesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListQuotesCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateQuoteCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/enums.d.ts +89 -5
- package/dist-types/ts3.4/models/models_0.d.ts +174 -10
- package/dist-types/ts3.4/pagination/ListOrderableInstanceTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQuotesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +30 -0
- package/package.json +3 -3
package/dist-types/Outposts.d.ts
CHANGED
|
@@ -3,9 +3,11 @@ import { type CancelCapacityTaskCommandInput, type CancelCapacityTaskCommandOutp
|
|
|
3
3
|
import { type CancelOrderCommandInput, type CancelOrderCommandOutput } from "./commands/CancelOrderCommand";
|
|
4
4
|
import { type CreateOrderCommandInput, type CreateOrderCommandOutput } from "./commands/CreateOrderCommand";
|
|
5
5
|
import { type CreateOutpostCommandInput, type CreateOutpostCommandOutput } from "./commands/CreateOutpostCommand";
|
|
6
|
+
import { type CreateQuoteCommandInput, type CreateQuoteCommandOutput } from "./commands/CreateQuoteCommand";
|
|
6
7
|
import { type CreateRenewalCommandInput, type CreateRenewalCommandOutput } from "./commands/CreateRenewalCommand";
|
|
7
8
|
import { type CreateSiteCommandInput, type CreateSiteCommandOutput } from "./commands/CreateSiteCommand";
|
|
8
9
|
import { type DeleteOutpostCommandInput, type DeleteOutpostCommandOutput } from "./commands/DeleteOutpostCommand";
|
|
10
|
+
import { type DeleteQuoteCommandInput, type DeleteQuoteCommandOutput } from "./commands/DeleteQuoteCommand";
|
|
9
11
|
import { type DeleteSiteCommandInput, type DeleteSiteCommandOutput } from "./commands/DeleteSiteCommand";
|
|
10
12
|
import { type GetCapacityTaskCommandInput, type GetCapacityTaskCommandOutput } from "./commands/GetCapacityTaskCommand";
|
|
11
13
|
import { type GetCatalogItemCommandInput, type GetCatalogItemCommandOutput } from "./commands/GetCatalogItemCommand";
|
|
@@ -15,6 +17,7 @@ import { type GetOutpostBillingInformationCommandInput, type GetOutpostBillingIn
|
|
|
15
17
|
import { type GetOutpostCommandInput, type GetOutpostCommandOutput } from "./commands/GetOutpostCommand";
|
|
16
18
|
import { type GetOutpostInstanceTypesCommandInput, type GetOutpostInstanceTypesCommandOutput } from "./commands/GetOutpostInstanceTypesCommand";
|
|
17
19
|
import { type GetOutpostSupportedInstanceTypesCommandInput, type GetOutpostSupportedInstanceTypesCommandOutput } from "./commands/GetOutpostSupportedInstanceTypesCommand";
|
|
20
|
+
import { type GetQuoteCommandInput, type GetQuoteCommandOutput } from "./commands/GetQuoteCommand";
|
|
18
21
|
import { type GetRenewalPricingCommandInput, type GetRenewalPricingCommandOutput } from "./commands/GetRenewalPricingCommand";
|
|
19
22
|
import { type GetSiteAddressCommandInput, type GetSiteAddressCommandOutput } from "./commands/GetSiteAddressCommand";
|
|
20
23
|
import { type GetSiteCommandInput, type GetSiteCommandOutput } from "./commands/GetSiteCommand";
|
|
@@ -23,8 +26,10 @@ import { type ListAssetsCommandInput, type ListAssetsCommandOutput } from "./com
|
|
|
23
26
|
import { type ListBlockingInstancesForCapacityTaskCommandInput, type ListBlockingInstancesForCapacityTaskCommandOutput } from "./commands/ListBlockingInstancesForCapacityTaskCommand";
|
|
24
27
|
import { type ListCapacityTasksCommandInput, type ListCapacityTasksCommandOutput } from "./commands/ListCapacityTasksCommand";
|
|
25
28
|
import { type ListCatalogItemsCommandInput, type ListCatalogItemsCommandOutput } from "./commands/ListCatalogItemsCommand";
|
|
29
|
+
import { type ListOrderableInstanceTypesCommandInput, type ListOrderableInstanceTypesCommandOutput } from "./commands/ListOrderableInstanceTypesCommand";
|
|
26
30
|
import { type ListOrdersCommandInput, type ListOrdersCommandOutput } from "./commands/ListOrdersCommand";
|
|
27
31
|
import { type ListOutpostsCommandInput, type ListOutpostsCommandOutput } from "./commands/ListOutpostsCommand";
|
|
32
|
+
import { type ListQuotesCommandInput, type ListQuotesCommandOutput } from "./commands/ListQuotesCommand";
|
|
28
33
|
import { type ListSitesCommandInput, type ListSitesCommandOutput } from "./commands/ListSitesCommand";
|
|
29
34
|
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
30
35
|
import { type StartCapacityTaskCommandInput, type StartCapacityTaskCommandOutput } from "./commands/StartCapacityTaskCommand";
|
|
@@ -33,6 +38,7 @@ import { type StartOutpostDecommissionCommandInput, type StartOutpostDecommissio
|
|
|
33
38
|
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
34
39
|
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
35
40
|
import { type UpdateOutpostCommandInput, type UpdateOutpostCommandOutput } from "./commands/UpdateOutpostCommand";
|
|
41
|
+
import { type UpdateQuoteCommandInput, type UpdateQuoteCommandOutput } from "./commands/UpdateQuoteCommand";
|
|
36
42
|
import { type UpdateSiteAddressCommandInput, type UpdateSiteAddressCommandOutput } from "./commands/UpdateSiteAddressCommand";
|
|
37
43
|
import { type UpdateSiteCommandInput, type UpdateSiteCommandOutput } from "./commands/UpdateSiteCommand";
|
|
38
44
|
import { type UpdateSiteRackPhysicalPropertiesCommandInput, type UpdateSiteRackPhysicalPropertiesCommandOutput } from "./commands/UpdateSiteRackPhysicalPropertiesCommand";
|
|
@@ -62,6 +68,12 @@ export interface Outposts {
|
|
|
62
68
|
createOutpost(args: CreateOutpostCommandInput, options?: __HttpHandlerOptions): Promise<CreateOutpostCommandOutput>;
|
|
63
69
|
createOutpost(args: CreateOutpostCommandInput, cb: (err: any, data?: CreateOutpostCommandOutput) => void): void;
|
|
64
70
|
createOutpost(args: CreateOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOutpostCommandOutput) => void): void;
|
|
71
|
+
/**
|
|
72
|
+
* @see {@link CreateQuoteCommand}
|
|
73
|
+
*/
|
|
74
|
+
createQuote(args: CreateQuoteCommandInput, options?: __HttpHandlerOptions): Promise<CreateQuoteCommandOutput>;
|
|
75
|
+
createQuote(args: CreateQuoteCommandInput, cb: (err: any, data?: CreateQuoteCommandOutput) => void): void;
|
|
76
|
+
createQuote(args: CreateQuoteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQuoteCommandOutput) => void): void;
|
|
65
77
|
/**
|
|
66
78
|
* @see {@link CreateRenewalCommand}
|
|
67
79
|
*/
|
|
@@ -80,6 +92,12 @@ export interface Outposts {
|
|
|
80
92
|
deleteOutpost(args: DeleteOutpostCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOutpostCommandOutput>;
|
|
81
93
|
deleteOutpost(args: DeleteOutpostCommandInput, cb: (err: any, data?: DeleteOutpostCommandOutput) => void): void;
|
|
82
94
|
deleteOutpost(args: DeleteOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOutpostCommandOutput) => void): void;
|
|
95
|
+
/**
|
|
96
|
+
* @see {@link DeleteQuoteCommand}
|
|
97
|
+
*/
|
|
98
|
+
deleteQuote(args: DeleteQuoteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQuoteCommandOutput>;
|
|
99
|
+
deleteQuote(args: DeleteQuoteCommandInput, cb: (err: any, data?: DeleteQuoteCommandOutput) => void): void;
|
|
100
|
+
deleteQuote(args: DeleteQuoteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQuoteCommandOutput) => void): void;
|
|
83
101
|
/**
|
|
84
102
|
* @see {@link DeleteSiteCommand}
|
|
85
103
|
*/
|
|
@@ -134,6 +152,12 @@ export interface Outposts {
|
|
|
134
152
|
getOutpostSupportedInstanceTypes(args: GetOutpostSupportedInstanceTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetOutpostSupportedInstanceTypesCommandOutput>;
|
|
135
153
|
getOutpostSupportedInstanceTypes(args: GetOutpostSupportedInstanceTypesCommandInput, cb: (err: any, data?: GetOutpostSupportedInstanceTypesCommandOutput) => void): void;
|
|
136
154
|
getOutpostSupportedInstanceTypes(args: GetOutpostSupportedInstanceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOutpostSupportedInstanceTypesCommandOutput) => void): void;
|
|
155
|
+
/**
|
|
156
|
+
* @see {@link GetQuoteCommand}
|
|
157
|
+
*/
|
|
158
|
+
getQuote(args: GetQuoteCommandInput, options?: __HttpHandlerOptions): Promise<GetQuoteCommandOutput>;
|
|
159
|
+
getQuote(args: GetQuoteCommandInput, cb: (err: any, data?: GetQuoteCommandOutput) => void): void;
|
|
160
|
+
getQuote(args: GetQuoteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQuoteCommandOutput) => void): void;
|
|
137
161
|
/**
|
|
138
162
|
* @see {@link GetRenewalPricingCommand}
|
|
139
163
|
*/
|
|
@@ -184,6 +208,13 @@ export interface Outposts {
|
|
|
184
208
|
listCatalogItems(args: ListCatalogItemsCommandInput, options?: __HttpHandlerOptions): Promise<ListCatalogItemsCommandOutput>;
|
|
185
209
|
listCatalogItems(args: ListCatalogItemsCommandInput, cb: (err: any, data?: ListCatalogItemsCommandOutput) => void): void;
|
|
186
210
|
listCatalogItems(args: ListCatalogItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCatalogItemsCommandOutput) => void): void;
|
|
211
|
+
/**
|
|
212
|
+
* @see {@link ListOrderableInstanceTypesCommand}
|
|
213
|
+
*/
|
|
214
|
+
listOrderableInstanceTypes(): Promise<ListOrderableInstanceTypesCommandOutput>;
|
|
215
|
+
listOrderableInstanceTypes(args: ListOrderableInstanceTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListOrderableInstanceTypesCommandOutput>;
|
|
216
|
+
listOrderableInstanceTypes(args: ListOrderableInstanceTypesCommandInput, cb: (err: any, data?: ListOrderableInstanceTypesCommandOutput) => void): void;
|
|
217
|
+
listOrderableInstanceTypes(args: ListOrderableInstanceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOrderableInstanceTypesCommandOutput) => void): void;
|
|
187
218
|
/**
|
|
188
219
|
* @see {@link ListOrdersCommand}
|
|
189
220
|
*/
|
|
@@ -198,6 +229,13 @@ export interface Outposts {
|
|
|
198
229
|
listOutposts(args: ListOutpostsCommandInput, options?: __HttpHandlerOptions): Promise<ListOutpostsCommandOutput>;
|
|
199
230
|
listOutposts(args: ListOutpostsCommandInput, cb: (err: any, data?: ListOutpostsCommandOutput) => void): void;
|
|
200
231
|
listOutposts(args: ListOutpostsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOutpostsCommandOutput) => void): void;
|
|
232
|
+
/**
|
|
233
|
+
* @see {@link ListQuotesCommand}
|
|
234
|
+
*/
|
|
235
|
+
listQuotes(): Promise<ListQuotesCommandOutput>;
|
|
236
|
+
listQuotes(args: ListQuotesCommandInput, options?: __HttpHandlerOptions): Promise<ListQuotesCommandOutput>;
|
|
237
|
+
listQuotes(args: ListQuotesCommandInput, cb: (err: any, data?: ListQuotesCommandOutput) => void): void;
|
|
238
|
+
listQuotes(args: ListQuotesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQuotesCommandOutput) => void): void;
|
|
201
239
|
/**
|
|
202
240
|
* @see {@link ListSitesCommand}
|
|
203
241
|
*/
|
|
@@ -247,6 +285,12 @@ export interface Outposts {
|
|
|
247
285
|
updateOutpost(args: UpdateOutpostCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOutpostCommandOutput>;
|
|
248
286
|
updateOutpost(args: UpdateOutpostCommandInput, cb: (err: any, data?: UpdateOutpostCommandOutput) => void): void;
|
|
249
287
|
updateOutpost(args: UpdateOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOutpostCommandOutput) => void): void;
|
|
288
|
+
/**
|
|
289
|
+
* @see {@link UpdateQuoteCommand}
|
|
290
|
+
*/
|
|
291
|
+
updateQuote(args: UpdateQuoteCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQuoteCommandOutput>;
|
|
292
|
+
updateQuote(args: UpdateQuoteCommandInput, cb: (err: any, data?: UpdateQuoteCommandOutput) => void): void;
|
|
293
|
+
updateQuote(args: UpdateQuoteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQuoteCommandOutput) => void): void;
|
|
250
294
|
/**
|
|
251
295
|
* @see {@link UpdateSiteCommand}
|
|
252
296
|
*/
|
|
@@ -321,6 +365,13 @@ export interface Outposts {
|
|
|
321
365
|
* @returns AsyncIterable of {@link ListCatalogItemsCommandOutput}.
|
|
322
366
|
*/
|
|
323
367
|
paginateListCatalogItems(args?: ListCatalogItemsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCatalogItemsCommandOutput>;
|
|
368
|
+
/**
|
|
369
|
+
* @see {@link ListOrderableInstanceTypesCommand}
|
|
370
|
+
* @param args - command input.
|
|
371
|
+
* @param paginationConfig - optional pagination config.
|
|
372
|
+
* @returns AsyncIterable of {@link ListOrderableInstanceTypesCommandOutput}.
|
|
373
|
+
*/
|
|
374
|
+
paginateListOrderableInstanceTypes(args?: ListOrderableInstanceTypesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOrderableInstanceTypesCommandOutput>;
|
|
324
375
|
/**
|
|
325
376
|
* @see {@link ListOrdersCommand}
|
|
326
377
|
* @param args - command input.
|
|
@@ -335,6 +386,13 @@ export interface Outposts {
|
|
|
335
386
|
* @returns AsyncIterable of {@link ListOutpostsCommandOutput}.
|
|
336
387
|
*/
|
|
337
388
|
paginateListOutposts(args?: ListOutpostsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOutpostsCommandOutput>;
|
|
389
|
+
/**
|
|
390
|
+
* @see {@link ListQuotesCommand}
|
|
391
|
+
* @param args - command input.
|
|
392
|
+
* @param paginationConfig - optional pagination config.
|
|
393
|
+
* @returns AsyncIterable of {@link ListQuotesCommandOutput}.
|
|
394
|
+
*/
|
|
395
|
+
paginateListQuotes(args?: ListQuotesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQuotesCommandOutput>;
|
|
338
396
|
/**
|
|
339
397
|
* @see {@link ListSitesCommand}
|
|
340
398
|
* @param args - command input.
|
|
@@ -10,9 +10,11 @@ import type { CancelCapacityTaskCommandInput, CancelCapacityTaskCommandOutput }
|
|
|
10
10
|
import type { CancelOrderCommandInput, CancelOrderCommandOutput } from "./commands/CancelOrderCommand";
|
|
11
11
|
import type { CreateOrderCommandInput, CreateOrderCommandOutput } from "./commands/CreateOrderCommand";
|
|
12
12
|
import type { CreateOutpostCommandInput, CreateOutpostCommandOutput } from "./commands/CreateOutpostCommand";
|
|
13
|
+
import type { CreateQuoteCommandInput, CreateQuoteCommandOutput } from "./commands/CreateQuoteCommand";
|
|
13
14
|
import type { CreateRenewalCommandInput, CreateRenewalCommandOutput } from "./commands/CreateRenewalCommand";
|
|
14
15
|
import type { CreateSiteCommandInput, CreateSiteCommandOutput } from "./commands/CreateSiteCommand";
|
|
15
16
|
import type { DeleteOutpostCommandInput, DeleteOutpostCommandOutput } from "./commands/DeleteOutpostCommand";
|
|
17
|
+
import type { DeleteQuoteCommandInput, DeleteQuoteCommandOutput } from "./commands/DeleteQuoteCommand";
|
|
16
18
|
import type { DeleteSiteCommandInput, DeleteSiteCommandOutput } from "./commands/DeleteSiteCommand";
|
|
17
19
|
import type { GetCapacityTaskCommandInput, GetCapacityTaskCommandOutput } from "./commands/GetCapacityTaskCommand";
|
|
18
20
|
import type { GetCatalogItemCommandInput, GetCatalogItemCommandOutput } from "./commands/GetCatalogItemCommand";
|
|
@@ -22,6 +24,7 @@ import type { GetOutpostBillingInformationCommandInput, GetOutpostBillingInforma
|
|
|
22
24
|
import type { GetOutpostCommandInput, GetOutpostCommandOutput } from "./commands/GetOutpostCommand";
|
|
23
25
|
import type { GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput } from "./commands/GetOutpostInstanceTypesCommand";
|
|
24
26
|
import type { GetOutpostSupportedInstanceTypesCommandInput, GetOutpostSupportedInstanceTypesCommandOutput } from "./commands/GetOutpostSupportedInstanceTypesCommand";
|
|
27
|
+
import type { GetQuoteCommandInput, GetQuoteCommandOutput } from "./commands/GetQuoteCommand";
|
|
25
28
|
import type { GetRenewalPricingCommandInput, GetRenewalPricingCommandOutput } from "./commands/GetRenewalPricingCommand";
|
|
26
29
|
import type { GetSiteAddressCommandInput, GetSiteAddressCommandOutput } from "./commands/GetSiteAddressCommand";
|
|
27
30
|
import type { GetSiteCommandInput, GetSiteCommandOutput } from "./commands/GetSiteCommand";
|
|
@@ -30,8 +33,10 @@ import type { ListAssetsCommandInput, ListAssetsCommandOutput } from "./commands
|
|
|
30
33
|
import type { ListBlockingInstancesForCapacityTaskCommandInput, ListBlockingInstancesForCapacityTaskCommandOutput } from "./commands/ListBlockingInstancesForCapacityTaskCommand";
|
|
31
34
|
import type { ListCapacityTasksCommandInput, ListCapacityTasksCommandOutput } from "./commands/ListCapacityTasksCommand";
|
|
32
35
|
import type { ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput } from "./commands/ListCatalogItemsCommand";
|
|
36
|
+
import type { ListOrderableInstanceTypesCommandInput, ListOrderableInstanceTypesCommandOutput } from "./commands/ListOrderableInstanceTypesCommand";
|
|
33
37
|
import type { ListOrdersCommandInput, ListOrdersCommandOutput } from "./commands/ListOrdersCommand";
|
|
34
38
|
import type { ListOutpostsCommandInput, ListOutpostsCommandOutput } from "./commands/ListOutpostsCommand";
|
|
39
|
+
import type { ListQuotesCommandInput, ListQuotesCommandOutput } from "./commands/ListQuotesCommand";
|
|
35
40
|
import type { ListSitesCommandInput, ListSitesCommandOutput } from "./commands/ListSitesCommand";
|
|
36
41
|
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
37
42
|
import type { StartCapacityTaskCommandInput, StartCapacityTaskCommandOutput } from "./commands/StartCapacityTaskCommand";
|
|
@@ -40,6 +45,7 @@ import type { StartOutpostDecommissionCommandInput, StartOutpostDecommissionComm
|
|
|
40
45
|
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
41
46
|
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
42
47
|
import type { UpdateOutpostCommandInput, UpdateOutpostCommandOutput } from "./commands/UpdateOutpostCommand";
|
|
48
|
+
import type { UpdateQuoteCommandInput, UpdateQuoteCommandOutput } from "./commands/UpdateQuoteCommand";
|
|
43
49
|
import type { UpdateSiteAddressCommandInput, UpdateSiteAddressCommandOutput } from "./commands/UpdateSiteAddressCommand";
|
|
44
50
|
import type { UpdateSiteCommandInput, UpdateSiteCommandOutput } from "./commands/UpdateSiteCommand";
|
|
45
51
|
import type { UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput } from "./commands/UpdateSiteRackPhysicalPropertiesCommand";
|
|
@@ -49,11 +55,11 @@ export { __Client };
|
|
|
49
55
|
/**
|
|
50
56
|
* @public
|
|
51
57
|
*/
|
|
52
|
-
export type ServiceInputTypes = CancelCapacityTaskCommandInput | CancelOrderCommandInput | CreateOrderCommandInput | CreateOutpostCommandInput | CreateRenewalCommandInput | CreateSiteCommandInput | DeleteOutpostCommandInput | DeleteSiteCommandInput | GetCapacityTaskCommandInput | GetCatalogItemCommandInput | GetConnectionCommandInput | GetOrderCommandInput | GetOutpostBillingInformationCommandInput | GetOutpostCommandInput | GetOutpostInstanceTypesCommandInput | GetOutpostSupportedInstanceTypesCommandInput | GetRenewalPricingCommandInput | GetSiteAddressCommandInput | GetSiteCommandInput | ListAssetInstancesCommandInput | ListAssetsCommandInput | ListBlockingInstancesForCapacityTaskCommandInput | ListCapacityTasksCommandInput | ListCatalogItemsCommandInput | ListOrdersCommandInput | ListOutpostsCommandInput | ListSitesCommandInput | ListTagsForResourceCommandInput | StartCapacityTaskCommandInput | StartConnectionCommandInput | StartOutpostDecommissionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateOutpostCommandInput | UpdateSiteAddressCommandInput | UpdateSiteCommandInput | UpdateSiteRackPhysicalPropertiesCommandInput;
|
|
58
|
+
export type ServiceInputTypes = CancelCapacityTaskCommandInput | CancelOrderCommandInput | CreateOrderCommandInput | CreateOutpostCommandInput | CreateQuoteCommandInput | CreateRenewalCommandInput | CreateSiteCommandInput | DeleteOutpostCommandInput | DeleteQuoteCommandInput | DeleteSiteCommandInput | GetCapacityTaskCommandInput | GetCatalogItemCommandInput | GetConnectionCommandInput | GetOrderCommandInput | GetOutpostBillingInformationCommandInput | GetOutpostCommandInput | GetOutpostInstanceTypesCommandInput | GetOutpostSupportedInstanceTypesCommandInput | GetQuoteCommandInput | GetRenewalPricingCommandInput | GetSiteAddressCommandInput | GetSiteCommandInput | ListAssetInstancesCommandInput | ListAssetsCommandInput | ListBlockingInstancesForCapacityTaskCommandInput | ListCapacityTasksCommandInput | ListCatalogItemsCommandInput | ListOrderableInstanceTypesCommandInput | ListOrdersCommandInput | ListOutpostsCommandInput | ListQuotesCommandInput | ListSitesCommandInput | ListTagsForResourceCommandInput | StartCapacityTaskCommandInput | StartConnectionCommandInput | StartOutpostDecommissionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateOutpostCommandInput | UpdateQuoteCommandInput | UpdateSiteAddressCommandInput | UpdateSiteCommandInput | UpdateSiteRackPhysicalPropertiesCommandInput;
|
|
53
59
|
/**
|
|
54
60
|
* @public
|
|
55
61
|
*/
|
|
56
|
-
export type ServiceOutputTypes = CancelCapacityTaskCommandOutput | CancelOrderCommandOutput | CreateOrderCommandOutput | CreateOutpostCommandOutput | CreateRenewalCommandOutput | CreateSiteCommandOutput | DeleteOutpostCommandOutput | DeleteSiteCommandOutput | GetCapacityTaskCommandOutput | GetCatalogItemCommandOutput | GetConnectionCommandOutput | GetOrderCommandOutput | GetOutpostBillingInformationCommandOutput | GetOutpostCommandOutput | GetOutpostInstanceTypesCommandOutput | GetOutpostSupportedInstanceTypesCommandOutput | GetRenewalPricingCommandOutput | GetSiteAddressCommandOutput | GetSiteCommandOutput | ListAssetInstancesCommandOutput | ListAssetsCommandOutput | ListBlockingInstancesForCapacityTaskCommandOutput | ListCapacityTasksCommandOutput | ListCatalogItemsCommandOutput | ListOrdersCommandOutput | ListOutpostsCommandOutput | ListSitesCommandOutput | ListTagsForResourceCommandOutput | StartCapacityTaskCommandOutput | StartConnectionCommandOutput | StartOutpostDecommissionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateOutpostCommandOutput | UpdateSiteAddressCommandOutput | UpdateSiteCommandOutput | UpdateSiteRackPhysicalPropertiesCommandOutput;
|
|
62
|
+
export type ServiceOutputTypes = CancelCapacityTaskCommandOutput | CancelOrderCommandOutput | CreateOrderCommandOutput | CreateOutpostCommandOutput | CreateQuoteCommandOutput | CreateRenewalCommandOutput | CreateSiteCommandOutput | DeleteOutpostCommandOutput | DeleteQuoteCommandOutput | DeleteSiteCommandOutput | GetCapacityTaskCommandOutput | GetCatalogItemCommandOutput | GetConnectionCommandOutput | GetOrderCommandOutput | GetOutpostBillingInformationCommandOutput | GetOutpostCommandOutput | GetOutpostInstanceTypesCommandOutput | GetOutpostSupportedInstanceTypesCommandOutput | GetQuoteCommandOutput | GetRenewalPricingCommandOutput | GetSiteAddressCommandOutput | GetSiteCommandOutput | ListAssetInstancesCommandOutput | ListAssetsCommandOutput | ListBlockingInstancesForCapacityTaskCommandOutput | ListCapacityTasksCommandOutput | ListCatalogItemsCommandOutput | ListOrderableInstanceTypesCommandOutput | ListOrdersCommandOutput | ListOutpostsCommandOutput | ListQuotesCommandOutput | ListSitesCommandOutput | ListTagsForResourceCommandOutput | StartCapacityTaskCommandOutput | StartConnectionCommandOutput | StartOutpostDecommissionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateOutpostCommandOutput | UpdateQuoteCommandOutput | UpdateSiteAddressCommandOutput | UpdateSiteCommandOutput | UpdateSiteRackPhysicalPropertiesCommandOutput;
|
|
57
63
|
/**
|
|
58
64
|
* @public
|
|
59
65
|
*/
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { CreateQuoteInput, CreateQuoteOutput } from "../models/models_0";
|
|
4
|
+
import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateQuoteCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateQuoteCommandInput extends CreateQuoteInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateQuoteCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateQuoteCommandOutput extends CreateQuoteOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateQuoteCommand_base: {
|
|
25
|
+
new (input: CreateQuoteCommandInput): import("@smithy/core/client").CommandImpl<CreateQuoteCommandInput, CreateQuoteCommandOutput, OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateQuoteCommandInput): import("@smithy/core/client").CommandImpl<CreateQuoteCommandInput, CreateQuoteCommandOutput, OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Creates a quote for an Outpost. A quote provides pricing and configuration options based
|
|
33
|
+
* on the requested capacity. You can optionally associate the quote with an existing Outpost or
|
|
34
|
+
* create a standalone quote by specifying only the country code and requested capacities.</p>
|
|
35
|
+
* @example
|
|
36
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
37
|
+
* ```javascript
|
|
38
|
+
* import { OutpostsClient, CreateQuoteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
39
|
+
* // const { OutpostsClient, CreateQuoteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
40
|
+
* // import type { OutpostsClientConfig } from "@aws-sdk/client-outposts";
|
|
41
|
+
* const config = {}; // type is OutpostsClientConfig
|
|
42
|
+
* const client = new OutpostsClient(config);
|
|
43
|
+
* const input = { // CreateQuoteInput
|
|
44
|
+
* OutpostIdentifier: "STRING_VALUE",
|
|
45
|
+
* CountryCode: "STRING_VALUE", // required
|
|
46
|
+
* RequestedCapacities: [ // QuoteCapacityList // required
|
|
47
|
+
* { // QuoteCapacity
|
|
48
|
+
* QuoteCapacityType: "EC2" || "EBS" || "S3",
|
|
49
|
+
* Unit: "STRING_VALUE",
|
|
50
|
+
* Quantity: Number("float"),
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* RequestedConstraints: [ // QuoteConstraintList
|
|
54
|
+
* { // QuoteConstraint
|
|
55
|
+
* QuoteConstraintType: "RACK_MAXIMUM" || "RACK_MAX_POWER_KVA" || "RACK_MAX_WEIGHT_LBS",
|
|
56
|
+
* Value: "STRING_VALUE",
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* RequestedPaymentOptions: [ // PaymentOptionList
|
|
60
|
+
* "ALL_UPFRONT" || "NO_UPFRONT" || "PARTIAL_UPFRONT",
|
|
61
|
+
* ],
|
|
62
|
+
* RequestedPaymentTerms: [ // PaymentTermList
|
|
63
|
+
* "THREE_YEARS" || "ONE_YEAR" || "FIVE_YEARS",
|
|
64
|
+
* ],
|
|
65
|
+
* Description: "STRING_VALUE",
|
|
66
|
+
* };
|
|
67
|
+
* const command = new CreateQuoteCommand(input);
|
|
68
|
+
* const response = await client.send(command);
|
|
69
|
+
* // { // CreateQuoteOutput
|
|
70
|
+
* // Quote: { // Quote
|
|
71
|
+
* // QuoteId: "STRING_VALUE",
|
|
72
|
+
* // AccountId: "STRING_VALUE",
|
|
73
|
+
* // QuoteStatus: "CREATED" || "ORDER_SUBMITTED" || "EXPIRED",
|
|
74
|
+
* // StatusMessage: "STRING_VALUE",
|
|
75
|
+
* // OutpostArn: "STRING_VALUE",
|
|
76
|
+
* // CountryCode: "STRING_VALUE",
|
|
77
|
+
* // RequestedCapacities: [ // QuoteCapacityList
|
|
78
|
+
* // { // QuoteCapacity
|
|
79
|
+
* // QuoteCapacityType: "EC2" || "EBS" || "S3",
|
|
80
|
+
* // Unit: "STRING_VALUE",
|
|
81
|
+
* // Quantity: Number("float"),
|
|
82
|
+
* // },
|
|
83
|
+
* // ],
|
|
84
|
+
* // RequestedConstraints: [ // QuoteConstraintList
|
|
85
|
+
* // { // QuoteConstraint
|
|
86
|
+
* // QuoteConstraintType: "RACK_MAXIMUM" || "RACK_MAX_POWER_KVA" || "RACK_MAX_WEIGHT_LBS",
|
|
87
|
+
* // Value: "STRING_VALUE",
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // RequestedPaymentOptions: [ // PaymentOptionList
|
|
91
|
+
* // "ALL_UPFRONT" || "NO_UPFRONT" || "PARTIAL_UPFRONT",
|
|
92
|
+
* // ],
|
|
93
|
+
* // RequestedPaymentTerms: [ // PaymentTermList
|
|
94
|
+
* // "THREE_YEARS" || "ONE_YEAR" || "FIVE_YEARS",
|
|
95
|
+
* // ],
|
|
96
|
+
* // QuoteOptions: [ // QuoteOptionList
|
|
97
|
+
* // { // QuoteOption
|
|
98
|
+
* // QuoteOptionIdentifier: "STRING_VALUE",
|
|
99
|
+
* // Capacities: [
|
|
100
|
+
* // {
|
|
101
|
+
* // QuoteCapacityType: "EC2" || "EBS" || "S3",
|
|
102
|
+
* // Unit: "STRING_VALUE",
|
|
103
|
+
* // Quantity: Number("float"),
|
|
104
|
+
* // },
|
|
105
|
+
* // ],
|
|
106
|
+
* // CapacitySummary: { // CapacitySummary
|
|
107
|
+
* // ExistingCapacities: "<QuoteCapacityList>",
|
|
108
|
+
* // FinalCapacities: "<QuoteCapacityList>",
|
|
109
|
+
* // CapacityChange: "<QuoteCapacityList>",
|
|
110
|
+
* // },
|
|
111
|
+
* // Specifications: [ // QuoteSpecificationList
|
|
112
|
+
* // { // QuoteSpecification
|
|
113
|
+
* // QuoteSpecificationType: "UPDATED_RACK" || "NEW_RACK" || "EXISTING_RACK" || "SERVER",
|
|
114
|
+
* // ExistingRackSpecificationDetails: { // RackSpecificationDetails
|
|
115
|
+
* // RackId: "STRING_VALUE",
|
|
116
|
+
* // RackUse: "NETWORKING" || "COMPUTE",
|
|
117
|
+
* // RackPowerDrawKva: Number("float"),
|
|
118
|
+
* // RackWeightLbs: Number("float"),
|
|
119
|
+
* // RackHeightInches: Number("float"),
|
|
120
|
+
* // RackWidthInches: Number("float"),
|
|
121
|
+
* // RackDepthInches: Number("float"),
|
|
122
|
+
* // RackUnitHeight: "HEIGHT_42U" || "HEIGHT_2U" || "HEIGHT_1U",
|
|
123
|
+
* // EC2Capacities: [ // EC2CapacityListDefinition
|
|
124
|
+
* // { // EC2Capacity
|
|
125
|
+
* // Family: "STRING_VALUE",
|
|
126
|
+
* // MaxSize: "STRING_VALUE",
|
|
127
|
+
* // Quantity: "STRING_VALUE",
|
|
128
|
+
* // },
|
|
129
|
+
* // ],
|
|
130
|
+
* // },
|
|
131
|
+
* // FinalRackSpecificationDetails: {
|
|
132
|
+
* // RackId: "STRING_VALUE",
|
|
133
|
+
* // RackUse: "NETWORKING" || "COMPUTE",
|
|
134
|
+
* // RackPowerDrawKva: Number("float"),
|
|
135
|
+
* // RackWeightLbs: Number("float"),
|
|
136
|
+
* // RackHeightInches: Number("float"),
|
|
137
|
+
* // RackWidthInches: Number("float"),
|
|
138
|
+
* // RackDepthInches: Number("float"),
|
|
139
|
+
* // RackUnitHeight: "HEIGHT_42U" || "HEIGHT_2U" || "HEIGHT_1U",
|
|
140
|
+
* // EC2Capacities: [
|
|
141
|
+
* // {
|
|
142
|
+
* // Family: "STRING_VALUE",
|
|
143
|
+
* // MaxSize: "STRING_VALUE",
|
|
144
|
+
* // Quantity: "STRING_VALUE",
|
|
145
|
+
* // },
|
|
146
|
+
* // ],
|
|
147
|
+
* // },
|
|
148
|
+
* // ServerSpecificationDetails: { // ServerSpecificationDetails
|
|
149
|
+
* // ServerPowerDrawKva: Number("float"),
|
|
150
|
+
* // ServerWeightLbs: Number("float"),
|
|
151
|
+
* // ServerHeightInches: Number("float"),
|
|
152
|
+
* // ServerWidthInches: Number("float"),
|
|
153
|
+
* // ServerDepthInches: Number("float"),
|
|
154
|
+
* // RackUnitHeight: "HEIGHT_42U" || "HEIGHT_2U" || "HEIGHT_1U",
|
|
155
|
+
* // EC2Capacities: [
|
|
156
|
+
* // {
|
|
157
|
+
* // Family: "STRING_VALUE",
|
|
158
|
+
* // MaxSize: "STRING_VALUE",
|
|
159
|
+
* // Quantity: "STRING_VALUE",
|
|
160
|
+
* // },
|
|
161
|
+
* // ],
|
|
162
|
+
* // },
|
|
163
|
+
* // },
|
|
164
|
+
* // ],
|
|
165
|
+
* // PricingOptions: [ // PricingOptionList
|
|
166
|
+
* // { // PricingOption
|
|
167
|
+
* // PricingType: "SUBSCRIPTION",
|
|
168
|
+
* // SubscriptionPricingDetails: { // SubscriptionPricingDetails
|
|
169
|
+
* // PaymentOption: "ALL_UPFRONT" || "NO_UPFRONT" || "PARTIAL_UPFRONT",
|
|
170
|
+
* // PaymentTerm: "THREE_YEARS" || "ONE_YEAR" || "FIVE_YEARS",
|
|
171
|
+
* // UpfrontPrice: Number("float"),
|
|
172
|
+
* // MonthlyRecurringPrice: Number("float"),
|
|
173
|
+
* // Currency: "USD",
|
|
174
|
+
* // },
|
|
175
|
+
* // },
|
|
176
|
+
* // ],
|
|
177
|
+
* // },
|
|
178
|
+
* // ],
|
|
179
|
+
* // OrderingRequirements: [ // OrderingRequirementList
|
|
180
|
+
* // { // OrderingRequirement
|
|
181
|
+
* // StatusMessage: "STRING_VALUE",
|
|
182
|
+
* // OrderingRequirementType: "OUTPOST_ACTIVE_CHECK_ERROR" || "MAXIMUM_ALLOWED_ORDERS_CHECK_ERROR" || "VALID_ZIP_CODE_CHECK_ERROR" || "RACK_PHYSICAL_PROPERTIES_CHECK_ERROR" || "OPERATING_ADDRESS_EXISTENCE_CHECK_ERROR" || "SHIPPING_ADDRESS_EXISTENCE_CHECK_ERROR" || "COUNTRY_CODE_MISMATCH_CHECK_ERROR" || "OUTPOST_GENERATION_MISMATCH_ERROR" || "UNSUPPORTED" || "OUTPOST_ID_MISSING_ON_QUOTE_ERROR" || "ENTERPRISE_SUPPORT_ERROR" || "SHIPPING_ADDRESS_MISSING_CONTACT_NAME_ERROR" || "SHIPPING_ADDRESS_MISSING_CONTACT_NUMBER_ERROR" || "SHIPPING_ADDRESS_MISSING_CONTACT_INFO_ERROR" || "OUTPOST_STATE_CHANGED_ERROR" || "OUTPOST_NOT_FOUND_ERROR" || "OUTPOST_RENEWAL_REQUIRED_ERROR",
|
|
183
|
+
* // Status: "PASS" || "FAIL" || "EXEMPT",
|
|
184
|
+
* // },
|
|
185
|
+
* // ],
|
|
186
|
+
* // SubmittedOrderId: "STRING_VALUE",
|
|
187
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
188
|
+
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
189
|
+
* // Description: "STRING_VALUE",
|
|
190
|
+
* // },
|
|
191
|
+
* // };
|
|
192
|
+
*
|
|
193
|
+
* ```
|
|
194
|
+
*
|
|
195
|
+
* @param CreateQuoteCommandInput - {@link CreateQuoteCommandInput}
|
|
196
|
+
* @returns {@link CreateQuoteCommandOutput}
|
|
197
|
+
* @see {@link CreateQuoteCommandInput} for command's `input` shape.
|
|
198
|
+
* @see {@link CreateQuoteCommandOutput} for command's `response` shape.
|
|
199
|
+
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
200
|
+
*
|
|
201
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
202
|
+
* <p>You do not have permission to perform this operation.</p>
|
|
203
|
+
*
|
|
204
|
+
* @throws {@link InternalServerException} (server fault)
|
|
205
|
+
* <p>An internal error has occurred.</p>
|
|
206
|
+
*
|
|
207
|
+
* @throws {@link NotFoundException} (client fault)
|
|
208
|
+
* <p>The specified request is not valid.</p>
|
|
209
|
+
*
|
|
210
|
+
* @throws {@link ValidationException} (client fault)
|
|
211
|
+
* <p>A parameter is not valid.</p>
|
|
212
|
+
*
|
|
213
|
+
* @throws {@link OutpostsServiceException}
|
|
214
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
215
|
+
*
|
|
216
|
+
*
|
|
217
|
+
* @public
|
|
218
|
+
*/
|
|
219
|
+
export declare class CreateQuoteCommand extends CreateQuoteCommand_base {
|
|
220
|
+
/** @internal type navigation helper, not in runtime. */
|
|
221
|
+
protected static __types: {
|
|
222
|
+
api: {
|
|
223
|
+
input: CreateQuoteInput;
|
|
224
|
+
output: CreateQuoteOutput;
|
|
225
|
+
};
|
|
226
|
+
sdk: {
|
|
227
|
+
input: CreateQuoteCommandInput;
|
|
228
|
+
output: CreateQuoteCommandOutput;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DeleteQuoteInput, DeleteQuoteOutput } from "../models/models_0";
|
|
4
|
+
import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteQuoteCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteQuoteCommandInput extends DeleteQuoteInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteQuoteCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteQuoteCommandOutput extends DeleteQuoteOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteQuoteCommand_base: {
|
|
25
|
+
new (input: DeleteQuoteCommandInput): import("@smithy/core/client").CommandImpl<DeleteQuoteCommandInput, DeleteQuoteCommandOutput, OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DeleteQuoteCommandInput): import("@smithy/core/client").CommandImpl<DeleteQuoteCommandInput, DeleteQuoteCommandOutput, OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Deletes the specified quote.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { OutpostsClient, DeleteQuoteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
37
|
+
* // const { OutpostsClient, DeleteQuoteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
38
|
+
* // import type { OutpostsClientConfig } from "@aws-sdk/client-outposts";
|
|
39
|
+
* const config = {}; // type is OutpostsClientConfig
|
|
40
|
+
* const client = new OutpostsClient(config);
|
|
41
|
+
* const input = { // DeleteQuoteInput
|
|
42
|
+
* QuoteIdentifier: "STRING_VALUE", // required
|
|
43
|
+
* };
|
|
44
|
+
* const command = new DeleteQuoteCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // {};
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* @param DeleteQuoteCommandInput - {@link DeleteQuoteCommandInput}
|
|
51
|
+
* @returns {@link DeleteQuoteCommandOutput}
|
|
52
|
+
* @see {@link DeleteQuoteCommandInput} for command's `input` shape.
|
|
53
|
+
* @see {@link DeleteQuoteCommandOutput} for command's `response` shape.
|
|
54
|
+
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
57
|
+
* <p>You do not have permission to perform this operation.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InternalServerException} (server fault)
|
|
60
|
+
* <p>An internal error has occurred.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link NotFoundException} (client fault)
|
|
63
|
+
* <p>The specified request is not valid.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ValidationException} (client fault)
|
|
66
|
+
* <p>A parameter is not valid.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link OutpostsServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
70
|
+
*
|
|
71
|
+
*
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export declare class DeleteQuoteCommand extends DeleteQuoteCommand_base {
|
|
75
|
+
/** @internal type navigation helper, not in runtime. */
|
|
76
|
+
protected static __types: {
|
|
77
|
+
api: {
|
|
78
|
+
input: DeleteQuoteInput;
|
|
79
|
+
output: {};
|
|
80
|
+
};
|
|
81
|
+
sdk: {
|
|
82
|
+
input: DeleteQuoteCommandInput;
|
|
83
|
+
output: DeleteQuoteCommandOutput;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
}
|
|
@@ -57,6 +57,7 @@ declare const GetOutpostBillingInformationCommand_base: {
|
|
|
57
57
|
* // ],
|
|
58
58
|
* // BeginDate: new Date("TIMESTAMP"),
|
|
59
59
|
* // EndDate: new Date("TIMESTAMP"),
|
|
60
|
+
* // Currency: "USD",
|
|
60
61
|
* // MonthlyRecurringPrice: Number("double"),
|
|
61
62
|
* // UpfrontPrice: Number("double"),
|
|
62
63
|
* // },
|