@aws-sdk/client-outposts 3.1064.0 → 3.1066.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,231 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { UpdateQuoteInput, UpdateQuoteOutput } 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 UpdateQuoteCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateQuoteCommandInput extends UpdateQuoteInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateQuoteCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateQuoteCommandOutput extends UpdateQuoteOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateQuoteCommand_base: {
|
|
25
|
+
new (input: UpdateQuoteCommandInput): import("@smithy/core/client").CommandImpl<UpdateQuoteCommandInput, UpdateQuoteCommandOutput, OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateQuoteCommandInput): import("@smithy/core/client").CommandImpl<UpdateQuoteCommandInput, UpdateQuoteCommandOutput, OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Updates the specified quote. You can modify the requested capacities, constraints,
|
|
33
|
+
* payment options, payment terms, or Outpost association.</p>
|
|
34
|
+
* @example
|
|
35
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
36
|
+
* ```javascript
|
|
37
|
+
* import { OutpostsClient, UpdateQuoteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
38
|
+
* // const { OutpostsClient, UpdateQuoteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
39
|
+
* // import type { OutpostsClientConfig } from "@aws-sdk/client-outposts";
|
|
40
|
+
* const config = {}; // type is OutpostsClientConfig
|
|
41
|
+
* const client = new OutpostsClient(config);
|
|
42
|
+
* const input = { // UpdateQuoteInput
|
|
43
|
+
* QuoteIdentifier: "STRING_VALUE", // required
|
|
44
|
+
* OutpostIdentifier: "STRING_VALUE",
|
|
45
|
+
* CountryCode: "STRING_VALUE",
|
|
46
|
+
* RequestedCapacities: [ // QuoteCapacityList
|
|
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 UpdateQuoteCommand(input);
|
|
68
|
+
* const response = await client.send(command);
|
|
69
|
+
* // { // UpdateQuoteOutput
|
|
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 UpdateQuoteCommandInput - {@link UpdateQuoteCommandInput}
|
|
196
|
+
* @returns {@link UpdateQuoteCommandOutput}
|
|
197
|
+
* @see {@link UpdateQuoteCommandInput} for command's `input` shape.
|
|
198
|
+
* @see {@link UpdateQuoteCommandOutput} 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 UpdateQuoteCommand extends UpdateQuoteCommand_base {
|
|
220
|
+
/** @internal type navigation helper, not in runtime. */
|
|
221
|
+
protected static __types: {
|
|
222
|
+
api: {
|
|
223
|
+
input: UpdateQuoteInput;
|
|
224
|
+
output: UpdateQuoteOutput;
|
|
225
|
+
};
|
|
226
|
+
sdk: {
|
|
227
|
+
input: UpdateQuoteCommandInput;
|
|
228
|
+
output: UpdateQuoteCommandOutput;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
}
|
|
@@ -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";
|
|
@@ -98,6 +98,19 @@ export declare const ResourceType: {
|
|
|
98
98
|
* @public
|
|
99
99
|
*/
|
|
100
100
|
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
* @enum
|
|
104
|
+
*/
|
|
105
|
+
export declare const QuoteCapacityType: {
|
|
106
|
+
readonly EBS: "EBS";
|
|
107
|
+
readonly EC2: "EC2";
|
|
108
|
+
readonly S3: "S3";
|
|
109
|
+
};
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
export type QuoteCapacityType = (typeof QuoteCapacityType)[keyof typeof QuoteCapacityType];
|
|
101
114
|
/**
|
|
102
115
|
* @public
|
|
103
116
|
* @enum
|
|
@@ -271,6 +284,133 @@ export declare const SupportedHardwareType: {
|
|
|
271
284
|
* @public
|
|
272
285
|
*/
|
|
273
286
|
export type SupportedHardwareType = (typeof SupportedHardwareType)[keyof typeof SupportedHardwareType];
|
|
287
|
+
/**
|
|
288
|
+
* @public
|
|
289
|
+
* @enum
|
|
290
|
+
*/
|
|
291
|
+
export declare const QuoteConstraintType: {
|
|
292
|
+
readonly RACK_MAXIMUM: "RACK_MAXIMUM";
|
|
293
|
+
readonly RACK_MAX_POWER_KVA: "RACK_MAX_POWER_KVA";
|
|
294
|
+
readonly RACK_MAX_WEIGHT_LBS: "RACK_MAX_WEIGHT_LBS";
|
|
295
|
+
};
|
|
296
|
+
/**
|
|
297
|
+
* @public
|
|
298
|
+
*/
|
|
299
|
+
export type QuoteConstraintType = (typeof QuoteConstraintType)[keyof typeof QuoteConstraintType];
|
|
300
|
+
/**
|
|
301
|
+
* @public
|
|
302
|
+
* @enum
|
|
303
|
+
*/
|
|
304
|
+
export declare const OrderingRequirementType: {
|
|
305
|
+
readonly COUNTRY_CODE_MISMATCH_CHECK_ERROR: "COUNTRY_CODE_MISMATCH_CHECK_ERROR";
|
|
306
|
+
readonly ENTERPRISE_SUPPORT_ERROR: "ENTERPRISE_SUPPORT_ERROR";
|
|
307
|
+
readonly MAXIMUM_ALLOWED_ORDERS_CHECK_ERROR: "MAXIMUM_ALLOWED_ORDERS_CHECK_ERROR";
|
|
308
|
+
readonly OPERATING_ADDRESS_EXISTENCE_CHECK_ERROR: "OPERATING_ADDRESS_EXISTENCE_CHECK_ERROR";
|
|
309
|
+
readonly OUTPOST_ACTIVE_CHECK_ERROR: "OUTPOST_ACTIVE_CHECK_ERROR";
|
|
310
|
+
readonly OUTPOST_GENERATION_MISMATCH_ERROR: "OUTPOST_GENERATION_MISMATCH_ERROR";
|
|
311
|
+
readonly OUTPOST_ID_MISSING_ON_QUOTE_ERROR: "OUTPOST_ID_MISSING_ON_QUOTE_ERROR";
|
|
312
|
+
readonly OUTPOST_NOT_FOUND_ERROR: "OUTPOST_NOT_FOUND_ERROR";
|
|
313
|
+
readonly OUTPOST_RENEWAL_REQUIRED_ERROR: "OUTPOST_RENEWAL_REQUIRED_ERROR";
|
|
314
|
+
readonly OUTPOST_STATE_CHANGED_ERROR: "OUTPOST_STATE_CHANGED_ERROR";
|
|
315
|
+
readonly RACK_PHYSICAL_PROPERTIES_CHECK_ERROR: "RACK_PHYSICAL_PROPERTIES_CHECK_ERROR";
|
|
316
|
+
readonly SHIPPING_ADDRESS_EXISTENCE_CHECK_ERROR: "SHIPPING_ADDRESS_EXISTENCE_CHECK_ERROR";
|
|
317
|
+
readonly SHIPPING_ADDRESS_MISSING_CONTACT_INFO_ERROR: "SHIPPING_ADDRESS_MISSING_CONTACT_INFO_ERROR";
|
|
318
|
+
readonly SHIPPING_ADDRESS_MISSING_CONTACT_NAME_ERROR: "SHIPPING_ADDRESS_MISSING_CONTACT_NAME_ERROR";
|
|
319
|
+
readonly SHIPPING_ADDRESS_MISSING_CONTACT_NUMBER_ERROR: "SHIPPING_ADDRESS_MISSING_CONTACT_NUMBER_ERROR";
|
|
320
|
+
readonly UNSUPPORTED: "UNSUPPORTED";
|
|
321
|
+
readonly VALID_ZIP_CODE_CHECK_ERROR: "VALID_ZIP_CODE_CHECK_ERROR";
|
|
322
|
+
};
|
|
323
|
+
/**
|
|
324
|
+
* @public
|
|
325
|
+
*/
|
|
326
|
+
export type OrderingRequirementType = (typeof OrderingRequirementType)[keyof typeof OrderingRequirementType];
|
|
327
|
+
/**
|
|
328
|
+
* @public
|
|
329
|
+
* @enum
|
|
330
|
+
*/
|
|
331
|
+
export declare const OrderingRequirementStatus: {
|
|
332
|
+
readonly EXEMPT: "EXEMPT";
|
|
333
|
+
readonly FAIL: "FAIL";
|
|
334
|
+
readonly PASS: "PASS";
|
|
335
|
+
};
|
|
336
|
+
/**
|
|
337
|
+
* @public
|
|
338
|
+
*/
|
|
339
|
+
export type OrderingRequirementStatus = (typeof OrderingRequirementStatus)[keyof typeof OrderingRequirementStatus];
|
|
340
|
+
/**
|
|
341
|
+
* @public
|
|
342
|
+
* @enum
|
|
343
|
+
*/
|
|
344
|
+
export declare const QuotePricingType: {
|
|
345
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
346
|
+
};
|
|
347
|
+
/**
|
|
348
|
+
* @public
|
|
349
|
+
*/
|
|
350
|
+
export type QuotePricingType = (typeof QuotePricingType)[keyof typeof QuotePricingType];
|
|
351
|
+
/**
|
|
352
|
+
* @public
|
|
353
|
+
* @enum
|
|
354
|
+
*/
|
|
355
|
+
export declare const CurrencyCode: {
|
|
356
|
+
readonly USD: "USD";
|
|
357
|
+
};
|
|
358
|
+
/**
|
|
359
|
+
* @public
|
|
360
|
+
*/
|
|
361
|
+
export type CurrencyCode = (typeof CurrencyCode)[keyof typeof CurrencyCode];
|
|
362
|
+
/**
|
|
363
|
+
* @public
|
|
364
|
+
* @enum
|
|
365
|
+
*/
|
|
366
|
+
export declare const RackUnitHeight: {
|
|
367
|
+
readonly HEIGHT_1U: "HEIGHT_1U";
|
|
368
|
+
readonly HEIGHT_2U: "HEIGHT_2U";
|
|
369
|
+
readonly HEIGHT_42U: "HEIGHT_42U";
|
|
370
|
+
};
|
|
371
|
+
/**
|
|
372
|
+
* @public
|
|
373
|
+
*/
|
|
374
|
+
export type RackUnitHeight = (typeof RackUnitHeight)[keyof typeof RackUnitHeight];
|
|
375
|
+
/**
|
|
376
|
+
* @public
|
|
377
|
+
* @enum
|
|
378
|
+
*/
|
|
379
|
+
export declare const QuoteRackUseType: {
|
|
380
|
+
readonly COMPUTE: "COMPUTE";
|
|
381
|
+
readonly NETWORKING: "NETWORKING";
|
|
382
|
+
};
|
|
383
|
+
/**
|
|
384
|
+
* @public
|
|
385
|
+
*/
|
|
386
|
+
export type QuoteRackUseType = (typeof QuoteRackUseType)[keyof typeof QuoteRackUseType];
|
|
387
|
+
/**
|
|
388
|
+
* @public
|
|
389
|
+
* @enum
|
|
390
|
+
*/
|
|
391
|
+
export declare const QuoteSpecificationType: {
|
|
392
|
+
readonly EXISTING_RACK: "EXISTING_RACK";
|
|
393
|
+
readonly NEW_RACK: "NEW_RACK";
|
|
394
|
+
readonly SERVER: "SERVER";
|
|
395
|
+
readonly UPDATED_RACK: "UPDATED_RACK";
|
|
396
|
+
};
|
|
397
|
+
/**
|
|
398
|
+
* @public
|
|
399
|
+
*/
|
|
400
|
+
export type QuoteSpecificationType = (typeof QuoteSpecificationType)[keyof typeof QuoteSpecificationType];
|
|
401
|
+
/**
|
|
402
|
+
* @public
|
|
403
|
+
* @enum
|
|
404
|
+
*/
|
|
405
|
+
export declare const QuoteStatus: {
|
|
406
|
+
readonly CREATED: "CREATED";
|
|
407
|
+
readonly EXPIRED: "EXPIRED";
|
|
408
|
+
readonly ORDER_SUBMITTED: "ORDER_SUBMITTED";
|
|
409
|
+
};
|
|
410
|
+
/**
|
|
411
|
+
* @public
|
|
412
|
+
*/
|
|
413
|
+
export type QuoteStatus = (typeof QuoteStatus)[keyof typeof QuoteStatus];
|
|
274
414
|
/**
|
|
275
415
|
* @public
|
|
276
416
|
* @enum
|
|
@@ -421,6 +561,30 @@ export declare const DecommissionRequestStatus: {
|
|
|
421
561
|
* @public
|
|
422
562
|
*/
|
|
423
563
|
export type DecommissionRequestStatus = (typeof DecommissionRequestStatus)[keyof typeof DecommissionRequestStatus];
|
|
564
|
+
/**
|
|
565
|
+
* @public
|
|
566
|
+
* @enum
|
|
567
|
+
*/
|
|
568
|
+
export declare const FormFactor: {
|
|
569
|
+
readonly RACK: "RACK";
|
|
570
|
+
readonly SERVER: "SERVER";
|
|
571
|
+
};
|
|
572
|
+
/**
|
|
573
|
+
* @public
|
|
574
|
+
*/
|
|
575
|
+
export type FormFactor = (typeof FormFactor)[keyof typeof FormFactor];
|
|
576
|
+
/**
|
|
577
|
+
* @public
|
|
578
|
+
* @enum
|
|
579
|
+
*/
|
|
580
|
+
export declare const OutpostGeneration: {
|
|
581
|
+
readonly GENERATION_1: "GENERATION_1";
|
|
582
|
+
readonly GENERATION_2: "GENERATION_2";
|
|
583
|
+
};
|
|
584
|
+
/**
|
|
585
|
+
* @public
|
|
586
|
+
*/
|
|
587
|
+
export type OutpostGeneration = (typeof OutpostGeneration)[keyof typeof OutpostGeneration];
|
|
424
588
|
/**
|
|
425
589
|
* @public
|
|
426
590
|
* @enum
|
|
@@ -460,17 +624,6 @@ export declare const SubscriptionType: {
|
|
|
460
624
|
* @public
|
|
461
625
|
*/
|
|
462
626
|
export type SubscriptionType = (typeof SubscriptionType)[keyof typeof SubscriptionType];
|
|
463
|
-
/**
|
|
464
|
-
* @public
|
|
465
|
-
* @enum
|
|
466
|
-
*/
|
|
467
|
-
export declare const QuotePricingType: {
|
|
468
|
-
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
469
|
-
};
|
|
470
|
-
/**
|
|
471
|
-
* @public
|
|
472
|
-
*/
|
|
473
|
-
export type QuotePricingType = (typeof QuotePricingType)[keyof typeof QuotePricingType];
|
|
474
627
|
/**
|
|
475
628
|
* @public
|
|
476
629
|
* @enum
|