@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
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListOrderableInstanceTypesCommandInput, ListOrderableInstanceTypesCommandOutput } from "../commands/ListOrderableInstanceTypesCommand";
|
|
3
|
+
import type { OutpostsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListOrderableInstanceTypes: (config: OutpostsPaginationConfiguration, input: ListOrderableInstanceTypesCommandInput, ...rest: any[]) => Paginator<ListOrderableInstanceTypesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListQuotesCommandInput, ListQuotesCommandOutput } from "../commands/ListQuotesCommand";
|
|
3
|
+
import type { OutpostsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListQuotes: (config: OutpostsPaginationConfiguration, input: ListQuotesCommandInput, ...rest: any[]) => Paginator<ListQuotesCommandOutput>;
|
|
@@ -7,6 +7,8 @@ export * from "./ListAssetsPaginator";
|
|
|
7
7
|
export * from "./ListBlockingInstancesForCapacityTaskPaginator";
|
|
8
8
|
export * from "./ListCapacityTasksPaginator";
|
|
9
9
|
export * from "./ListCatalogItemsPaginator";
|
|
10
|
+
export * from "./ListOrderableInstanceTypesPaginator";
|
|
10
11
|
export * from "./ListOrdersPaginator";
|
|
11
12
|
export * from "./ListOutpostsPaginator";
|
|
13
|
+
export * from "./ListQuotesPaginator";
|
|
12
14
|
export * from "./ListSitesPaginator";
|
|
@@ -23,6 +23,7 @@ export declare var CancelCapacityTaskInput$: StaticStructureSchema;
|
|
|
23
23
|
export declare var CancelCapacityTaskOutput$: StaticStructureSchema;
|
|
24
24
|
export declare var CancelOrderInput$: StaticStructureSchema;
|
|
25
25
|
export declare var CancelOrderOutput$: StaticStructureSchema;
|
|
26
|
+
export declare var CapacitySummary$: StaticStructureSchema;
|
|
26
27
|
export declare var CapacityTaskFailure$: StaticStructureSchema;
|
|
27
28
|
export declare var CapacityTaskSummary$: StaticStructureSchema;
|
|
28
29
|
export declare var CatalogItem$: StaticStructureSchema;
|
|
@@ -32,15 +33,21 @@ export declare var CreateOrderInput$: StaticStructureSchema;
|
|
|
32
33
|
export declare var CreateOrderOutput$: StaticStructureSchema;
|
|
33
34
|
export declare var CreateOutpostInput$: StaticStructureSchema;
|
|
34
35
|
export declare var CreateOutpostOutput$: StaticStructureSchema;
|
|
36
|
+
export declare var CreateQuoteInput$: StaticStructureSchema;
|
|
37
|
+
export declare var CreateQuoteOutput$: StaticStructureSchema;
|
|
35
38
|
export declare var CreateRenewalInput$: StaticStructureSchema;
|
|
36
39
|
export declare var CreateRenewalOutput$: StaticStructureSchema;
|
|
37
40
|
export declare var CreateSiteInput$: StaticStructureSchema;
|
|
38
41
|
export declare var CreateSiteOutput$: StaticStructureSchema;
|
|
39
42
|
export declare var DeleteOutpostInput$: StaticStructureSchema;
|
|
40
43
|
export declare var DeleteOutpostOutput$: StaticStructureSchema;
|
|
44
|
+
export declare var DeleteQuoteInput$: StaticStructureSchema;
|
|
45
|
+
export declare var DeleteQuoteOutput$: StaticStructureSchema;
|
|
41
46
|
export declare var DeleteSiteInput$: StaticStructureSchema;
|
|
42
47
|
export declare var DeleteSiteOutput$: StaticStructureSchema;
|
|
48
|
+
export declare var DetailedInstanceTypeItem$: StaticStructureSchema;
|
|
43
49
|
export declare var EC2Capacity$: StaticStructureSchema;
|
|
50
|
+
export declare var FormFactorConfig$: StaticStructureSchema;
|
|
44
51
|
export declare var GetCapacityTaskInput$: StaticStructureSchema;
|
|
45
52
|
export declare var GetCapacityTaskOutput$: StaticStructureSchema;
|
|
46
53
|
export declare var GetCatalogItemInput$: StaticStructureSchema;
|
|
@@ -57,6 +64,8 @@ export declare var GetOutpostInstanceTypesOutput$: StaticStructureSchema;
|
|
|
57
64
|
export declare var GetOutpostOutput$: StaticStructureSchema;
|
|
58
65
|
export declare var GetOutpostSupportedInstanceTypesInput$: StaticStructureSchema;
|
|
59
66
|
export declare var GetOutpostSupportedInstanceTypesOutput$: StaticStructureSchema;
|
|
67
|
+
export declare var GetQuoteInput$: StaticStructureSchema;
|
|
68
|
+
export declare var GetQuoteOutput$: StaticStructureSchema;
|
|
60
69
|
export declare var GetRenewalPricingInput$: StaticStructureSchema;
|
|
61
70
|
export declare var GetRenewalPricingOutput$: StaticStructureSchema;
|
|
62
71
|
export declare var GetSiteAddressInput$: StaticStructureSchema;
|
|
@@ -79,19 +88,32 @@ export declare var ListCapacityTasksInput$: StaticStructureSchema;
|
|
|
79
88
|
export declare var ListCapacityTasksOutput$: StaticStructureSchema;
|
|
80
89
|
export declare var ListCatalogItemsInput$: StaticStructureSchema;
|
|
81
90
|
export declare var ListCatalogItemsOutput$: StaticStructureSchema;
|
|
91
|
+
export declare var ListOrderableInstanceTypesInput$: StaticStructureSchema;
|
|
92
|
+
export declare var ListOrderableInstanceTypesOutput$: StaticStructureSchema;
|
|
82
93
|
export declare var ListOrdersInput$: StaticStructureSchema;
|
|
83
94
|
export declare var ListOrdersOutput$: StaticStructureSchema;
|
|
84
95
|
export declare var ListOutpostsInput$: StaticStructureSchema;
|
|
85
96
|
export declare var ListOutpostsOutput$: StaticStructureSchema;
|
|
97
|
+
export declare var ListQuotesInput$: StaticStructureSchema;
|
|
98
|
+
export declare var ListQuotesOutput$: StaticStructureSchema;
|
|
86
99
|
export declare var ListSitesInput$: StaticStructureSchema;
|
|
87
100
|
export declare var ListSitesOutput$: StaticStructureSchema;
|
|
88
101
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
89
102
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
90
103
|
export declare var Order$: StaticStructureSchema;
|
|
104
|
+
export declare var OrderingRequirement$: StaticStructureSchema;
|
|
91
105
|
export declare var OrderSummary$: StaticStructureSchema;
|
|
92
106
|
export declare var Outpost$: StaticStructureSchema;
|
|
93
107
|
export declare var PricingOption$: StaticStructureSchema;
|
|
108
|
+
export declare var Quote$: StaticStructureSchema;
|
|
109
|
+
export declare var QuoteCapacity$: StaticStructureSchema;
|
|
110
|
+
export declare var QuoteConstraint$: StaticStructureSchema;
|
|
111
|
+
export declare var QuoteOption$: StaticStructureSchema;
|
|
112
|
+
export declare var QuoteSpecification$: StaticStructureSchema;
|
|
113
|
+
export declare var QuoteSummary$: StaticStructureSchema;
|
|
94
114
|
export declare var RackPhysicalProperties$: StaticStructureSchema;
|
|
115
|
+
export declare var RackSpecificationDetails$: StaticStructureSchema;
|
|
116
|
+
export declare var ServerSpecificationDetails$: StaticStructureSchema;
|
|
95
117
|
export declare var ShipmentInformation$: StaticStructureSchema;
|
|
96
118
|
export declare var Site$: StaticStructureSchema;
|
|
97
119
|
export declare var StartCapacityTaskInput$: StaticStructureSchema;
|
|
@@ -108,6 +130,8 @@ export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
|
108
130
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
109
131
|
export declare var UpdateOutpostInput$: StaticStructureSchema;
|
|
110
132
|
export declare var UpdateOutpostOutput$: StaticStructureSchema;
|
|
133
|
+
export declare var UpdateQuoteInput$: StaticStructureSchema;
|
|
134
|
+
export declare var UpdateQuoteOutput$: StaticStructureSchema;
|
|
111
135
|
export declare var UpdateSiteAddressInput$: StaticStructureSchema;
|
|
112
136
|
export declare var UpdateSiteAddressOutput$: StaticStructureSchema;
|
|
113
137
|
export declare var UpdateSiteInput$: StaticStructureSchema;
|
|
@@ -118,9 +142,11 @@ export declare var CancelCapacityTask$: StaticOperationSchema;
|
|
|
118
142
|
export declare var CancelOrder$: StaticOperationSchema;
|
|
119
143
|
export declare var CreateOrder$: StaticOperationSchema;
|
|
120
144
|
export declare var CreateOutpost$: StaticOperationSchema;
|
|
145
|
+
export declare var CreateQuote$: StaticOperationSchema;
|
|
121
146
|
export declare var CreateRenewal$: StaticOperationSchema;
|
|
122
147
|
export declare var CreateSite$: StaticOperationSchema;
|
|
123
148
|
export declare var DeleteOutpost$: StaticOperationSchema;
|
|
149
|
+
export declare var DeleteQuote$: StaticOperationSchema;
|
|
124
150
|
export declare var DeleteSite$: StaticOperationSchema;
|
|
125
151
|
export declare var GetCapacityTask$: StaticOperationSchema;
|
|
126
152
|
export declare var GetCatalogItem$: StaticOperationSchema;
|
|
@@ -130,6 +156,7 @@ export declare var GetOutpost$: StaticOperationSchema;
|
|
|
130
156
|
export declare var GetOutpostBillingInformation$: StaticOperationSchema;
|
|
131
157
|
export declare var GetOutpostInstanceTypes$: StaticOperationSchema;
|
|
132
158
|
export declare var GetOutpostSupportedInstanceTypes$: StaticOperationSchema;
|
|
159
|
+
export declare var GetQuote$: StaticOperationSchema;
|
|
133
160
|
export declare var GetRenewalPricing$: StaticOperationSchema;
|
|
134
161
|
export declare var GetSite$: StaticOperationSchema;
|
|
135
162
|
export declare var GetSiteAddress$: StaticOperationSchema;
|
|
@@ -138,8 +165,10 @@ export declare var ListAssets$: StaticOperationSchema;
|
|
|
138
165
|
export declare var ListBlockingInstancesForCapacityTask$: StaticOperationSchema;
|
|
139
166
|
export declare var ListCapacityTasks$: StaticOperationSchema;
|
|
140
167
|
export declare var ListCatalogItems$: StaticOperationSchema;
|
|
168
|
+
export declare var ListOrderableInstanceTypes$: StaticOperationSchema;
|
|
141
169
|
export declare var ListOrders$: StaticOperationSchema;
|
|
142
170
|
export declare var ListOutposts$: StaticOperationSchema;
|
|
171
|
+
export declare var ListQuotes$: StaticOperationSchema;
|
|
143
172
|
export declare var ListSites$: StaticOperationSchema;
|
|
144
173
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
145
174
|
export declare var StartCapacityTask$: StaticOperationSchema;
|
|
@@ -148,6 +177,7 @@ export declare var StartOutpostDecommission$: StaticOperationSchema;
|
|
|
148
177
|
export declare var TagResource$: StaticOperationSchema;
|
|
149
178
|
export declare var UntagResource$: StaticOperationSchema;
|
|
150
179
|
export declare var UpdateOutpost$: StaticOperationSchema;
|
|
180
|
+
export declare var UpdateQuote$: StaticOperationSchema;
|
|
151
181
|
export declare var UpdateSite$: StaticOperationSchema;
|
|
152
182
|
export declare var UpdateSiteAddress$: StaticOperationSchema;
|
|
153
183
|
export declare var UpdateSiteRackPhysicalProperties$: StaticOperationSchema;
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
CreateOutpostCommandInput,
|
|
20
20
|
CreateOutpostCommandOutput,
|
|
21
21
|
} from "./commands/CreateOutpostCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateQuoteCommandInput,
|
|
24
|
+
CreateQuoteCommandOutput,
|
|
25
|
+
} from "./commands/CreateQuoteCommand";
|
|
22
26
|
import {
|
|
23
27
|
CreateRenewalCommandInput,
|
|
24
28
|
CreateRenewalCommandOutput,
|
|
@@ -31,6 +35,10 @@ import {
|
|
|
31
35
|
DeleteOutpostCommandInput,
|
|
32
36
|
DeleteOutpostCommandOutput,
|
|
33
37
|
} from "./commands/DeleteOutpostCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteQuoteCommandInput,
|
|
40
|
+
DeleteQuoteCommandOutput,
|
|
41
|
+
} from "./commands/DeleteQuoteCommand";
|
|
34
42
|
import {
|
|
35
43
|
DeleteSiteCommandInput,
|
|
36
44
|
DeleteSiteCommandOutput,
|
|
@@ -67,6 +75,10 @@ import {
|
|
|
67
75
|
GetOutpostSupportedInstanceTypesCommandInput,
|
|
68
76
|
GetOutpostSupportedInstanceTypesCommandOutput,
|
|
69
77
|
} from "./commands/GetOutpostSupportedInstanceTypesCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetQuoteCommandInput,
|
|
80
|
+
GetQuoteCommandOutput,
|
|
81
|
+
} from "./commands/GetQuoteCommand";
|
|
70
82
|
import {
|
|
71
83
|
GetRenewalPricingCommandInput,
|
|
72
84
|
GetRenewalPricingCommandOutput,
|
|
@@ -99,6 +111,10 @@ import {
|
|
|
99
111
|
ListCatalogItemsCommandInput,
|
|
100
112
|
ListCatalogItemsCommandOutput,
|
|
101
113
|
} from "./commands/ListCatalogItemsCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListOrderableInstanceTypesCommandInput,
|
|
116
|
+
ListOrderableInstanceTypesCommandOutput,
|
|
117
|
+
} from "./commands/ListOrderableInstanceTypesCommand";
|
|
102
118
|
import {
|
|
103
119
|
ListOrdersCommandInput,
|
|
104
120
|
ListOrdersCommandOutput,
|
|
@@ -107,6 +123,10 @@ import {
|
|
|
107
123
|
ListOutpostsCommandInput,
|
|
108
124
|
ListOutpostsCommandOutput,
|
|
109
125
|
} from "./commands/ListOutpostsCommand";
|
|
126
|
+
import {
|
|
127
|
+
ListQuotesCommandInput,
|
|
128
|
+
ListQuotesCommandOutput,
|
|
129
|
+
} from "./commands/ListQuotesCommand";
|
|
110
130
|
import {
|
|
111
131
|
ListSitesCommandInput,
|
|
112
132
|
ListSitesCommandOutput,
|
|
@@ -139,6 +159,10 @@ import {
|
|
|
139
159
|
UpdateOutpostCommandInput,
|
|
140
160
|
UpdateOutpostCommandOutput,
|
|
141
161
|
} from "./commands/UpdateOutpostCommand";
|
|
162
|
+
import {
|
|
163
|
+
UpdateQuoteCommandInput,
|
|
164
|
+
UpdateQuoteCommandOutput,
|
|
165
|
+
} from "./commands/UpdateQuoteCommand";
|
|
142
166
|
import {
|
|
143
167
|
UpdateSiteAddressCommandInput,
|
|
144
168
|
UpdateSiteAddressCommandOutput,
|
|
@@ -205,6 +229,19 @@ export interface Outposts {
|
|
|
205
229
|
options: __HttpHandlerOptions,
|
|
206
230
|
cb: (err: any, data?: CreateOutpostCommandOutput) => void
|
|
207
231
|
): void;
|
|
232
|
+
createQuote(
|
|
233
|
+
args: CreateQuoteCommandInput,
|
|
234
|
+
options?: __HttpHandlerOptions
|
|
235
|
+
): Promise<CreateQuoteCommandOutput>;
|
|
236
|
+
createQuote(
|
|
237
|
+
args: CreateQuoteCommandInput,
|
|
238
|
+
cb: (err: any, data?: CreateQuoteCommandOutput) => void
|
|
239
|
+
): void;
|
|
240
|
+
createQuote(
|
|
241
|
+
args: CreateQuoteCommandInput,
|
|
242
|
+
options: __HttpHandlerOptions,
|
|
243
|
+
cb: (err: any, data?: CreateQuoteCommandOutput) => void
|
|
244
|
+
): void;
|
|
208
245
|
createRenewal(
|
|
209
246
|
args: CreateRenewalCommandInput,
|
|
210
247
|
options?: __HttpHandlerOptions
|
|
@@ -244,6 +281,19 @@ export interface Outposts {
|
|
|
244
281
|
options: __HttpHandlerOptions,
|
|
245
282
|
cb: (err: any, data?: DeleteOutpostCommandOutput) => void
|
|
246
283
|
): void;
|
|
284
|
+
deleteQuote(
|
|
285
|
+
args: DeleteQuoteCommandInput,
|
|
286
|
+
options?: __HttpHandlerOptions
|
|
287
|
+
): Promise<DeleteQuoteCommandOutput>;
|
|
288
|
+
deleteQuote(
|
|
289
|
+
args: DeleteQuoteCommandInput,
|
|
290
|
+
cb: (err: any, data?: DeleteQuoteCommandOutput) => void
|
|
291
|
+
): void;
|
|
292
|
+
deleteQuote(
|
|
293
|
+
args: DeleteQuoteCommandInput,
|
|
294
|
+
options: __HttpHandlerOptions,
|
|
295
|
+
cb: (err: any, data?: DeleteQuoteCommandOutput) => void
|
|
296
|
+
): void;
|
|
247
297
|
deleteSite(
|
|
248
298
|
args: DeleteSiteCommandInput,
|
|
249
299
|
options?: __HttpHandlerOptions
|
|
@@ -361,6 +411,19 @@ export interface Outposts {
|
|
|
361
411
|
options: __HttpHandlerOptions,
|
|
362
412
|
cb: (err: any, data?: GetOutpostSupportedInstanceTypesCommandOutput) => void
|
|
363
413
|
): void;
|
|
414
|
+
getQuote(
|
|
415
|
+
args: GetQuoteCommandInput,
|
|
416
|
+
options?: __HttpHandlerOptions
|
|
417
|
+
): Promise<GetQuoteCommandOutput>;
|
|
418
|
+
getQuote(
|
|
419
|
+
args: GetQuoteCommandInput,
|
|
420
|
+
cb: (err: any, data?: GetQuoteCommandOutput) => void
|
|
421
|
+
): void;
|
|
422
|
+
getQuote(
|
|
423
|
+
args: GetQuoteCommandInput,
|
|
424
|
+
options: __HttpHandlerOptions,
|
|
425
|
+
cb: (err: any, data?: GetQuoteCommandOutput) => void
|
|
426
|
+
): void;
|
|
364
427
|
getRenewalPricing(
|
|
365
428
|
args: GetRenewalPricingCommandInput,
|
|
366
429
|
options?: __HttpHandlerOptions
|
|
@@ -473,6 +536,20 @@ export interface Outposts {
|
|
|
473
536
|
options: __HttpHandlerOptions,
|
|
474
537
|
cb: (err: any, data?: ListCatalogItemsCommandOutput) => void
|
|
475
538
|
): void;
|
|
539
|
+
listOrderableInstanceTypes(): Promise<ListOrderableInstanceTypesCommandOutput>;
|
|
540
|
+
listOrderableInstanceTypes(
|
|
541
|
+
args: ListOrderableInstanceTypesCommandInput,
|
|
542
|
+
options?: __HttpHandlerOptions
|
|
543
|
+
): Promise<ListOrderableInstanceTypesCommandOutput>;
|
|
544
|
+
listOrderableInstanceTypes(
|
|
545
|
+
args: ListOrderableInstanceTypesCommandInput,
|
|
546
|
+
cb: (err: any, data?: ListOrderableInstanceTypesCommandOutput) => void
|
|
547
|
+
): void;
|
|
548
|
+
listOrderableInstanceTypes(
|
|
549
|
+
args: ListOrderableInstanceTypesCommandInput,
|
|
550
|
+
options: __HttpHandlerOptions,
|
|
551
|
+
cb: (err: any, data?: ListOrderableInstanceTypesCommandOutput) => void
|
|
552
|
+
): void;
|
|
476
553
|
listOrders(): Promise<ListOrdersCommandOutput>;
|
|
477
554
|
listOrders(
|
|
478
555
|
args: ListOrdersCommandInput,
|
|
@@ -501,6 +578,20 @@ export interface Outposts {
|
|
|
501
578
|
options: __HttpHandlerOptions,
|
|
502
579
|
cb: (err: any, data?: ListOutpostsCommandOutput) => void
|
|
503
580
|
): void;
|
|
581
|
+
listQuotes(): Promise<ListQuotesCommandOutput>;
|
|
582
|
+
listQuotes(
|
|
583
|
+
args: ListQuotesCommandInput,
|
|
584
|
+
options?: __HttpHandlerOptions
|
|
585
|
+
): Promise<ListQuotesCommandOutput>;
|
|
586
|
+
listQuotes(
|
|
587
|
+
args: ListQuotesCommandInput,
|
|
588
|
+
cb: (err: any, data?: ListQuotesCommandOutput) => void
|
|
589
|
+
): void;
|
|
590
|
+
listQuotes(
|
|
591
|
+
args: ListQuotesCommandInput,
|
|
592
|
+
options: __HttpHandlerOptions,
|
|
593
|
+
cb: (err: any, data?: ListQuotesCommandOutput) => void
|
|
594
|
+
): void;
|
|
504
595
|
listSites(): Promise<ListSitesCommandOutput>;
|
|
505
596
|
listSites(
|
|
506
597
|
args: ListSitesCommandInput,
|
|
@@ -606,6 +697,19 @@ export interface Outposts {
|
|
|
606
697
|
options: __HttpHandlerOptions,
|
|
607
698
|
cb: (err: any, data?: UpdateOutpostCommandOutput) => void
|
|
608
699
|
): void;
|
|
700
|
+
updateQuote(
|
|
701
|
+
args: UpdateQuoteCommandInput,
|
|
702
|
+
options?: __HttpHandlerOptions
|
|
703
|
+
): Promise<UpdateQuoteCommandOutput>;
|
|
704
|
+
updateQuote(
|
|
705
|
+
args: UpdateQuoteCommandInput,
|
|
706
|
+
cb: (err: any, data?: UpdateQuoteCommandOutput) => void
|
|
707
|
+
): void;
|
|
708
|
+
updateQuote(
|
|
709
|
+
args: UpdateQuoteCommandInput,
|
|
710
|
+
options: __HttpHandlerOptions,
|
|
711
|
+
cb: (err: any, data?: UpdateQuoteCommandOutput) => void
|
|
712
|
+
): void;
|
|
609
713
|
updateSite(
|
|
610
714
|
args: UpdateSiteCommandInput,
|
|
611
715
|
options?: __HttpHandlerOptions
|
|
@@ -701,6 +805,13 @@ export interface Outposts {
|
|
|
701
805
|
Exclude<keyof PaginationConfiguration, "client">
|
|
702
806
|
>
|
|
703
807
|
): Paginator<ListCatalogItemsCommandOutput>;
|
|
808
|
+
paginateListOrderableInstanceTypes(
|
|
809
|
+
args?: ListOrderableInstanceTypesCommandInput,
|
|
810
|
+
paginationConfig?: Pick<
|
|
811
|
+
PaginationConfiguration,
|
|
812
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
813
|
+
>
|
|
814
|
+
): Paginator<ListOrderableInstanceTypesCommandOutput>;
|
|
704
815
|
paginateListOrders(
|
|
705
816
|
args?: ListOrdersCommandInput,
|
|
706
817
|
paginationConfig?: Pick<
|
|
@@ -715,6 +826,13 @@ export interface Outposts {
|
|
|
715
826
|
Exclude<keyof PaginationConfiguration, "client">
|
|
716
827
|
>
|
|
717
828
|
): Paginator<ListOutpostsCommandOutput>;
|
|
829
|
+
paginateListQuotes(
|
|
830
|
+
args?: ListQuotesCommandInput,
|
|
831
|
+
paginationConfig?: Pick<
|
|
832
|
+
PaginationConfiguration,
|
|
833
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
834
|
+
>
|
|
835
|
+
): Paginator<ListQuotesCommandOutput>;
|
|
718
836
|
paginateListSites(
|
|
719
837
|
args?: ListSitesCommandInput,
|
|
720
838
|
paginationConfig?: Pick<
|
|
@@ -52,6 +52,10 @@ import {
|
|
|
52
52
|
CreateOutpostCommandInput,
|
|
53
53
|
CreateOutpostCommandOutput,
|
|
54
54
|
} from "./commands/CreateOutpostCommand";
|
|
55
|
+
import {
|
|
56
|
+
CreateQuoteCommandInput,
|
|
57
|
+
CreateQuoteCommandOutput,
|
|
58
|
+
} from "./commands/CreateQuoteCommand";
|
|
55
59
|
import {
|
|
56
60
|
CreateRenewalCommandInput,
|
|
57
61
|
CreateRenewalCommandOutput,
|
|
@@ -64,6 +68,10 @@ import {
|
|
|
64
68
|
DeleteOutpostCommandInput,
|
|
65
69
|
DeleteOutpostCommandOutput,
|
|
66
70
|
} from "./commands/DeleteOutpostCommand";
|
|
71
|
+
import {
|
|
72
|
+
DeleteQuoteCommandInput,
|
|
73
|
+
DeleteQuoteCommandOutput,
|
|
74
|
+
} from "./commands/DeleteQuoteCommand";
|
|
67
75
|
import {
|
|
68
76
|
DeleteSiteCommandInput,
|
|
69
77
|
DeleteSiteCommandOutput,
|
|
@@ -100,6 +108,10 @@ import {
|
|
|
100
108
|
GetOutpostSupportedInstanceTypesCommandInput,
|
|
101
109
|
GetOutpostSupportedInstanceTypesCommandOutput,
|
|
102
110
|
} from "./commands/GetOutpostSupportedInstanceTypesCommand";
|
|
111
|
+
import {
|
|
112
|
+
GetQuoteCommandInput,
|
|
113
|
+
GetQuoteCommandOutput,
|
|
114
|
+
} from "./commands/GetQuoteCommand";
|
|
103
115
|
import {
|
|
104
116
|
GetRenewalPricingCommandInput,
|
|
105
117
|
GetRenewalPricingCommandOutput,
|
|
@@ -132,6 +144,10 @@ import {
|
|
|
132
144
|
ListCatalogItemsCommandInput,
|
|
133
145
|
ListCatalogItemsCommandOutput,
|
|
134
146
|
} from "./commands/ListCatalogItemsCommand";
|
|
147
|
+
import {
|
|
148
|
+
ListOrderableInstanceTypesCommandInput,
|
|
149
|
+
ListOrderableInstanceTypesCommandOutput,
|
|
150
|
+
} from "./commands/ListOrderableInstanceTypesCommand";
|
|
135
151
|
import {
|
|
136
152
|
ListOrdersCommandInput,
|
|
137
153
|
ListOrdersCommandOutput,
|
|
@@ -140,6 +156,10 @@ import {
|
|
|
140
156
|
ListOutpostsCommandInput,
|
|
141
157
|
ListOutpostsCommandOutput,
|
|
142
158
|
} from "./commands/ListOutpostsCommand";
|
|
159
|
+
import {
|
|
160
|
+
ListQuotesCommandInput,
|
|
161
|
+
ListQuotesCommandOutput,
|
|
162
|
+
} from "./commands/ListQuotesCommand";
|
|
143
163
|
import {
|
|
144
164
|
ListSitesCommandInput,
|
|
145
165
|
ListSitesCommandOutput,
|
|
@@ -172,6 +192,10 @@ import {
|
|
|
172
192
|
UpdateOutpostCommandInput,
|
|
173
193
|
UpdateOutpostCommandOutput,
|
|
174
194
|
} from "./commands/UpdateOutpostCommand";
|
|
195
|
+
import {
|
|
196
|
+
UpdateQuoteCommandInput,
|
|
197
|
+
UpdateQuoteCommandOutput,
|
|
198
|
+
} from "./commands/UpdateQuoteCommand";
|
|
175
199
|
import {
|
|
176
200
|
UpdateSiteAddressCommandInput,
|
|
177
201
|
UpdateSiteAddressCommandOutput,
|
|
@@ -196,9 +220,11 @@ export type ServiceInputTypes =
|
|
|
196
220
|
| CancelOrderCommandInput
|
|
197
221
|
| CreateOrderCommandInput
|
|
198
222
|
| CreateOutpostCommandInput
|
|
223
|
+
| CreateQuoteCommandInput
|
|
199
224
|
| CreateRenewalCommandInput
|
|
200
225
|
| CreateSiteCommandInput
|
|
201
226
|
| DeleteOutpostCommandInput
|
|
227
|
+
| DeleteQuoteCommandInput
|
|
202
228
|
| DeleteSiteCommandInput
|
|
203
229
|
| GetCapacityTaskCommandInput
|
|
204
230
|
| GetCatalogItemCommandInput
|
|
@@ -208,6 +234,7 @@ export type ServiceInputTypes =
|
|
|
208
234
|
| GetOutpostCommandInput
|
|
209
235
|
| GetOutpostInstanceTypesCommandInput
|
|
210
236
|
| GetOutpostSupportedInstanceTypesCommandInput
|
|
237
|
+
| GetQuoteCommandInput
|
|
211
238
|
| GetRenewalPricingCommandInput
|
|
212
239
|
| GetSiteAddressCommandInput
|
|
213
240
|
| GetSiteCommandInput
|
|
@@ -216,8 +243,10 @@ export type ServiceInputTypes =
|
|
|
216
243
|
| ListBlockingInstancesForCapacityTaskCommandInput
|
|
217
244
|
| ListCapacityTasksCommandInput
|
|
218
245
|
| ListCatalogItemsCommandInput
|
|
246
|
+
| ListOrderableInstanceTypesCommandInput
|
|
219
247
|
| ListOrdersCommandInput
|
|
220
248
|
| ListOutpostsCommandInput
|
|
249
|
+
| ListQuotesCommandInput
|
|
221
250
|
| ListSitesCommandInput
|
|
222
251
|
| ListTagsForResourceCommandInput
|
|
223
252
|
| StartCapacityTaskCommandInput
|
|
@@ -226,6 +255,7 @@ export type ServiceInputTypes =
|
|
|
226
255
|
| TagResourceCommandInput
|
|
227
256
|
| UntagResourceCommandInput
|
|
228
257
|
| UpdateOutpostCommandInput
|
|
258
|
+
| UpdateQuoteCommandInput
|
|
229
259
|
| UpdateSiteAddressCommandInput
|
|
230
260
|
| UpdateSiteCommandInput
|
|
231
261
|
| UpdateSiteRackPhysicalPropertiesCommandInput;
|
|
@@ -234,9 +264,11 @@ export type ServiceOutputTypes =
|
|
|
234
264
|
| CancelOrderCommandOutput
|
|
235
265
|
| CreateOrderCommandOutput
|
|
236
266
|
| CreateOutpostCommandOutput
|
|
267
|
+
| CreateQuoteCommandOutput
|
|
237
268
|
| CreateRenewalCommandOutput
|
|
238
269
|
| CreateSiteCommandOutput
|
|
239
270
|
| DeleteOutpostCommandOutput
|
|
271
|
+
| DeleteQuoteCommandOutput
|
|
240
272
|
| DeleteSiteCommandOutput
|
|
241
273
|
| GetCapacityTaskCommandOutput
|
|
242
274
|
| GetCatalogItemCommandOutput
|
|
@@ -246,6 +278,7 @@ export type ServiceOutputTypes =
|
|
|
246
278
|
| GetOutpostCommandOutput
|
|
247
279
|
| GetOutpostInstanceTypesCommandOutput
|
|
248
280
|
| GetOutpostSupportedInstanceTypesCommandOutput
|
|
281
|
+
| GetQuoteCommandOutput
|
|
249
282
|
| GetRenewalPricingCommandOutput
|
|
250
283
|
| GetSiteAddressCommandOutput
|
|
251
284
|
| GetSiteCommandOutput
|
|
@@ -254,8 +287,10 @@ export type ServiceOutputTypes =
|
|
|
254
287
|
| ListBlockingInstancesForCapacityTaskCommandOutput
|
|
255
288
|
| ListCapacityTasksCommandOutput
|
|
256
289
|
| ListCatalogItemsCommandOutput
|
|
290
|
+
| ListOrderableInstanceTypesCommandOutput
|
|
257
291
|
| ListOrdersCommandOutput
|
|
258
292
|
| ListOutpostsCommandOutput
|
|
293
|
+
| ListQuotesCommandOutput
|
|
259
294
|
| ListSitesCommandOutput
|
|
260
295
|
| ListTagsForResourceCommandOutput
|
|
261
296
|
| StartCapacityTaskCommandOutput
|
|
@@ -264,6 +299,7 @@ export type ServiceOutputTypes =
|
|
|
264
299
|
| TagResourceCommandOutput
|
|
265
300
|
| UntagResourceCommandOutput
|
|
266
301
|
| UpdateOutpostCommandOutput
|
|
302
|
+
| UpdateQuoteCommandOutput
|
|
267
303
|
| UpdateSiteAddressCommandOutput
|
|
268
304
|
| UpdateSiteCommandOutput
|
|
269
305
|
| UpdateSiteRackPhysicalPropertiesCommandOutput;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CreateQuoteInput, CreateQuoteOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
OutpostsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../OutpostsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreateQuoteCommandInput extends CreateQuoteInput {}
|
|
12
|
+
export interface CreateQuoteCommandOutput
|
|
13
|
+
extends CreateQuoteOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreateQuoteCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreateQuoteCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
CreateQuoteCommandInput,
|
|
20
|
+
CreateQuoteCommandOutput,
|
|
21
|
+
OutpostsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: CreateQuoteCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
CreateQuoteCommandInput,
|
|
29
|
+
CreateQuoteCommandOutput,
|
|
30
|
+
OutpostsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class CreateQuoteCommand extends CreateQuoteCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: CreateQuoteInput;
|
|
42
|
+
output: CreateQuoteOutput;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: CreateQuoteCommandInput;
|
|
46
|
+
output: CreateQuoteCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteQuoteInput, DeleteQuoteOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
OutpostsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../OutpostsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteQuoteCommandInput extends DeleteQuoteInput {}
|
|
12
|
+
export interface DeleteQuoteCommandOutput
|
|
13
|
+
extends DeleteQuoteOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const DeleteQuoteCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteQuoteCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
DeleteQuoteCommandInput,
|
|
20
|
+
DeleteQuoteCommandOutput,
|
|
21
|
+
OutpostsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: DeleteQuoteCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
DeleteQuoteCommandInput,
|
|
29
|
+
DeleteQuoteCommandOutput,
|
|
30
|
+
OutpostsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class DeleteQuoteCommand extends DeleteQuoteCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: DeleteQuoteInput;
|
|
42
|
+
output: {};
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: DeleteQuoteCommandInput;
|
|
46
|
+
output: DeleteQuoteCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetQuoteInput, GetQuoteOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
OutpostsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../OutpostsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetQuoteCommandInput extends GetQuoteInput {}
|
|
12
|
+
export interface GetQuoteCommandOutput
|
|
13
|
+
extends GetQuoteOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetQuoteCommand_base: {
|
|
16
|
+
new (input: GetQuoteCommandInput): import("@smithy/core/client").CommandImpl<
|
|
17
|
+
GetQuoteCommandInput,
|
|
18
|
+
GetQuoteCommandOutput,
|
|
19
|
+
OutpostsClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (input: GetQuoteCommandInput): import("@smithy/core/client").CommandImpl<
|
|
24
|
+
GetQuoteCommandInput,
|
|
25
|
+
GetQuoteCommandOutput,
|
|
26
|
+
OutpostsClientResolvedConfig,
|
|
27
|
+
ServiceInputTypes,
|
|
28
|
+
ServiceOutputTypes
|
|
29
|
+
>;
|
|
30
|
+
getEndpointParameterInstructions(): {
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export declare class GetQuoteCommand extends GetQuoteCommand_base {
|
|
35
|
+
protected static __types: {
|
|
36
|
+
api: {
|
|
37
|
+
input: GetQuoteInput;
|
|
38
|
+
output: GetQuoteOutput;
|
|
39
|
+
};
|
|
40
|
+
sdk: {
|
|
41
|
+
input: GetQuoteCommandInput;
|
|
42
|
+
output: GetQuoteCommandOutput;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}
|