@aws-sdk/client-outposts 3.987.0 → 3.988.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 +54 -1253
- package/dist-cjs/models/OutpostsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +98 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1017 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +44 -38
- package/dist-types/schemas/schemas_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -6
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var OutpostsServiceException = require('./models/OutpostsServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1080 +113,6 @@ class OutpostsClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class OutpostsServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, OutpostsServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends OutpostsServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class ConflictException extends OutpostsServiceException {
|
|
135
|
-
name = "ConflictException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
ResourceId;
|
|
139
|
-
ResourceType;
|
|
140
|
-
constructor(opts) {
|
|
141
|
-
super({
|
|
142
|
-
name: "ConflictException",
|
|
143
|
-
$fault: "client",
|
|
144
|
-
...opts,
|
|
145
|
-
});
|
|
146
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
147
|
-
this.Message = opts.Message;
|
|
148
|
-
this.ResourceId = opts.ResourceId;
|
|
149
|
-
this.ResourceType = opts.ResourceType;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
class InternalServerException extends OutpostsServiceException {
|
|
153
|
-
name = "InternalServerException";
|
|
154
|
-
$fault = "server";
|
|
155
|
-
Message;
|
|
156
|
-
constructor(opts) {
|
|
157
|
-
super({
|
|
158
|
-
name: "InternalServerException",
|
|
159
|
-
$fault: "server",
|
|
160
|
-
...opts,
|
|
161
|
-
});
|
|
162
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
163
|
-
this.Message = opts.Message;
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
class NotFoundException extends OutpostsServiceException {
|
|
167
|
-
name = "NotFoundException";
|
|
168
|
-
$fault = "client";
|
|
169
|
-
Message;
|
|
170
|
-
constructor(opts) {
|
|
171
|
-
super({
|
|
172
|
-
name: "NotFoundException",
|
|
173
|
-
$fault: "client",
|
|
174
|
-
...opts,
|
|
175
|
-
});
|
|
176
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
177
|
-
this.Message = opts.Message;
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class ValidationException extends OutpostsServiceException {
|
|
181
|
-
name = "ValidationException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
Message;
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "ValidationException",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
191
|
-
this.Message = opts.Message;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
class ServiceQuotaExceededException extends OutpostsServiceException {
|
|
195
|
-
name = "ServiceQuotaExceededException";
|
|
196
|
-
$fault = "client";
|
|
197
|
-
Message;
|
|
198
|
-
constructor(opts) {
|
|
199
|
-
super({
|
|
200
|
-
name: "ServiceQuotaExceededException",
|
|
201
|
-
$fault: "client",
|
|
202
|
-
...opts,
|
|
203
|
-
});
|
|
204
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
205
|
-
this.Message = opts.Message;
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
const _A = "Address";
|
|
210
|
-
const _ADE = "AccessDeniedException";
|
|
211
|
-
const _AI = "AssetInfo";
|
|
212
|
-
const _AICL = "AssetInstanceCapacityList";
|
|
213
|
-
const _AIF = "AssetIdFilter";
|
|
214
|
-
const _AIFc = "AccountIdFilter";
|
|
215
|
-
const _AIL = "AssetInformationList";
|
|
216
|
-
const _AILs = "AssetInstanceList";
|
|
217
|
-
const _AITC = "AssetInstanceTypeCapacity";
|
|
218
|
-
const _AIc = "AccountId";
|
|
219
|
-
const _AIcc = "AccountIds";
|
|
220
|
-
const _AIl = "AllowedIps";
|
|
221
|
-
const _AIs = "AssetId";
|
|
222
|
-
const _AIss = "AssetInstance";
|
|
223
|
-
const _AIsse = "AssetInstances";
|
|
224
|
-
const _AL = "AddressLine1";
|
|
225
|
-
const _ALD = "AssetListDefinition";
|
|
226
|
-
const _ALd = "AddressLine2";
|
|
227
|
-
const _ALdd = "AddressLine3";
|
|
228
|
-
const _ALs = "AssetLocation";
|
|
229
|
-
const _ASF = "AwsServiceFilter";
|
|
230
|
-
const _ASN = "AwsServiceName";
|
|
231
|
-
const _AT = "AssetType";
|
|
232
|
-
const _ATd = "AddressType";
|
|
233
|
-
const _AZ = "AvailabilityZone";
|
|
234
|
-
const _AZF = "AvailabilityZoneFilter";
|
|
235
|
-
const _AZI = "AvailabilityZoneId";
|
|
236
|
-
const _AZIF = "AvailabilityZoneIdFilter";
|
|
237
|
-
const _As = "Assets";
|
|
238
|
-
const _BD = "BeginDate";
|
|
239
|
-
const _BI = "BlockingInstance";
|
|
240
|
-
const _BIL = "BlockingInstancesList";
|
|
241
|
-
const _BIl = "BlockingInstances";
|
|
242
|
-
const _BRT = "BlockingResourceTypes";
|
|
243
|
-
const _C = "City";
|
|
244
|
-
const _CA = "ComputeAttributes";
|
|
245
|
-
const _CC = "CountryCode";
|
|
246
|
-
const _CCT = "CancelCapacityTask";
|
|
247
|
-
const _CCTI = "CancelCapacityTaskInput";
|
|
248
|
-
const _CCTO = "CancelCapacityTaskOutput";
|
|
249
|
-
const _CD = "CreationDate";
|
|
250
|
-
const _CDo = "CompletionDate";
|
|
251
|
-
const _CDon = "ConnectionDetails";
|
|
252
|
-
const _CE = "ConflictException";
|
|
253
|
-
const _CED = "ContractEndDate";
|
|
254
|
-
const _CI = "CatalogItem";
|
|
255
|
-
const _CII = "CatalogItemId";
|
|
256
|
-
const _CILD = "CatalogItemListDefinition";
|
|
257
|
-
const _CIa = "CatalogItems";
|
|
258
|
-
const _CIo = "ConnectionId";
|
|
259
|
-
const _CN = "ContactName";
|
|
260
|
-
const _CO = "CancelOrder";
|
|
261
|
-
const _COI = "CancelOrderInput";
|
|
262
|
-
const _COIr = "CreateOrderInput";
|
|
263
|
-
const _COIre = "CreateOutpostInput";
|
|
264
|
-
const _COO = "CancelOrderOutput";
|
|
265
|
-
const _COOr = "CreateOrderOutput";
|
|
266
|
-
const _COOre = "CreateOutpostOutput";
|
|
267
|
-
const _COr = "CreateOrder";
|
|
268
|
-
const _COre = "CreateOutpost";
|
|
269
|
-
const _CPK = "ClientPublicKey";
|
|
270
|
-
const _CPN = "ContactPhoneNumber";
|
|
271
|
-
const _CS = "CreateSite";
|
|
272
|
-
const _CSI = "CreateSiteInput";
|
|
273
|
-
const _CSO = "CreateSiteOutput";
|
|
274
|
-
const _CT = "CapacityTasks";
|
|
275
|
-
const _CTA = "ClientTunnelAddress";
|
|
276
|
-
const _CTF = "CapacityTaskFailure";
|
|
277
|
-
const _CTI = "CapacityTaskId";
|
|
278
|
-
const _CTL = "CapacityTaskList";
|
|
279
|
-
const _CTS = "CapacityTaskSummary";
|
|
280
|
-
const _CTSF = "CapacityTaskStatusFilter";
|
|
281
|
-
const _CTSa = "CapacityTaskStatus";
|
|
282
|
-
const _Co = "Count";
|
|
283
|
-
const _D = "Description";
|
|
284
|
-
const _DO = "DeleteOutpost";
|
|
285
|
-
const _DOC = "DistrictOrCounty";
|
|
286
|
-
const _DOI = "DeleteOutpostInput";
|
|
287
|
-
const _DOO = "DeleteOutpostOutput";
|
|
288
|
-
const _DR = "DryRun";
|
|
289
|
-
const _DS = "DeleteSite";
|
|
290
|
-
const _DSI = "DeleteSiteInput";
|
|
291
|
-
const _DSN = "DeviceSerialNumber";
|
|
292
|
-
const _DSO = "DeleteSiteOutput";
|
|
293
|
-
const _ECC = "EC2Capacities";
|
|
294
|
-
const _ECCLD = "EC2CapacityListDefinition";
|
|
295
|
-
const _ECCa = "EC2Capacity";
|
|
296
|
-
const _ECFF = "EC2FamilyFilter";
|
|
297
|
-
const _ED = "EndDate";
|
|
298
|
-
const _F = "Family";
|
|
299
|
-
const _FOCT = "FiberOpticCableType";
|
|
300
|
-
const _Fa = "Failed";
|
|
301
|
-
const _GC = "GetConnection";
|
|
302
|
-
const _GCI = "GetCatalogItem";
|
|
303
|
-
const _GCII = "GetCatalogItemInput";
|
|
304
|
-
const _GCIO = "GetCatalogItemOutput";
|
|
305
|
-
const _GCR = "GetConnectionRequest";
|
|
306
|
-
const _GCRe = "GetConnectionResponse";
|
|
307
|
-
const _GCT = "GetCapacityTask";
|
|
308
|
-
const _GCTI = "GetCapacityTaskInput";
|
|
309
|
-
const _GCTO = "GetCapacityTaskOutput";
|
|
310
|
-
const _GO = "GetOrder";
|
|
311
|
-
const _GOBI = "GetOutpostBillingInformation";
|
|
312
|
-
const _GOBII = "GetOutpostBillingInformationInput";
|
|
313
|
-
const _GOBIO = "GetOutpostBillingInformationOutput";
|
|
314
|
-
const _GOI = "GetOrderInput";
|
|
315
|
-
const _GOIT = "GetOutpostInstanceTypes";
|
|
316
|
-
const _GOITI = "GetOutpostInstanceTypesInput";
|
|
317
|
-
const _GOITO = "GetOutpostInstanceTypesOutput";
|
|
318
|
-
const _GOIe = "GetOutpostInput";
|
|
319
|
-
const _GOO = "GetOrderOutput";
|
|
320
|
-
const _GOOe = "GetOutpostOutput";
|
|
321
|
-
const _GOSIT = "GetOutpostSupportedInstanceTypes";
|
|
322
|
-
const _GOSITI = "GetOutpostSupportedInstanceTypesInput";
|
|
323
|
-
const _GOSITO = "GetOutpostSupportedInstanceTypesOutput";
|
|
324
|
-
const _GOe = "GetOutpost";
|
|
325
|
-
const _GS = "GetSite";
|
|
326
|
-
const _GSA = "GetSiteAddress";
|
|
327
|
-
const _GSAI = "GetSiteAddressInput";
|
|
328
|
-
const _GSAO = "GetSiteAddressOutput";
|
|
329
|
-
const _GSI = "GetSiteInput";
|
|
330
|
-
const _GSO = "GetSiteOutput";
|
|
331
|
-
const _HI = "HostId";
|
|
332
|
-
const _HIF = "HostIdFilter";
|
|
333
|
-
const _I = "Instances";
|
|
334
|
-
const _ICF = "ItemClassFilter";
|
|
335
|
-
const _IF = "InstanceFamilies";
|
|
336
|
-
const _II = "InstanceId";
|
|
337
|
-
const _IP = "InstancePools";
|
|
338
|
-
const _IS = "ItemStatus";
|
|
339
|
-
const _ISE = "InternalServerException";
|
|
340
|
-
const _IT = "InstanceType";
|
|
341
|
-
const _ITC = "InstanceTypeCapacities";
|
|
342
|
-
const _ITCn = "InstanceTypeCapacity";
|
|
343
|
-
const _ITE = "InstancesToExclude";
|
|
344
|
-
const _ITF = "InstanceTypeFilter";
|
|
345
|
-
const _ITI = "InstanceTypeItem";
|
|
346
|
-
const _ITLD = "InstanceTypeListDefinition";
|
|
347
|
-
const _ITn = "InstanceTypes";
|
|
348
|
-
const _LA = "ListAssets";
|
|
349
|
-
const _LAI = "ListAssetsInput";
|
|
350
|
-
const _LAII = "ListAssetInstancesInput";
|
|
351
|
-
const _LAIO = "ListAssetInstancesOutput";
|
|
352
|
-
const _LAIi = "ListAssetInstances";
|
|
353
|
-
const _LAO = "ListAssetsOutput";
|
|
354
|
-
const _LBIFCT = "ListBlockingInstancesForCapacityTask";
|
|
355
|
-
const _LBIFCTI = "ListBlockingInstancesForCapacityTaskInput";
|
|
356
|
-
const _LBIFCTO = "ListBlockingInstancesForCapacityTaskOutput";
|
|
357
|
-
const _LCI = "ListCatalogItems";
|
|
358
|
-
const _LCII = "ListCatalogItemsInput";
|
|
359
|
-
const _LCIO = "ListCatalogItemsOutput";
|
|
360
|
-
const _LCS = "LifeCycleStatus";
|
|
361
|
-
const _LCSF = "LifeCycleStatusFilter";
|
|
362
|
-
const _LCT = "ListCapacityTasks";
|
|
363
|
-
const _LCTI = "ListCapacityTasksInput";
|
|
364
|
-
const _LCTO = "ListCapacityTasksOutput";
|
|
365
|
-
const _LI = "LineItems";
|
|
366
|
-
const _LIAI = "LineItemAssetInformation";
|
|
367
|
-
const _LIAIL = "LineItemAssetInformationList";
|
|
368
|
-
const _LICBS = "LineItemCountsByStatus";
|
|
369
|
-
const _LII = "LineItemId";
|
|
370
|
-
const _LILD = "LineItemListDefinition";
|
|
371
|
-
const _LIR = "LineItemRequest";
|
|
372
|
-
const _LIRLD = "LineItemRequestListDefinition";
|
|
373
|
-
const _LIi = "LineItem";
|
|
374
|
-
const _LMD = "LastModifiedDate";
|
|
375
|
-
const _LO = "ListOrders";
|
|
376
|
-
const _LOI = "ListOrdersInput";
|
|
377
|
-
const _LOIi = "ListOutpostsInput";
|
|
378
|
-
const _LOO = "ListOrdersOutput";
|
|
379
|
-
const _LOOi = "ListOutpostsOutput";
|
|
380
|
-
const _LOi = "ListOutposts";
|
|
381
|
-
const _LS = "ListSites";
|
|
382
|
-
const _LSI = "ListSitesInput";
|
|
383
|
-
const _LSO = "ListSitesOutput";
|
|
384
|
-
const _LTFR = "ListTagsForResource";
|
|
385
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
386
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
387
|
-
const _M = "Message";
|
|
388
|
-
const _MAL = "MacAddressList";
|
|
389
|
-
const _MR = "MaxResults";
|
|
390
|
-
const _MRP = "MonthlyRecurringPrice";
|
|
391
|
-
const _MS = "MaxSize";
|
|
392
|
-
const _MSWL = "MaximumSupportedWeightLbs";
|
|
393
|
-
const _MV = "MaxVcpus";
|
|
394
|
-
const _Mu = "Municipality";
|
|
395
|
-
const _N = "Name";
|
|
396
|
-
const _NFE = "NotFoundException";
|
|
397
|
-
const _NIDI = "NetworkInterfaceDeviceIndex";
|
|
398
|
-
const _NT = "NextToken";
|
|
399
|
-
const _No = "Notes";
|
|
400
|
-
const _O = "Order";
|
|
401
|
-
const _OA = "OperatingAddress";
|
|
402
|
-
const _OAC = "OperatingAddressCity";
|
|
403
|
-
const _OACC = "OperatingAddressCountryCode";
|
|
404
|
-
const _OACCF = "OperatingAddressCountryCodeFilter";
|
|
405
|
-
const _OACF = "OperatingAddressCityFilter";
|
|
406
|
-
const _OASOR = "OperatingAddressStateOrRegion";
|
|
407
|
-
const _OASORF = "OperatingAddressStateOrRegionFilter";
|
|
408
|
-
const _OAu = "OutpostArn";
|
|
409
|
-
const _OFD = "OrderFulfilledDate";
|
|
410
|
-
const _OI = "OutpostIdentifier";
|
|
411
|
-
const _OIF = "OutpostIdentifierFilter";
|
|
412
|
-
const _OIr = "OrderId";
|
|
413
|
-
const _OIrd = "OrderIds";
|
|
414
|
-
const _OIu = "OutpostId";
|
|
415
|
-
const _OIw = "OwnerId";
|
|
416
|
-
const _OS = "OrderSummary";
|
|
417
|
-
const _OSD = "OrderSubmissionDate";
|
|
418
|
-
const _OSLD = "OrderSummaryListDefinition";
|
|
419
|
-
const _OSp = "OpticalStandard";
|
|
420
|
-
const _OT = "OrderType";
|
|
421
|
-
const _Or = "Orders";
|
|
422
|
-
const _Ou = "Outpost";
|
|
423
|
-
const _Out = "Outposts";
|
|
424
|
-
const _PC = "PostalCode";
|
|
425
|
-
const _PCo = "PowerConnector";
|
|
426
|
-
const _PDK = "PowerDrawKva";
|
|
427
|
-
const _PFD = "PowerFeedDrop";
|
|
428
|
-
const _PK = "PowerKva";
|
|
429
|
-
const _PLII = "PreviousLineItemId";
|
|
430
|
-
const _PO = "PaymentOption";
|
|
431
|
-
const _POI = "PreviousOrderId";
|
|
432
|
-
const _PP = "PowerPhase";
|
|
433
|
-
const _PT = "PaymentTerm";
|
|
434
|
-
const _Q = "Quantity";
|
|
435
|
-
const _R = "Reason";
|
|
436
|
-
const _RA = "ResourceArn";
|
|
437
|
-
const _RE = "RackElevation";
|
|
438
|
-
const _RI = "RackId";
|
|
439
|
-
const _RIP = "RequestedInstancePools";
|
|
440
|
-
const _RIe = "ResourceId";
|
|
441
|
-
const _RPP = "RackPhysicalProperties";
|
|
442
|
-
const _RT = "ResourceType";
|
|
443
|
-
const _S = "State";
|
|
444
|
-
const _SA = "ShippingAddress";
|
|
445
|
-
const _SAi = "SiteArn";
|
|
446
|
-
const _SC = "ShipmentCarrier";
|
|
447
|
-
const _SCR = "StartConnectionRequest";
|
|
448
|
-
const _SCRt = "StartConnectionResponse";
|
|
449
|
-
const _SCT = "StartCapacityTask";
|
|
450
|
-
const _SCTI = "StartCapacityTaskInput";
|
|
451
|
-
const _SCTO = "StartCapacityTaskOutput";
|
|
452
|
-
const _SCt = "StartConnection";
|
|
453
|
-
const _SE = "ServerEndpoint";
|
|
454
|
-
const _SF = "StatusFilter";
|
|
455
|
-
const _SHT = "SupportedHardwareType";
|
|
456
|
-
const _SI = "SiteId";
|
|
457
|
-
const _SIh = "ShipmentInformation";
|
|
458
|
-
const _SIu = "SubscriptionId";
|
|
459
|
-
const _SL = "SubscriptionList";
|
|
460
|
-
const _SOD = "StartOutpostDecommission";
|
|
461
|
-
const _SODI = "StartOutpostDecommissionInput";
|
|
462
|
-
const _SODO = "StartOutpostDecommissionOutput";
|
|
463
|
-
const _SOR = "StateOrRegion";
|
|
464
|
-
const _SPK = "ServerPublicKey";
|
|
465
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
466
|
-
const _SS = "SupportedStorage";
|
|
467
|
-
const _SSF = "SupportedStorageFilter";
|
|
468
|
-
const _SSu = "SubscriptionStatus";
|
|
469
|
-
const _ST = "SubscriptionType";
|
|
470
|
-
const _STA = "ServerTunnelAddress";
|
|
471
|
-
const _STN = "ShipmentTrackingNumber";
|
|
472
|
-
const _SUG = "SupportedUplinkGbps";
|
|
473
|
-
const _Se = "Services";
|
|
474
|
-
const _Si = "Site";
|
|
475
|
-
const _Sit = "Sites";
|
|
476
|
-
const _St = "Status";
|
|
477
|
-
const _Su = "Subscriptions";
|
|
478
|
-
const _Sub = "Subscription";
|
|
479
|
-
const _T = "Type";
|
|
480
|
-
const _TAOBI = "TaskActionOnBlockingInstances";
|
|
481
|
-
const _TK = "TagKeys";
|
|
482
|
-
const _TR = "TagResource";
|
|
483
|
-
const _TRR = "TagResourceRequest";
|
|
484
|
-
const _TRRa = "TagResourceResponse";
|
|
485
|
-
const _Ta = "Tags";
|
|
486
|
-
const _UC = "UplinkCount";
|
|
487
|
-
const _UG = "UplinkGbps";
|
|
488
|
-
const _UIA = "UnderlayIpAddress";
|
|
489
|
-
const _UO = "UpdateOutpost";
|
|
490
|
-
const _UOI = "UpdateOutpostInput";
|
|
491
|
-
const _UOO = "UpdateOutpostOutput";
|
|
492
|
-
const _UP = "UpfrontPrice";
|
|
493
|
-
const _UR = "UntagResource";
|
|
494
|
-
const _URR = "UntagResourceRequest";
|
|
495
|
-
const _URRn = "UntagResourceResponse";
|
|
496
|
-
const _US = "UpdateSite";
|
|
497
|
-
const _USA = "UpdateSiteAddress";
|
|
498
|
-
const _USAI = "UpdateSiteAddressInput";
|
|
499
|
-
const _USAO = "UpdateSiteAddressOutput";
|
|
500
|
-
const _USI = "UpdateSiteInput";
|
|
501
|
-
const _USO = "UpdateSiteOutput";
|
|
502
|
-
const _USRPP = "UpdateSiteRackPhysicalProperties";
|
|
503
|
-
const _USRPPI = "UpdateSiteRackPhysicalPropertiesInput";
|
|
504
|
-
const _USRPPO = "UpdateSiteRackPhysicalPropertiesOutput";
|
|
505
|
-
const _VCPU = "VCPUs";
|
|
506
|
-
const _VE = "ValidationException";
|
|
507
|
-
const _VO = "ValidateOnly";
|
|
508
|
-
const _WL = "WeightLbs";
|
|
509
|
-
const _c = "client";
|
|
510
|
-
const _e = "error";
|
|
511
|
-
const _h = "http";
|
|
512
|
-
const _hE = "httpError";
|
|
513
|
-
const _hQ = "httpQuery";
|
|
514
|
-
const _oLD = "outpostListDefinition";
|
|
515
|
-
const _s = "server";
|
|
516
|
-
const _sLD = "siteListDefinition";
|
|
517
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.outposts";
|
|
518
|
-
const _tK = "tagKeys";
|
|
519
|
-
const n0 = "com.amazonaws.outposts";
|
|
520
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
521
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
522
|
-
[_M],
|
|
523
|
-
[0]
|
|
524
|
-
];
|
|
525
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
526
|
-
var Address$ = [3, n0, _A,
|
|
527
|
-
0,
|
|
528
|
-
[_CN, _CPN, _AL, _C, _SOR, _PC, _CC, _ALd, _ALdd, _DOC, _Mu],
|
|
529
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 7
|
|
530
|
-
];
|
|
531
|
-
var AssetInfo$ = [3, n0, _AI,
|
|
532
|
-
0,
|
|
533
|
-
[_AIs, _RI, _AT, _CA, _ALs],
|
|
534
|
-
[0, 0, 0, () => ComputeAttributes$, () => AssetLocation$]
|
|
535
|
-
];
|
|
536
|
-
var AssetInstance$ = [3, n0, _AIss,
|
|
537
|
-
0,
|
|
538
|
-
[_II, _IT, _AIs, _AIc, _ASN],
|
|
539
|
-
[0, 0, 0, 0, 0]
|
|
540
|
-
];
|
|
541
|
-
var AssetInstanceTypeCapacity$ = [3, n0, _AITC,
|
|
542
|
-
0,
|
|
543
|
-
[_IT, _Co],
|
|
544
|
-
[0, 1], 2
|
|
545
|
-
];
|
|
546
|
-
var AssetLocation$ = [3, n0, _ALs,
|
|
547
|
-
0,
|
|
548
|
-
[_RE],
|
|
549
|
-
[1]
|
|
550
|
-
];
|
|
551
|
-
var BlockingInstance$ = [3, n0, _BI,
|
|
552
|
-
0,
|
|
553
|
-
[_II, _AIc, _ASN],
|
|
554
|
-
[0, 0, 0]
|
|
555
|
-
];
|
|
556
|
-
var CancelCapacityTaskInput$ = [3, n0, _CCTI,
|
|
557
|
-
0,
|
|
558
|
-
[_CTI, _OI],
|
|
559
|
-
[[0, 1], [0, 1]], 2
|
|
560
|
-
];
|
|
561
|
-
var CancelCapacityTaskOutput$ = [3, n0, _CCTO,
|
|
562
|
-
0,
|
|
563
|
-
[],
|
|
564
|
-
[]
|
|
565
|
-
];
|
|
566
|
-
var CancelOrderInput$ = [3, n0, _COI,
|
|
567
|
-
0,
|
|
568
|
-
[_OIr],
|
|
569
|
-
[[0, 1]], 1
|
|
570
|
-
];
|
|
571
|
-
var CancelOrderOutput$ = [3, n0, _COO,
|
|
572
|
-
0,
|
|
573
|
-
[],
|
|
574
|
-
[]
|
|
575
|
-
];
|
|
576
|
-
var CapacityTaskFailure$ = [3, n0, _CTF,
|
|
577
|
-
0,
|
|
578
|
-
[_R, _T],
|
|
579
|
-
[0, 0], 1
|
|
580
|
-
];
|
|
581
|
-
var CapacityTaskSummary$ = [3, n0, _CTS,
|
|
582
|
-
0,
|
|
583
|
-
[_CTI, _OIu, _OIr, _AIs, _CTSa, _CD, _CDo, _LMD],
|
|
584
|
-
[0, 0, 0, 0, 0, 4, 4, 4]
|
|
585
|
-
];
|
|
586
|
-
var CatalogItem$ = [3, n0, _CI,
|
|
587
|
-
0,
|
|
588
|
-
[_CII, _IS, _ECC, _PK, _WL, _SUG, _SS],
|
|
589
|
-
[0, 0, () => EC2CapacityListDefinition, 1, 1, 64 | 1, 64 | 0]
|
|
590
|
-
];
|
|
591
|
-
var ComputeAttributes$ = [3, n0, _CA,
|
|
592
|
-
0,
|
|
593
|
-
[_HI, _S, _IF, _ITC, _MV],
|
|
594
|
-
[0, 0, 64 | 0, () => AssetInstanceCapacityList, 1]
|
|
595
|
-
];
|
|
596
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
597
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
598
|
-
[_M, _RIe, _RT],
|
|
599
|
-
[0, 0, 0]
|
|
600
|
-
];
|
|
601
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
602
|
-
var ConnectionDetails$ = [3, n0, _CDon,
|
|
603
|
-
0,
|
|
604
|
-
[_CPK, _SPK, _SE, _CTA, _STA, _AIl],
|
|
605
|
-
[0, 0, 0, 0, 0, 64 | 0]
|
|
606
|
-
];
|
|
607
|
-
var CreateOrderInput$ = [3, n0, _COIr,
|
|
608
|
-
0,
|
|
609
|
-
[_OI, _PO, _LI, _PT],
|
|
610
|
-
[0, 0, () => LineItemRequestListDefinition, 0], 2
|
|
611
|
-
];
|
|
612
|
-
var CreateOrderOutput$ = [3, n0, _COOr,
|
|
613
|
-
0,
|
|
614
|
-
[_O],
|
|
615
|
-
[() => Order$]
|
|
616
|
-
];
|
|
617
|
-
var CreateOutpostInput$ = [3, n0, _COIre,
|
|
618
|
-
0,
|
|
619
|
-
[_N, _SI, _D, _AZ, _AZI, _Ta, _SHT],
|
|
620
|
-
[0, 0, 0, 0, 0, 128 | 0, 0], 2
|
|
621
|
-
];
|
|
622
|
-
var CreateOutpostOutput$ = [3, n0, _COOre,
|
|
623
|
-
0,
|
|
624
|
-
[_Ou],
|
|
625
|
-
[() => Outpost$]
|
|
626
|
-
];
|
|
627
|
-
var CreateSiteInput$ = [3, n0, _CSI,
|
|
628
|
-
0,
|
|
629
|
-
[_N, _D, _No, _Ta, _OA, _SA, _RPP],
|
|
630
|
-
[0, 0, 0, 128 | 0, () => Address$, () => Address$, () => RackPhysicalProperties$], 1
|
|
631
|
-
];
|
|
632
|
-
var CreateSiteOutput$ = [3, n0, _CSO,
|
|
633
|
-
0,
|
|
634
|
-
[_Si],
|
|
635
|
-
[() => Site$]
|
|
636
|
-
];
|
|
637
|
-
var DeleteOutpostInput$ = [3, n0, _DOI,
|
|
638
|
-
0,
|
|
639
|
-
[_OIu],
|
|
640
|
-
[[0, 1]], 1
|
|
641
|
-
];
|
|
642
|
-
var DeleteOutpostOutput$ = [3, n0, _DOO,
|
|
643
|
-
0,
|
|
644
|
-
[],
|
|
645
|
-
[]
|
|
646
|
-
];
|
|
647
|
-
var DeleteSiteInput$ = [3, n0, _DSI,
|
|
648
|
-
0,
|
|
649
|
-
[_SI],
|
|
650
|
-
[[0, 1]], 1
|
|
651
|
-
];
|
|
652
|
-
var DeleteSiteOutput$ = [3, n0, _DSO,
|
|
653
|
-
0,
|
|
654
|
-
[],
|
|
655
|
-
[]
|
|
656
|
-
];
|
|
657
|
-
var EC2Capacity$ = [3, n0, _ECCa,
|
|
658
|
-
0,
|
|
659
|
-
[_F, _MS, _Q],
|
|
660
|
-
[0, 0, 0]
|
|
661
|
-
];
|
|
662
|
-
var GetCapacityTaskInput$ = [3, n0, _GCTI,
|
|
663
|
-
0,
|
|
664
|
-
[_CTI, _OI],
|
|
665
|
-
[[0, 1], [0, 1]], 2
|
|
666
|
-
];
|
|
667
|
-
var GetCapacityTaskOutput$ = [3, n0, _GCTO,
|
|
668
|
-
0,
|
|
669
|
-
[_CTI, _OIu, _OIr, _AIs, _RIP, _ITE, _DR, _CTSa, _Fa, _CD, _CDo, _LMD, _TAOBI],
|
|
670
|
-
[0, 0, 0, 0, () => RequestedInstancePools, () => InstancesToExclude$, 2, 0, () => CapacityTaskFailure$, 4, 4, 4, 0]
|
|
671
|
-
];
|
|
672
|
-
var GetCatalogItemInput$ = [3, n0, _GCII,
|
|
673
|
-
0,
|
|
674
|
-
[_CII],
|
|
675
|
-
[[0, 1]], 1
|
|
676
|
-
];
|
|
677
|
-
var GetCatalogItemOutput$ = [3, n0, _GCIO,
|
|
678
|
-
0,
|
|
679
|
-
[_CI],
|
|
680
|
-
[() => CatalogItem$]
|
|
681
|
-
];
|
|
682
|
-
var GetConnectionRequest$ = [3, n0, _GCR,
|
|
683
|
-
0,
|
|
684
|
-
[_CIo],
|
|
685
|
-
[[0, 1]], 1
|
|
686
|
-
];
|
|
687
|
-
var GetConnectionResponse$ = [3, n0, _GCRe,
|
|
688
|
-
0,
|
|
689
|
-
[_CIo, _CDon],
|
|
690
|
-
[0, () => ConnectionDetails$]
|
|
691
|
-
];
|
|
692
|
-
var GetOrderInput$ = [3, n0, _GOI,
|
|
693
|
-
0,
|
|
694
|
-
[_OIr],
|
|
695
|
-
[[0, 1]], 1
|
|
696
|
-
];
|
|
697
|
-
var GetOrderOutput$ = [3, n0, _GOO,
|
|
698
|
-
0,
|
|
699
|
-
[_O],
|
|
700
|
-
[() => Order$]
|
|
701
|
-
];
|
|
702
|
-
var GetOutpostBillingInformationInput$ = [3, n0, _GOBII,
|
|
703
|
-
0,
|
|
704
|
-
[_OI, _NT, _MR],
|
|
705
|
-
[[0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
|
|
706
|
-
];
|
|
707
|
-
var GetOutpostBillingInformationOutput$ = [3, n0, _GOBIO,
|
|
708
|
-
0,
|
|
709
|
-
[_NT, _Su, _CED],
|
|
710
|
-
[0, () => SubscriptionList, 0]
|
|
711
|
-
];
|
|
712
|
-
var GetOutpostInput$ = [3, n0, _GOIe,
|
|
713
|
-
0,
|
|
714
|
-
[_OIu],
|
|
715
|
-
[[0, 1]], 1
|
|
716
|
-
];
|
|
717
|
-
var GetOutpostInstanceTypesInput$ = [3, n0, _GOITI,
|
|
718
|
-
0,
|
|
719
|
-
[_OIu, _NT, _MR],
|
|
720
|
-
[[0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
|
|
721
|
-
];
|
|
722
|
-
var GetOutpostInstanceTypesOutput$ = [3, n0, _GOITO,
|
|
723
|
-
0,
|
|
724
|
-
[_ITn, _NT, _OIu, _OAu],
|
|
725
|
-
[() => InstanceTypeListDefinition, 0, 0, 0]
|
|
726
|
-
];
|
|
727
|
-
var GetOutpostOutput$ = [3, n0, _GOOe,
|
|
728
|
-
0,
|
|
729
|
-
[_Ou],
|
|
730
|
-
[() => Outpost$]
|
|
731
|
-
];
|
|
732
|
-
var GetOutpostSupportedInstanceTypesInput$ = [3, n0, _GOSITI,
|
|
733
|
-
0,
|
|
734
|
-
[_OI, _OIr, _AIs, _MR, _NT],
|
|
735
|
-
[[0, 1], [0, { [_hQ]: _OIr }], [0, { [_hQ]: _AIs }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
736
|
-
];
|
|
737
|
-
var GetOutpostSupportedInstanceTypesOutput$ = [3, n0, _GOSITO,
|
|
738
|
-
0,
|
|
739
|
-
[_ITn, _NT],
|
|
740
|
-
[() => InstanceTypeListDefinition, 0]
|
|
741
|
-
];
|
|
742
|
-
var GetSiteAddressInput$ = [3, n0, _GSAI,
|
|
743
|
-
0,
|
|
744
|
-
[_SI, _ATd],
|
|
745
|
-
[[0, 1], [0, { [_hQ]: _ATd }]], 2
|
|
746
|
-
];
|
|
747
|
-
var GetSiteAddressOutput$ = [3, n0, _GSAO,
|
|
748
|
-
0,
|
|
749
|
-
[_SI, _ATd, _A],
|
|
750
|
-
[0, 0, () => Address$]
|
|
751
|
-
];
|
|
752
|
-
var GetSiteInput$ = [3, n0, _GSI,
|
|
753
|
-
0,
|
|
754
|
-
[_SI],
|
|
755
|
-
[[0, 1]], 1
|
|
756
|
-
];
|
|
757
|
-
var GetSiteOutput$ = [3, n0, _GSO,
|
|
758
|
-
0,
|
|
759
|
-
[_Si],
|
|
760
|
-
[() => Site$]
|
|
761
|
-
];
|
|
762
|
-
var InstancesToExclude$ = [3, n0, _ITE,
|
|
763
|
-
0,
|
|
764
|
-
[_I, _AIcc, _Se],
|
|
765
|
-
[64 | 0, 64 | 0, 64 | 0]
|
|
766
|
-
];
|
|
767
|
-
var InstanceTypeCapacity$ = [3, n0, _ITCn,
|
|
768
|
-
0,
|
|
769
|
-
[_IT, _Co],
|
|
770
|
-
[0, 1], 2
|
|
771
|
-
];
|
|
772
|
-
var InstanceTypeItem$ = [3, n0, _ITI,
|
|
773
|
-
0,
|
|
774
|
-
[_IT, _VCPU],
|
|
775
|
-
[0, 1]
|
|
776
|
-
];
|
|
777
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
778
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
779
|
-
[_M],
|
|
780
|
-
[0]
|
|
781
|
-
];
|
|
782
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
783
|
-
var LineItem$ = [3, n0, _LIi,
|
|
784
|
-
0,
|
|
785
|
-
[_CII, _LII, _Q, _St, _SIh, _AIL, _PLII, _POI],
|
|
786
|
-
[0, 0, 1, 0, () => ShipmentInformation$, () => LineItemAssetInformationList, 0, 0]
|
|
787
|
-
];
|
|
788
|
-
var LineItemAssetInformation$ = [3, n0, _LIAI,
|
|
789
|
-
0,
|
|
790
|
-
[_AIs, _MAL],
|
|
791
|
-
[0, 64 | 0]
|
|
792
|
-
];
|
|
793
|
-
var LineItemRequest$ = [3, n0, _LIR,
|
|
794
|
-
0,
|
|
795
|
-
[_CII, _Q],
|
|
796
|
-
[0, 1]
|
|
797
|
-
];
|
|
798
|
-
var ListAssetInstancesInput$ = [3, n0, _LAII,
|
|
799
|
-
0,
|
|
800
|
-
[_OI, _AIF, _ITF, _AIFc, _ASF, _MR, _NT],
|
|
801
|
-
[[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
|
|
802
|
-
];
|
|
803
|
-
var ListAssetInstancesOutput$ = [3, n0, _LAIO,
|
|
804
|
-
0,
|
|
805
|
-
[_AIsse, _NT],
|
|
806
|
-
[() => AssetInstanceList, 0]
|
|
807
|
-
];
|
|
808
|
-
var ListAssetsInput$ = [3, n0, _LAI,
|
|
809
|
-
0,
|
|
810
|
-
[_OI, _HIF, _MR, _NT, _SF],
|
|
811
|
-
[[0, 1], [64 | 0, { [_hQ]: _HIF }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }], [64 | 0, { [_hQ]: _SF }]], 1
|
|
812
|
-
];
|
|
813
|
-
var ListAssetsOutput$ = [3, n0, _LAO,
|
|
814
|
-
0,
|
|
815
|
-
[_As, _NT],
|
|
816
|
-
[() => AssetListDefinition, 0]
|
|
817
|
-
];
|
|
818
|
-
var ListBlockingInstancesForCapacityTaskInput$ = [3, n0, _LBIFCTI,
|
|
819
|
-
0,
|
|
820
|
-
[_OI, _CTI, _MR, _NT],
|
|
821
|
-
[[0, 1], [0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 2
|
|
822
|
-
];
|
|
823
|
-
var ListBlockingInstancesForCapacityTaskOutput$ = [3, n0, _LBIFCTO,
|
|
824
|
-
0,
|
|
825
|
-
[_BIl, _NT],
|
|
826
|
-
[() => BlockingInstancesList, 0]
|
|
827
|
-
];
|
|
828
|
-
var ListCapacityTasksInput$ = [3, n0, _LCTI,
|
|
829
|
-
0,
|
|
830
|
-
[_OIF, _MR, _NT, _CTSF],
|
|
831
|
-
[[0, { [_hQ]: _OIF }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }], [64 | 0, { [_hQ]: _CTSF }]]
|
|
832
|
-
];
|
|
833
|
-
var ListCapacityTasksOutput$ = [3, n0, _LCTO,
|
|
834
|
-
0,
|
|
835
|
-
[_CT, _NT],
|
|
836
|
-
[() => CapacityTaskList, 0]
|
|
837
|
-
];
|
|
838
|
-
var ListCatalogItemsInput$ = [3, n0, _LCII,
|
|
839
|
-
0,
|
|
840
|
-
[_NT, _MR, _ICF, _SSF, _ECFF],
|
|
841
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [64 | 0, { [_hQ]: _ICF }], [64 | 0, { [_hQ]: _SSF }], [64 | 0, { [_hQ]: _ECFF }]]
|
|
842
|
-
];
|
|
843
|
-
var ListCatalogItemsOutput$ = [3, n0, _LCIO,
|
|
844
|
-
0,
|
|
845
|
-
[_CIa, _NT],
|
|
846
|
-
[() => CatalogItemListDefinition, 0]
|
|
847
|
-
];
|
|
848
|
-
var ListOrdersInput$ = [3, n0, _LOI,
|
|
849
|
-
0,
|
|
850
|
-
[_OIF, _NT, _MR],
|
|
851
|
-
[[0, { [_hQ]: _OIF }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
852
|
-
];
|
|
853
|
-
var ListOrdersOutput$ = [3, n0, _LOO,
|
|
854
|
-
0,
|
|
855
|
-
[_Or, _NT],
|
|
856
|
-
[() => OrderSummaryListDefinition, 0]
|
|
857
|
-
];
|
|
858
|
-
var ListOutpostsInput$ = [3, n0, _LOIi,
|
|
859
|
-
0,
|
|
860
|
-
[_NT, _MR, _LCSF, _AZF, _AZIF],
|
|
861
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [64 | 0, { [_hQ]: _LCSF }], [64 | 0, { [_hQ]: _AZF }], [64 | 0, { [_hQ]: _AZIF }]]
|
|
862
|
-
];
|
|
863
|
-
var ListOutpostsOutput$ = [3, n0, _LOOi,
|
|
864
|
-
0,
|
|
865
|
-
[_Out, _NT],
|
|
866
|
-
[() => outpostListDefinition, 0]
|
|
867
|
-
];
|
|
868
|
-
var ListSitesInput$ = [3, n0, _LSI,
|
|
869
|
-
0,
|
|
870
|
-
[_NT, _MR, _OACCF, _OASORF, _OACF],
|
|
871
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [64 | 0, { [_hQ]: _OACCF }], [64 | 0, { [_hQ]: _OASORF }], [64 | 0, { [_hQ]: _OACF }]]
|
|
872
|
-
];
|
|
873
|
-
var ListSitesOutput$ = [3, n0, _LSO,
|
|
874
|
-
0,
|
|
875
|
-
[_Sit, _NT],
|
|
876
|
-
[() => siteListDefinition, 0]
|
|
877
|
-
];
|
|
878
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
879
|
-
0,
|
|
880
|
-
[_RA],
|
|
881
|
-
[[0, 1]], 1
|
|
882
|
-
];
|
|
883
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
884
|
-
0,
|
|
885
|
-
[_Ta],
|
|
886
|
-
[128 | 0]
|
|
887
|
-
];
|
|
888
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
889
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
890
|
-
[_M],
|
|
891
|
-
[0]
|
|
892
|
-
];
|
|
893
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
894
|
-
var Order$ = [3, n0, _O,
|
|
895
|
-
0,
|
|
896
|
-
[_OIu, _OIr, _St, _LI, _PO, _OSD, _OFD, _PT, _OT],
|
|
897
|
-
[0, 0, 0, () => LineItemListDefinition, 0, 4, 4, 0, 0]
|
|
898
|
-
];
|
|
899
|
-
var OrderSummary$ = [3, n0, _OS,
|
|
900
|
-
0,
|
|
901
|
-
[_OIu, _OIr, _OT, _St, _LICBS, _OSD, _OFD],
|
|
902
|
-
[0, 0, 0, 0, 128 | 1, 4, 4]
|
|
903
|
-
];
|
|
904
|
-
var Outpost$ = [3, n0, _Ou,
|
|
905
|
-
0,
|
|
906
|
-
[_OIu, _OIw, _OAu, _SI, _N, _D, _LCS, _AZ, _AZI, _Ta, _SAi, _SHT],
|
|
907
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 0, 0]
|
|
908
|
-
];
|
|
909
|
-
var RackPhysicalProperties$ = [3, n0, _RPP,
|
|
910
|
-
0,
|
|
911
|
-
[_PDK, _PP, _PCo, _PFD, _UG, _UC, _FOCT, _OSp, _MSWL],
|
|
912
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
913
|
-
];
|
|
914
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
915
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
916
|
-
[_M],
|
|
917
|
-
[0]
|
|
918
|
-
];
|
|
919
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
920
|
-
var ShipmentInformation$ = [3, n0, _SIh,
|
|
921
|
-
0,
|
|
922
|
-
[_STN, _SC],
|
|
923
|
-
[0, 0]
|
|
924
|
-
];
|
|
925
|
-
var Site$ = [3, n0, _Si,
|
|
926
|
-
0,
|
|
927
|
-
[_SI, _AIc, _N, _D, _Ta, _SAi, _No, _OACC, _OASOR, _OAC, _RPP],
|
|
928
|
-
[0, 0, 0, 0, 128 | 0, 0, 0, 0, 0, 0, () => RackPhysicalProperties$]
|
|
929
|
-
];
|
|
930
|
-
var StartCapacityTaskInput$ = [3, n0, _SCTI,
|
|
931
|
-
0,
|
|
932
|
-
[_OI, _IP, _OIr, _AIs, _ITE, _DR, _TAOBI],
|
|
933
|
-
[[0, 1], () => RequestedInstancePools, 0, 0, () => InstancesToExclude$, 2, 0], 2
|
|
934
|
-
];
|
|
935
|
-
var StartCapacityTaskOutput$ = [3, n0, _SCTO,
|
|
936
|
-
0,
|
|
937
|
-
[_CTI, _OIu, _OIr, _AIs, _RIP, _ITE, _DR, _CTSa, _Fa, _CD, _CDo, _LMD, _TAOBI],
|
|
938
|
-
[0, 0, 0, 0, () => RequestedInstancePools, () => InstancesToExclude$, 2, 0, () => CapacityTaskFailure$, 4, 4, 4, 0]
|
|
939
|
-
];
|
|
940
|
-
var StartConnectionRequest$ = [3, n0, _SCR,
|
|
941
|
-
0,
|
|
942
|
-
[_AIs, _CPK, _NIDI, _DSN],
|
|
943
|
-
[0, 0, 1, 0], 3
|
|
944
|
-
];
|
|
945
|
-
var StartConnectionResponse$ = [3, n0, _SCRt,
|
|
946
|
-
0,
|
|
947
|
-
[_CIo, _UIA],
|
|
948
|
-
[0, 0]
|
|
949
|
-
];
|
|
950
|
-
var StartOutpostDecommissionInput$ = [3, n0, _SODI,
|
|
951
|
-
0,
|
|
952
|
-
[_OI, _VO],
|
|
953
|
-
[[0, 1], 2], 1
|
|
954
|
-
];
|
|
955
|
-
var StartOutpostDecommissionOutput$ = [3, n0, _SODO,
|
|
956
|
-
0,
|
|
957
|
-
[_St, _BRT],
|
|
958
|
-
[0, 64 | 0]
|
|
959
|
-
];
|
|
960
|
-
var Subscription$ = [3, n0, _Sub,
|
|
961
|
-
0,
|
|
962
|
-
[_SIu, _ST, _SSu, _OIrd, _BD, _ED, _MRP, _UP],
|
|
963
|
-
[0, 0, 0, 64 | 0, 4, 4, 1, 1]
|
|
964
|
-
];
|
|
965
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
966
|
-
0,
|
|
967
|
-
[_RA, _Ta],
|
|
968
|
-
[[0, 1], 128 | 0], 2
|
|
969
|
-
];
|
|
970
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
971
|
-
0,
|
|
972
|
-
[],
|
|
973
|
-
[]
|
|
974
|
-
];
|
|
975
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
976
|
-
0,
|
|
977
|
-
[_RA, _TK],
|
|
978
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
979
|
-
];
|
|
980
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
981
|
-
0,
|
|
982
|
-
[],
|
|
983
|
-
[]
|
|
984
|
-
];
|
|
985
|
-
var UpdateOutpostInput$ = [3, n0, _UOI,
|
|
986
|
-
0,
|
|
987
|
-
[_OIu, _N, _D, _SHT],
|
|
988
|
-
[[0, 1], 0, 0, 0], 1
|
|
989
|
-
];
|
|
990
|
-
var UpdateOutpostOutput$ = [3, n0, _UOO,
|
|
991
|
-
0,
|
|
992
|
-
[_Ou],
|
|
993
|
-
[() => Outpost$]
|
|
994
|
-
];
|
|
995
|
-
var UpdateSiteAddressInput$ = [3, n0, _USAI,
|
|
996
|
-
0,
|
|
997
|
-
[_SI, _ATd, _A],
|
|
998
|
-
[[0, 1], 0, () => Address$], 3
|
|
999
|
-
];
|
|
1000
|
-
var UpdateSiteAddressOutput$ = [3, n0, _USAO,
|
|
1001
|
-
0,
|
|
1002
|
-
[_ATd, _A],
|
|
1003
|
-
[0, () => Address$]
|
|
1004
|
-
];
|
|
1005
|
-
var UpdateSiteInput$ = [3, n0, _USI,
|
|
1006
|
-
0,
|
|
1007
|
-
[_SI, _N, _D, _No],
|
|
1008
|
-
[[0, 1], 0, 0, 0], 1
|
|
1009
|
-
];
|
|
1010
|
-
var UpdateSiteOutput$ = [3, n0, _USO,
|
|
1011
|
-
0,
|
|
1012
|
-
[_Si],
|
|
1013
|
-
[() => Site$]
|
|
1014
|
-
];
|
|
1015
|
-
var UpdateSiteRackPhysicalPropertiesInput$ = [3, n0, _USRPPI,
|
|
1016
|
-
0,
|
|
1017
|
-
[_SI, _PDK, _PP, _PCo, _PFD, _UG, _UC, _FOCT, _OSp, _MSWL],
|
|
1018
|
-
[[0, 1], 0, 0, 0, 0, 0, 0, 0, 0, 0], 1
|
|
1019
|
-
];
|
|
1020
|
-
var UpdateSiteRackPhysicalPropertiesOutput$ = [3, n0, _USRPPO,
|
|
1021
|
-
0,
|
|
1022
|
-
[_Si],
|
|
1023
|
-
[() => Site$]
|
|
1024
|
-
];
|
|
1025
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1026
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1027
|
-
[_M],
|
|
1028
|
-
[0]
|
|
1029
|
-
];
|
|
1030
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1031
|
-
var OutpostsServiceException$ = [-3, _sm, "OutpostsServiceException", 0, [], []];
|
|
1032
|
-
schema.TypeRegistry.for(_sm).registerError(OutpostsServiceException$, OutpostsServiceException);
|
|
1033
|
-
var AssetInstanceCapacityList = [1, n0, _AICL,
|
|
1034
|
-
0, () => AssetInstanceTypeCapacity$
|
|
1035
|
-
];
|
|
1036
|
-
var AssetInstanceList = [1, n0, _AILs,
|
|
1037
|
-
0, () => AssetInstance$
|
|
1038
|
-
];
|
|
1039
|
-
var AssetListDefinition = [1, n0, _ALD,
|
|
1040
|
-
0, () => AssetInfo$
|
|
1041
|
-
];
|
|
1042
|
-
var BlockingInstancesList = [1, n0, _BIL,
|
|
1043
|
-
0, () => BlockingInstance$
|
|
1044
|
-
];
|
|
1045
|
-
var CapacityTaskList = [1, n0, _CTL,
|
|
1046
|
-
0, () => CapacityTaskSummary$
|
|
1047
|
-
];
|
|
1048
|
-
var CatalogItemListDefinition = [1, n0, _CILD,
|
|
1049
|
-
0, () => CatalogItem$
|
|
1050
|
-
];
|
|
1051
|
-
var EC2CapacityListDefinition = [1, n0, _ECCLD,
|
|
1052
|
-
0, () => EC2Capacity$
|
|
1053
|
-
];
|
|
1054
|
-
var InstanceTypeListDefinition = [1, n0, _ITLD,
|
|
1055
|
-
0, () => InstanceTypeItem$
|
|
1056
|
-
];
|
|
1057
|
-
var LineItemAssetInformationList = [1, n0, _LIAIL,
|
|
1058
|
-
0, () => LineItemAssetInformation$
|
|
1059
|
-
];
|
|
1060
|
-
var LineItemListDefinition = [1, n0, _LILD,
|
|
1061
|
-
0, () => LineItem$
|
|
1062
|
-
];
|
|
1063
|
-
var LineItemRequestListDefinition = [1, n0, _LIRLD,
|
|
1064
|
-
0, () => LineItemRequest$
|
|
1065
|
-
];
|
|
1066
|
-
var OrderSummaryListDefinition = [1, n0, _OSLD,
|
|
1067
|
-
0, () => OrderSummary$
|
|
1068
|
-
];
|
|
1069
|
-
var outpostListDefinition = [1, n0, _oLD,
|
|
1070
|
-
0, () => Outpost$
|
|
1071
|
-
];
|
|
1072
|
-
var RequestedInstancePools = [1, n0, _RIP,
|
|
1073
|
-
0, () => InstanceTypeCapacity$
|
|
1074
|
-
];
|
|
1075
|
-
var siteListDefinition = [1, n0, _sLD,
|
|
1076
|
-
0, () => Site$
|
|
1077
|
-
];
|
|
1078
|
-
var SubscriptionList = [1, n0, _SL,
|
|
1079
|
-
0, () => Subscription$
|
|
1080
|
-
];
|
|
1081
|
-
var CancelCapacityTask$ = [9, n0, _CCT,
|
|
1082
|
-
{ [_h]: ["POST", "/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}", 200] }, () => CancelCapacityTaskInput$, () => CancelCapacityTaskOutput$
|
|
1083
|
-
];
|
|
1084
|
-
var CancelOrder$ = [9, n0, _CO,
|
|
1085
|
-
{ [_h]: ["POST", "/orders/{OrderId}/cancel", 200] }, () => CancelOrderInput$, () => CancelOrderOutput$
|
|
1086
|
-
];
|
|
1087
|
-
var CreateOrder$ = [9, n0, _COr,
|
|
1088
|
-
{ [_h]: ["POST", "/orders", 200] }, () => CreateOrderInput$, () => CreateOrderOutput$
|
|
1089
|
-
];
|
|
1090
|
-
var CreateOutpost$ = [9, n0, _COre,
|
|
1091
|
-
{ [_h]: ["POST", "/outposts", 200] }, () => CreateOutpostInput$, () => CreateOutpostOutput$
|
|
1092
|
-
];
|
|
1093
|
-
var CreateSite$ = [9, n0, _CS,
|
|
1094
|
-
{ [_h]: ["POST", "/sites", 200] }, () => CreateSiteInput$, () => CreateSiteOutput$
|
|
1095
|
-
];
|
|
1096
|
-
var DeleteOutpost$ = [9, n0, _DO,
|
|
1097
|
-
{ [_h]: ["DELETE", "/outposts/{OutpostId}", 200] }, () => DeleteOutpostInput$, () => DeleteOutpostOutput$
|
|
1098
|
-
];
|
|
1099
|
-
var DeleteSite$ = [9, n0, _DS,
|
|
1100
|
-
{ [_h]: ["DELETE", "/sites/{SiteId}", 200] }, () => DeleteSiteInput$, () => DeleteSiteOutput$
|
|
1101
|
-
];
|
|
1102
|
-
var GetCapacityTask$ = [9, n0, _GCT,
|
|
1103
|
-
{ [_h]: ["GET", "/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}", 200] }, () => GetCapacityTaskInput$, () => GetCapacityTaskOutput$
|
|
1104
|
-
];
|
|
1105
|
-
var GetCatalogItem$ = [9, n0, _GCI,
|
|
1106
|
-
{ [_h]: ["GET", "/catalog/item/{CatalogItemId}", 200] }, () => GetCatalogItemInput$, () => GetCatalogItemOutput$
|
|
1107
|
-
];
|
|
1108
|
-
var GetConnection$ = [9, n0, _GC,
|
|
1109
|
-
{ [_h]: ["GET", "/connections/{ConnectionId}", 200] }, () => GetConnectionRequest$, () => GetConnectionResponse$
|
|
1110
|
-
];
|
|
1111
|
-
var GetOrder$ = [9, n0, _GO,
|
|
1112
|
-
{ [_h]: ["GET", "/orders/{OrderId}", 200] }, () => GetOrderInput$, () => GetOrderOutput$
|
|
1113
|
-
];
|
|
1114
|
-
var GetOutpost$ = [9, n0, _GOe,
|
|
1115
|
-
{ [_h]: ["GET", "/outposts/{OutpostId}", 200] }, () => GetOutpostInput$, () => GetOutpostOutput$
|
|
1116
|
-
];
|
|
1117
|
-
var GetOutpostBillingInformation$ = [9, n0, _GOBI,
|
|
1118
|
-
{ [_h]: ["GET", "/outpost/{OutpostIdentifier}/billing-information", 200] }, () => GetOutpostBillingInformationInput$, () => GetOutpostBillingInformationOutput$
|
|
1119
|
-
];
|
|
1120
|
-
var GetOutpostInstanceTypes$ = [9, n0, _GOIT,
|
|
1121
|
-
{ [_h]: ["GET", "/outposts/{OutpostId}/instanceTypes", 200] }, () => GetOutpostInstanceTypesInput$, () => GetOutpostInstanceTypesOutput$
|
|
1122
|
-
];
|
|
1123
|
-
var GetOutpostSupportedInstanceTypes$ = [9, n0, _GOSIT,
|
|
1124
|
-
{ [_h]: ["GET", "/outposts/{OutpostIdentifier}/supportedInstanceTypes", 200] }, () => GetOutpostSupportedInstanceTypesInput$, () => GetOutpostSupportedInstanceTypesOutput$
|
|
1125
|
-
];
|
|
1126
|
-
var GetSite$ = [9, n0, _GS,
|
|
1127
|
-
{ [_h]: ["GET", "/sites/{SiteId}", 200] }, () => GetSiteInput$, () => GetSiteOutput$
|
|
1128
|
-
];
|
|
1129
|
-
var GetSiteAddress$ = [9, n0, _GSA,
|
|
1130
|
-
{ [_h]: ["GET", "/sites/{SiteId}/address", 200] }, () => GetSiteAddressInput$, () => GetSiteAddressOutput$
|
|
1131
|
-
];
|
|
1132
|
-
var ListAssetInstances$ = [9, n0, _LAIi,
|
|
1133
|
-
{ [_h]: ["GET", "/outposts/{OutpostIdentifier}/assetInstances", 200] }, () => ListAssetInstancesInput$, () => ListAssetInstancesOutput$
|
|
1134
|
-
];
|
|
1135
|
-
var ListAssets$ = [9, n0, _LA,
|
|
1136
|
-
{ [_h]: ["GET", "/outposts/{OutpostIdentifier}/assets", 200] }, () => ListAssetsInput$, () => ListAssetsOutput$
|
|
1137
|
-
];
|
|
1138
|
-
var ListBlockingInstancesForCapacityTask$ = [9, n0, _LBIFCT,
|
|
1139
|
-
{ [_h]: ["GET", "/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}/blockingInstances", 200] }, () => ListBlockingInstancesForCapacityTaskInput$, () => ListBlockingInstancesForCapacityTaskOutput$
|
|
1140
|
-
];
|
|
1141
|
-
var ListCapacityTasks$ = [9, n0, _LCT,
|
|
1142
|
-
{ [_h]: ["GET", "/capacity/tasks", 200] }, () => ListCapacityTasksInput$, () => ListCapacityTasksOutput$
|
|
1143
|
-
];
|
|
1144
|
-
var ListCatalogItems$ = [9, n0, _LCI,
|
|
1145
|
-
{ [_h]: ["GET", "/catalog/items", 200] }, () => ListCatalogItemsInput$, () => ListCatalogItemsOutput$
|
|
1146
|
-
];
|
|
1147
|
-
var ListOrders$ = [9, n0, _LO,
|
|
1148
|
-
{ [_h]: ["GET", "/list-orders", 200] }, () => ListOrdersInput$, () => ListOrdersOutput$
|
|
1149
|
-
];
|
|
1150
|
-
var ListOutposts$ = [9, n0, _LOi,
|
|
1151
|
-
{ [_h]: ["GET", "/outposts", 200] }, () => ListOutpostsInput$, () => ListOutpostsOutput$
|
|
1152
|
-
];
|
|
1153
|
-
var ListSites$ = [9, n0, _LS,
|
|
1154
|
-
{ [_h]: ["GET", "/sites", 200] }, () => ListSitesInput$, () => ListSitesOutput$
|
|
1155
|
-
];
|
|
1156
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1157
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1158
|
-
];
|
|
1159
|
-
var StartCapacityTask$ = [9, n0, _SCT,
|
|
1160
|
-
{ [_h]: ["POST", "/outposts/{OutpostIdentifier}/capacity", 200] }, () => StartCapacityTaskInput$, () => StartCapacityTaskOutput$
|
|
1161
|
-
];
|
|
1162
|
-
var StartConnection$ = [9, n0, _SCt,
|
|
1163
|
-
{ [_h]: ["POST", "/connections", 200] }, () => StartConnectionRequest$, () => StartConnectionResponse$
|
|
1164
|
-
];
|
|
1165
|
-
var StartOutpostDecommission$ = [9, n0, _SOD,
|
|
1166
|
-
{ [_h]: ["POST", "/outposts/{OutpostIdentifier}/decommission", 200] }, () => StartOutpostDecommissionInput$, () => StartOutpostDecommissionOutput$
|
|
1167
|
-
];
|
|
1168
|
-
var TagResource$ = [9, n0, _TR,
|
|
1169
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1170
|
-
];
|
|
1171
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1172
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1173
|
-
];
|
|
1174
|
-
var UpdateOutpost$ = [9, n0, _UO,
|
|
1175
|
-
{ [_h]: ["PATCH", "/outposts/{OutpostId}", 200] }, () => UpdateOutpostInput$, () => UpdateOutpostOutput$
|
|
1176
|
-
];
|
|
1177
|
-
var UpdateSite$ = [9, n0, _US,
|
|
1178
|
-
{ [_h]: ["PATCH", "/sites/{SiteId}", 200] }, () => UpdateSiteInput$, () => UpdateSiteOutput$
|
|
1179
|
-
];
|
|
1180
|
-
var UpdateSiteAddress$ = [9, n0, _USA,
|
|
1181
|
-
{ [_h]: ["PUT", "/sites/{SiteId}/address", 200] }, () => UpdateSiteAddressInput$, () => UpdateSiteAddressOutput$
|
|
1182
|
-
];
|
|
1183
|
-
var UpdateSiteRackPhysicalProperties$ = [9, n0, _USRPP,
|
|
1184
|
-
{ [_h]: ["PATCH", "/sites/{SiteId}/rackPhysicalProperties", 200] }, () => UpdateSiteRackPhysicalPropertiesInput$, () => UpdateSiteRackPhysicalPropertiesOutput$
|
|
1185
|
-
];
|
|
1186
|
-
|
|
1187
116
|
class CancelCapacityTaskCommand extends smithyClient.Command
|
|
1188
117
|
.classBuilder()
|
|
1189
118
|
.ep(commonParams)
|
|
@@ -1192,7 +121,7 @@ class CancelCapacityTaskCommand extends smithyClient.Command
|
|
|
1192
121
|
})
|
|
1193
122
|
.s("OutpostsOlafService", "CancelCapacityTask", {})
|
|
1194
123
|
.n("OutpostsClient", "CancelCapacityTaskCommand")
|
|
1195
|
-
.sc(CancelCapacityTask$)
|
|
124
|
+
.sc(schemas_0.CancelCapacityTask$)
|
|
1196
125
|
.build() {
|
|
1197
126
|
}
|
|
1198
127
|
|
|
@@ -1204,7 +133,7 @@ class CancelOrderCommand extends smithyClient.Command
|
|
|
1204
133
|
})
|
|
1205
134
|
.s("OutpostsOlafService", "CancelOrder", {})
|
|
1206
135
|
.n("OutpostsClient", "CancelOrderCommand")
|
|
1207
|
-
.sc(CancelOrder$)
|
|
136
|
+
.sc(schemas_0.CancelOrder$)
|
|
1208
137
|
.build() {
|
|
1209
138
|
}
|
|
1210
139
|
|
|
@@ -1216,7 +145,7 @@ class CreateOrderCommand extends smithyClient.Command
|
|
|
1216
145
|
})
|
|
1217
146
|
.s("OutpostsOlafService", "CreateOrder", {})
|
|
1218
147
|
.n("OutpostsClient", "CreateOrderCommand")
|
|
1219
|
-
.sc(CreateOrder$)
|
|
148
|
+
.sc(schemas_0.CreateOrder$)
|
|
1220
149
|
.build() {
|
|
1221
150
|
}
|
|
1222
151
|
|
|
@@ -1228,7 +157,7 @@ class CreateOutpostCommand extends smithyClient.Command
|
|
|
1228
157
|
})
|
|
1229
158
|
.s("OutpostsOlafService", "CreateOutpost", {})
|
|
1230
159
|
.n("OutpostsClient", "CreateOutpostCommand")
|
|
1231
|
-
.sc(CreateOutpost$)
|
|
160
|
+
.sc(schemas_0.CreateOutpost$)
|
|
1232
161
|
.build() {
|
|
1233
162
|
}
|
|
1234
163
|
|
|
@@ -1240,7 +169,7 @@ class CreateSiteCommand extends smithyClient.Command
|
|
|
1240
169
|
})
|
|
1241
170
|
.s("OutpostsOlafService", "CreateSite", {})
|
|
1242
171
|
.n("OutpostsClient", "CreateSiteCommand")
|
|
1243
|
-
.sc(CreateSite$)
|
|
172
|
+
.sc(schemas_0.CreateSite$)
|
|
1244
173
|
.build() {
|
|
1245
174
|
}
|
|
1246
175
|
|
|
@@ -1252,7 +181,7 @@ class DeleteOutpostCommand extends smithyClient.Command
|
|
|
1252
181
|
})
|
|
1253
182
|
.s("OutpostsOlafService", "DeleteOutpost", {})
|
|
1254
183
|
.n("OutpostsClient", "DeleteOutpostCommand")
|
|
1255
|
-
.sc(DeleteOutpost$)
|
|
184
|
+
.sc(schemas_0.DeleteOutpost$)
|
|
1256
185
|
.build() {
|
|
1257
186
|
}
|
|
1258
187
|
|
|
@@ -1264,7 +193,7 @@ class DeleteSiteCommand extends smithyClient.Command
|
|
|
1264
193
|
})
|
|
1265
194
|
.s("OutpostsOlafService", "DeleteSite", {})
|
|
1266
195
|
.n("OutpostsClient", "DeleteSiteCommand")
|
|
1267
|
-
.sc(DeleteSite$)
|
|
196
|
+
.sc(schemas_0.DeleteSite$)
|
|
1268
197
|
.build() {
|
|
1269
198
|
}
|
|
1270
199
|
|
|
@@ -1276,7 +205,7 @@ class GetCapacityTaskCommand extends smithyClient.Command
|
|
|
1276
205
|
})
|
|
1277
206
|
.s("OutpostsOlafService", "GetCapacityTask", {})
|
|
1278
207
|
.n("OutpostsClient", "GetCapacityTaskCommand")
|
|
1279
|
-
.sc(GetCapacityTask$)
|
|
208
|
+
.sc(schemas_0.GetCapacityTask$)
|
|
1280
209
|
.build() {
|
|
1281
210
|
}
|
|
1282
211
|
|
|
@@ -1288,7 +217,7 @@ class GetCatalogItemCommand extends smithyClient.Command
|
|
|
1288
217
|
})
|
|
1289
218
|
.s("OutpostsOlafService", "GetCatalogItem", {})
|
|
1290
219
|
.n("OutpostsClient", "GetCatalogItemCommand")
|
|
1291
|
-
.sc(GetCatalogItem$)
|
|
220
|
+
.sc(schemas_0.GetCatalogItem$)
|
|
1292
221
|
.build() {
|
|
1293
222
|
}
|
|
1294
223
|
|
|
@@ -1300,7 +229,7 @@ class GetConnectionCommand extends smithyClient.Command
|
|
|
1300
229
|
})
|
|
1301
230
|
.s("OutpostsOlafService", "GetConnection", {})
|
|
1302
231
|
.n("OutpostsClient", "GetConnectionCommand")
|
|
1303
|
-
.sc(GetConnection$)
|
|
232
|
+
.sc(schemas_0.GetConnection$)
|
|
1304
233
|
.build() {
|
|
1305
234
|
}
|
|
1306
235
|
|
|
@@ -1312,7 +241,7 @@ class GetOrderCommand extends smithyClient.Command
|
|
|
1312
241
|
})
|
|
1313
242
|
.s("OutpostsOlafService", "GetOrder", {})
|
|
1314
243
|
.n("OutpostsClient", "GetOrderCommand")
|
|
1315
|
-
.sc(GetOrder$)
|
|
244
|
+
.sc(schemas_0.GetOrder$)
|
|
1316
245
|
.build() {
|
|
1317
246
|
}
|
|
1318
247
|
|
|
@@ -1324,7 +253,7 @@ class GetOutpostBillingInformationCommand extends smithyClient.Command
|
|
|
1324
253
|
})
|
|
1325
254
|
.s("OutpostsOlafService", "GetOutpostBillingInformation", {})
|
|
1326
255
|
.n("OutpostsClient", "GetOutpostBillingInformationCommand")
|
|
1327
|
-
.sc(GetOutpostBillingInformation$)
|
|
256
|
+
.sc(schemas_0.GetOutpostBillingInformation$)
|
|
1328
257
|
.build() {
|
|
1329
258
|
}
|
|
1330
259
|
|
|
@@ -1336,7 +265,7 @@ class GetOutpostCommand extends smithyClient.Command
|
|
|
1336
265
|
})
|
|
1337
266
|
.s("OutpostsOlafService", "GetOutpost", {})
|
|
1338
267
|
.n("OutpostsClient", "GetOutpostCommand")
|
|
1339
|
-
.sc(GetOutpost$)
|
|
268
|
+
.sc(schemas_0.GetOutpost$)
|
|
1340
269
|
.build() {
|
|
1341
270
|
}
|
|
1342
271
|
|
|
@@ -1348,7 +277,7 @@ class GetOutpostInstanceTypesCommand extends smithyClient.Command
|
|
|
1348
277
|
})
|
|
1349
278
|
.s("OutpostsOlafService", "GetOutpostInstanceTypes", {})
|
|
1350
279
|
.n("OutpostsClient", "GetOutpostInstanceTypesCommand")
|
|
1351
|
-
.sc(GetOutpostInstanceTypes$)
|
|
280
|
+
.sc(schemas_0.GetOutpostInstanceTypes$)
|
|
1352
281
|
.build() {
|
|
1353
282
|
}
|
|
1354
283
|
|
|
@@ -1360,7 +289,7 @@ class GetOutpostSupportedInstanceTypesCommand extends smithyClient.Command
|
|
|
1360
289
|
})
|
|
1361
290
|
.s("OutpostsOlafService", "GetOutpostSupportedInstanceTypes", {})
|
|
1362
291
|
.n("OutpostsClient", "GetOutpostSupportedInstanceTypesCommand")
|
|
1363
|
-
.sc(GetOutpostSupportedInstanceTypes$)
|
|
292
|
+
.sc(schemas_0.GetOutpostSupportedInstanceTypes$)
|
|
1364
293
|
.build() {
|
|
1365
294
|
}
|
|
1366
295
|
|
|
@@ -1372,7 +301,7 @@ class GetSiteAddressCommand extends smithyClient.Command
|
|
|
1372
301
|
})
|
|
1373
302
|
.s("OutpostsOlafService", "GetSiteAddress", {})
|
|
1374
303
|
.n("OutpostsClient", "GetSiteAddressCommand")
|
|
1375
|
-
.sc(GetSiteAddress$)
|
|
304
|
+
.sc(schemas_0.GetSiteAddress$)
|
|
1376
305
|
.build() {
|
|
1377
306
|
}
|
|
1378
307
|
|
|
@@ -1384,7 +313,7 @@ class GetSiteCommand extends smithyClient.Command
|
|
|
1384
313
|
})
|
|
1385
314
|
.s("OutpostsOlafService", "GetSite", {})
|
|
1386
315
|
.n("OutpostsClient", "GetSiteCommand")
|
|
1387
|
-
.sc(GetSite$)
|
|
316
|
+
.sc(schemas_0.GetSite$)
|
|
1388
317
|
.build() {
|
|
1389
318
|
}
|
|
1390
319
|
|
|
@@ -1396,7 +325,7 @@ class ListAssetInstancesCommand extends smithyClient.Command
|
|
|
1396
325
|
})
|
|
1397
326
|
.s("OutpostsOlafService", "ListAssetInstances", {})
|
|
1398
327
|
.n("OutpostsClient", "ListAssetInstancesCommand")
|
|
1399
|
-
.sc(ListAssetInstances$)
|
|
328
|
+
.sc(schemas_0.ListAssetInstances$)
|
|
1400
329
|
.build() {
|
|
1401
330
|
}
|
|
1402
331
|
|
|
@@ -1408,7 +337,7 @@ class ListAssetsCommand extends smithyClient.Command
|
|
|
1408
337
|
})
|
|
1409
338
|
.s("OutpostsOlafService", "ListAssets", {})
|
|
1410
339
|
.n("OutpostsClient", "ListAssetsCommand")
|
|
1411
|
-
.sc(ListAssets$)
|
|
340
|
+
.sc(schemas_0.ListAssets$)
|
|
1412
341
|
.build() {
|
|
1413
342
|
}
|
|
1414
343
|
|
|
@@ -1420,7 +349,7 @@ class ListBlockingInstancesForCapacityTaskCommand extends smithyClient.Command
|
|
|
1420
349
|
})
|
|
1421
350
|
.s("OutpostsOlafService", "ListBlockingInstancesForCapacityTask", {})
|
|
1422
351
|
.n("OutpostsClient", "ListBlockingInstancesForCapacityTaskCommand")
|
|
1423
|
-
.sc(ListBlockingInstancesForCapacityTask$)
|
|
352
|
+
.sc(schemas_0.ListBlockingInstancesForCapacityTask$)
|
|
1424
353
|
.build() {
|
|
1425
354
|
}
|
|
1426
355
|
|
|
@@ -1432,7 +361,7 @@ class ListCapacityTasksCommand extends smithyClient.Command
|
|
|
1432
361
|
})
|
|
1433
362
|
.s("OutpostsOlafService", "ListCapacityTasks", {})
|
|
1434
363
|
.n("OutpostsClient", "ListCapacityTasksCommand")
|
|
1435
|
-
.sc(ListCapacityTasks$)
|
|
364
|
+
.sc(schemas_0.ListCapacityTasks$)
|
|
1436
365
|
.build() {
|
|
1437
366
|
}
|
|
1438
367
|
|
|
@@ -1444,7 +373,7 @@ class ListCatalogItemsCommand extends smithyClient.Command
|
|
|
1444
373
|
})
|
|
1445
374
|
.s("OutpostsOlafService", "ListCatalogItems", {})
|
|
1446
375
|
.n("OutpostsClient", "ListCatalogItemsCommand")
|
|
1447
|
-
.sc(ListCatalogItems$)
|
|
376
|
+
.sc(schemas_0.ListCatalogItems$)
|
|
1448
377
|
.build() {
|
|
1449
378
|
}
|
|
1450
379
|
|
|
@@ -1456,7 +385,7 @@ class ListOrdersCommand extends smithyClient.Command
|
|
|
1456
385
|
})
|
|
1457
386
|
.s("OutpostsOlafService", "ListOrders", {})
|
|
1458
387
|
.n("OutpostsClient", "ListOrdersCommand")
|
|
1459
|
-
.sc(ListOrders$)
|
|
388
|
+
.sc(schemas_0.ListOrders$)
|
|
1460
389
|
.build() {
|
|
1461
390
|
}
|
|
1462
391
|
|
|
@@ -1468,7 +397,7 @@ class ListOutpostsCommand extends smithyClient.Command
|
|
|
1468
397
|
})
|
|
1469
398
|
.s("OutpostsOlafService", "ListOutposts", {})
|
|
1470
399
|
.n("OutpostsClient", "ListOutpostsCommand")
|
|
1471
|
-
.sc(ListOutposts$)
|
|
400
|
+
.sc(schemas_0.ListOutposts$)
|
|
1472
401
|
.build() {
|
|
1473
402
|
}
|
|
1474
403
|
|
|
@@ -1480,7 +409,7 @@ class ListSitesCommand extends smithyClient.Command
|
|
|
1480
409
|
})
|
|
1481
410
|
.s("OutpostsOlafService", "ListSites", {})
|
|
1482
411
|
.n("OutpostsClient", "ListSitesCommand")
|
|
1483
|
-
.sc(ListSites$)
|
|
412
|
+
.sc(schemas_0.ListSites$)
|
|
1484
413
|
.build() {
|
|
1485
414
|
}
|
|
1486
415
|
|
|
@@ -1492,7 +421,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1492
421
|
})
|
|
1493
422
|
.s("OutpostsOlafService", "ListTagsForResource", {})
|
|
1494
423
|
.n("OutpostsClient", "ListTagsForResourceCommand")
|
|
1495
|
-
.sc(ListTagsForResource$)
|
|
424
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1496
425
|
.build() {
|
|
1497
426
|
}
|
|
1498
427
|
|
|
@@ -1504,7 +433,7 @@ class StartCapacityTaskCommand extends smithyClient.Command
|
|
|
1504
433
|
})
|
|
1505
434
|
.s("OutpostsOlafService", "StartCapacityTask", {})
|
|
1506
435
|
.n("OutpostsClient", "StartCapacityTaskCommand")
|
|
1507
|
-
.sc(StartCapacityTask$)
|
|
436
|
+
.sc(schemas_0.StartCapacityTask$)
|
|
1508
437
|
.build() {
|
|
1509
438
|
}
|
|
1510
439
|
|
|
@@ -1516,7 +445,7 @@ class StartConnectionCommand extends smithyClient.Command
|
|
|
1516
445
|
})
|
|
1517
446
|
.s("OutpostsOlafService", "StartConnection", {})
|
|
1518
447
|
.n("OutpostsClient", "StartConnectionCommand")
|
|
1519
|
-
.sc(StartConnection$)
|
|
448
|
+
.sc(schemas_0.StartConnection$)
|
|
1520
449
|
.build() {
|
|
1521
450
|
}
|
|
1522
451
|
|
|
@@ -1528,7 +457,7 @@ class StartOutpostDecommissionCommand extends smithyClient.Command
|
|
|
1528
457
|
})
|
|
1529
458
|
.s("OutpostsOlafService", "StartOutpostDecommission", {})
|
|
1530
459
|
.n("OutpostsClient", "StartOutpostDecommissionCommand")
|
|
1531
|
-
.sc(StartOutpostDecommission$)
|
|
460
|
+
.sc(schemas_0.StartOutpostDecommission$)
|
|
1532
461
|
.build() {
|
|
1533
462
|
}
|
|
1534
463
|
|
|
@@ -1540,7 +469,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1540
469
|
})
|
|
1541
470
|
.s("OutpostsOlafService", "TagResource", {})
|
|
1542
471
|
.n("OutpostsClient", "TagResourceCommand")
|
|
1543
|
-
.sc(TagResource$)
|
|
472
|
+
.sc(schemas_0.TagResource$)
|
|
1544
473
|
.build() {
|
|
1545
474
|
}
|
|
1546
475
|
|
|
@@ -1552,7 +481,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1552
481
|
})
|
|
1553
482
|
.s("OutpostsOlafService", "UntagResource", {})
|
|
1554
483
|
.n("OutpostsClient", "UntagResourceCommand")
|
|
1555
|
-
.sc(UntagResource$)
|
|
484
|
+
.sc(schemas_0.UntagResource$)
|
|
1556
485
|
.build() {
|
|
1557
486
|
}
|
|
1558
487
|
|
|
@@ -1564,7 +493,7 @@ class UpdateOutpostCommand extends smithyClient.Command
|
|
|
1564
493
|
})
|
|
1565
494
|
.s("OutpostsOlafService", "UpdateOutpost", {})
|
|
1566
495
|
.n("OutpostsClient", "UpdateOutpostCommand")
|
|
1567
|
-
.sc(UpdateOutpost$)
|
|
496
|
+
.sc(schemas_0.UpdateOutpost$)
|
|
1568
497
|
.build() {
|
|
1569
498
|
}
|
|
1570
499
|
|
|
@@ -1576,7 +505,7 @@ class UpdateSiteAddressCommand extends smithyClient.Command
|
|
|
1576
505
|
})
|
|
1577
506
|
.s("OutpostsOlafService", "UpdateSiteAddress", {})
|
|
1578
507
|
.n("OutpostsClient", "UpdateSiteAddressCommand")
|
|
1579
|
-
.sc(UpdateSiteAddress$)
|
|
508
|
+
.sc(schemas_0.UpdateSiteAddress$)
|
|
1580
509
|
.build() {
|
|
1581
510
|
}
|
|
1582
511
|
|
|
@@ -1588,7 +517,7 @@ class UpdateSiteCommand extends smithyClient.Command
|
|
|
1588
517
|
})
|
|
1589
518
|
.s("OutpostsOlafService", "UpdateSite", {})
|
|
1590
519
|
.n("OutpostsClient", "UpdateSiteCommand")
|
|
1591
|
-
.sc(UpdateSite$)
|
|
520
|
+
.sc(schemas_0.UpdateSite$)
|
|
1592
521
|
.build() {
|
|
1593
522
|
}
|
|
1594
523
|
|
|
@@ -1600,7 +529,7 @@ class UpdateSiteRackPhysicalPropertiesCommand extends smithyClient.Command
|
|
|
1600
529
|
})
|
|
1601
530
|
.s("OutpostsOlafService", "UpdateSiteRackPhysicalProperties", {})
|
|
1602
531
|
.n("OutpostsClient", "UpdateSiteRackPhysicalPropertiesCommand")
|
|
1603
|
-
.sc(UpdateSiteRackPhysicalProperties$)
|
|
532
|
+
.sc(schemas_0.UpdateSiteRackPhysicalProperties$)
|
|
1604
533
|
.build() {
|
|
1605
534
|
}
|
|
1606
535
|
|
|
@@ -1888,219 +817,79 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1888
817
|
enumerable: true,
|
|
1889
818
|
get: function () { return smithyClient.Client; }
|
|
1890
819
|
});
|
|
820
|
+
Object.defineProperty(exports, "OutpostsServiceException", {
|
|
821
|
+
enumerable: true,
|
|
822
|
+
get: function () { return OutpostsServiceException.OutpostsServiceException; }
|
|
823
|
+
});
|
|
1891
824
|
exports.AWSServiceName = AWSServiceName;
|
|
1892
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1893
|
-
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1894
|
-
exports.Address$ = Address$;
|
|
1895
825
|
exports.AddressType = AddressType;
|
|
1896
|
-
exports.AssetInfo$ = AssetInfo$;
|
|
1897
|
-
exports.AssetInstance$ = AssetInstance$;
|
|
1898
|
-
exports.AssetInstanceTypeCapacity$ = AssetInstanceTypeCapacity$;
|
|
1899
|
-
exports.AssetLocation$ = AssetLocation$;
|
|
1900
826
|
exports.AssetState = AssetState;
|
|
1901
827
|
exports.AssetType = AssetType;
|
|
1902
|
-
exports.BlockingInstance$ = BlockingInstance$;
|
|
1903
828
|
exports.BlockingResourceType = BlockingResourceType;
|
|
1904
|
-
exports.CancelCapacityTask$ = CancelCapacityTask$;
|
|
1905
829
|
exports.CancelCapacityTaskCommand = CancelCapacityTaskCommand;
|
|
1906
|
-
exports.CancelCapacityTaskInput$ = CancelCapacityTaskInput$;
|
|
1907
|
-
exports.CancelCapacityTaskOutput$ = CancelCapacityTaskOutput$;
|
|
1908
|
-
exports.CancelOrder$ = CancelOrder$;
|
|
1909
830
|
exports.CancelOrderCommand = CancelOrderCommand;
|
|
1910
|
-
exports.CancelOrderInput$ = CancelOrderInput$;
|
|
1911
|
-
exports.CancelOrderOutput$ = CancelOrderOutput$;
|
|
1912
|
-
exports.CapacityTaskFailure$ = CapacityTaskFailure$;
|
|
1913
831
|
exports.CapacityTaskFailureType = CapacityTaskFailureType;
|
|
1914
832
|
exports.CapacityTaskStatus = CapacityTaskStatus;
|
|
1915
|
-
exports.CapacityTaskSummary$ = CapacityTaskSummary$;
|
|
1916
|
-
exports.CatalogItem$ = CatalogItem$;
|
|
1917
833
|
exports.CatalogItemClass = CatalogItemClass;
|
|
1918
834
|
exports.CatalogItemStatus = CatalogItemStatus;
|
|
1919
835
|
exports.ComputeAssetState = ComputeAssetState;
|
|
1920
|
-
exports.ComputeAttributes$ = ComputeAttributes$;
|
|
1921
|
-
exports.ConflictException = ConflictException;
|
|
1922
|
-
exports.ConflictException$ = ConflictException$;
|
|
1923
|
-
exports.ConnectionDetails$ = ConnectionDetails$;
|
|
1924
|
-
exports.CreateOrder$ = CreateOrder$;
|
|
1925
836
|
exports.CreateOrderCommand = CreateOrderCommand;
|
|
1926
|
-
exports.CreateOrderInput$ = CreateOrderInput$;
|
|
1927
|
-
exports.CreateOrderOutput$ = CreateOrderOutput$;
|
|
1928
|
-
exports.CreateOutpost$ = CreateOutpost$;
|
|
1929
837
|
exports.CreateOutpostCommand = CreateOutpostCommand;
|
|
1930
|
-
exports.CreateOutpostInput$ = CreateOutpostInput$;
|
|
1931
|
-
exports.CreateOutpostOutput$ = CreateOutpostOutput$;
|
|
1932
|
-
exports.CreateSite$ = CreateSite$;
|
|
1933
838
|
exports.CreateSiteCommand = CreateSiteCommand;
|
|
1934
|
-
exports.CreateSiteInput$ = CreateSiteInput$;
|
|
1935
|
-
exports.CreateSiteOutput$ = CreateSiteOutput$;
|
|
1936
839
|
exports.DecommissionRequestStatus = DecommissionRequestStatus;
|
|
1937
|
-
exports.DeleteOutpost$ = DeleteOutpost$;
|
|
1938
840
|
exports.DeleteOutpostCommand = DeleteOutpostCommand;
|
|
1939
|
-
exports.DeleteOutpostInput$ = DeleteOutpostInput$;
|
|
1940
|
-
exports.DeleteOutpostOutput$ = DeleteOutpostOutput$;
|
|
1941
|
-
exports.DeleteSite$ = DeleteSite$;
|
|
1942
841
|
exports.DeleteSiteCommand = DeleteSiteCommand;
|
|
1943
|
-
exports.DeleteSiteInput$ = DeleteSiteInput$;
|
|
1944
|
-
exports.DeleteSiteOutput$ = DeleteSiteOutput$;
|
|
1945
|
-
exports.EC2Capacity$ = EC2Capacity$;
|
|
1946
842
|
exports.FiberOpticCableType = FiberOpticCableType;
|
|
1947
|
-
exports.GetCapacityTask$ = GetCapacityTask$;
|
|
1948
843
|
exports.GetCapacityTaskCommand = GetCapacityTaskCommand;
|
|
1949
|
-
exports.GetCapacityTaskInput$ = GetCapacityTaskInput$;
|
|
1950
|
-
exports.GetCapacityTaskOutput$ = GetCapacityTaskOutput$;
|
|
1951
|
-
exports.GetCatalogItem$ = GetCatalogItem$;
|
|
1952
844
|
exports.GetCatalogItemCommand = GetCatalogItemCommand;
|
|
1953
|
-
exports.GetCatalogItemInput$ = GetCatalogItemInput$;
|
|
1954
|
-
exports.GetCatalogItemOutput$ = GetCatalogItemOutput$;
|
|
1955
|
-
exports.GetConnection$ = GetConnection$;
|
|
1956
845
|
exports.GetConnectionCommand = GetConnectionCommand;
|
|
1957
|
-
exports.GetConnectionRequest$ = GetConnectionRequest$;
|
|
1958
|
-
exports.GetConnectionResponse$ = GetConnectionResponse$;
|
|
1959
|
-
exports.GetOrder$ = GetOrder$;
|
|
1960
846
|
exports.GetOrderCommand = GetOrderCommand;
|
|
1961
|
-
exports.GetOrderInput$ = GetOrderInput$;
|
|
1962
|
-
exports.GetOrderOutput$ = GetOrderOutput$;
|
|
1963
|
-
exports.GetOutpost$ = GetOutpost$;
|
|
1964
|
-
exports.GetOutpostBillingInformation$ = GetOutpostBillingInformation$;
|
|
1965
847
|
exports.GetOutpostBillingInformationCommand = GetOutpostBillingInformationCommand;
|
|
1966
|
-
exports.GetOutpostBillingInformationInput$ = GetOutpostBillingInformationInput$;
|
|
1967
|
-
exports.GetOutpostBillingInformationOutput$ = GetOutpostBillingInformationOutput$;
|
|
1968
848
|
exports.GetOutpostCommand = GetOutpostCommand;
|
|
1969
|
-
exports.GetOutpostInput$ = GetOutpostInput$;
|
|
1970
|
-
exports.GetOutpostInstanceTypes$ = GetOutpostInstanceTypes$;
|
|
1971
849
|
exports.GetOutpostInstanceTypesCommand = GetOutpostInstanceTypesCommand;
|
|
1972
|
-
exports.GetOutpostInstanceTypesInput$ = GetOutpostInstanceTypesInput$;
|
|
1973
|
-
exports.GetOutpostInstanceTypesOutput$ = GetOutpostInstanceTypesOutput$;
|
|
1974
|
-
exports.GetOutpostOutput$ = GetOutpostOutput$;
|
|
1975
|
-
exports.GetOutpostSupportedInstanceTypes$ = GetOutpostSupportedInstanceTypes$;
|
|
1976
850
|
exports.GetOutpostSupportedInstanceTypesCommand = GetOutpostSupportedInstanceTypesCommand;
|
|
1977
|
-
exports.GetOutpostSupportedInstanceTypesInput$ = GetOutpostSupportedInstanceTypesInput$;
|
|
1978
|
-
exports.GetOutpostSupportedInstanceTypesOutput$ = GetOutpostSupportedInstanceTypesOutput$;
|
|
1979
|
-
exports.GetSite$ = GetSite$;
|
|
1980
|
-
exports.GetSiteAddress$ = GetSiteAddress$;
|
|
1981
851
|
exports.GetSiteAddressCommand = GetSiteAddressCommand;
|
|
1982
|
-
exports.GetSiteAddressInput$ = GetSiteAddressInput$;
|
|
1983
|
-
exports.GetSiteAddressOutput$ = GetSiteAddressOutput$;
|
|
1984
852
|
exports.GetSiteCommand = GetSiteCommand;
|
|
1985
|
-
exports.GetSiteInput$ = GetSiteInput$;
|
|
1986
|
-
exports.GetSiteOutput$ = GetSiteOutput$;
|
|
1987
|
-
exports.InstanceTypeCapacity$ = InstanceTypeCapacity$;
|
|
1988
|
-
exports.InstanceTypeItem$ = InstanceTypeItem$;
|
|
1989
|
-
exports.InstancesToExclude$ = InstancesToExclude$;
|
|
1990
|
-
exports.InternalServerException = InternalServerException;
|
|
1991
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1992
|
-
exports.LineItem$ = LineItem$;
|
|
1993
|
-
exports.LineItemAssetInformation$ = LineItemAssetInformation$;
|
|
1994
|
-
exports.LineItemRequest$ = LineItemRequest$;
|
|
1995
853
|
exports.LineItemStatus = LineItemStatus;
|
|
1996
|
-
exports.ListAssetInstances$ = ListAssetInstances$;
|
|
1997
854
|
exports.ListAssetInstancesCommand = ListAssetInstancesCommand;
|
|
1998
|
-
exports.ListAssetInstancesInput$ = ListAssetInstancesInput$;
|
|
1999
|
-
exports.ListAssetInstancesOutput$ = ListAssetInstancesOutput$;
|
|
2000
|
-
exports.ListAssets$ = ListAssets$;
|
|
2001
855
|
exports.ListAssetsCommand = ListAssetsCommand;
|
|
2002
|
-
exports.ListAssetsInput$ = ListAssetsInput$;
|
|
2003
|
-
exports.ListAssetsOutput$ = ListAssetsOutput$;
|
|
2004
|
-
exports.ListBlockingInstancesForCapacityTask$ = ListBlockingInstancesForCapacityTask$;
|
|
2005
856
|
exports.ListBlockingInstancesForCapacityTaskCommand = ListBlockingInstancesForCapacityTaskCommand;
|
|
2006
|
-
exports.ListBlockingInstancesForCapacityTaskInput$ = ListBlockingInstancesForCapacityTaskInput$;
|
|
2007
|
-
exports.ListBlockingInstancesForCapacityTaskOutput$ = ListBlockingInstancesForCapacityTaskOutput$;
|
|
2008
|
-
exports.ListCapacityTasks$ = ListCapacityTasks$;
|
|
2009
857
|
exports.ListCapacityTasksCommand = ListCapacityTasksCommand;
|
|
2010
|
-
exports.ListCapacityTasksInput$ = ListCapacityTasksInput$;
|
|
2011
|
-
exports.ListCapacityTasksOutput$ = ListCapacityTasksOutput$;
|
|
2012
|
-
exports.ListCatalogItems$ = ListCatalogItems$;
|
|
2013
858
|
exports.ListCatalogItemsCommand = ListCatalogItemsCommand;
|
|
2014
|
-
exports.ListCatalogItemsInput$ = ListCatalogItemsInput$;
|
|
2015
|
-
exports.ListCatalogItemsOutput$ = ListCatalogItemsOutput$;
|
|
2016
|
-
exports.ListOrders$ = ListOrders$;
|
|
2017
859
|
exports.ListOrdersCommand = ListOrdersCommand;
|
|
2018
|
-
exports.ListOrdersInput$ = ListOrdersInput$;
|
|
2019
|
-
exports.ListOrdersOutput$ = ListOrdersOutput$;
|
|
2020
|
-
exports.ListOutposts$ = ListOutposts$;
|
|
2021
860
|
exports.ListOutpostsCommand = ListOutpostsCommand;
|
|
2022
|
-
exports.ListOutpostsInput$ = ListOutpostsInput$;
|
|
2023
|
-
exports.ListOutpostsOutput$ = ListOutpostsOutput$;
|
|
2024
|
-
exports.ListSites$ = ListSites$;
|
|
2025
861
|
exports.ListSitesCommand = ListSitesCommand;
|
|
2026
|
-
exports.ListSitesInput$ = ListSitesInput$;
|
|
2027
|
-
exports.ListSitesOutput$ = ListSitesOutput$;
|
|
2028
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2029
862
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2030
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2031
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2032
863
|
exports.MaximumSupportedWeightLbs = MaximumSupportedWeightLbs;
|
|
2033
|
-
exports.NotFoundException = NotFoundException;
|
|
2034
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
2035
864
|
exports.OpticalStandard = OpticalStandard;
|
|
2036
|
-
exports.Order$ = Order$;
|
|
2037
865
|
exports.OrderStatus = OrderStatus;
|
|
2038
|
-
exports.OrderSummary$ = OrderSummary$;
|
|
2039
866
|
exports.OrderType = OrderType;
|
|
2040
|
-
exports.Outpost$ = Outpost$;
|
|
2041
867
|
exports.Outposts = Outposts;
|
|
2042
868
|
exports.OutpostsClient = OutpostsClient;
|
|
2043
|
-
exports.OutpostsServiceException = OutpostsServiceException;
|
|
2044
|
-
exports.OutpostsServiceException$ = OutpostsServiceException$;
|
|
2045
869
|
exports.PaymentOption = PaymentOption;
|
|
2046
870
|
exports.PaymentTerm = PaymentTerm;
|
|
2047
871
|
exports.PowerConnector = PowerConnector;
|
|
2048
872
|
exports.PowerDrawKva = PowerDrawKva;
|
|
2049
873
|
exports.PowerFeedDrop = PowerFeedDrop;
|
|
2050
874
|
exports.PowerPhase = PowerPhase;
|
|
2051
|
-
exports.RackPhysicalProperties$ = RackPhysicalProperties$;
|
|
2052
875
|
exports.ResourceType = ResourceType;
|
|
2053
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2054
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2055
876
|
exports.ShipmentCarrier = ShipmentCarrier;
|
|
2056
|
-
exports.ShipmentInformation$ = ShipmentInformation$;
|
|
2057
|
-
exports.Site$ = Site$;
|
|
2058
|
-
exports.StartCapacityTask$ = StartCapacityTask$;
|
|
2059
877
|
exports.StartCapacityTaskCommand = StartCapacityTaskCommand;
|
|
2060
|
-
exports.StartCapacityTaskInput$ = StartCapacityTaskInput$;
|
|
2061
|
-
exports.StartCapacityTaskOutput$ = StartCapacityTaskOutput$;
|
|
2062
|
-
exports.StartConnection$ = StartConnection$;
|
|
2063
878
|
exports.StartConnectionCommand = StartConnectionCommand;
|
|
2064
|
-
exports.StartConnectionRequest$ = StartConnectionRequest$;
|
|
2065
|
-
exports.StartConnectionResponse$ = StartConnectionResponse$;
|
|
2066
|
-
exports.StartOutpostDecommission$ = StartOutpostDecommission$;
|
|
2067
879
|
exports.StartOutpostDecommissionCommand = StartOutpostDecommissionCommand;
|
|
2068
|
-
exports.StartOutpostDecommissionInput$ = StartOutpostDecommissionInput$;
|
|
2069
|
-
exports.StartOutpostDecommissionOutput$ = StartOutpostDecommissionOutput$;
|
|
2070
|
-
exports.Subscription$ = Subscription$;
|
|
2071
880
|
exports.SubscriptionStatus = SubscriptionStatus;
|
|
2072
881
|
exports.SubscriptionType = SubscriptionType;
|
|
2073
882
|
exports.SupportedHardwareType = SupportedHardwareType;
|
|
2074
883
|
exports.SupportedStorageEnum = SupportedStorageEnum;
|
|
2075
|
-
exports.TagResource$ = TagResource$;
|
|
2076
884
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2077
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2078
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2079
885
|
exports.TaskActionOnBlockingInstances = TaskActionOnBlockingInstances;
|
|
2080
|
-
exports.UntagResource$ = UntagResource$;
|
|
2081
886
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2082
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2083
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2084
|
-
exports.UpdateOutpost$ = UpdateOutpost$;
|
|
2085
887
|
exports.UpdateOutpostCommand = UpdateOutpostCommand;
|
|
2086
|
-
exports.UpdateOutpostInput$ = UpdateOutpostInput$;
|
|
2087
|
-
exports.UpdateOutpostOutput$ = UpdateOutpostOutput$;
|
|
2088
|
-
exports.UpdateSite$ = UpdateSite$;
|
|
2089
|
-
exports.UpdateSiteAddress$ = UpdateSiteAddress$;
|
|
2090
888
|
exports.UpdateSiteAddressCommand = UpdateSiteAddressCommand;
|
|
2091
|
-
exports.UpdateSiteAddressInput$ = UpdateSiteAddressInput$;
|
|
2092
|
-
exports.UpdateSiteAddressOutput$ = UpdateSiteAddressOutput$;
|
|
2093
889
|
exports.UpdateSiteCommand = UpdateSiteCommand;
|
|
2094
|
-
exports.UpdateSiteInput$ = UpdateSiteInput$;
|
|
2095
|
-
exports.UpdateSiteOutput$ = UpdateSiteOutput$;
|
|
2096
|
-
exports.UpdateSiteRackPhysicalProperties$ = UpdateSiteRackPhysicalProperties$;
|
|
2097
890
|
exports.UpdateSiteRackPhysicalPropertiesCommand = UpdateSiteRackPhysicalPropertiesCommand;
|
|
2098
|
-
exports.UpdateSiteRackPhysicalPropertiesInput$ = UpdateSiteRackPhysicalPropertiesInput$;
|
|
2099
|
-
exports.UpdateSiteRackPhysicalPropertiesOutput$ = UpdateSiteRackPhysicalPropertiesOutput$;
|
|
2100
891
|
exports.UplinkCount = UplinkCount;
|
|
2101
892
|
exports.UplinkGbps = UplinkGbps;
|
|
2102
|
-
exports.ValidationException = ValidationException;
|
|
2103
|
-
exports.ValidationException$ = ValidationException$;
|
|
2104
893
|
exports.paginateGetOutpostBillingInformation = paginateGetOutpostBillingInformation;
|
|
2105
894
|
exports.paginateGetOutpostInstanceTypes = paginateGetOutpostInstanceTypes;
|
|
2106
895
|
exports.paginateGetOutpostSupportedInstanceTypes = paginateGetOutpostSupportedInstanceTypes;
|
|
@@ -2112,3 +901,15 @@ exports.paginateListCatalogItems = paginateListCatalogItems;
|
|
|
2112
901
|
exports.paginateListOrders = paginateListOrders;
|
|
2113
902
|
exports.paginateListOutposts = paginateListOutposts;
|
|
2114
903
|
exports.paginateListSites = paginateListSites;
|
|
904
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
905
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
906
|
+
enumerable: true,
|
|
907
|
+
get: function () { return schemas_0[k]; }
|
|
908
|
+
});
|
|
909
|
+
});
|
|
910
|
+
Object.keys(errors).forEach(function (k) {
|
|
911
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
912
|
+
enumerable: true,
|
|
913
|
+
get: function () { return errors[k]; }
|
|
914
|
+
});
|
|
915
|
+
});
|