@aws-sdk/client-outposts 3.1075.0 → 3.1077.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/dist-cjs/index.js CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultOutpostsHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CancelCapacityTask$, CancelOrder$, CreateOrder$, CreateOutpost$, CreateQuote$, CreateRenewal$, CreateSite$, DeleteOutpost$, DeleteQuote$, DeleteSite$, GetCapacityTask$, GetCatalogItem$, GetConnection$, GetOrder$, GetOutpostBillingInformation$, GetOutpost$, GetOutpostInstanceTypes$, GetOutpostSupportedInstanceTypes$, GetQuote$, GetRenewalPricing$, GetSiteAddress$, GetSite$, ListAssetInstances$, ListAssets$, ListBlockingInstancesForCapacityTask$, ListCapacityTasks$, ListCatalogItems$, ListOrderableInstanceTypes$, ListOrders$, ListOutposts$, ListQuotes$, ListSites$, ListTagsForResource$, StartCapacityTask$, StartConnection$, StartOutpostDecommission$, TagResource$, UntagResource$, UpdateOutpost$, UpdateQuote$, UpdateSiteAddress$, UpdateSite$, UpdateSiteRackPhysicalProperties$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { OutpostsServiceException } = require("./models/OutpostsServiceException");
18
- exports.OutpostsServiceException = OutpostsServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultOutpostsHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "outposts",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultOutpostsHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,1520 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
86
+ ["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
87
+ ],
88
+ results: [
89
+ [a],
90
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
91
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
92
+ [g, i],
93
+ ["https://outposts-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
94
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
95
+ ["https://outposts.{Region}.amazonaws.com", i],
96
+ ["https://outposts-fips.{Region}.{PartitionResult#dnsSuffix}", i],
97
+ [a, "FIPS is enabled but this partition does not support FIPS"],
98
+ ["https://outposts.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
99
+ [a, "DualStack is enabled but this partition does not support DualStack"],
100
+ ["https://outposts.{Region}.{PartitionResult#dnsSuffix}", i],
101
+ [a, "Invalid Configuration: Missing Region"]
102
+ ]
103
+ };
104
+ const root = 2;
105
+ const r = 100_000_000;
106
+ const nodes = new Int32Array([
107
+ -1, 1, -1,
108
+ 0, 13, 3,
109
+ 1, 4, r + 12,
110
+ 2, 5, r + 12,
111
+ 3, 8, 6,
112
+ 4, 7, r + 11,
113
+ 5, r + 9, r + 10,
114
+ 4, 11, 9,
115
+ 6, 10, r + 8,
116
+ 7, r + 6, r + 7,
117
+ 5, 12, r + 5,
118
+ 6, r + 4, r + 5,
119
+ 3, r + 1, 14,
120
+ 4, r + 2, r + 3,
121
+ ]);
122
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
123
+
124
+ const cache = new EndpointCache({
125
+ size: 50,
126
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
127
+ });
128
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
129
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
130
+ endpointParams: endpointParams,
131
+ logger: context.logger,
132
+ }));
133
+ };
134
+ customEndpointFunctions.aws = awsEndpointFunctions;
135
+
136
+ class OutpostsServiceException extends ServiceException {
137
+ constructor(options) {
138
+ super(options);
139
+ Object.setPrototypeOf(this, OutpostsServiceException.prototype);
140
+ }
141
+ }
142
+
143
+ class AccessDeniedException extends OutpostsServiceException {
144
+ name = "AccessDeniedException";
145
+ $fault = "client";
146
+ Message;
147
+ constructor(opts) {
148
+ super({
149
+ name: "AccessDeniedException",
150
+ $fault: "client",
151
+ ...opts,
152
+ });
153
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
154
+ this.Message = opts.Message;
155
+ }
156
+ }
157
+ class ConflictException extends OutpostsServiceException {
158
+ name = "ConflictException";
159
+ $fault = "client";
160
+ Message;
161
+ ResourceId;
162
+ ResourceType;
163
+ constructor(opts) {
164
+ super({
165
+ name: "ConflictException",
166
+ $fault: "client",
167
+ ...opts,
168
+ });
169
+ Object.setPrototypeOf(this, ConflictException.prototype);
170
+ this.Message = opts.Message;
171
+ this.ResourceId = opts.ResourceId;
172
+ this.ResourceType = opts.ResourceType;
173
+ }
174
+ }
175
+ class InternalServerException extends OutpostsServiceException {
176
+ name = "InternalServerException";
177
+ $fault = "server";
178
+ Message;
179
+ constructor(opts) {
180
+ super({
181
+ name: "InternalServerException",
182
+ $fault: "server",
183
+ ...opts,
184
+ });
185
+ Object.setPrototypeOf(this, InternalServerException.prototype);
186
+ this.Message = opts.Message;
187
+ }
188
+ }
189
+ class NotFoundException extends OutpostsServiceException {
190
+ name = "NotFoundException";
191
+ $fault = "client";
192
+ Message;
193
+ constructor(opts) {
194
+ super({
195
+ name: "NotFoundException",
196
+ $fault: "client",
197
+ ...opts,
198
+ });
199
+ Object.setPrototypeOf(this, NotFoundException.prototype);
200
+ this.Message = opts.Message;
201
+ }
202
+ }
203
+ class ValidationException extends OutpostsServiceException {
204
+ name = "ValidationException";
205
+ $fault = "client";
206
+ Message;
207
+ constructor(opts) {
208
+ super({
209
+ name: "ValidationException",
210
+ $fault: "client",
211
+ ...opts,
212
+ });
213
+ Object.setPrototypeOf(this, ValidationException.prototype);
214
+ this.Message = opts.Message;
215
+ }
216
+ }
217
+ class ServiceQuotaExceededException extends OutpostsServiceException {
218
+ name = "ServiceQuotaExceededException";
219
+ $fault = "client";
220
+ Message;
221
+ constructor(opts) {
222
+ super({
223
+ name: "ServiceQuotaExceededException",
224
+ $fault: "client",
225
+ ...opts,
226
+ });
227
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
228
+ this.Message = opts.Message;
229
+ }
230
+ }
231
+
232
+ const _A = "Address";
233
+ const _ADE = "AccessDeniedException";
234
+ const _AI = "AssetInfo";
235
+ const _AICL = "AssetInstanceCapacityList";
236
+ const _AIF = "AssetIdFilter";
237
+ const _AIFc = "AccountIdFilter";
238
+ const _AIL = "AssetInformationList";
239
+ const _AILs = "AssetInstanceList";
240
+ const _AITC = "AssetInstanceTypeCapacity";
241
+ const _AIc = "AccountId";
242
+ const _AIcc = "AccountIds";
243
+ const _AIl = "AllowedIps";
244
+ const _AIs = "AssetId";
245
+ const _AIss = "AssetInstance";
246
+ const _AIsse = "AssetInstances";
247
+ const _AL = "AddressLine1";
248
+ const _ALD = "AssetListDefinition";
249
+ const _ALd = "AddressLine2";
250
+ const _ALdd = "AddressLine3";
251
+ const _ALs = "AssetLocation";
252
+ const _ASF = "AwsServiceFilter";
253
+ const _ASN = "AwsServiceName";
254
+ const _AT = "AssetType";
255
+ const _ATF = "AssetTypeFilter";
256
+ const _ATd = "AddressType";
257
+ const _AZ = "AvailabilityZone";
258
+ const _AZF = "AvailabilityZoneFilter";
259
+ const _AZI = "AvailabilityZoneId";
260
+ const _AZIF = "AvailabilityZoneIdFilter";
261
+ const _As = "Assets";
262
+ const _BD = "BeginDate";
263
+ const _BI = "BlockingInstance";
264
+ const _BIL = "BlockingInstancesList";
265
+ const _BIl = "BlockingInstances";
266
+ const _BRT = "BlockingResourceTypes";
267
+ const _C = "City";
268
+ const _CA = "ComputeAttributes";
269
+ const _CC = "CountryCode";
270
+ const _CCT = "CancelCapacityTask";
271
+ const _CCTI = "CancelCapacityTaskInput";
272
+ const _CCTO = "CancelCapacityTaskOutput";
273
+ const _CCa = "CapacityChange";
274
+ const _CD = "CreationDate";
275
+ const _CDo = "CompletionDate";
276
+ const _CDon = "ConnectionDetails";
277
+ const _CDr = "CreatedDate";
278
+ const _CE = "ConflictException";
279
+ const _CED = "ContractEndDate";
280
+ const _CI = "CatalogItem";
281
+ const _CII = "CatalogItemId";
282
+ const _CILD = "CatalogItemListDefinition";
283
+ const _CIa = "CatalogItems";
284
+ const _CIo = "ConnectionId";
285
+ const _CN = "ContactName";
286
+ const _CO = "CancelOrder";
287
+ const _COI = "CancelOrderInput";
288
+ const _COIr = "CreateOrderInput";
289
+ const _COIre = "CreateOutpostInput";
290
+ const _COO = "CancelOrderOutput";
291
+ const _COOr = "CreateOrderOutput";
292
+ const _COOre = "CreateOutpostOutput";
293
+ const _COr = "CreateOrder";
294
+ const _COre = "CreateOutpost";
295
+ const _CPK = "ClientPublicKey";
296
+ const _CPN = "ContactPhoneNumber";
297
+ const _CQ = "CreateQuote";
298
+ const _CQI = "CreateQuoteInput";
299
+ const _CQO = "CreateQuoteOutput";
300
+ const _CR = "CreateRenewal";
301
+ const _CRI = "CreateRenewalInput";
302
+ const _CRO = "CreateRenewalOutput";
303
+ const _CS = "CapacitySummary";
304
+ const _CSI = "CreateSiteInput";
305
+ const _CSO = "CreateSiteOutput";
306
+ const _CSr = "CreateSite";
307
+ const _CT = "ClientToken";
308
+ const _CTA = "ClientTunnelAddress";
309
+ const _CTF = "CapacityTaskFailure";
310
+ const _CTI = "CapacityTaskId";
311
+ const _CTL = "CapacityTaskList";
312
+ const _CTS = "CapacityTaskSummary";
313
+ const _CTSF = "CapacityTaskStatusFilter";
314
+ const _CTSa = "CapacityTaskStatus";
315
+ const _CTa = "CapacityTasks";
316
+ const _Ca = "Capacities";
317
+ const _Co = "Count";
318
+ const _Cu = "Currency";
319
+ const _D = "Description";
320
+ const _DITI = "DetailedInstanceTypeItem";
321
+ const _DITLD = "DetailedInstanceTypeListDefinition";
322
+ const _DO = "DeleteOutpost";
323
+ const _DOC = "DistrictOrCounty";
324
+ const _DOI = "DeleteOutpostInput";
325
+ const _DOO = "DeleteOutpostOutput";
326
+ const _DQ = "DeleteQuote";
327
+ const _DQI = "DeleteQuoteInput";
328
+ const _DQO = "DeleteQuoteOutput";
329
+ const _DR = "DryRun";
330
+ const _DS = "DeleteSite";
331
+ const _DSI = "DeleteSiteInput";
332
+ const _DSN = "DeviceSerialNumber";
333
+ const _DSO = "DeleteSiteOutput";
334
+ const _EC = "ExistingCapacities";
335
+ const _ECC = "EC2Capacities";
336
+ const _ECCLD = "EC2CapacityListDefinition";
337
+ const _ECCa = "EC2Capacity";
338
+ const _ECFF = "EC2FamilyFilter";
339
+ const _ED = "ExpirationDate";
340
+ const _EDn = "EndDate";
341
+ const _ERSD = "ExistingRackSpecificationDetails";
342
+ const _F = "Family";
343
+ const _FC = "FinalCapacities";
344
+ const _FF = "FormFactor";
345
+ const _FFC = "FormFactorConfigs";
346
+ const _FFCL = "FormFactorConfigList";
347
+ const _FFCo = "FormFactorConfig";
348
+ const _FOCT = "FiberOpticCableType";
349
+ const _FRSD = "FinalRackSpecificationDetails";
350
+ const _Fa = "Failed";
351
+ const _GC = "GetConnection";
352
+ const _GCI = "GetCatalogItem";
353
+ const _GCII = "GetCatalogItemInput";
354
+ const _GCIO = "GetCatalogItemOutput";
355
+ const _GCR = "GetConnectionRequest";
356
+ const _GCRe = "GetConnectionResponse";
357
+ const _GCT = "GetCapacityTask";
358
+ const _GCTI = "GetCapacityTaskInput";
359
+ const _GCTO = "GetCapacityTaskOutput";
360
+ const _GO = "GetOrder";
361
+ const _GOBI = "GetOutpostBillingInformation";
362
+ const _GOBII = "GetOutpostBillingInformationInput";
363
+ const _GOBIO = "GetOutpostBillingInformationOutput";
364
+ const _GOI = "GetOrderInput";
365
+ const _GOIT = "GetOutpostInstanceTypes";
366
+ const _GOITI = "GetOutpostInstanceTypesInput";
367
+ const _GOITO = "GetOutpostInstanceTypesOutput";
368
+ const _GOIe = "GetOutpostInput";
369
+ const _GOO = "GetOrderOutput";
370
+ const _GOOe = "GetOutpostOutput";
371
+ const _GOSIT = "GetOutpostSupportedInstanceTypes";
372
+ const _GOSITI = "GetOutpostSupportedInstanceTypesInput";
373
+ const _GOSITO = "GetOutpostSupportedInstanceTypesOutput";
374
+ const _GOe = "GetOutpost";
375
+ const _GQ = "GetQuote";
376
+ const _GQI = "GetQuoteInput";
377
+ const _GQO = "GetQuoteOutput";
378
+ const _GRP = "GetRenewalPricing";
379
+ const _GRPI = "GetRenewalPricingInput";
380
+ const _GRPO = "GetRenewalPricingOutput";
381
+ const _GS = "GetSite";
382
+ const _GSA = "GetSiteAddress";
383
+ const _GSAI = "GetSiteAddressInput";
384
+ const _GSAO = "GetSiteAddressOutput";
385
+ const _GSI = "GetSiteInput";
386
+ const _GSO = "GetSiteOutput";
387
+ const _HI = "HostId";
388
+ const _HIF = "HostIdFilter";
389
+ const _I = "Instances";
390
+ const _ICF = "ItemClassFilter";
391
+ const _IF = "InstanceFamilies";
392
+ const _II = "InstanceId";
393
+ const _IP = "InstancePools";
394
+ const _IS = "ItemStatus";
395
+ const _ISE = "InternalServerException";
396
+ const _IT = "InstanceType";
397
+ const _ITC = "InstanceTypeCapacities";
398
+ const _ITCn = "InstanceTypeCapacity";
399
+ const _ITE = "InstancesToExclude";
400
+ const _ITF = "InstanceTypeFilter";
401
+ const _ITI = "InstanceTypeItem";
402
+ const _ITLD = "InstanceTypeListDefinition";
403
+ const _ITn = "InstanceTypes";
404
+ const _LA = "ListAssets";
405
+ const _LAI = "ListAssetsInput";
406
+ const _LAII = "ListAssetInstancesInput";
407
+ const _LAIO = "ListAssetInstancesOutput";
408
+ const _LAIi = "ListAssetInstances";
409
+ const _LAO = "ListAssetsOutput";
410
+ const _LBIFCT = "ListBlockingInstancesForCapacityTask";
411
+ const _LBIFCTI = "ListBlockingInstancesForCapacityTaskInput";
412
+ const _LBIFCTO = "ListBlockingInstancesForCapacityTaskOutput";
413
+ const _LCI = "ListCatalogItems";
414
+ const _LCII = "ListCatalogItemsInput";
415
+ const _LCIO = "ListCatalogItemsOutput";
416
+ const _LCS = "LifeCycleStatus";
417
+ const _LCSF = "LifeCycleStatusFilter";
418
+ const _LCT = "ListCapacityTasks";
419
+ const _LCTI = "ListCapacityTasksInput";
420
+ const _LCTO = "ListCapacityTasksOutput";
421
+ const _LI = "LineItems";
422
+ const _LIAI = "LineItemAssetInformation";
423
+ const _LIAIL = "LineItemAssetInformationList";
424
+ const _LICBS = "LineItemCountsByStatus";
425
+ const _LII = "LineItemId";
426
+ const _LILD = "LineItemListDefinition";
427
+ const _LIR = "LineItemRequest";
428
+ const _LIRLD = "LineItemRequestListDefinition";
429
+ const _LIi = "LineItem";
430
+ const _LMD = "LastModifiedDate";
431
+ const _LO = "ListOrders";
432
+ const _LOI = "ListOrdersInput";
433
+ const _LOIT = "ListOrderableInstanceTypes";
434
+ const _LOITI = "ListOrderableInstanceTypesInput";
435
+ const _LOITO = "ListOrderableInstanceTypesOutput";
436
+ const _LOIi = "ListOutpostsInput";
437
+ const _LOO = "ListOrdersOutput";
438
+ const _LOOi = "ListOutpostsOutput";
439
+ const _LOi = "ListOutposts";
440
+ const _LQ = "ListQuotes";
441
+ const _LQI = "ListQuotesInput";
442
+ const _LQO = "ListQuotesOutput";
443
+ const _LS = "ListSites";
444
+ const _LSI = "ListSitesInput";
445
+ const _LSO = "ListSitesOutput";
446
+ const _LTFR = "ListTagsForResource";
447
+ const _LTFRR = "ListTagsForResourceRequest";
448
+ const _LTFRRi = "ListTagsForResourceResponse";
449
+ const _M = "Message";
450
+ const _MAL = "MacAddressList";
451
+ const _MIM = "MemoryInMib";
452
+ const _MR = "MaxResults";
453
+ const _MRP = "MonthlyRecurringPrice";
454
+ const _MS = "MaxSize";
455
+ const _MSWL = "MaximumSupportedWeightLbs";
456
+ const _MV = "MaxVcpus";
457
+ const _Mu = "Municipality";
458
+ const _N = "Name";
459
+ const _NFE = "NotFoundException";
460
+ const _NIDI = "NetworkInterfaceDeviceIndex";
461
+ const _NP = "NetworkPerformance";
462
+ const _NT = "NextToken";
463
+ const _No = "Notes";
464
+ const _O = "Order";
465
+ const _OA = "OperatingAddress";
466
+ const _OAC = "OperatingAddressCity";
467
+ const _OACC = "OperatingAddressCountryCode";
468
+ const _OACCF = "OperatingAddressCountryCodeFilter";
469
+ const _OACF = "OperatingAddressCityFilter";
470
+ const _OASOR = "OperatingAddressStateOrRegion";
471
+ const _OASORF = "OperatingAddressStateOrRegionFilter";
472
+ const _OAu = "OutpostArn";
473
+ const _OFD = "OrderFulfilledDate";
474
+ const _OG = "OutpostGeneration";
475
+ const _OGF = "OutpostGenerationFilter";
476
+ const _OI = "OutpostIdentifier";
477
+ const _OIF = "OutpostIdentifierFilter";
478
+ const _OIr = "OrderId";
479
+ const _OIrd = "OrderIds";
480
+ const _OIu = "OutpostId";
481
+ const _OIw = "OwnerId";
482
+ const _OR = "OrderingRequirement";
483
+ const _ORL = "OrderingRequirementList";
484
+ const _ORT = "OrderingRequirementType";
485
+ const _ORr = "OrderingRequirements";
486
+ const _OS = "OrderSummary";
487
+ const _OSD = "OrderSubmissionDate";
488
+ const _OSLD = "OrderSummaryListDefinition";
489
+ const _OSp = "OpticalStandard";
490
+ const _OT = "OrderType";
491
+ const _Or = "Orders";
492
+ const _Ou = "Outpost";
493
+ const _Out = "Outposts";
494
+ const _PC = "PostalCode";
495
+ const _PCo = "PowerConnector";
496
+ const _PDK = "PowerDrawKva";
497
+ const _PFD = "PowerFeedDrop";
498
+ const _PK = "PowerKva";
499
+ const _PLII = "PreviousLineItemId";
500
+ const _PO = "PaymentOption";
501
+ const _POI = "PreviousOrderId";
502
+ const _POL = "PricingOptionList";
503
+ const _POr = "PricingOptions";
504
+ const _POri = "PricingOption";
505
+ const _PP = "PowerPhase";
506
+ const _PR = "PricingResult";
507
+ const _PT = "PaymentTerm";
508
+ const _PTr = "PricingType";
509
+ const _Q = "Quote";
510
+ const _QC = "QuoteCapacity";
511
+ const _QCL = "QuoteCapacityList";
512
+ const _QCLu = "QuoteConstraintList";
513
+ const _QCT = "QuoteCapacityType";
514
+ const _QCTu = "QuoteConstraintType";
515
+ const _QCu = "QuoteConstraint";
516
+ const _QD = "QuoteDescription";
517
+ const _QI = "QuoteIdentifier";
518
+ const _QIu = "QuoteId";
519
+ const _QO = "QuoteOptions";
520
+ const _QOI = "QuoteOptionIdentifier";
521
+ const _QOL = "QuoteOptionList";
522
+ const _QOu = "QuoteOption";
523
+ const _QS = "QuoteStatus";
524
+ const _QSL = "QuoteSpecificationList";
525
+ const _QSLD = "QuoteSummaryListDefinition";
526
+ const _QST = "QuoteSpecificationType";
527
+ const _QSu = "QuoteSpecification";
528
+ const _QSuo = "QuoteSummary";
529
+ const _Qu = "Quantity";
530
+ const _Quo = "Quotes";
531
+ const _R = "Reason";
532
+ const _RA = "ResourceArn";
533
+ const _RC = "RequestedCapacities";
534
+ const _RCe = "RequestedConstraints";
535
+ const _RDI = "RackDepthInches";
536
+ const _RE = "RackElevation";
537
+ const _RHI = "RackHeightInches";
538
+ const _RI = "ResourceId";
539
+ const _RIP = "RequestedInstancePools";
540
+ const _RIa = "RackId";
541
+ const _RPDK = "RackPowerDrawKva";
542
+ const _RPO = "RequestedPaymentOptions";
543
+ const _RPP = "RackPhysicalProperties";
544
+ const _RPT = "RequestedPaymentTerms";
545
+ const _RSD = "RackSpecificationDetails";
546
+ const _RT = "ResourceType";
547
+ const _RU = "RackUse";
548
+ const _RUH = "RackUnitHeight";
549
+ const _RWI = "RackWidthInches";
550
+ const _RWL = "RackWeightLbs";
551
+ const _S = "State";
552
+ const _SA = "ShippingAddress";
553
+ const _SAi = "SiteArn";
554
+ const _SC = "ShipmentCarrier";
555
+ const _SCR = "StartConnectionRequest";
556
+ const _SCRt = "StartConnectionResponse";
557
+ const _SCT = "StartCapacityTask";
558
+ const _SCTI = "StartCapacityTaskInput";
559
+ const _SCTO = "StartCapacityTaskOutput";
560
+ const _SCt = "StartConnection";
561
+ const _SDI = "ServerDepthInches";
562
+ const _SE = "ServerEndpoint";
563
+ const _SF = "StatusFilter";
564
+ const _SHI = "ServerHeightInches";
565
+ const _SHT = "SupportedHardwareType";
566
+ const _SI = "SiteId";
567
+ const _SIh = "ShipmentInformation";
568
+ const _SIu = "SubscriptionId";
569
+ const _SL = "SubscriptionList";
570
+ const _SM = "StatusMessage";
571
+ const _SOD = "StartOutpostDecommission";
572
+ const _SODI = "StartOutpostDecommissionInput";
573
+ const _SODO = "StartOutpostDecommissionOutput";
574
+ const _SOI = "SubmittedOrderId";
575
+ const _SOR = "StateOrRegion";
576
+ const _SPD = "SubscriptionPricingDetails";
577
+ const _SPDK = "ServerPowerDrawKva";
578
+ const _SPK = "ServerPublicKey";
579
+ const _SQEE = "ServiceQuotaExceededException";
580
+ const _SS = "SupportedStorage";
581
+ const _SSD = "ServerSpecificationDetails";
582
+ const _SSF = "SupportedStorageFilter";
583
+ const _SSu = "SubscriptionStatus";
584
+ const _ST = "SubscriptionType";
585
+ const _STA = "ServerTunnelAddress";
586
+ const _STN = "ShipmentTrackingNumber";
587
+ const _SUG = "SupportedUplinkGbps";
588
+ const _SWI = "ServerWidthInches";
589
+ const _SWL = "ServerWeightLbs";
590
+ const _Se = "Services";
591
+ const _Si = "Site";
592
+ const _Sit = "Sites";
593
+ const _Sp = "Specifications";
594
+ const _St = "Status";
595
+ const _Su = "Subscriptions";
596
+ const _Sub = "Subscription";
597
+ const _T = "Type";
598
+ const _TAOBI = "TaskActionOnBlockingInstances";
599
+ const _TK = "TagKeys";
600
+ const _TR = "TagResource";
601
+ const _TRR = "TagResourceRequest";
602
+ const _TRRa = "TagResourceResponse";
603
+ const _Ta = "Tags";
604
+ const _U = "Unit";
605
+ const _UC = "UplinkCount";
606
+ const _UG = "UplinkGbps";
607
+ const _UIA = "UnderlayIpAddress";
608
+ const _UO = "UpdateOutpost";
609
+ const _UOI = "UpdateOutpostInput";
610
+ const _UOO = "UpdateOutpostOutput";
611
+ const _UP = "UpfrontPrice";
612
+ const _UQ = "UpdateQuote";
613
+ const _UQI = "UpdateQuoteInput";
614
+ const _UQO = "UpdateQuoteOutput";
615
+ const _UR = "UntagResource";
616
+ const _URR = "UntagResourceRequest";
617
+ const _URRn = "UntagResourceResponse";
618
+ const _US = "UpdateSite";
619
+ const _USA = "UpdateSiteAddress";
620
+ const _USAI = "UpdateSiteAddressInput";
621
+ const _USAO = "UpdateSiteAddressOutput";
622
+ const _USI = "UpdateSiteInput";
623
+ const _USO = "UpdateSiteOutput";
624
+ const _USRPP = "UpdateSiteRackPhysicalProperties";
625
+ const _USRPPI = "UpdateSiteRackPhysicalPropertiesInput";
626
+ const _USRPPO = "UpdateSiteRackPhysicalPropertiesOutput";
627
+ const _V = "Value";
628
+ const _VCPU = "VCPUs";
629
+ const _VE = "ValidationException";
630
+ const _VO = "ValidateOnly";
631
+ const _WL = "WeightLbs";
632
+ const _c = "client";
633
+ const _e = "error";
634
+ const _h = "http";
635
+ const _hE = "httpError";
636
+ const _hQ = "httpQuery";
637
+ const _oLD = "outpostListDefinition";
638
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.outposts";
639
+ const _sLD = "siteListDefinition";
640
+ const _se = "server";
641
+ const _tK = "tagKeys";
642
+ const n0 = "com.amazonaws.outposts";
643
+ const _s_registry = TypeRegistry.for(_s);
644
+ var OutpostsServiceException$ = [-3, _s, "OutpostsServiceException", 0, [], []];
645
+ _s_registry.registerError(OutpostsServiceException$, OutpostsServiceException);
646
+ const n0_registry = TypeRegistry.for(n0);
647
+ var AccessDeniedException$ = [-3, n0, _ADE,
648
+ { [_e]: _c, [_hE]: 403 },
649
+ [_M],
650
+ [0]
651
+ ];
652
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
653
+ var ConflictException$ = [-3, n0, _CE,
654
+ { [_e]: _c, [_hE]: 409 },
655
+ [_M, _RI, _RT],
656
+ [0, 0, 0]
657
+ ];
658
+ n0_registry.registerError(ConflictException$, ConflictException);
659
+ var InternalServerException$ = [-3, n0, _ISE,
660
+ { [_e]: _se, [_hE]: 500 },
661
+ [_M],
662
+ [0]
663
+ ];
664
+ n0_registry.registerError(InternalServerException$, InternalServerException);
665
+ var NotFoundException$ = [-3, n0, _NFE,
666
+ { [_e]: _c, [_hE]: 404 },
667
+ [_M],
668
+ [0]
669
+ ];
670
+ n0_registry.registerError(NotFoundException$, NotFoundException);
671
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
672
+ { [_e]: _c, [_hE]: 402 },
673
+ [_M],
674
+ [0]
675
+ ];
676
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
677
+ var ValidationException$ = [-3, n0, _VE,
678
+ { [_e]: _c, [_hE]: 400 },
679
+ [_M],
680
+ [0]
681
+ ];
682
+ n0_registry.registerError(ValidationException$, ValidationException);
683
+ const errorTypeRegistries = [
684
+ _s_registry,
685
+ n0_registry,
686
+ ];
687
+ var QuoteDescription = [0, n0, _QD, 8, 0];
688
+ var Address$ = [3, n0, _A,
689
+ 0,
690
+ [_CN, _CPN, _AL, _C, _SOR, _PC, _CC, _ALd, _ALdd, _DOC, _Mu],
691
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 7
692
+ ];
693
+ var AssetInfo$ = [3, n0, _AI,
694
+ 0,
695
+ [_AIs, _RIa, _AT, _CA, _ALs],
696
+ [0, 0, 0, () => ComputeAttributes$, () => AssetLocation$]
697
+ ];
698
+ var AssetInstance$ = [3, n0, _AIss,
699
+ 0,
700
+ [_II, _IT, _AIs, _AIc, _ASN],
701
+ [0, 0, 0, 0, 0]
702
+ ];
703
+ var AssetInstanceTypeCapacity$ = [3, n0, _AITC,
704
+ 0,
705
+ [_IT, _Co],
706
+ [0, 1], 2
707
+ ];
708
+ var AssetLocation$ = [3, n0, _ALs,
709
+ 0,
710
+ [_RE],
711
+ [1]
712
+ ];
713
+ var BlockingInstance$ = [3, n0, _BI,
714
+ 0,
715
+ [_II, _AIc, _ASN],
716
+ [0, 0, 0]
717
+ ];
718
+ var CancelCapacityTaskInput$ = [3, n0, _CCTI,
719
+ 0,
720
+ [_CTI, _OI],
721
+ [[0, 1], [0, 1]], 2
722
+ ];
723
+ var CancelCapacityTaskOutput$ = [3, n0, _CCTO,
724
+ 0,
725
+ [],
726
+ []
727
+ ];
728
+ var CancelOrderInput$ = [3, n0, _COI,
729
+ 0,
730
+ [_OIr],
731
+ [[0, 1]], 1
732
+ ];
733
+ var CancelOrderOutput$ = [3, n0, _COO,
734
+ 0,
735
+ [],
736
+ []
737
+ ];
738
+ var CapacitySummary$ = [3, n0, _CS,
739
+ 0,
740
+ [_EC, _FC, _CCa],
741
+ [() => QuoteCapacityList, () => QuoteCapacityList, () => QuoteCapacityList]
742
+ ];
743
+ var CapacityTaskFailure$ = [3, n0, _CTF,
744
+ 0,
745
+ [_R, _T],
746
+ [0, 0], 1
747
+ ];
748
+ var CapacityTaskSummary$ = [3, n0, _CTS,
749
+ 0,
750
+ [_CTI, _OIu, _OIr, _AIs, _CTSa, _CD, _CDo, _LMD],
751
+ [0, 0, 0, 0, 0, 4, 4, 4]
752
+ ];
753
+ var CatalogItem$ = [3, n0, _CI,
754
+ 0,
755
+ [_CII, _IS, _ECC, _PK, _WL, _SUG, _SS],
756
+ [0, 0, () => EC2CapacityListDefinition, 1, 1, 64 | 1, 64 | 0]
757
+ ];
758
+ var ComputeAttributes$ = [3, n0, _CA,
759
+ 0,
760
+ [_HI, _S, _IF, _ITC, _MV],
761
+ [0, 0, 64 | 0, () => AssetInstanceCapacityList, 1]
762
+ ];
763
+ var ConnectionDetails$ = [3, n0, _CDon,
764
+ 0,
765
+ [_CPK, _SPK, _SE, _CTA, _STA, _AIl],
766
+ [0, 0, 0, 0, 0, 64 | 0]
767
+ ];
768
+ var CreateOrderInput$ = [3, n0, _COIr,
769
+ 0,
770
+ [_OI, _PO, _QI, _QOI, _LI, _PT],
771
+ [0, 0, 0, 0, () => LineItemRequestListDefinition, 0], 2
772
+ ];
773
+ var CreateOrderOutput$ = [3, n0, _COOr,
774
+ 0,
775
+ [_O],
776
+ [() => Order$]
777
+ ];
778
+ var CreateOutpostInput$ = [3, n0, _COIre,
779
+ 0,
780
+ [_N, _SI, _D, _AZ, _AZI, _Ta, _SHT],
781
+ [0, 0, 0, 0, 0, 128 | 0, 0], 2
782
+ ];
783
+ var CreateOutpostOutput$ = [3, n0, _COOre,
784
+ 0,
785
+ [_Ou],
786
+ [() => Outpost$]
787
+ ];
788
+ var CreateQuoteInput$ = [3, n0, _CQI,
789
+ 0,
790
+ [_CC, _RC, _OI, _RCe, _RPO, _RPT, _D],
791
+ [0, () => QuoteCapacityList, 0, () => QuoteConstraintList, 64 | 0, 64 | 0, [() => QuoteDescription, 0]], 2
792
+ ];
793
+ var CreateQuoteOutput$ = [3, n0, _CQO,
794
+ 0,
795
+ [_Q],
796
+ [[() => Quote$, 0]]
797
+ ];
798
+ var CreateRenewalInput$ = [3, n0, _CRI,
799
+ 0,
800
+ [_PO, _PT, _OI, _CT],
801
+ [0, 0, 0, [0, 4]], 3
802
+ ];
803
+ var CreateRenewalOutput$ = [3, n0, _CRO,
804
+ 0,
805
+ [_PO, _PT, _OIu, _UP, _MRP, _Cu],
806
+ [0, 0, 0, 1, 1, 0]
807
+ ];
808
+ var CreateSiteInput$ = [3, n0, _CSI,
809
+ 0,
810
+ [_N, _D, _No, _Ta, _OA, _SA, _RPP],
811
+ [0, 0, 0, 128 | 0, () => Address$, () => Address$, () => RackPhysicalProperties$], 1
812
+ ];
813
+ var CreateSiteOutput$ = [3, n0, _CSO,
814
+ 0,
815
+ [_Si],
816
+ [() => Site$]
817
+ ];
818
+ var DeleteOutpostInput$ = [3, n0, _DOI,
819
+ 0,
820
+ [_OIu],
821
+ [[0, 1]], 1
822
+ ];
823
+ var DeleteOutpostOutput$ = [3, n0, _DOO,
824
+ 0,
825
+ [],
826
+ []
827
+ ];
828
+ var DeleteQuoteInput$ = [3, n0, _DQI,
829
+ 0,
830
+ [_QI],
831
+ [[0, 1]], 1
832
+ ];
833
+ var DeleteQuoteOutput$ = [3, n0, _DQO,
834
+ 0,
835
+ [],
836
+ []
837
+ ];
838
+ var DeleteSiteInput$ = [3, n0, _DSI,
839
+ 0,
840
+ [_SI],
841
+ [[0, 1]], 1
842
+ ];
843
+ var DeleteSiteOutput$ = [3, n0, _DSO,
844
+ 0,
845
+ [],
846
+ []
847
+ ];
848
+ var DetailedInstanceTypeItem$ = [3, n0, _DITI,
849
+ 0,
850
+ [_IT, _VCPU, _MIM, _NP, _FFC],
851
+ [0, 1, 1, 0, () => FormFactorConfigList]
852
+ ];
853
+ var EC2Capacity$ = [3, n0, _ECCa,
854
+ 0,
855
+ [_F, _MS, _Qu],
856
+ [0, 0, 0]
857
+ ];
858
+ var FormFactorConfig$ = [3, n0, _FFCo,
859
+ 0,
860
+ [_FF, _OG],
861
+ [0, 0]
862
+ ];
863
+ var GetCapacityTaskInput$ = [3, n0, _GCTI,
864
+ 0,
865
+ [_CTI, _OI],
866
+ [[0, 1], [0, 1]], 2
867
+ ];
868
+ var GetCapacityTaskOutput$ = [3, n0, _GCTO,
869
+ 0,
870
+ [_CTI, _OIu, _OIr, _AIs, _RIP, _ITE, _DR, _CTSa, _Fa, _CD, _CDo, _LMD, _TAOBI],
871
+ [0, 0, 0, 0, () => RequestedInstancePools, () => InstancesToExclude$, 2, 0, () => CapacityTaskFailure$, 4, 4, 4, 0]
872
+ ];
873
+ var GetCatalogItemInput$ = [3, n0, _GCII,
874
+ 0,
875
+ [_CII],
876
+ [[0, 1]], 1
877
+ ];
878
+ var GetCatalogItemOutput$ = [3, n0, _GCIO,
879
+ 0,
880
+ [_CI],
881
+ [() => CatalogItem$]
882
+ ];
883
+ var GetConnectionRequest$ = [3, n0, _GCR,
884
+ 0,
885
+ [_CIo],
886
+ [[0, 1]], 1
887
+ ];
888
+ var GetConnectionResponse$ = [3, n0, _GCRe,
889
+ 0,
890
+ [_CIo, _CDon],
891
+ [0, () => ConnectionDetails$]
892
+ ];
893
+ var GetOrderInput$ = [3, n0, _GOI,
894
+ 0,
895
+ [_OIr],
896
+ [[0, 1]], 1
897
+ ];
898
+ var GetOrderOutput$ = [3, n0, _GOO,
899
+ 0,
900
+ [_O],
901
+ [() => Order$]
902
+ ];
903
+ var GetOutpostBillingInformationInput$ = [3, n0, _GOBII,
904
+ 0,
905
+ [_OI, _NT, _MR],
906
+ [[0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
907
+ ];
908
+ var GetOutpostBillingInformationOutput$ = [3, n0, _GOBIO,
909
+ 0,
910
+ [_NT, _Su, _CED, _PT, _PO],
911
+ [0, () => SubscriptionList, 0, 0, 0]
912
+ ];
913
+ var GetOutpostInput$ = [3, n0, _GOIe,
914
+ 0,
915
+ [_OIu],
916
+ [[0, 1]], 1
917
+ ];
918
+ var GetOutpostInstanceTypesInput$ = [3, n0, _GOITI,
919
+ 0,
920
+ [_OIu, _NT, _MR],
921
+ [[0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
922
+ ];
923
+ var GetOutpostInstanceTypesOutput$ = [3, n0, _GOITO,
924
+ 0,
925
+ [_ITn, _NT, _OIu, _OAu],
926
+ [() => InstanceTypeListDefinition, 0, 0, 0]
927
+ ];
928
+ var GetOutpostOutput$ = [3, n0, _GOOe,
929
+ 0,
930
+ [_Ou],
931
+ [() => Outpost$]
932
+ ];
933
+ var GetOutpostSupportedInstanceTypesInput$ = [3, n0, _GOSITI,
934
+ 0,
935
+ [_OI, _OIr, _AIs, _MR, _NT],
936
+ [[0, 1], [0, { [_hQ]: _OIr }], [0, { [_hQ]: _AIs }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
937
+ ];
938
+ var GetOutpostSupportedInstanceTypesOutput$ = [3, n0, _GOSITO,
939
+ 0,
940
+ [_ITn, _NT],
941
+ [() => InstanceTypeListDefinition, 0]
942
+ ];
943
+ var GetQuoteInput$ = [3, n0, _GQI,
944
+ 0,
945
+ [_QI],
946
+ [[0, 1]], 1
947
+ ];
948
+ var GetQuoteOutput$ = [3, n0, _GQO,
949
+ 0,
950
+ [_Q],
951
+ [[() => Quote$, 0]]
952
+ ];
953
+ var GetRenewalPricingInput$ = [3, n0, _GRPI,
954
+ 0,
955
+ [_OI],
956
+ [[0, 1]], 1
957
+ ];
958
+ var GetRenewalPricingOutput$ = [3, n0, _GRPO,
959
+ 0,
960
+ [_PR, _POr],
961
+ [0, () => PricingOptionList]
962
+ ];
963
+ var GetSiteAddressInput$ = [3, n0, _GSAI,
964
+ 0,
965
+ [_SI, _ATd],
966
+ [[0, 1], [0, { [_hQ]: _ATd }]], 2
967
+ ];
968
+ var GetSiteAddressOutput$ = [3, n0, _GSAO,
969
+ 0,
970
+ [_SI, _ATd, _A],
971
+ [0, 0, () => Address$]
972
+ ];
973
+ var GetSiteInput$ = [3, n0, _GSI,
974
+ 0,
975
+ [_SI],
976
+ [[0, 1]], 1
977
+ ];
978
+ var GetSiteOutput$ = [3, n0, _GSO,
979
+ 0,
980
+ [_Si],
981
+ [() => Site$]
982
+ ];
983
+ var InstancesToExclude$ = [3, n0, _ITE,
984
+ 0,
985
+ [_I, _AIcc, _Se],
986
+ [64 | 0, 64 | 0, 64 | 0]
987
+ ];
988
+ var InstanceTypeCapacity$ = [3, n0, _ITCn,
989
+ 0,
990
+ [_IT, _Co],
991
+ [0, 1], 2
992
+ ];
993
+ var InstanceTypeItem$ = [3, n0, _ITI,
994
+ 0,
995
+ [_IT, _VCPU],
996
+ [0, 1]
997
+ ];
998
+ var LineItem$ = [3, n0, _LIi,
999
+ 0,
1000
+ [_CII, _LII, _Qu, _St, _SIh, _AIL, _PLII, _POI],
1001
+ [0, 0, 1, 0, () => ShipmentInformation$, () => LineItemAssetInformationList, 0, 0]
1002
+ ];
1003
+ var LineItemAssetInformation$ = [3, n0, _LIAI,
1004
+ 0,
1005
+ [_AIs, _MAL],
1006
+ [0, 64 | 0]
1007
+ ];
1008
+ var LineItemRequest$ = [3, n0, _LIR,
1009
+ 0,
1010
+ [_CII, _Qu],
1011
+ [0, 1]
1012
+ ];
1013
+ var ListAssetInstancesInput$ = [3, n0, _LAII,
1014
+ 0,
1015
+ [_OI, _AIF, _ITF, _AIFc, _ASF, _MR, _NT],
1016
+ [[0, 1], [64 | 0, { [_hQ]: _AIF }], [64 | 0, { [_hQ]: _ITF }], [64 | 0, { [_hQ]: _AIFc }], [64 | 0, { [_hQ]: _ASF }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
1017
+ ];
1018
+ var ListAssetInstancesOutput$ = [3, n0, _LAIO,
1019
+ 0,
1020
+ [_AIsse, _NT],
1021
+ [() => AssetInstanceList, 0]
1022
+ ];
1023
+ var ListAssetsInput$ = [3, n0, _LAI,
1024
+ 0,
1025
+ [_OI, _HIF, _MR, _NT, _SF, _ATF],
1026
+ [[0, 1], [64 | 0, { [_hQ]: _HIF }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }], [64 | 0, { [_hQ]: _SF }], [64 | 0, { [_hQ]: _ATF }]], 1
1027
+ ];
1028
+ var ListAssetsOutput$ = [3, n0, _LAO,
1029
+ 0,
1030
+ [_As, _NT],
1031
+ [() => AssetListDefinition, 0]
1032
+ ];
1033
+ var ListBlockingInstancesForCapacityTaskInput$ = [3, n0, _LBIFCTI,
1034
+ 0,
1035
+ [_OI, _CTI, _MR, _NT],
1036
+ [[0, 1], [0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 2
1037
+ ];
1038
+ var ListBlockingInstancesForCapacityTaskOutput$ = [3, n0, _LBIFCTO,
1039
+ 0,
1040
+ [_BIl, _NT],
1041
+ [() => BlockingInstancesList, 0]
1042
+ ];
1043
+ var ListCapacityTasksInput$ = [3, n0, _LCTI,
1044
+ 0,
1045
+ [_OIF, _MR, _NT, _CTSF],
1046
+ [[0, { [_hQ]: _OIF }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }], [64 | 0, { [_hQ]: _CTSF }]]
1047
+ ];
1048
+ var ListCapacityTasksOutput$ = [3, n0, _LCTO,
1049
+ 0,
1050
+ [_CTa, _NT],
1051
+ [() => CapacityTaskList, 0]
1052
+ ];
1053
+ var ListCatalogItemsInput$ = [3, n0, _LCII,
1054
+ 0,
1055
+ [_NT, _MR, _ICF, _SSF, _ECFF],
1056
+ [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [64 | 0, { [_hQ]: _ICF }], [64 | 0, { [_hQ]: _SSF }], [64 | 0, { [_hQ]: _ECFF }]]
1057
+ ];
1058
+ var ListCatalogItemsOutput$ = [3, n0, _LCIO,
1059
+ 0,
1060
+ [_CIa, _NT],
1061
+ [() => CatalogItemListDefinition, 0]
1062
+ ];
1063
+ var ListOrderableInstanceTypesInput$ = [3, n0, _LOITI,
1064
+ 0,
1065
+ [_OGF, _MR, _NT],
1066
+ [[0, { [_hQ]: _OGF }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
1067
+ ];
1068
+ var ListOrderableInstanceTypesOutput$ = [3, n0, _LOITO,
1069
+ 0,
1070
+ [_ITn, _NT],
1071
+ [() => DetailedInstanceTypeListDefinition, 0]
1072
+ ];
1073
+ var ListOrdersInput$ = [3, n0, _LOI,
1074
+ 0,
1075
+ [_OIF, _NT, _MR],
1076
+ [[0, { [_hQ]: _OIF }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1077
+ ];
1078
+ var ListOrdersOutput$ = [3, n0, _LOO,
1079
+ 0,
1080
+ [_Or, _NT],
1081
+ [() => OrderSummaryListDefinition, 0]
1082
+ ];
1083
+ var ListOutpostsInput$ = [3, n0, _LOIi,
1084
+ 0,
1085
+ [_NT, _MR, _LCSF, _AZF, _AZIF],
1086
+ [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [64 | 0, { [_hQ]: _LCSF }], [64 | 0, { [_hQ]: _AZF }], [64 | 0, { [_hQ]: _AZIF }]]
1087
+ ];
1088
+ var ListOutpostsOutput$ = [3, n0, _LOOi,
1089
+ 0,
1090
+ [_Out, _NT],
1091
+ [() => outpostListDefinition, 0]
1092
+ ];
1093
+ var ListQuotesInput$ = [3, n0, _LQI,
1094
+ 0,
1095
+ [_NT, _MR],
1096
+ [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1097
+ ];
1098
+ var ListQuotesOutput$ = [3, n0, _LQO,
1099
+ 0,
1100
+ [_Quo, _NT],
1101
+ [[() => QuoteSummaryListDefinition, 0], 0]
1102
+ ];
1103
+ var ListSitesInput$ = [3, n0, _LSI,
1104
+ 0,
1105
+ [_NT, _MR, _OACCF, _OASORF, _OACF],
1106
+ [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [64 | 0, { [_hQ]: _OACCF }], [64 | 0, { [_hQ]: _OASORF }], [64 | 0, { [_hQ]: _OACF }]]
1107
+ ];
1108
+ var ListSitesOutput$ = [3, n0, _LSO,
1109
+ 0,
1110
+ [_Sit, _NT],
1111
+ [() => siteListDefinition, 0]
1112
+ ];
1113
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1114
+ 0,
1115
+ [_RA],
1116
+ [[0, 1]], 1
1117
+ ];
1118
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1119
+ 0,
1120
+ [_Ta],
1121
+ [128 | 0]
1122
+ ];
1123
+ var Order$ = [3, n0, _O,
1124
+ 0,
1125
+ [_OIu, _QI, _QOI, _OIr, _St, _LI, _PO, _OSD, _OFD, _PT, _OT],
1126
+ [0, 0, 0, 0, 0, () => LineItemListDefinition, 0, 4, 4, 0, 0]
1127
+ ];
1128
+ var OrderingRequirement$ = [3, n0, _OR,
1129
+ 0,
1130
+ [_SM, _ORT, _St],
1131
+ [0, 0, 0]
1132
+ ];
1133
+ var OrderSummary$ = [3, n0, _OS,
1134
+ 0,
1135
+ [_OIu, _OIr, _OT, _St, _LICBS, _OSD, _OFD],
1136
+ [0, 0, 0, 0, 128 | 1, 4, 4]
1137
+ ];
1138
+ var Outpost$ = [3, n0, _Ou,
1139
+ 0,
1140
+ [_OIu, _OIw, _OAu, _SI, _N, _D, _LCS, _AZ, _AZI, _Ta, _SAi, _SHT],
1141
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 0, 0]
1142
+ ];
1143
+ var PricingOption$ = [3, n0, _POri,
1144
+ 0,
1145
+ [_PTr, _SPD],
1146
+ [0, () => SubscriptionPricingDetails$]
1147
+ ];
1148
+ var Quote$ = [3, n0, _Q,
1149
+ 0,
1150
+ [_QIu, _AIc, _QS, _SM, _OAu, _CC, _RC, _RCe, _RPO, _RPT, _QO, _ORr, _SOI, _CDr, _ED, _D],
1151
+ [0, 0, 0, 0, 0, 0, () => QuoteCapacityList, () => QuoteConstraintList, 64 | 0, 64 | 0, () => QuoteOptionList, () => OrderingRequirementList, 0, 4, 4, [() => QuoteDescription, 0]]
1152
+ ];
1153
+ var QuoteCapacity$ = [3, n0, _QC,
1154
+ 0,
1155
+ [_QCT, _U, _Qu],
1156
+ [0, 0, 1]
1157
+ ];
1158
+ var QuoteConstraint$ = [3, n0, _QCu,
1159
+ 0,
1160
+ [_QCTu, _V],
1161
+ [0, 0]
1162
+ ];
1163
+ var QuoteOption$ = [3, n0, _QOu,
1164
+ 0,
1165
+ [_QOI, _Ca, _CS, _Sp, _POr],
1166
+ [0, () => QuoteCapacityList, () => CapacitySummary$, () => QuoteSpecificationList, () => PricingOptionList]
1167
+ ];
1168
+ var QuoteSpecification$ = [3, n0, _QSu,
1169
+ 0,
1170
+ [_QST, _ERSD, _FRSD, _SSD],
1171
+ [0, () => RackSpecificationDetails$, () => RackSpecificationDetails$, () => ServerSpecificationDetails$]
1172
+ ];
1173
+ var QuoteSummary$ = [3, n0, _QSuo,
1174
+ 0,
1175
+ [_QIu, _AIc, _QS, _SM, _OAu, _CC, _RC, _RCe, _RPO, _RPT, _QO, _SOI, _CDr, _ED, _D],
1176
+ [0, 0, 0, 0, 0, 0, () => QuoteCapacityList, () => QuoteConstraintList, 64 | 0, 64 | 0, () => QuoteOptionList, 0, 4, 4, [() => QuoteDescription, 0]]
1177
+ ];
1178
+ var RackPhysicalProperties$ = [3, n0, _RPP,
1179
+ 0,
1180
+ [_PDK, _PP, _PCo, _PFD, _UG, _UC, _FOCT, _OSp, _MSWL],
1181
+ [0, 0, 0, 0, 0, 0, 0, 0, 0]
1182
+ ];
1183
+ var RackSpecificationDetails$ = [3, n0, _RSD,
1184
+ 0,
1185
+ [_RIa, _RU, _RPDK, _RWL, _RHI, _RWI, _RDI, _RUH, _ECC],
1186
+ [0, 0, 1, 1, 1, 1, 1, 0, () => EC2CapacityListDefinition]
1187
+ ];
1188
+ var ServerSpecificationDetails$ = [3, n0, _SSD,
1189
+ 0,
1190
+ [_SPDK, _SWL, _SHI, _SWI, _SDI, _RUH, _ECC],
1191
+ [1, 1, 1, 1, 1, 0, () => EC2CapacityListDefinition]
1192
+ ];
1193
+ var ShipmentInformation$ = [3, n0, _SIh,
1194
+ 0,
1195
+ [_STN, _SC],
1196
+ [0, 0]
1197
+ ];
1198
+ var Site$ = [3, n0, _Si,
1199
+ 0,
1200
+ [_SI, _AIc, _N, _D, _Ta, _SAi, _No, _OACC, _OASOR, _OAC, _RPP],
1201
+ [0, 0, 0, 0, 128 | 0, 0, 0, 0, 0, 0, () => RackPhysicalProperties$]
1202
+ ];
1203
+ var StartCapacityTaskInput$ = [3, n0, _SCTI,
1204
+ 0,
1205
+ [_OI, _IP, _OIr, _AIs, _ITE, _DR, _TAOBI],
1206
+ [[0, 1], () => RequestedInstancePools, 0, 0, () => InstancesToExclude$, 2, 0], 2
1207
+ ];
1208
+ var StartCapacityTaskOutput$ = [3, n0, _SCTO,
1209
+ 0,
1210
+ [_CTI, _OIu, _OIr, _AIs, _RIP, _ITE, _DR, _CTSa, _Fa, _CD, _CDo, _LMD, _TAOBI],
1211
+ [0, 0, 0, 0, () => RequestedInstancePools, () => InstancesToExclude$, 2, 0, () => CapacityTaskFailure$, 4, 4, 4, 0]
1212
+ ];
1213
+ var StartConnectionRequest$ = [3, n0, _SCR,
1214
+ 0,
1215
+ [_AIs, _CPK, _NIDI, _DSN],
1216
+ [0, 0, 1, 0], 3
1217
+ ];
1218
+ var StartConnectionResponse$ = [3, n0, _SCRt,
1219
+ 0,
1220
+ [_CIo, _UIA],
1221
+ [0, 0]
1222
+ ];
1223
+ var StartOutpostDecommissionInput$ = [3, n0, _SODI,
1224
+ 0,
1225
+ [_OI, _VO],
1226
+ [[0, 1], 2], 1
1227
+ ];
1228
+ var StartOutpostDecommissionOutput$ = [3, n0, _SODO,
1229
+ 0,
1230
+ [_St, _BRT],
1231
+ [0, 64 | 0]
1232
+ ];
1233
+ var Subscription$ = [3, n0, _Sub,
1234
+ 0,
1235
+ [_SIu, _ST, _SSu, _OIrd, _BD, _EDn, _Cu, _MRP, _UP],
1236
+ [0, 0, 0, 64 | 0, 4, 4, 0, 1, 1]
1237
+ ];
1238
+ var SubscriptionPricingDetails$ = [3, n0, _SPD,
1239
+ 0,
1240
+ [_PO, _PT, _UP, _MRP, _Cu],
1241
+ [0, 0, 1, 1, 0]
1242
+ ];
1243
+ var TagResourceRequest$ = [3, n0, _TRR,
1244
+ 0,
1245
+ [_RA, _Ta],
1246
+ [[0, 1], 128 | 0], 2
1247
+ ];
1248
+ var TagResourceResponse$ = [3, n0, _TRRa,
1249
+ 0,
1250
+ [],
1251
+ []
1252
+ ];
1253
+ var UntagResourceRequest$ = [3, n0, _URR,
1254
+ 0,
1255
+ [_RA, _TK],
1256
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1257
+ ];
1258
+ var UntagResourceResponse$ = [3, n0, _URRn,
1259
+ 0,
1260
+ [],
1261
+ []
1262
+ ];
1263
+ var UpdateOutpostInput$ = [3, n0, _UOI,
1264
+ 0,
1265
+ [_OIu, _N, _D, _SHT],
1266
+ [[0, 1], 0, 0, 0], 1
1267
+ ];
1268
+ var UpdateOutpostOutput$ = [3, n0, _UOO,
1269
+ 0,
1270
+ [_Ou],
1271
+ [() => Outpost$]
1272
+ ];
1273
+ var UpdateQuoteInput$ = [3, n0, _UQI,
1274
+ 0,
1275
+ [_QI, _OI, _CC, _RC, _RCe, _RPO, _RPT, _D],
1276
+ [[0, 1], 0, 0, () => QuoteCapacityList, () => QuoteConstraintList, 64 | 0, 64 | 0, [() => QuoteDescription, 0]], 1
1277
+ ];
1278
+ var UpdateQuoteOutput$ = [3, n0, _UQO,
1279
+ 0,
1280
+ [_Q],
1281
+ [[() => Quote$, 0]]
1282
+ ];
1283
+ var UpdateSiteAddressInput$ = [3, n0, _USAI,
1284
+ 0,
1285
+ [_SI, _ATd, _A],
1286
+ [[0, 1], 0, () => Address$], 3
1287
+ ];
1288
+ var UpdateSiteAddressOutput$ = [3, n0, _USAO,
1289
+ 0,
1290
+ [_ATd, _A],
1291
+ [0, () => Address$]
1292
+ ];
1293
+ var UpdateSiteInput$ = [3, n0, _USI,
1294
+ 0,
1295
+ [_SI, _N, _D, _No],
1296
+ [[0, 1], 0, 0, 0], 1
1297
+ ];
1298
+ var UpdateSiteOutput$ = [3, n0, _USO,
1299
+ 0,
1300
+ [_Si],
1301
+ [() => Site$]
1302
+ ];
1303
+ var UpdateSiteRackPhysicalPropertiesInput$ = [3, n0, _USRPPI,
1304
+ 0,
1305
+ [_SI, _PDK, _PP, _PCo, _PFD, _UG, _UC, _FOCT, _OSp, _MSWL],
1306
+ [[0, 1], 0, 0, 0, 0, 0, 0, 0, 0, 0], 1
1307
+ ];
1308
+ var UpdateSiteRackPhysicalPropertiesOutput$ = [3, n0, _USRPPO,
1309
+ 0,
1310
+ [_Si],
1311
+ [() => Site$]
1312
+ ];
1313
+ var AssetInstanceCapacityList = [1, n0, _AICL,
1314
+ 0, () => AssetInstanceTypeCapacity$
1315
+ ];
1316
+ var AssetInstanceList = [1, n0, _AILs,
1317
+ 0, () => AssetInstance$
1318
+ ];
1319
+ var AssetListDefinition = [1, n0, _ALD,
1320
+ 0, () => AssetInfo$
1321
+ ];
1322
+ var BlockingInstancesList = [1, n0, _BIL,
1323
+ 0, () => BlockingInstance$
1324
+ ];
1325
+ var CapacityTaskList = [1, n0, _CTL,
1326
+ 0, () => CapacityTaskSummary$
1327
+ ];
1328
+ var CatalogItemListDefinition = [1, n0, _CILD,
1329
+ 0, () => CatalogItem$
1330
+ ];
1331
+ var DetailedInstanceTypeListDefinition = [1, n0, _DITLD,
1332
+ 0, () => DetailedInstanceTypeItem$
1333
+ ];
1334
+ var EC2CapacityListDefinition = [1, n0, _ECCLD,
1335
+ 0, () => EC2Capacity$
1336
+ ];
1337
+ var FormFactorConfigList = [1, n0, _FFCL,
1338
+ 0, () => FormFactorConfig$
1339
+ ];
1340
+ var InstanceTypeListDefinition = [1, n0, _ITLD,
1341
+ 0, () => InstanceTypeItem$
1342
+ ];
1343
+ var LineItemAssetInformationList = [1, n0, _LIAIL,
1344
+ 0, () => LineItemAssetInformation$
1345
+ ];
1346
+ var LineItemListDefinition = [1, n0, _LILD,
1347
+ 0, () => LineItem$
1348
+ ];
1349
+ var LineItemRequestListDefinition = [1, n0, _LIRLD,
1350
+ 0, () => LineItemRequest$
1351
+ ];
1352
+ var OrderingRequirementList = [1, n0, _ORL,
1353
+ 0, () => OrderingRequirement$
1354
+ ];
1355
+ var OrderSummaryListDefinition = [1, n0, _OSLD,
1356
+ 0, () => OrderSummary$
1357
+ ];
1358
+ var outpostListDefinition = [1, n0, _oLD,
1359
+ 0, () => Outpost$
1360
+ ];
1361
+ var PricingOptionList = [1, n0, _POL,
1362
+ 0, () => PricingOption$
1363
+ ];
1364
+ var QuoteCapacityList = [1, n0, _QCL,
1365
+ 0, () => QuoteCapacity$
1366
+ ];
1367
+ var QuoteConstraintList = [1, n0, _QCLu,
1368
+ 0, () => QuoteConstraint$
1369
+ ];
1370
+ var QuoteOptionList = [1, n0, _QOL,
1371
+ 0, () => QuoteOption$
1372
+ ];
1373
+ var QuoteSpecificationList = [1, n0, _QSL,
1374
+ 0, () => QuoteSpecification$
1375
+ ];
1376
+ var QuoteSummaryListDefinition = [1, n0, _QSLD,
1377
+ 0, [() => QuoteSummary$,
1378
+ 0]
1379
+ ];
1380
+ var RequestedInstancePools = [1, n0, _RIP,
1381
+ 0, () => InstanceTypeCapacity$
1382
+ ];
1383
+ var siteListDefinition = [1, n0, _sLD,
1384
+ 0, () => Site$
1385
+ ];
1386
+ var SubscriptionList = [1, n0, _SL,
1387
+ 0, () => Subscription$
1388
+ ];
1389
+ var CancelCapacityTask$ = [9, n0, _CCT,
1390
+ { [_h]: ["POST", "/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}", 200] }, () => CancelCapacityTaskInput$, () => CancelCapacityTaskOutput$
1391
+ ];
1392
+ var CancelOrder$ = [9, n0, _CO,
1393
+ { [_h]: ["POST", "/orders/{OrderId}/cancel", 200] }, () => CancelOrderInput$, () => CancelOrderOutput$
1394
+ ];
1395
+ var CreateOrder$ = [9, n0, _COr,
1396
+ { [_h]: ["POST", "/orders", 200] }, () => CreateOrderInput$, () => CreateOrderOutput$
1397
+ ];
1398
+ var CreateOutpost$ = [9, n0, _COre,
1399
+ { [_h]: ["POST", "/outposts", 200] }, () => CreateOutpostInput$, () => CreateOutpostOutput$
1400
+ ];
1401
+ var CreateQuote$ = [9, n0, _CQ,
1402
+ { [_h]: ["POST", "/quotes", 200] }, () => CreateQuoteInput$, () => CreateQuoteOutput$
1403
+ ];
1404
+ var CreateRenewal$ = [9, n0, _CR,
1405
+ { [_h]: ["POST", "/renewals", 200] }, () => CreateRenewalInput$, () => CreateRenewalOutput$
1406
+ ];
1407
+ var CreateSite$ = [9, n0, _CSr,
1408
+ { [_h]: ["POST", "/sites", 200] }, () => CreateSiteInput$, () => CreateSiteOutput$
1409
+ ];
1410
+ var DeleteOutpost$ = [9, n0, _DO,
1411
+ { [_h]: ["DELETE", "/outposts/{OutpostId}", 200] }, () => DeleteOutpostInput$, () => DeleteOutpostOutput$
1412
+ ];
1413
+ var DeleteQuote$ = [9, n0, _DQ,
1414
+ { [_h]: ["DELETE", "/quotes/{QuoteIdentifier}", 200] }, () => DeleteQuoteInput$, () => DeleteQuoteOutput$
1415
+ ];
1416
+ var DeleteSite$ = [9, n0, _DS,
1417
+ { [_h]: ["DELETE", "/sites/{SiteId}", 200] }, () => DeleteSiteInput$, () => DeleteSiteOutput$
1418
+ ];
1419
+ var GetCapacityTask$ = [9, n0, _GCT,
1420
+ { [_h]: ["GET", "/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}", 200] }, () => GetCapacityTaskInput$, () => GetCapacityTaskOutput$
1421
+ ];
1422
+ var GetCatalogItem$ = [9, n0, _GCI,
1423
+ { [_h]: ["GET", "/catalog/item/{CatalogItemId}", 200] }, () => GetCatalogItemInput$, () => GetCatalogItemOutput$
1424
+ ];
1425
+ var GetConnection$ = [9, n0, _GC,
1426
+ { [_h]: ["GET", "/connections/{ConnectionId}", 200] }, () => GetConnectionRequest$, () => GetConnectionResponse$
1427
+ ];
1428
+ var GetOrder$ = [9, n0, _GO,
1429
+ { [_h]: ["GET", "/orders/{OrderId}", 200] }, () => GetOrderInput$, () => GetOrderOutput$
1430
+ ];
1431
+ var GetOutpost$ = [9, n0, _GOe,
1432
+ { [_h]: ["GET", "/outposts/{OutpostId}", 200] }, () => GetOutpostInput$, () => GetOutpostOutput$
1433
+ ];
1434
+ var GetOutpostBillingInformation$ = [9, n0, _GOBI,
1435
+ { [_h]: ["GET", "/outpost/{OutpostIdentifier}/billing-information", 200] }, () => GetOutpostBillingInformationInput$, () => GetOutpostBillingInformationOutput$
1436
+ ];
1437
+ var GetOutpostInstanceTypes$ = [9, n0, _GOIT,
1438
+ { [_h]: ["GET", "/outposts/{OutpostId}/instanceTypes", 200] }, () => GetOutpostInstanceTypesInput$, () => GetOutpostInstanceTypesOutput$
1439
+ ];
1440
+ var GetOutpostSupportedInstanceTypes$ = [9, n0, _GOSIT,
1441
+ { [_h]: ["GET", "/outposts/{OutpostIdentifier}/supportedInstanceTypes", 200] }, () => GetOutpostSupportedInstanceTypesInput$, () => GetOutpostSupportedInstanceTypesOutput$
1442
+ ];
1443
+ var GetQuote$ = [9, n0, _GQ,
1444
+ { [_h]: ["GET", "/quotes/{QuoteIdentifier}", 200] }, () => GetQuoteInput$, () => GetQuoteOutput$
1445
+ ];
1446
+ var GetRenewalPricing$ = [9, n0, _GRP,
1447
+ { [_h]: ["GET", "/outpost/{OutpostIdentifier}/renewal-pricing", 200] }, () => GetRenewalPricingInput$, () => GetRenewalPricingOutput$
1448
+ ];
1449
+ var GetSite$ = [9, n0, _GS,
1450
+ { [_h]: ["GET", "/sites/{SiteId}", 200] }, () => GetSiteInput$, () => GetSiteOutput$
1451
+ ];
1452
+ var GetSiteAddress$ = [9, n0, _GSA,
1453
+ { [_h]: ["GET", "/sites/{SiteId}/address", 200] }, () => GetSiteAddressInput$, () => GetSiteAddressOutput$
1454
+ ];
1455
+ var ListAssetInstances$ = [9, n0, _LAIi,
1456
+ { [_h]: ["GET", "/outposts/{OutpostIdentifier}/assetInstances", 200] }, () => ListAssetInstancesInput$, () => ListAssetInstancesOutput$
1457
+ ];
1458
+ var ListAssets$ = [9, n0, _LA,
1459
+ { [_h]: ["GET", "/outposts/{OutpostIdentifier}/assets", 200] }, () => ListAssetsInput$, () => ListAssetsOutput$
1460
+ ];
1461
+ var ListBlockingInstancesForCapacityTask$ = [9, n0, _LBIFCT,
1462
+ { [_h]: ["GET", "/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}/blockingInstances", 200] }, () => ListBlockingInstancesForCapacityTaskInput$, () => ListBlockingInstancesForCapacityTaskOutput$
1463
+ ];
1464
+ var ListCapacityTasks$ = [9, n0, _LCT,
1465
+ { [_h]: ["GET", "/capacity/tasks", 200] }, () => ListCapacityTasksInput$, () => ListCapacityTasksOutput$
1466
+ ];
1467
+ var ListCatalogItems$ = [9, n0, _LCI,
1468
+ { [_h]: ["GET", "/catalog/items", 200] }, () => ListCatalogItemsInput$, () => ListCatalogItemsOutput$
1469
+ ];
1470
+ var ListOrderableInstanceTypes$ = [9, n0, _LOIT,
1471
+ { [_h]: ["GET", "/instanceTypes", 200] }, () => ListOrderableInstanceTypesInput$, () => ListOrderableInstanceTypesOutput$
1472
+ ];
1473
+ var ListOrders$ = [9, n0, _LO,
1474
+ { [_h]: ["GET", "/list-orders", 200] }, () => ListOrdersInput$, () => ListOrdersOutput$
1475
+ ];
1476
+ var ListOutposts$ = [9, n0, _LOi,
1477
+ { [_h]: ["GET", "/outposts", 200] }, () => ListOutpostsInput$, () => ListOutpostsOutput$
1478
+ ];
1479
+ var ListQuotes$ = [9, n0, _LQ,
1480
+ { [_h]: ["GET", "/quotes", 200] }, () => ListQuotesInput$, () => ListQuotesOutput$
1481
+ ];
1482
+ var ListSites$ = [9, n0, _LS,
1483
+ { [_h]: ["GET", "/sites", 200] }, () => ListSitesInput$, () => ListSitesOutput$
1484
+ ];
1485
+ var ListTagsForResource$ = [9, n0, _LTFR,
1486
+ { [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1487
+ ];
1488
+ var StartCapacityTask$ = [9, n0, _SCT,
1489
+ { [_h]: ["POST", "/outposts/{OutpostIdentifier}/capacity", 200] }, () => StartCapacityTaskInput$, () => StartCapacityTaskOutput$
1490
+ ];
1491
+ var StartConnection$ = [9, n0, _SCt,
1492
+ { [_h]: ["POST", "/connections", 200] }, () => StartConnectionRequest$, () => StartConnectionResponse$
1493
+ ];
1494
+ var StartOutpostDecommission$ = [9, n0, _SOD,
1495
+ { [_h]: ["POST", "/outposts/{OutpostIdentifier}/decommission", 200] }, () => StartOutpostDecommissionInput$, () => StartOutpostDecommissionOutput$
1496
+ ];
1497
+ var TagResource$ = [9, n0, _TR,
1498
+ { [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1499
+ ];
1500
+ var UntagResource$ = [9, n0, _UR,
1501
+ { [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1502
+ ];
1503
+ var UpdateOutpost$ = [9, n0, _UO,
1504
+ { [_h]: ["PATCH", "/outposts/{OutpostId}", 200] }, () => UpdateOutpostInput$, () => UpdateOutpostOutput$
1505
+ ];
1506
+ var UpdateQuote$ = [9, n0, _UQ,
1507
+ { [_h]: ["PATCH", "/quotes/{QuoteIdentifier}", 200] }, () => UpdateQuoteInput$, () => UpdateQuoteOutput$
1508
+ ];
1509
+ var UpdateSite$ = [9, n0, _US,
1510
+ { [_h]: ["PATCH", "/sites/{SiteId}", 200] }, () => UpdateSiteInput$, () => UpdateSiteOutput$
1511
+ ];
1512
+ var UpdateSiteAddress$ = [9, n0, _USA,
1513
+ { [_h]: ["PUT", "/sites/{SiteId}/address", 200] }, () => UpdateSiteAddressInput$, () => UpdateSiteAddressOutput$
1514
+ ];
1515
+ var UpdateSiteRackPhysicalProperties$ = [9, n0, _USRPP,
1516
+ { [_h]: ["PATCH", "/sites/{SiteId}/rackPhysicalProperties", 200] }, () => UpdateSiteRackPhysicalPropertiesInput$, () => UpdateSiteRackPhysicalPropertiesOutput$
1517
+ ];
1518
+
1519
+ const getRuntimeConfig$1 = (config) => {
1520
+ return {
1521
+ apiVersion: "2019-12-03",
1522
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1523
+ base64Encoder: config?.base64Encoder ?? toBase64,
1524
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1525
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1526
+ extensions: config?.extensions ?? [],
1527
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultOutpostsHttpAuthSchemeProvider,
1528
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1529
+ {
1530
+ schemeId: "aws.auth#sigv4",
1531
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1532
+ signer: new AwsSdkSigV4Signer(),
1533
+ },
1534
+ ],
1535
+ logger: config?.logger ?? new NoOpLogger(),
1536
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1537
+ protocolSettings: config?.protocolSettings ?? {
1538
+ defaultNamespace: "com.amazonaws.outposts",
1539
+ errorTypeRegistries,
1540
+ version: "2019-12-03",
1541
+ serviceTarget: "OutpostsOlafService",
1542
+ },
1543
+ serviceId: config?.serviceId ?? "Outposts",
1544
+ sha256: config?.sha256 ?? Sha256,
1545
+ urlParser: config?.urlParser ?? parseUrl,
1546
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1547
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1548
+ };
1549
+ };
1550
+
1551
+ const getRuntimeConfig = (config) => {
1552
+ emitWarningIfUnsupportedVersion(process.version);
1553
+ const defaultsMode = resolveDefaultsModeConfig(config);
1554
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1555
+ const clientSharedValues = getRuntimeConfig$1(config);
1556
+ emitWarningIfUnsupportedVersion$1(process.version);
1557
+ const loaderConfig = {
1558
+ profile: config?.profile,
1559
+ logger: clientSharedValues.logger,
1560
+ };
1561
+ return {
1562
+ ...clientSharedValues,
1563
+ ...config,
1564
+ runtime: "node",
1565
+ defaultsMode,
1566
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1567
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1568
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1569
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1570
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1571
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1572
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1573
+ retryMode: config?.retryMode ??
1574
+ loadConfig({
1575
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1576
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1577
+ }, config),
1578
+ streamCollector: config?.streamCollector ?? streamCollector,
1579
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1580
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1581
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1582
+ };
1583
+ };
1584
+
34
1585
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1586
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1587
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -997,95 +2548,278 @@ const PricingResult = {
997
2548
  };
998
2549
 
999
2550
  exports.AWSServiceName = AWSServiceName;
2551
+ exports.AccessDeniedException = AccessDeniedException;
2552
+ exports.AccessDeniedException$ = AccessDeniedException$;
2553
+ exports.Address$ = Address$;
1000
2554
  exports.AddressType = AddressType;
2555
+ exports.AssetInfo$ = AssetInfo$;
2556
+ exports.AssetInstance$ = AssetInstance$;
2557
+ exports.AssetInstanceTypeCapacity$ = AssetInstanceTypeCapacity$;
2558
+ exports.AssetLocation$ = AssetLocation$;
1001
2559
  exports.AssetState = AssetState;
1002
2560
  exports.AssetType = AssetType;
2561
+ exports.BlockingInstance$ = BlockingInstance$;
1003
2562
  exports.BlockingResourceType = BlockingResourceType;
2563
+ exports.CancelCapacityTask$ = CancelCapacityTask$;
1004
2564
  exports.CancelCapacityTaskCommand = CancelCapacityTaskCommand;
2565
+ exports.CancelCapacityTaskInput$ = CancelCapacityTaskInput$;
2566
+ exports.CancelCapacityTaskOutput$ = CancelCapacityTaskOutput$;
2567
+ exports.CancelOrder$ = CancelOrder$;
1005
2568
  exports.CancelOrderCommand = CancelOrderCommand;
2569
+ exports.CancelOrderInput$ = CancelOrderInput$;
2570
+ exports.CancelOrderOutput$ = CancelOrderOutput$;
2571
+ exports.CapacitySummary$ = CapacitySummary$;
2572
+ exports.CapacityTaskFailure$ = CapacityTaskFailure$;
1006
2573
  exports.CapacityTaskFailureType = CapacityTaskFailureType;
1007
2574
  exports.CapacityTaskStatus = CapacityTaskStatus;
2575
+ exports.CapacityTaskSummary$ = CapacityTaskSummary$;
2576
+ exports.CatalogItem$ = CatalogItem$;
1008
2577
  exports.CatalogItemClass = CatalogItemClass;
1009
2578
  exports.CatalogItemStatus = CatalogItemStatus;
1010
2579
  exports.ComputeAssetState = ComputeAssetState;
2580
+ exports.ComputeAttributes$ = ComputeAttributes$;
2581
+ exports.ConflictException = ConflictException;
2582
+ exports.ConflictException$ = ConflictException$;
2583
+ exports.ConnectionDetails$ = ConnectionDetails$;
2584
+ exports.CreateOrder$ = CreateOrder$;
1011
2585
  exports.CreateOrderCommand = CreateOrderCommand;
2586
+ exports.CreateOrderInput$ = CreateOrderInput$;
2587
+ exports.CreateOrderOutput$ = CreateOrderOutput$;
2588
+ exports.CreateOutpost$ = CreateOutpost$;
1012
2589
  exports.CreateOutpostCommand = CreateOutpostCommand;
2590
+ exports.CreateOutpostInput$ = CreateOutpostInput$;
2591
+ exports.CreateOutpostOutput$ = CreateOutpostOutput$;
2592
+ exports.CreateQuote$ = CreateQuote$;
1013
2593
  exports.CreateQuoteCommand = CreateQuoteCommand;
2594
+ exports.CreateQuoteInput$ = CreateQuoteInput$;
2595
+ exports.CreateQuoteOutput$ = CreateQuoteOutput$;
2596
+ exports.CreateRenewal$ = CreateRenewal$;
1014
2597
  exports.CreateRenewalCommand = CreateRenewalCommand;
2598
+ exports.CreateRenewalInput$ = CreateRenewalInput$;
2599
+ exports.CreateRenewalOutput$ = CreateRenewalOutput$;
2600
+ exports.CreateSite$ = CreateSite$;
1015
2601
  exports.CreateSiteCommand = CreateSiteCommand;
2602
+ exports.CreateSiteInput$ = CreateSiteInput$;
2603
+ exports.CreateSiteOutput$ = CreateSiteOutput$;
1016
2604
  exports.CurrencyCode = CurrencyCode;
1017
2605
  exports.DecommissionRequestStatus = DecommissionRequestStatus;
2606
+ exports.DeleteOutpost$ = DeleteOutpost$;
1018
2607
  exports.DeleteOutpostCommand = DeleteOutpostCommand;
2608
+ exports.DeleteOutpostInput$ = DeleteOutpostInput$;
2609
+ exports.DeleteOutpostOutput$ = DeleteOutpostOutput$;
2610
+ exports.DeleteQuote$ = DeleteQuote$;
1019
2611
  exports.DeleteQuoteCommand = DeleteQuoteCommand;
2612
+ exports.DeleteQuoteInput$ = DeleteQuoteInput$;
2613
+ exports.DeleteQuoteOutput$ = DeleteQuoteOutput$;
2614
+ exports.DeleteSite$ = DeleteSite$;
1020
2615
  exports.DeleteSiteCommand = DeleteSiteCommand;
2616
+ exports.DeleteSiteInput$ = DeleteSiteInput$;
2617
+ exports.DeleteSiteOutput$ = DeleteSiteOutput$;
2618
+ exports.DetailedInstanceTypeItem$ = DetailedInstanceTypeItem$;
2619
+ exports.EC2Capacity$ = EC2Capacity$;
1021
2620
  exports.FiberOpticCableType = FiberOpticCableType;
1022
2621
  exports.FormFactor = FormFactor;
2622
+ exports.FormFactorConfig$ = FormFactorConfig$;
2623
+ exports.GetCapacityTask$ = GetCapacityTask$;
1023
2624
  exports.GetCapacityTaskCommand = GetCapacityTaskCommand;
2625
+ exports.GetCapacityTaskInput$ = GetCapacityTaskInput$;
2626
+ exports.GetCapacityTaskOutput$ = GetCapacityTaskOutput$;
2627
+ exports.GetCatalogItem$ = GetCatalogItem$;
1024
2628
  exports.GetCatalogItemCommand = GetCatalogItemCommand;
2629
+ exports.GetCatalogItemInput$ = GetCatalogItemInput$;
2630
+ exports.GetCatalogItemOutput$ = GetCatalogItemOutput$;
2631
+ exports.GetConnection$ = GetConnection$;
1025
2632
  exports.GetConnectionCommand = GetConnectionCommand;
2633
+ exports.GetConnectionRequest$ = GetConnectionRequest$;
2634
+ exports.GetConnectionResponse$ = GetConnectionResponse$;
2635
+ exports.GetOrder$ = GetOrder$;
1026
2636
  exports.GetOrderCommand = GetOrderCommand;
2637
+ exports.GetOrderInput$ = GetOrderInput$;
2638
+ exports.GetOrderOutput$ = GetOrderOutput$;
2639
+ exports.GetOutpost$ = GetOutpost$;
2640
+ exports.GetOutpostBillingInformation$ = GetOutpostBillingInformation$;
1027
2641
  exports.GetOutpostBillingInformationCommand = GetOutpostBillingInformationCommand;
2642
+ exports.GetOutpostBillingInformationInput$ = GetOutpostBillingInformationInput$;
2643
+ exports.GetOutpostBillingInformationOutput$ = GetOutpostBillingInformationOutput$;
1028
2644
  exports.GetOutpostCommand = GetOutpostCommand;
2645
+ exports.GetOutpostInput$ = GetOutpostInput$;
2646
+ exports.GetOutpostInstanceTypes$ = GetOutpostInstanceTypes$;
1029
2647
  exports.GetOutpostInstanceTypesCommand = GetOutpostInstanceTypesCommand;
2648
+ exports.GetOutpostInstanceTypesInput$ = GetOutpostInstanceTypesInput$;
2649
+ exports.GetOutpostInstanceTypesOutput$ = GetOutpostInstanceTypesOutput$;
2650
+ exports.GetOutpostOutput$ = GetOutpostOutput$;
2651
+ exports.GetOutpostSupportedInstanceTypes$ = GetOutpostSupportedInstanceTypes$;
1030
2652
  exports.GetOutpostSupportedInstanceTypesCommand = GetOutpostSupportedInstanceTypesCommand;
2653
+ exports.GetOutpostSupportedInstanceTypesInput$ = GetOutpostSupportedInstanceTypesInput$;
2654
+ exports.GetOutpostSupportedInstanceTypesOutput$ = GetOutpostSupportedInstanceTypesOutput$;
2655
+ exports.GetQuote$ = GetQuote$;
1031
2656
  exports.GetQuoteCommand = GetQuoteCommand;
2657
+ exports.GetQuoteInput$ = GetQuoteInput$;
2658
+ exports.GetQuoteOutput$ = GetQuoteOutput$;
2659
+ exports.GetRenewalPricing$ = GetRenewalPricing$;
1032
2660
  exports.GetRenewalPricingCommand = GetRenewalPricingCommand;
2661
+ exports.GetRenewalPricingInput$ = GetRenewalPricingInput$;
2662
+ exports.GetRenewalPricingOutput$ = GetRenewalPricingOutput$;
2663
+ exports.GetSite$ = GetSite$;
2664
+ exports.GetSiteAddress$ = GetSiteAddress$;
1033
2665
  exports.GetSiteAddressCommand = GetSiteAddressCommand;
2666
+ exports.GetSiteAddressInput$ = GetSiteAddressInput$;
2667
+ exports.GetSiteAddressOutput$ = GetSiteAddressOutput$;
1034
2668
  exports.GetSiteCommand = GetSiteCommand;
2669
+ exports.GetSiteInput$ = GetSiteInput$;
2670
+ exports.GetSiteOutput$ = GetSiteOutput$;
2671
+ exports.InstanceTypeCapacity$ = InstanceTypeCapacity$;
2672
+ exports.InstanceTypeItem$ = InstanceTypeItem$;
2673
+ exports.InstancesToExclude$ = InstancesToExclude$;
2674
+ exports.InternalServerException = InternalServerException;
2675
+ exports.InternalServerException$ = InternalServerException$;
2676
+ exports.LineItem$ = LineItem$;
2677
+ exports.LineItemAssetInformation$ = LineItemAssetInformation$;
2678
+ exports.LineItemRequest$ = LineItemRequest$;
1035
2679
  exports.LineItemStatus = LineItemStatus;
2680
+ exports.ListAssetInstances$ = ListAssetInstances$;
1036
2681
  exports.ListAssetInstancesCommand = ListAssetInstancesCommand;
2682
+ exports.ListAssetInstancesInput$ = ListAssetInstancesInput$;
2683
+ exports.ListAssetInstancesOutput$ = ListAssetInstancesOutput$;
2684
+ exports.ListAssets$ = ListAssets$;
1037
2685
  exports.ListAssetsCommand = ListAssetsCommand;
2686
+ exports.ListAssetsInput$ = ListAssetsInput$;
2687
+ exports.ListAssetsOutput$ = ListAssetsOutput$;
2688
+ exports.ListBlockingInstancesForCapacityTask$ = ListBlockingInstancesForCapacityTask$;
1038
2689
  exports.ListBlockingInstancesForCapacityTaskCommand = ListBlockingInstancesForCapacityTaskCommand;
2690
+ exports.ListBlockingInstancesForCapacityTaskInput$ = ListBlockingInstancesForCapacityTaskInput$;
2691
+ exports.ListBlockingInstancesForCapacityTaskOutput$ = ListBlockingInstancesForCapacityTaskOutput$;
2692
+ exports.ListCapacityTasks$ = ListCapacityTasks$;
1039
2693
  exports.ListCapacityTasksCommand = ListCapacityTasksCommand;
2694
+ exports.ListCapacityTasksInput$ = ListCapacityTasksInput$;
2695
+ exports.ListCapacityTasksOutput$ = ListCapacityTasksOutput$;
2696
+ exports.ListCatalogItems$ = ListCatalogItems$;
1040
2697
  exports.ListCatalogItemsCommand = ListCatalogItemsCommand;
2698
+ exports.ListCatalogItemsInput$ = ListCatalogItemsInput$;
2699
+ exports.ListCatalogItemsOutput$ = ListCatalogItemsOutput$;
2700
+ exports.ListOrderableInstanceTypes$ = ListOrderableInstanceTypes$;
1041
2701
  exports.ListOrderableInstanceTypesCommand = ListOrderableInstanceTypesCommand;
2702
+ exports.ListOrderableInstanceTypesInput$ = ListOrderableInstanceTypesInput$;
2703
+ exports.ListOrderableInstanceTypesOutput$ = ListOrderableInstanceTypesOutput$;
2704
+ exports.ListOrders$ = ListOrders$;
1042
2705
  exports.ListOrdersCommand = ListOrdersCommand;
2706
+ exports.ListOrdersInput$ = ListOrdersInput$;
2707
+ exports.ListOrdersOutput$ = ListOrdersOutput$;
2708
+ exports.ListOutposts$ = ListOutposts$;
1043
2709
  exports.ListOutpostsCommand = ListOutpostsCommand;
2710
+ exports.ListOutpostsInput$ = ListOutpostsInput$;
2711
+ exports.ListOutpostsOutput$ = ListOutpostsOutput$;
2712
+ exports.ListQuotes$ = ListQuotes$;
1044
2713
  exports.ListQuotesCommand = ListQuotesCommand;
2714
+ exports.ListQuotesInput$ = ListQuotesInput$;
2715
+ exports.ListQuotesOutput$ = ListQuotesOutput$;
2716
+ exports.ListSites$ = ListSites$;
1045
2717
  exports.ListSitesCommand = ListSitesCommand;
2718
+ exports.ListSitesInput$ = ListSitesInput$;
2719
+ exports.ListSitesOutput$ = ListSitesOutput$;
2720
+ exports.ListTagsForResource$ = ListTagsForResource$;
1046
2721
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2722
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2723
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1047
2724
  exports.MaximumSupportedWeightLbs = MaximumSupportedWeightLbs;
2725
+ exports.NotFoundException = NotFoundException;
2726
+ exports.NotFoundException$ = NotFoundException$;
1048
2727
  exports.OpticalStandard = OpticalStandard;
2728
+ exports.Order$ = Order$;
1049
2729
  exports.OrderStatus = OrderStatus;
2730
+ exports.OrderSummary$ = OrderSummary$;
1050
2731
  exports.OrderType = OrderType;
2732
+ exports.OrderingRequirement$ = OrderingRequirement$;
1051
2733
  exports.OrderingRequirementStatus = OrderingRequirementStatus;
1052
2734
  exports.OrderingRequirementType = OrderingRequirementType;
2735
+ exports.Outpost$ = Outpost$;
1053
2736
  exports.OutpostGeneration = OutpostGeneration;
1054
2737
  exports.Outposts = Outposts;
1055
2738
  exports.OutpostsClient = OutpostsClient;
2739
+ exports.OutpostsServiceException = OutpostsServiceException;
2740
+ exports.OutpostsServiceException$ = OutpostsServiceException$;
1056
2741
  exports.PaymentOption = PaymentOption;
1057
2742
  exports.PaymentTerm = PaymentTerm;
1058
2743
  exports.PowerConnector = PowerConnector;
1059
2744
  exports.PowerDrawKva = PowerDrawKva;
1060
2745
  exports.PowerFeedDrop = PowerFeedDrop;
1061
2746
  exports.PowerPhase = PowerPhase;
2747
+ exports.PricingOption$ = PricingOption$;
1062
2748
  exports.PricingResult = PricingResult;
2749
+ exports.Quote$ = Quote$;
2750
+ exports.QuoteCapacity$ = QuoteCapacity$;
1063
2751
  exports.QuoteCapacityType = QuoteCapacityType;
2752
+ exports.QuoteConstraint$ = QuoteConstraint$;
1064
2753
  exports.QuoteConstraintType = QuoteConstraintType;
2754
+ exports.QuoteOption$ = QuoteOption$;
1065
2755
  exports.QuotePricingType = QuotePricingType;
1066
2756
  exports.QuoteRackUseType = QuoteRackUseType;
2757
+ exports.QuoteSpecification$ = QuoteSpecification$;
1067
2758
  exports.QuoteSpecificationType = QuoteSpecificationType;
1068
2759
  exports.QuoteStatus = QuoteStatus;
2760
+ exports.QuoteSummary$ = QuoteSummary$;
2761
+ exports.RackPhysicalProperties$ = RackPhysicalProperties$;
2762
+ exports.RackSpecificationDetails$ = RackSpecificationDetails$;
1069
2763
  exports.RackUnitHeight = RackUnitHeight;
1070
2764
  exports.ResourceType = ResourceType;
2765
+ exports.ServerSpecificationDetails$ = ServerSpecificationDetails$;
2766
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2767
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1071
2768
  exports.ShipmentCarrier = ShipmentCarrier;
2769
+ exports.ShipmentInformation$ = ShipmentInformation$;
2770
+ exports.Site$ = Site$;
2771
+ exports.StartCapacityTask$ = StartCapacityTask$;
1072
2772
  exports.StartCapacityTaskCommand = StartCapacityTaskCommand;
2773
+ exports.StartCapacityTaskInput$ = StartCapacityTaskInput$;
2774
+ exports.StartCapacityTaskOutput$ = StartCapacityTaskOutput$;
2775
+ exports.StartConnection$ = StartConnection$;
1073
2776
  exports.StartConnectionCommand = StartConnectionCommand;
2777
+ exports.StartConnectionRequest$ = StartConnectionRequest$;
2778
+ exports.StartConnectionResponse$ = StartConnectionResponse$;
2779
+ exports.StartOutpostDecommission$ = StartOutpostDecommission$;
1074
2780
  exports.StartOutpostDecommissionCommand = StartOutpostDecommissionCommand;
2781
+ exports.StartOutpostDecommissionInput$ = StartOutpostDecommissionInput$;
2782
+ exports.StartOutpostDecommissionOutput$ = StartOutpostDecommissionOutput$;
2783
+ exports.Subscription$ = Subscription$;
2784
+ exports.SubscriptionPricingDetails$ = SubscriptionPricingDetails$;
1075
2785
  exports.SubscriptionStatus = SubscriptionStatus;
1076
2786
  exports.SubscriptionType = SubscriptionType;
1077
2787
  exports.SupportedHardwareType = SupportedHardwareType;
1078
2788
  exports.SupportedStorageEnum = SupportedStorageEnum;
2789
+ exports.TagResource$ = TagResource$;
1079
2790
  exports.TagResourceCommand = TagResourceCommand;
2791
+ exports.TagResourceRequest$ = TagResourceRequest$;
2792
+ exports.TagResourceResponse$ = TagResourceResponse$;
1080
2793
  exports.TaskActionOnBlockingInstances = TaskActionOnBlockingInstances;
2794
+ exports.UntagResource$ = UntagResource$;
1081
2795
  exports.UntagResourceCommand = UntagResourceCommand;
2796
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2797
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2798
+ exports.UpdateOutpost$ = UpdateOutpost$;
1082
2799
  exports.UpdateOutpostCommand = UpdateOutpostCommand;
2800
+ exports.UpdateOutpostInput$ = UpdateOutpostInput$;
2801
+ exports.UpdateOutpostOutput$ = UpdateOutpostOutput$;
2802
+ exports.UpdateQuote$ = UpdateQuote$;
1083
2803
  exports.UpdateQuoteCommand = UpdateQuoteCommand;
2804
+ exports.UpdateQuoteInput$ = UpdateQuoteInput$;
2805
+ exports.UpdateQuoteOutput$ = UpdateQuoteOutput$;
2806
+ exports.UpdateSite$ = UpdateSite$;
2807
+ exports.UpdateSiteAddress$ = UpdateSiteAddress$;
1084
2808
  exports.UpdateSiteAddressCommand = UpdateSiteAddressCommand;
2809
+ exports.UpdateSiteAddressInput$ = UpdateSiteAddressInput$;
2810
+ exports.UpdateSiteAddressOutput$ = UpdateSiteAddressOutput$;
1085
2811
  exports.UpdateSiteCommand = UpdateSiteCommand;
2812
+ exports.UpdateSiteInput$ = UpdateSiteInput$;
2813
+ exports.UpdateSiteOutput$ = UpdateSiteOutput$;
2814
+ exports.UpdateSiteRackPhysicalProperties$ = UpdateSiteRackPhysicalProperties$;
1086
2815
  exports.UpdateSiteRackPhysicalPropertiesCommand = UpdateSiteRackPhysicalPropertiesCommand;
2816
+ exports.UpdateSiteRackPhysicalPropertiesInput$ = UpdateSiteRackPhysicalPropertiesInput$;
2817
+ exports.UpdateSiteRackPhysicalPropertiesOutput$ = UpdateSiteRackPhysicalPropertiesOutput$;
1087
2818
  exports.UplinkCount = UplinkCount;
1088
2819
  exports.UplinkGbps = UplinkGbps;
2820
+ exports.ValidationException = ValidationException;
2821
+ exports.ValidationException$ = ValidationException$;
2822
+ exports.errorTypeRegistries = errorTypeRegistries;
1089
2823
  exports.paginateGetOutpostBillingInformation = paginateGetOutpostBillingInformation;
1090
2824
  exports.paginateGetOutpostInstanceTypes = paginateGetOutpostInstanceTypes;
1091
2825
  exports.paginateGetOutpostSupportedInstanceTypes = paginateGetOutpostSupportedInstanceTypes;