@aws-sdk/client-outposts 3.1063.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.
Files changed (50) hide show
  1. package/README.md +42 -0
  2. package/dist-cjs/index.js +171 -3
  3. package/dist-cjs/schemas/schemas_0.js +269 -16
  4. package/dist-es/Outposts.js +16 -0
  5. package/dist-es/commands/CreateQuoteCommand.js +16 -0
  6. package/dist-es/commands/DeleteQuoteCommand.js +16 -0
  7. package/dist-es/commands/GetQuoteCommand.js +16 -0
  8. package/dist-es/commands/ListOrderableInstanceTypesCommand.js +16 -0
  9. package/dist-es/commands/ListQuotesCommand.js +16 -0
  10. package/dist-es/commands/UpdateQuoteCommand.js +16 -0
  11. package/dist-es/commands/index.js +6 -0
  12. package/dist-es/models/enums.js +68 -3
  13. package/dist-es/pagination/ListOrderableInstanceTypesPaginator.js +4 -0
  14. package/dist-es/pagination/ListQuotesPaginator.js +4 -0
  15. package/dist-es/pagination/index.js +2 -0
  16. package/dist-es/schemas/schemas_0.js +265 -13
  17. package/dist-types/Outposts.d.ts +58 -0
  18. package/dist-types/OutpostsClient.d.ts +8 -2
  19. package/dist-types/commands/CreateQuoteCommand.d.ts +231 -0
  20. package/dist-types/commands/CreateRenewalCommand.d.ts +1 -0
  21. package/dist-types/commands/DeleteQuoteCommand.d.ts +86 -0
  22. package/dist-types/commands/GetOutpostBillingInformationCommand.d.ts +1 -0
  23. package/dist-types/commands/GetQuoteCommand.d.ts +208 -0
  24. package/dist-types/commands/GetRenewalPricingCommand.d.ts +1 -0
  25. package/dist-types/commands/ListOrderableInstanceTypesCommand.d.ts +105 -0
  26. package/dist-types/commands/ListQuotesCommand.d.ts +199 -0
  27. package/dist-types/commands/UpdateQuoteCommand.d.ts +231 -0
  28. package/dist-types/commands/index.d.ts +6 -0
  29. package/dist-types/models/enums.d.ts +164 -11
  30. package/dist-types/models/models_0.d.ts +881 -59
  31. package/dist-types/pagination/ListOrderableInstanceTypesPaginator.d.ts +7 -0
  32. package/dist-types/pagination/ListQuotesPaginator.d.ts +7 -0
  33. package/dist-types/pagination/index.d.ts +2 -0
  34. package/dist-types/schemas/schemas_0.d.ts +30 -0
  35. package/dist-types/ts3.4/Outposts.d.ts +118 -0
  36. package/dist-types/ts3.4/OutpostsClient.d.ts +36 -0
  37. package/dist-types/ts3.4/commands/CreateQuoteCommand.d.ts +49 -0
  38. package/dist-types/ts3.4/commands/DeleteQuoteCommand.d.ts +49 -0
  39. package/dist-types/ts3.4/commands/GetQuoteCommand.d.ts +45 -0
  40. package/dist-types/ts3.4/commands/ListOrderableInstanceTypesCommand.d.ts +53 -0
  41. package/dist-types/ts3.4/commands/ListQuotesCommand.d.ts +49 -0
  42. package/dist-types/ts3.4/commands/UpdateQuoteCommand.d.ts +49 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  44. package/dist-types/ts3.4/models/enums.d.ts +89 -5
  45. package/dist-types/ts3.4/models/models_0.d.ts +174 -10
  46. package/dist-types/ts3.4/pagination/ListOrderableInstanceTypesPaginator.d.ts +11 -0
  47. package/dist-types/ts3.4/pagination/ListQuotesPaginator.d.ts +11 -0
  48. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  49. package/dist-types/ts3.4/schemas/schemas_0.d.ts +30 -0
  50. package/package.json +5 -5
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListOrderableInstanceTypesInput,
5
+ ListOrderableInstanceTypesOutput,
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 ListOrderableInstanceTypesCommandInput
15
+ extends ListOrderableInstanceTypesInput {}
16
+ export interface ListOrderableInstanceTypesCommandOutput
17
+ extends ListOrderableInstanceTypesOutput,
18
+ __MetadataBearer {}
19
+ declare const ListOrderableInstanceTypesCommand_base: {
20
+ new (
21
+ input: ListOrderableInstanceTypesCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ ListOrderableInstanceTypesCommandInput,
24
+ ListOrderableInstanceTypesCommandOutput,
25
+ OutpostsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListOrderableInstanceTypesCommandInput]
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ ListOrderableInstanceTypesCommandInput,
33
+ ListOrderableInstanceTypesCommandOutput,
34
+ OutpostsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class ListOrderableInstanceTypesCommand extends ListOrderableInstanceTypesCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: ListOrderableInstanceTypesInput;
46
+ output: ListOrderableInstanceTypesOutput;
47
+ };
48
+ sdk: {
49
+ input: ListOrderableInstanceTypesCommandInput;
50
+ output: ListOrderableInstanceTypesCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,49 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListQuotesInput, ListQuotesOutput } from "../models/models_0";
4
+ import {
5
+ OutpostsClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../OutpostsClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListQuotesCommandInput extends ListQuotesInput {}
12
+ export interface ListQuotesCommandOutput
13
+ extends ListQuotesOutput,
14
+ __MetadataBearer {}
15
+ declare const ListQuotesCommand_base: {
16
+ new (
17
+ input: ListQuotesCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ ListQuotesCommandInput,
20
+ ListQuotesCommandOutput,
21
+ OutpostsClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ ...[input]: [] | [ListQuotesCommandInput]
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ ListQuotesCommandInput,
29
+ ListQuotesCommandOutput,
30
+ OutpostsClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class ListQuotesCommand extends ListQuotesCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: ListQuotesInput;
42
+ output: ListQuotesOutput;
43
+ };
44
+ sdk: {
45
+ input: ListQuotesCommandInput;
46
+ output: ListQuotesCommandOutput;
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 { UpdateQuoteInput, UpdateQuoteOutput } from "../models/models_0";
4
+ import {
5
+ OutpostsClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../OutpostsClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateQuoteCommandInput extends UpdateQuoteInput {}
12
+ export interface UpdateQuoteCommandOutput
13
+ extends UpdateQuoteOutput,
14
+ __MetadataBearer {}
15
+ declare const UpdateQuoteCommand_base: {
16
+ new (
17
+ input: UpdateQuoteCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ UpdateQuoteCommandInput,
20
+ UpdateQuoteCommandOutput,
21
+ OutpostsClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: UpdateQuoteCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ UpdateQuoteCommandInput,
29
+ UpdateQuoteCommandOutput,
30
+ OutpostsClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class UpdateQuoteCommand extends UpdateQuoteCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: UpdateQuoteInput;
42
+ output: UpdateQuoteOutput;
43
+ };
44
+ sdk: {
45
+ input: UpdateQuoteCommandInput;
46
+ output: UpdateQuoteCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -2,9 +2,11 @@ export * from "./CancelCapacityTaskCommand";
2
2
  export * from "./CancelOrderCommand";
3
3
  export * from "./CreateOrderCommand";
4
4
  export * from "./CreateOutpostCommand";
5
+ export * from "./CreateQuoteCommand";
5
6
  export * from "./CreateRenewalCommand";
6
7
  export * from "./CreateSiteCommand";
7
8
  export * from "./DeleteOutpostCommand";
9
+ export * from "./DeleteQuoteCommand";
8
10
  export * from "./DeleteSiteCommand";
9
11
  export * from "./GetCapacityTaskCommand";
10
12
  export * from "./GetCatalogItemCommand";
@@ -14,6 +16,7 @@ export * from "./GetOutpostBillingInformationCommand";
14
16
  export * from "./GetOutpostCommand";
15
17
  export * from "./GetOutpostInstanceTypesCommand";
16
18
  export * from "./GetOutpostSupportedInstanceTypesCommand";
19
+ export * from "./GetQuoteCommand";
17
20
  export * from "./GetRenewalPricingCommand";
18
21
  export * from "./GetSiteAddressCommand";
19
22
  export * from "./GetSiteCommand";
@@ -22,8 +25,10 @@ export * from "./ListAssetsCommand";
22
25
  export * from "./ListBlockingInstancesForCapacityTaskCommand";
23
26
  export * from "./ListCapacityTasksCommand";
24
27
  export * from "./ListCatalogItemsCommand";
28
+ export * from "./ListOrderableInstanceTypesCommand";
25
29
  export * from "./ListOrdersCommand";
26
30
  export * from "./ListOutpostsCommand";
31
+ export * from "./ListQuotesCommand";
27
32
  export * from "./ListSitesCommand";
28
33
  export * from "./ListTagsForResourceCommand";
29
34
  export * from "./StartCapacityTaskCommand";
@@ -32,6 +37,7 @@ export * from "./StartOutpostDecommissionCommand";
32
37
  export * from "./TagResourceCommand";
33
38
  export * from "./UntagResourceCommand";
34
39
  export * from "./UpdateOutpostCommand";
40
+ export * from "./UpdateQuoteCommand";
35
41
  export * from "./UpdateSiteAddressCommand";
36
42
  export * from "./UpdateSiteCommand";
37
43
  export * from "./UpdateSiteRackPhysicalPropertiesCommand";
@@ -52,6 +52,13 @@ export declare const ResourceType: {
52
52
  readonly OUTPOST: "OUTPOST";
53
53
  };
54
54
  export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
55
+ export declare const QuoteCapacityType: {
56
+ readonly EBS: "EBS";
57
+ readonly EC2: "EC2";
58
+ readonly S3: "S3";
59
+ };
60
+ export type QuoteCapacityType =
61
+ (typeof QuoteCapacityType)[keyof typeof QuoteCapacityType];
55
62
  export declare const CapacityTaskFailureType: {
56
63
  readonly BLOCKING_INSTANCES_NOT_EVACUATED: "BLOCKING_INSTANCES_NOT_EVACUATED";
57
64
  readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
@@ -149,6 +156,77 @@ export declare const SupportedHardwareType: {
149
156
  };
150
157
  export type SupportedHardwareType =
151
158
  (typeof SupportedHardwareType)[keyof typeof SupportedHardwareType];
159
+ export declare const QuoteConstraintType: {
160
+ readonly RACK_MAXIMUM: "RACK_MAXIMUM";
161
+ readonly RACK_MAX_POWER_KVA: "RACK_MAX_POWER_KVA";
162
+ readonly RACK_MAX_WEIGHT_LBS: "RACK_MAX_WEIGHT_LBS";
163
+ };
164
+ export type QuoteConstraintType =
165
+ (typeof QuoteConstraintType)[keyof typeof QuoteConstraintType];
166
+ export declare const OrderingRequirementType: {
167
+ readonly COUNTRY_CODE_MISMATCH_CHECK_ERROR: "COUNTRY_CODE_MISMATCH_CHECK_ERROR";
168
+ readonly ENTERPRISE_SUPPORT_ERROR: "ENTERPRISE_SUPPORT_ERROR";
169
+ readonly MAXIMUM_ALLOWED_ORDERS_CHECK_ERROR: "MAXIMUM_ALLOWED_ORDERS_CHECK_ERROR";
170
+ readonly OPERATING_ADDRESS_EXISTENCE_CHECK_ERROR: "OPERATING_ADDRESS_EXISTENCE_CHECK_ERROR";
171
+ readonly OUTPOST_ACTIVE_CHECK_ERROR: "OUTPOST_ACTIVE_CHECK_ERROR";
172
+ readonly OUTPOST_GENERATION_MISMATCH_ERROR: "OUTPOST_GENERATION_MISMATCH_ERROR";
173
+ readonly OUTPOST_ID_MISSING_ON_QUOTE_ERROR: "OUTPOST_ID_MISSING_ON_QUOTE_ERROR";
174
+ readonly OUTPOST_NOT_FOUND_ERROR: "OUTPOST_NOT_FOUND_ERROR";
175
+ readonly OUTPOST_RENEWAL_REQUIRED_ERROR: "OUTPOST_RENEWAL_REQUIRED_ERROR";
176
+ readonly OUTPOST_STATE_CHANGED_ERROR: "OUTPOST_STATE_CHANGED_ERROR";
177
+ readonly RACK_PHYSICAL_PROPERTIES_CHECK_ERROR: "RACK_PHYSICAL_PROPERTIES_CHECK_ERROR";
178
+ readonly SHIPPING_ADDRESS_EXISTENCE_CHECK_ERROR: "SHIPPING_ADDRESS_EXISTENCE_CHECK_ERROR";
179
+ readonly SHIPPING_ADDRESS_MISSING_CONTACT_INFO_ERROR: "SHIPPING_ADDRESS_MISSING_CONTACT_INFO_ERROR";
180
+ readonly SHIPPING_ADDRESS_MISSING_CONTACT_NAME_ERROR: "SHIPPING_ADDRESS_MISSING_CONTACT_NAME_ERROR";
181
+ readonly SHIPPING_ADDRESS_MISSING_CONTACT_NUMBER_ERROR: "SHIPPING_ADDRESS_MISSING_CONTACT_NUMBER_ERROR";
182
+ readonly UNSUPPORTED: "UNSUPPORTED";
183
+ readonly VALID_ZIP_CODE_CHECK_ERROR: "VALID_ZIP_CODE_CHECK_ERROR";
184
+ };
185
+ export type OrderingRequirementType =
186
+ (typeof OrderingRequirementType)[keyof typeof OrderingRequirementType];
187
+ export declare const OrderingRequirementStatus: {
188
+ readonly EXEMPT: "EXEMPT";
189
+ readonly FAIL: "FAIL";
190
+ readonly PASS: "PASS";
191
+ };
192
+ export type OrderingRequirementStatus =
193
+ (typeof OrderingRequirementStatus)[keyof typeof OrderingRequirementStatus];
194
+ export declare const QuotePricingType: {
195
+ readonly SUBSCRIPTION: "SUBSCRIPTION";
196
+ };
197
+ export type QuotePricingType =
198
+ (typeof QuotePricingType)[keyof typeof QuotePricingType];
199
+ export declare const CurrencyCode: {
200
+ readonly USD: "USD";
201
+ };
202
+ export type CurrencyCode = (typeof CurrencyCode)[keyof typeof CurrencyCode];
203
+ export declare const RackUnitHeight: {
204
+ readonly HEIGHT_1U: "HEIGHT_1U";
205
+ readonly HEIGHT_2U: "HEIGHT_2U";
206
+ readonly HEIGHT_42U: "HEIGHT_42U";
207
+ };
208
+ export type RackUnitHeight =
209
+ (typeof RackUnitHeight)[keyof typeof RackUnitHeight];
210
+ export declare const QuoteRackUseType: {
211
+ readonly COMPUTE: "COMPUTE";
212
+ readonly NETWORKING: "NETWORKING";
213
+ };
214
+ export type QuoteRackUseType =
215
+ (typeof QuoteRackUseType)[keyof typeof QuoteRackUseType];
216
+ export declare const QuoteSpecificationType: {
217
+ readonly EXISTING_RACK: "EXISTING_RACK";
218
+ readonly NEW_RACK: "NEW_RACK";
219
+ readonly SERVER: "SERVER";
220
+ readonly UPDATED_RACK: "UPDATED_RACK";
221
+ };
222
+ export type QuoteSpecificationType =
223
+ (typeof QuoteSpecificationType)[keyof typeof QuoteSpecificationType];
224
+ export declare const QuoteStatus: {
225
+ readonly CREATED: "CREATED";
226
+ readonly EXPIRED: "EXPIRED";
227
+ readonly ORDER_SUBMITTED: "ORDER_SUBMITTED";
228
+ };
229
+ export type QuoteStatus = (typeof QuoteStatus)[keyof typeof QuoteStatus];
152
230
  export declare const FiberOpticCableType: {
153
231
  readonly MULTI_MODE: "MULTI_MODE";
154
232
  readonly SINGLE_MODE: "SINGLE_MODE";
@@ -234,6 +312,17 @@ export declare const DecommissionRequestStatus: {
234
312
  };
235
313
  export type DecommissionRequestStatus =
236
314
  (typeof DecommissionRequestStatus)[keyof typeof DecommissionRequestStatus];
315
+ export declare const FormFactor: {
316
+ readonly RACK: "RACK";
317
+ readonly SERVER: "SERVER";
318
+ };
319
+ export type FormFactor = (typeof FormFactor)[keyof typeof FormFactor];
320
+ export declare const OutpostGeneration: {
321
+ readonly GENERATION_1: "GENERATION_1";
322
+ readonly GENERATION_2: "GENERATION_2";
323
+ };
324
+ export type OutpostGeneration =
325
+ (typeof OutpostGeneration)[keyof typeof OutpostGeneration];
237
326
  export declare const TaskActionOnBlockingInstances: {
238
327
  readonly FAIL_TASK: "FAIL_TASK";
239
328
  readonly WAIT_FOR_EVACUATION: "WAIT_FOR_EVACUATION";
@@ -255,11 +344,6 @@ export declare const SubscriptionType: {
255
344
  };
256
345
  export type SubscriptionType =
257
346
  (typeof SubscriptionType)[keyof typeof SubscriptionType];
258
- export declare const QuotePricingType: {
259
- readonly SUBSCRIPTION: "SUBSCRIPTION";
260
- };
261
- export type QuotePricingType =
262
- (typeof QuotePricingType)[keyof typeof QuotePricingType];
263
347
  export declare const PricingResult: {
264
348
  readonly PRICED: "PRICED";
265
349
  readonly UNABLE_TO_PRICE: "UNABLE_TO_PRICE";
@@ -9,13 +9,18 @@ import {
9
9
  CatalogItemClass,
10
10
  CatalogItemStatus,
11
11
  ComputeAssetState,
12
+ CurrencyCode,
12
13
  DecommissionRequestStatus,
13
14
  FiberOpticCableType,
15
+ FormFactor,
14
16
  LineItemStatus,
15
17
  MaximumSupportedWeightLbs,
16
18
  OpticalStandard,
19
+ OrderingRequirementStatus,
20
+ OrderingRequirementType,
17
21
  OrderStatus,
18
22
  OrderType,
23
+ OutpostGeneration,
19
24
  PaymentOption,
20
25
  PaymentTerm,
21
26
  PowerConnector,
@@ -23,7 +28,13 @@ import {
23
28
  PowerFeedDrop,
24
29
  PowerPhase,
25
30
  PricingResult,
31
+ QuoteCapacityType,
32
+ QuoteConstraintType,
26
33
  QuotePricingType,
34
+ QuoteRackUseType,
35
+ QuoteSpecificationType,
36
+ QuoteStatus,
37
+ RackUnitHeight,
27
38
  ShipmentCarrier,
28
39
  SubscriptionStatus,
29
40
  SubscriptionType,
@@ -88,6 +99,16 @@ export interface CancelOrderInput {
88
99
  OrderId: string | undefined;
89
100
  }
90
101
  export interface CancelOrderOutput {}
102
+ export interface QuoteCapacity {
103
+ QuoteCapacityType?: QuoteCapacityType | undefined;
104
+ Unit?: string | undefined;
105
+ Quantity?: number | undefined;
106
+ }
107
+ export interface CapacitySummary {
108
+ ExistingCapacities?: QuoteCapacity[] | undefined;
109
+ FinalCapacities?: QuoteCapacity[] | undefined;
110
+ CapacityChange?: QuoteCapacity[] | undefined;
111
+ }
91
112
  export interface CapacityTaskFailure {
92
113
  Reason: string | undefined;
93
114
  Type?: CapacityTaskFailureType | undefined;
@@ -192,6 +213,89 @@ export interface Outpost {
192
213
  export interface CreateOutpostOutput {
193
214
  Outpost?: Outpost | undefined;
194
215
  }
216
+ export interface QuoteConstraint {
217
+ QuoteConstraintType?: QuoteConstraintType | undefined;
218
+ Value?: string | undefined;
219
+ }
220
+ export interface CreateQuoteInput {
221
+ OutpostIdentifier?: string | undefined;
222
+ CountryCode: string | undefined;
223
+ RequestedCapacities: QuoteCapacity[] | undefined;
224
+ RequestedConstraints?: QuoteConstraint[] | undefined;
225
+ RequestedPaymentOptions?: PaymentOption[] | undefined;
226
+ RequestedPaymentTerms?: PaymentTerm[] | undefined;
227
+ Description?: string | undefined;
228
+ }
229
+ export interface OrderingRequirement {
230
+ StatusMessage?: string | undefined;
231
+ OrderingRequirementType?: OrderingRequirementType | undefined;
232
+ Status?: OrderingRequirementStatus | undefined;
233
+ }
234
+ export interface SubscriptionPricingDetails {
235
+ PaymentOption?: PaymentOption | undefined;
236
+ PaymentTerm?: PaymentTerm | undefined;
237
+ UpfrontPrice?: number | undefined;
238
+ MonthlyRecurringPrice?: number | undefined;
239
+ Currency?: CurrencyCode | undefined;
240
+ }
241
+ export interface PricingOption {
242
+ PricingType?: QuotePricingType | undefined;
243
+ SubscriptionPricingDetails?: SubscriptionPricingDetails | undefined;
244
+ }
245
+ export interface RackSpecificationDetails {
246
+ RackId?: string | undefined;
247
+ RackUse?: QuoteRackUseType | undefined;
248
+ RackPowerDrawKva?: number | undefined;
249
+ RackWeightLbs?: number | undefined;
250
+ RackHeightInches?: number | undefined;
251
+ RackWidthInches?: number | undefined;
252
+ RackDepthInches?: number | undefined;
253
+ RackUnitHeight?: RackUnitHeight | undefined;
254
+ EC2Capacities?: EC2Capacity[] | undefined;
255
+ }
256
+ export interface ServerSpecificationDetails {
257
+ ServerPowerDrawKva?: number | undefined;
258
+ ServerWeightLbs?: number | undefined;
259
+ ServerHeightInches?: number | undefined;
260
+ ServerWidthInches?: number | undefined;
261
+ ServerDepthInches?: number | undefined;
262
+ RackUnitHeight?: RackUnitHeight | undefined;
263
+ EC2Capacities?: EC2Capacity[] | undefined;
264
+ }
265
+ export interface QuoteSpecification {
266
+ QuoteSpecificationType?: QuoteSpecificationType | undefined;
267
+ ExistingRackSpecificationDetails?: RackSpecificationDetails | undefined;
268
+ FinalRackSpecificationDetails?: RackSpecificationDetails | undefined;
269
+ ServerSpecificationDetails?: ServerSpecificationDetails | undefined;
270
+ }
271
+ export interface QuoteOption {
272
+ QuoteOptionIdentifier?: string | undefined;
273
+ Capacities?: QuoteCapacity[] | undefined;
274
+ CapacitySummary?: CapacitySummary | undefined;
275
+ Specifications?: QuoteSpecification[] | undefined;
276
+ PricingOptions?: PricingOption[] | undefined;
277
+ }
278
+ export interface Quote {
279
+ QuoteId?: string | undefined;
280
+ AccountId?: string | undefined;
281
+ QuoteStatus?: QuoteStatus | undefined;
282
+ StatusMessage?: string | undefined;
283
+ OutpostArn?: string | undefined;
284
+ CountryCode?: string | undefined;
285
+ RequestedCapacities?: QuoteCapacity[] | undefined;
286
+ RequestedConstraints?: QuoteConstraint[] | undefined;
287
+ RequestedPaymentOptions?: PaymentOption[] | undefined;
288
+ RequestedPaymentTerms?: PaymentTerm[] | undefined;
289
+ QuoteOptions?: QuoteOption[] | undefined;
290
+ OrderingRequirements?: OrderingRequirement[] | undefined;
291
+ SubmittedOrderId?: string | undefined;
292
+ CreatedDate?: Date | undefined;
293
+ ExpirationDate?: Date | undefined;
294
+ Description?: string | undefined;
295
+ }
296
+ export interface CreateQuoteOutput {
297
+ Quote?: Quote | undefined;
298
+ }
195
299
  export interface CreateRenewalInput {
196
300
  PaymentOption: PaymentOption | undefined;
197
301
  PaymentTerm: PaymentTerm | undefined;
@@ -204,6 +308,7 @@ export interface CreateRenewalOutput {
204
308
  OutpostId?: string | undefined;
205
309
  UpfrontPrice?: number | undefined;
206
310
  MonthlyRecurringPrice?: number | undefined;
311
+ Currency?: CurrencyCode | undefined;
207
312
  }
208
313
  export interface RackPhysicalProperties {
209
314
  PowerDrawKva?: PowerDrawKva | undefined;
@@ -245,10 +350,25 @@ export interface DeleteOutpostInput {
245
350
  OutpostId: string | undefined;
246
351
  }
247
352
  export interface DeleteOutpostOutput {}
353
+ export interface DeleteQuoteInput {
354
+ QuoteIdentifier: string | undefined;
355
+ }
356
+ export interface DeleteQuoteOutput {}
248
357
  export interface DeleteSiteInput {
249
358
  SiteId: string | undefined;
250
359
  }
251
360
  export interface DeleteSiteOutput {}
361
+ export interface FormFactorConfig {
362
+ FormFactor?: FormFactor | undefined;
363
+ OutpostGeneration?: OutpostGeneration | undefined;
364
+ }
365
+ export interface DetailedInstanceTypeItem {
366
+ InstanceType?: string | undefined;
367
+ VCPUs?: number | undefined;
368
+ MemoryInMib?: number | undefined;
369
+ NetworkPerformance?: string | undefined;
370
+ FormFactorConfigs?: FormFactorConfig[] | undefined;
371
+ }
252
372
  export interface GetCapacityTaskInput {
253
373
  CapacityTaskId: string | undefined;
254
374
  OutpostIdentifier: string | undefined;
@@ -314,6 +434,7 @@ export interface Subscription {
314
434
  OrderIds?: string[] | undefined;
315
435
  BeginDate?: Date | undefined;
316
436
  EndDate?: Date | undefined;
437
+ Currency?: CurrencyCode | undefined;
317
438
  MonthlyRecurringPrice?: number | undefined;
318
439
  UpfrontPrice?: number | undefined;
319
440
  }
@@ -350,18 +471,14 @@ export interface GetOutpostSupportedInstanceTypesOutput {
350
471
  InstanceTypes?: InstanceTypeItem[] | undefined;
351
472
  NextToken?: string | undefined;
352
473
  }
353
- export interface GetRenewalPricingInput {
354
- OutpostIdentifier: string | undefined;
474
+ export interface GetQuoteInput {
475
+ QuoteIdentifier: string | undefined;
355
476
  }
356
- export interface SubscriptionPricingDetails {
357
- PaymentOption?: PaymentOption | undefined;
358
- PaymentTerm?: PaymentTerm | undefined;
359
- UpfrontPrice?: number | undefined;
360
- MonthlyRecurringPrice?: number | undefined;
477
+ export interface GetQuoteOutput {
478
+ Quote?: Quote | undefined;
361
479
  }
362
- export interface PricingOption {
363
- PricingType?: QuotePricingType | undefined;
364
- SubscriptionPricingDetails?: SubscriptionPricingDetails | undefined;
480
+ export interface GetRenewalPricingInput {
481
+ OutpostIdentifier: string | undefined;
365
482
  }
366
483
  export interface GetRenewalPricingOutput {
367
484
  PricingResult?: PricingResult | undefined;
@@ -438,6 +555,15 @@ export interface ListCatalogItemsOutput {
438
555
  CatalogItems?: CatalogItem[] | undefined;
439
556
  NextToken?: string | undefined;
440
557
  }
558
+ export interface ListOrderableInstanceTypesInput {
559
+ OutpostGenerationFilter?: OutpostGeneration | undefined;
560
+ MaxResults?: number | undefined;
561
+ NextToken?: string | undefined;
562
+ }
563
+ export interface ListOrderableInstanceTypesOutput {
564
+ InstanceTypes?: DetailedInstanceTypeItem[] | undefined;
565
+ NextToken?: string | undefined;
566
+ }
441
567
  export interface ListOrdersInput {
442
568
  OutpostIdentifierFilter?: string | undefined;
443
569
  NextToken?: string | undefined;
@@ -467,6 +593,31 @@ export interface ListOutpostsOutput {
467
593
  Outposts?: Outpost[] | undefined;
468
594
  NextToken?: string | undefined;
469
595
  }
596
+ export interface ListQuotesInput {
597
+ NextToken?: string | undefined;
598
+ MaxResults?: number | undefined;
599
+ }
600
+ export interface QuoteSummary {
601
+ QuoteId?: string | undefined;
602
+ AccountId?: string | undefined;
603
+ QuoteStatus?: QuoteStatus | undefined;
604
+ StatusMessage?: string | undefined;
605
+ OutpostArn?: string | undefined;
606
+ CountryCode?: string | undefined;
607
+ RequestedCapacities?: QuoteCapacity[] | undefined;
608
+ RequestedConstraints?: QuoteConstraint[] | undefined;
609
+ RequestedPaymentOptions?: PaymentOption[] | undefined;
610
+ RequestedPaymentTerms?: PaymentTerm[] | undefined;
611
+ QuoteOptions?: QuoteOption[] | undefined;
612
+ SubmittedOrderId?: string | undefined;
613
+ CreatedDate?: Date | undefined;
614
+ ExpirationDate?: Date | undefined;
615
+ Description?: string | undefined;
616
+ }
617
+ export interface ListQuotesOutput {
618
+ Quotes?: QuoteSummary[] | undefined;
619
+ NextToken?: string | undefined;
620
+ }
470
621
  export interface ListSitesInput {
471
622
  NextToken?: string | undefined;
472
623
  MaxResults?: number | undefined;
@@ -545,6 +696,19 @@ export interface UpdateOutpostInput {
545
696
  export interface UpdateOutpostOutput {
546
697
  Outpost?: Outpost | undefined;
547
698
  }
699
+ export interface UpdateQuoteInput {
700
+ QuoteIdentifier: string | undefined;
701
+ OutpostIdentifier?: string | undefined;
702
+ CountryCode?: string | undefined;
703
+ RequestedCapacities?: QuoteCapacity[] | undefined;
704
+ RequestedConstraints?: QuoteConstraint[] | undefined;
705
+ RequestedPaymentOptions?: PaymentOption[] | undefined;
706
+ RequestedPaymentTerms?: PaymentTerm[] | undefined;
707
+ Description?: string | undefined;
708
+ }
709
+ export interface UpdateQuoteOutput {
710
+ Quote?: Quote | undefined;
711
+ }
548
712
  export interface UpdateSiteInput {
549
713
  SiteId: string | undefined;
550
714
  Name?: string | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListOrderableInstanceTypesCommandInput,
4
+ ListOrderableInstanceTypesCommandOutput,
5
+ } from "../commands/ListOrderableInstanceTypesCommand";
6
+ import { OutpostsPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListOrderableInstanceTypes: (
8
+ config: OutpostsPaginationConfiguration,
9
+ input: ListOrderableInstanceTypesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListOrderableInstanceTypesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListQuotesCommandInput,
4
+ ListQuotesCommandOutput,
5
+ } from "../commands/ListQuotesCommand";
6
+ import { OutpostsPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListQuotes: (
8
+ config: OutpostsPaginationConfiguration,
9
+ input: ListQuotesCommandInput,
10
+ ...rest: any[]
11
+ ) => 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";