@aws-sdk/client-outposts 3.928.0 → 3.930.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 +1518 -1485
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/OutpostsClient.js +2 -0
- package/dist-es/commands/CancelCapacityTaskCommand.js +3 -9
- package/dist-es/commands/CancelOrderCommand.js +3 -9
- package/dist-es/commands/CreateOrderCommand.js +3 -9
- package/dist-es/commands/CreateOutpostCommand.js +3 -9
- package/dist-es/commands/CreateSiteCommand.js +3 -9
- package/dist-es/commands/DeleteOutpostCommand.js +3 -9
- package/dist-es/commands/DeleteSiteCommand.js +3 -9
- package/dist-es/commands/GetCapacityTaskCommand.js +3 -9
- package/dist-es/commands/GetCatalogItemCommand.js +3 -9
- package/dist-es/commands/GetConnectionCommand.js +3 -9
- package/dist-es/commands/GetOrderCommand.js +3 -9
- package/dist-es/commands/GetOutpostBillingInformationCommand.js +3 -9
- package/dist-es/commands/GetOutpostCommand.js +3 -9
- package/dist-es/commands/GetOutpostInstanceTypesCommand.js +3 -9
- package/dist-es/commands/GetOutpostSupportedInstanceTypesCommand.js +3 -9
- package/dist-es/commands/GetSiteAddressCommand.js +3 -9
- package/dist-es/commands/GetSiteCommand.js +3 -9
- package/dist-es/commands/ListAssetInstancesCommand.js +3 -9
- package/dist-es/commands/ListAssetsCommand.js +3 -9
- package/dist-es/commands/ListBlockingInstancesForCapacityTaskCommand.js +3 -9
- package/dist-es/commands/ListCapacityTasksCommand.js +3 -9
- package/dist-es/commands/ListCatalogItemsCommand.js +3 -9
- package/dist-es/commands/ListOrdersCommand.js +3 -9
- package/dist-es/commands/ListOutpostsCommand.js +3 -9
- package/dist-es/commands/ListSitesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartCapacityTaskCommand.js +3 -9
- package/dist-es/commands/StartConnectionCommand.js +3 -9
- package/dist-es/commands/StartOutpostDecommissionCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateOutpostCommand.js +3 -9
- package/dist-es/commands/UpdateSiteAddressCommand.js +3 -9
- package/dist-es/commands/UpdateSiteCommand.js +3 -9
- package/dist-es/commands/UpdateSiteRackPhysicalPropertiesCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1476 -0
- package/dist-types/OutpostsClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +181 -0
- package/dist-types/ts3.4/OutpostsClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +186 -0
- package/package.json +33 -33
- package/dist-es/protocols/Aws_restJson1.js +0 -1244
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -317
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -425
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class OutpostsClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,14 +110,14 @@ class OutpostsClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class OutpostsServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let OutpostsServiceException$1 = class OutpostsServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, OutpostsServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
|
-
class AccessDeniedException extends OutpostsServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends OutpostsServiceException$1 {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -130,7 +130,7 @@ class AccessDeniedException extends OutpostsServiceException {
|
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
133
|
+
};
|
|
134
134
|
const AddressType = {
|
|
135
135
|
OPERATING_ADDRESS: "OPERATING_ADDRESS",
|
|
136
136
|
SHIPPING_ADDRESS: "SHIPPING_ADDRESS",
|
|
@@ -169,7 +169,7 @@ const ResourceType = {
|
|
|
169
169
|
ORDER: "ORDER",
|
|
170
170
|
OUTPOST: "OUTPOST",
|
|
171
171
|
};
|
|
172
|
-
class ConflictException extends OutpostsServiceException {
|
|
172
|
+
let ConflictException$1 = class ConflictException extends OutpostsServiceException$1 {
|
|
173
173
|
name = "ConflictException";
|
|
174
174
|
$fault = "client";
|
|
175
175
|
Message;
|
|
@@ -186,8 +186,8 @@ class ConflictException extends OutpostsServiceException {
|
|
|
186
186
|
this.ResourceId = opts.ResourceId;
|
|
187
187
|
this.ResourceType = opts.ResourceType;
|
|
188
188
|
}
|
|
189
|
-
}
|
|
190
|
-
class InternalServerException extends OutpostsServiceException {
|
|
189
|
+
};
|
|
190
|
+
let InternalServerException$1 = class InternalServerException extends OutpostsServiceException$1 {
|
|
191
191
|
name = "InternalServerException";
|
|
192
192
|
$fault = "server";
|
|
193
193
|
Message;
|
|
@@ -200,8 +200,8 @@ class InternalServerException extends OutpostsServiceException {
|
|
|
200
200
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
201
201
|
this.Message = opts.Message;
|
|
202
202
|
}
|
|
203
|
-
}
|
|
204
|
-
class NotFoundException extends OutpostsServiceException {
|
|
203
|
+
};
|
|
204
|
+
let NotFoundException$1 = class NotFoundException extends OutpostsServiceException$1 {
|
|
205
205
|
name = "NotFoundException";
|
|
206
206
|
$fault = "client";
|
|
207
207
|
Message;
|
|
@@ -214,8 +214,8 @@ class NotFoundException extends OutpostsServiceException {
|
|
|
214
214
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
215
215
|
this.Message = opts.Message;
|
|
216
216
|
}
|
|
217
|
-
}
|
|
218
|
-
class ValidationException extends OutpostsServiceException {
|
|
217
|
+
};
|
|
218
|
+
let ValidationException$1 = class ValidationException extends OutpostsServiceException$1 {
|
|
219
219
|
name = "ValidationException";
|
|
220
220
|
$fault = "client";
|
|
221
221
|
Message;
|
|
@@ -228,7 +228,7 @@ class ValidationException extends OutpostsServiceException {
|
|
|
228
228
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
229
229
|
this.Message = opts.Message;
|
|
230
230
|
}
|
|
231
|
-
}
|
|
231
|
+
};
|
|
232
232
|
const CapacityTaskFailureType = {
|
|
233
233
|
BLOCKING_INSTANCES_NOT_EVACUATED: "BLOCKING_INSTANCES_NOT_EVACUATED",
|
|
234
234
|
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
|
|
@@ -302,7 +302,7 @@ const OrderStatus = {
|
|
|
302
302
|
PROCESSING: "PROCESSING",
|
|
303
303
|
RECEIVED: "RECEIVED",
|
|
304
304
|
};
|
|
305
|
-
class ServiceQuotaExceededException extends OutpostsServiceException {
|
|
305
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends OutpostsServiceException$1 {
|
|
306
306
|
name = "ServiceQuotaExceededException";
|
|
307
307
|
$fault = "client";
|
|
308
308
|
Message;
|
|
@@ -315,7 +315,7 @@ class ServiceQuotaExceededException extends OutpostsServiceException {
|
|
|
315
315
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
316
316
|
this.Message = opts.Message;
|
|
317
317
|
}
|
|
318
|
-
}
|
|
318
|
+
};
|
|
319
319
|
const SupportedHardwareType = {
|
|
320
320
|
RACK: "RACK",
|
|
321
321
|
SERVER: "SERVER",
|
|
@@ -405,1259 +405,1462 @@ const SubscriptionType = {
|
|
|
405
405
|
RENEWAL: "RENEWAL",
|
|
406
406
|
};
|
|
407
407
|
|
|
408
|
-
const
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
b.p("CapacityTaskId", () => input.CapacityTaskId, "{CapacityTaskId}", false);
|
|
413
|
-
b.p("OutpostIdentifier", () => input.OutpostIdentifier, "{OutpostIdentifier}", false);
|
|
414
|
-
let body;
|
|
415
|
-
b.m("POST").h(headers).b(body);
|
|
416
|
-
return b.build();
|
|
417
|
-
};
|
|
418
|
-
const se_CancelOrderCommand = async (input, context) => {
|
|
419
|
-
const b = core.requestBuilder(input, context);
|
|
420
|
-
const headers = {};
|
|
421
|
-
b.bp("/orders/{OrderId}/cancel");
|
|
422
|
-
b.p("OrderId", () => input.OrderId, "{OrderId}", false);
|
|
423
|
-
let body;
|
|
424
|
-
b.m("POST").h(headers).b(body);
|
|
425
|
-
return b.build();
|
|
426
|
-
};
|
|
427
|
-
const se_CreateOrderCommand = async (input, context) => {
|
|
428
|
-
const b = core.requestBuilder(input, context);
|
|
429
|
-
const headers = {
|
|
430
|
-
"content-type": "application/json",
|
|
431
|
-
};
|
|
432
|
-
b.bp("/orders");
|
|
433
|
-
let body;
|
|
434
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
435
|
-
LineItems: (_) => smithyClient._json(_),
|
|
436
|
-
OutpostIdentifier: [],
|
|
437
|
-
PaymentOption: [],
|
|
438
|
-
PaymentTerm: [],
|
|
439
|
-
}));
|
|
440
|
-
b.m("POST").h(headers).b(body);
|
|
441
|
-
return b.build();
|
|
442
|
-
};
|
|
443
|
-
const se_CreateOutpostCommand = async (input, context) => {
|
|
444
|
-
const b = core.requestBuilder(input, context);
|
|
445
|
-
const headers = {
|
|
446
|
-
"content-type": "application/json",
|
|
447
|
-
};
|
|
448
|
-
b.bp("/outposts");
|
|
449
|
-
let body;
|
|
450
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
451
|
-
AvailabilityZone: [],
|
|
452
|
-
AvailabilityZoneId: [],
|
|
453
|
-
Description: [],
|
|
454
|
-
Name: [],
|
|
455
|
-
SiteId: [],
|
|
456
|
-
SupportedHardwareType: [],
|
|
457
|
-
Tags: (_) => smithyClient._json(_),
|
|
458
|
-
}));
|
|
459
|
-
b.m("POST").h(headers).b(body);
|
|
460
|
-
return b.build();
|
|
461
|
-
};
|
|
462
|
-
const se_CreateSiteCommand = async (input, context) => {
|
|
463
|
-
const b = core.requestBuilder(input, context);
|
|
464
|
-
const headers = {
|
|
465
|
-
"content-type": "application/json",
|
|
466
|
-
};
|
|
467
|
-
b.bp("/sites");
|
|
468
|
-
let body;
|
|
469
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
470
|
-
Description: [],
|
|
471
|
-
Name: [],
|
|
472
|
-
Notes: [],
|
|
473
|
-
OperatingAddress: (_) => smithyClient._json(_),
|
|
474
|
-
RackPhysicalProperties: (_) => smithyClient._json(_),
|
|
475
|
-
ShippingAddress: (_) => smithyClient._json(_),
|
|
476
|
-
Tags: (_) => smithyClient._json(_),
|
|
477
|
-
}));
|
|
478
|
-
b.m("POST").h(headers).b(body);
|
|
479
|
-
return b.build();
|
|
480
|
-
};
|
|
481
|
-
const se_DeleteOutpostCommand = async (input, context) => {
|
|
482
|
-
const b = core.requestBuilder(input, context);
|
|
483
|
-
const headers = {};
|
|
484
|
-
b.bp("/outposts/{OutpostId}");
|
|
485
|
-
b.p("OutpostId", () => input.OutpostId, "{OutpostId}", false);
|
|
486
|
-
let body;
|
|
487
|
-
b.m("DELETE").h(headers).b(body);
|
|
488
|
-
return b.build();
|
|
489
|
-
};
|
|
490
|
-
const se_DeleteSiteCommand = async (input, context) => {
|
|
491
|
-
const b = core.requestBuilder(input, context);
|
|
492
|
-
const headers = {};
|
|
493
|
-
b.bp("/sites/{SiteId}");
|
|
494
|
-
b.p("SiteId", () => input.SiteId, "{SiteId}", false);
|
|
495
|
-
let body;
|
|
496
|
-
b.m("DELETE").h(headers).b(body);
|
|
497
|
-
return b.build();
|
|
498
|
-
};
|
|
499
|
-
const se_GetCapacityTaskCommand = async (input, context) => {
|
|
500
|
-
const b = core.requestBuilder(input, context);
|
|
501
|
-
const headers = {};
|
|
502
|
-
b.bp("/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}");
|
|
503
|
-
b.p("CapacityTaskId", () => input.CapacityTaskId, "{CapacityTaskId}", false);
|
|
504
|
-
b.p("OutpostIdentifier", () => input.OutpostIdentifier, "{OutpostIdentifier}", false);
|
|
505
|
-
let body;
|
|
506
|
-
b.m("GET").h(headers).b(body);
|
|
507
|
-
return b.build();
|
|
508
|
-
};
|
|
509
|
-
const se_GetCatalogItemCommand = async (input, context) => {
|
|
510
|
-
const b = core.requestBuilder(input, context);
|
|
511
|
-
const headers = {};
|
|
512
|
-
b.bp("/catalog/item/{CatalogItemId}");
|
|
513
|
-
b.p("CatalogItemId", () => input.CatalogItemId, "{CatalogItemId}", false);
|
|
514
|
-
let body;
|
|
515
|
-
b.m("GET").h(headers).b(body);
|
|
516
|
-
return b.build();
|
|
517
|
-
};
|
|
518
|
-
const se_GetConnectionCommand = async (input, context) => {
|
|
519
|
-
const b = core.requestBuilder(input, context);
|
|
520
|
-
const headers = {};
|
|
521
|
-
b.bp("/connections/{ConnectionId}");
|
|
522
|
-
b.p("ConnectionId", () => input.ConnectionId, "{ConnectionId}", false);
|
|
523
|
-
let body;
|
|
524
|
-
b.m("GET").h(headers).b(body);
|
|
525
|
-
return b.build();
|
|
526
|
-
};
|
|
527
|
-
const se_GetOrderCommand = async (input, context) => {
|
|
528
|
-
const b = core.requestBuilder(input, context);
|
|
529
|
-
const headers = {};
|
|
530
|
-
b.bp("/orders/{OrderId}");
|
|
531
|
-
b.p("OrderId", () => input.OrderId, "{OrderId}", false);
|
|
532
|
-
let body;
|
|
533
|
-
b.m("GET").h(headers).b(body);
|
|
534
|
-
return b.build();
|
|
535
|
-
};
|
|
536
|
-
const se_GetOutpostCommand = async (input, context) => {
|
|
537
|
-
const b = core.requestBuilder(input, context);
|
|
538
|
-
const headers = {};
|
|
539
|
-
b.bp("/outposts/{OutpostId}");
|
|
540
|
-
b.p("OutpostId", () => input.OutpostId, "{OutpostId}", false);
|
|
541
|
-
let body;
|
|
542
|
-
b.m("GET").h(headers).b(body);
|
|
543
|
-
return b.build();
|
|
544
|
-
};
|
|
545
|
-
const se_GetOutpostBillingInformationCommand = async (input, context) => {
|
|
546
|
-
const b = core.requestBuilder(input, context);
|
|
547
|
-
const headers = {};
|
|
548
|
-
b.bp("/outpost/{OutpostIdentifier}/billing-information");
|
|
549
|
-
b.p("OutpostIdentifier", () => input.OutpostIdentifier, "{OutpostIdentifier}", false);
|
|
550
|
-
const query = smithyClient.map({
|
|
551
|
-
[_NT]: [, input[_NT]],
|
|
552
|
-
[_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
553
|
-
});
|
|
554
|
-
let body;
|
|
555
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
556
|
-
return b.build();
|
|
557
|
-
};
|
|
558
|
-
const se_GetOutpostInstanceTypesCommand = async (input, context) => {
|
|
559
|
-
const b = core.requestBuilder(input, context);
|
|
560
|
-
const headers = {};
|
|
561
|
-
b.bp("/outposts/{OutpostId}/instanceTypes");
|
|
562
|
-
b.p("OutpostId", () => input.OutpostId, "{OutpostId}", false);
|
|
563
|
-
const query = smithyClient.map({
|
|
564
|
-
[_NT]: [, input[_NT]],
|
|
565
|
-
[_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
566
|
-
});
|
|
567
|
-
let body;
|
|
568
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
569
|
-
return b.build();
|
|
570
|
-
};
|
|
571
|
-
const se_GetOutpostSupportedInstanceTypesCommand = async (input, context) => {
|
|
572
|
-
const b = core.requestBuilder(input, context);
|
|
573
|
-
const headers = {};
|
|
574
|
-
b.bp("/outposts/{OutpostIdentifier}/supportedInstanceTypes");
|
|
575
|
-
b.p("OutpostIdentifier", () => input.OutpostIdentifier, "{OutpostIdentifier}", false);
|
|
576
|
-
const query = smithyClient.map({
|
|
577
|
-
[_OI]: [, input[_OI]],
|
|
578
|
-
[_AI]: [, input[_AI]],
|
|
579
|
-
[_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
580
|
-
[_NT]: [, input[_NT]],
|
|
581
|
-
});
|
|
582
|
-
let body;
|
|
583
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
584
|
-
return b.build();
|
|
585
|
-
};
|
|
586
|
-
const se_GetSiteCommand = async (input, context) => {
|
|
587
|
-
const b = core.requestBuilder(input, context);
|
|
588
|
-
const headers = {};
|
|
589
|
-
b.bp("/sites/{SiteId}");
|
|
590
|
-
b.p("SiteId", () => input.SiteId, "{SiteId}", false);
|
|
591
|
-
let body;
|
|
592
|
-
b.m("GET").h(headers).b(body);
|
|
593
|
-
return b.build();
|
|
594
|
-
};
|
|
595
|
-
const se_GetSiteAddressCommand = async (input, context) => {
|
|
596
|
-
const b = core.requestBuilder(input, context);
|
|
597
|
-
const headers = {};
|
|
598
|
-
b.bp("/sites/{SiteId}/address");
|
|
599
|
-
b.p("SiteId", () => input.SiteId, "{SiteId}", false);
|
|
600
|
-
const query = smithyClient.map({
|
|
601
|
-
[_AT]: [, smithyClient.expectNonNull(input[_AT], `AddressType`)],
|
|
602
|
-
});
|
|
603
|
-
let body;
|
|
604
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
605
|
-
return b.build();
|
|
606
|
-
};
|
|
607
|
-
const se_ListAssetInstancesCommand = async (input, context) => {
|
|
608
|
-
const b = core.requestBuilder(input, context);
|
|
609
|
-
const headers = {};
|
|
610
|
-
b.bp("/outposts/{OutpostIdentifier}/assetInstances");
|
|
611
|
-
b.p("OutpostIdentifier", () => input.OutpostIdentifier, "{OutpostIdentifier}", false);
|
|
612
|
-
const query = smithyClient.map({
|
|
613
|
-
[_AIF]: [() => input.AssetIdFilter !== void 0, () => input[_AIF] || []],
|
|
614
|
-
[_ITF]: [() => input.InstanceTypeFilter !== void 0, () => input[_ITF] || []],
|
|
615
|
-
[_AIFc]: [() => input.AccountIdFilter !== void 0, () => input[_AIFc] || []],
|
|
616
|
-
[_ASF]: [() => input.AwsServiceFilter !== void 0, () => input[_ASF] || []],
|
|
617
|
-
[_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
618
|
-
[_NT]: [, input[_NT]],
|
|
619
|
-
});
|
|
620
|
-
let body;
|
|
621
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
622
|
-
return b.build();
|
|
623
|
-
};
|
|
624
|
-
const se_ListAssetsCommand = async (input, context) => {
|
|
625
|
-
const b = core.requestBuilder(input, context);
|
|
626
|
-
const headers = {};
|
|
627
|
-
b.bp("/outposts/{OutpostIdentifier}/assets");
|
|
628
|
-
b.p("OutpostIdentifier", () => input.OutpostIdentifier, "{OutpostIdentifier}", false);
|
|
629
|
-
const query = smithyClient.map({
|
|
630
|
-
[_HIF]: [() => input.HostIdFilter !== void 0, () => input[_HIF] || []],
|
|
631
|
-
[_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
632
|
-
[_NT]: [, input[_NT]],
|
|
633
|
-
[_SF]: [() => input.StatusFilter !== void 0, () => input[_SF] || []],
|
|
634
|
-
});
|
|
635
|
-
let body;
|
|
636
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
637
|
-
return b.build();
|
|
638
|
-
};
|
|
639
|
-
const se_ListBlockingInstancesForCapacityTaskCommand = async (input, context) => {
|
|
640
|
-
const b = core.requestBuilder(input, context);
|
|
641
|
-
const headers = {};
|
|
642
|
-
b.bp("/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}/blockingInstances");
|
|
643
|
-
b.p("OutpostIdentifier", () => input.OutpostIdentifier, "{OutpostIdentifier}", false);
|
|
644
|
-
b.p("CapacityTaskId", () => input.CapacityTaskId, "{CapacityTaskId}", false);
|
|
645
|
-
const query = smithyClient.map({
|
|
646
|
-
[_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
647
|
-
[_NT]: [, input[_NT]],
|
|
648
|
-
});
|
|
649
|
-
let body;
|
|
650
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
651
|
-
return b.build();
|
|
652
|
-
};
|
|
653
|
-
const se_ListCapacityTasksCommand = async (input, context) => {
|
|
654
|
-
const b = core.requestBuilder(input, context);
|
|
655
|
-
const headers = {};
|
|
656
|
-
b.bp("/capacity/tasks");
|
|
657
|
-
const query = smithyClient.map({
|
|
658
|
-
[_OIF]: [, input[_OIF]],
|
|
659
|
-
[_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
660
|
-
[_NT]: [, input[_NT]],
|
|
661
|
-
[_CTSF]: [() => input.CapacityTaskStatusFilter !== void 0, () => input[_CTSF] || []],
|
|
662
|
-
});
|
|
663
|
-
let body;
|
|
664
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
665
|
-
return b.build();
|
|
666
|
-
};
|
|
667
|
-
const se_ListCatalogItemsCommand = async (input, context) => {
|
|
668
|
-
const b = core.requestBuilder(input, context);
|
|
669
|
-
const headers = {};
|
|
670
|
-
b.bp("/catalog/items");
|
|
671
|
-
const query = smithyClient.map({
|
|
672
|
-
[_NT]: [, input[_NT]],
|
|
673
|
-
[_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
674
|
-
[_ICF]: [() => input.ItemClassFilter !== void 0, () => input[_ICF] || []],
|
|
675
|
-
[_SSF]: [() => input.SupportedStorageFilter !== void 0, () => input[_SSF] || []],
|
|
676
|
-
[_ECFF]: [() => input.EC2FamilyFilter !== void 0, () => input[_ECFF] || []],
|
|
677
|
-
});
|
|
678
|
-
let body;
|
|
679
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
680
|
-
return b.build();
|
|
681
|
-
};
|
|
682
|
-
const se_ListOrdersCommand = async (input, context) => {
|
|
683
|
-
const b = core.requestBuilder(input, context);
|
|
684
|
-
const headers = {};
|
|
685
|
-
b.bp("/list-orders");
|
|
686
|
-
const query = smithyClient.map({
|
|
687
|
-
[_OIF]: [, input[_OIF]],
|
|
688
|
-
[_NT]: [, input[_NT]],
|
|
689
|
-
[_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
690
|
-
});
|
|
691
|
-
let body;
|
|
692
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
693
|
-
return b.build();
|
|
694
|
-
};
|
|
695
|
-
const se_ListOutpostsCommand = async (input, context) => {
|
|
696
|
-
const b = core.requestBuilder(input, context);
|
|
697
|
-
const headers = {};
|
|
698
|
-
b.bp("/outposts");
|
|
699
|
-
const query = smithyClient.map({
|
|
700
|
-
[_NT]: [, input[_NT]],
|
|
701
|
-
[_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
702
|
-
[_LCSF]: [() => input.LifeCycleStatusFilter !== void 0, () => input[_LCSF] || []],
|
|
703
|
-
[_AZF]: [() => input.AvailabilityZoneFilter !== void 0, () => input[_AZF] || []],
|
|
704
|
-
[_AZIF]: [() => input.AvailabilityZoneIdFilter !== void 0, () => input[_AZIF] || []],
|
|
705
|
-
});
|
|
706
|
-
let body;
|
|
707
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
708
|
-
return b.build();
|
|
709
|
-
};
|
|
710
|
-
const se_ListSitesCommand = async (input, context) => {
|
|
711
|
-
const b = core.requestBuilder(input, context);
|
|
712
|
-
const headers = {};
|
|
713
|
-
b.bp("/sites");
|
|
714
|
-
const query = smithyClient.map({
|
|
715
|
-
[_NT]: [, input[_NT]],
|
|
716
|
-
[_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
717
|
-
[_OACCF]: [() => input.OperatingAddressCountryCodeFilter !== void 0, () => input[_OACCF] || []],
|
|
718
|
-
[_OASORF]: [() => input.OperatingAddressStateOrRegionFilter !== void 0, () => input[_OASORF] || []],
|
|
719
|
-
[_OACF]: [() => input.OperatingAddressCityFilter !== void 0, () => input[_OACF] || []],
|
|
720
|
-
});
|
|
721
|
-
let body;
|
|
722
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
723
|
-
return b.build();
|
|
724
|
-
};
|
|
725
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
726
|
-
const b = core.requestBuilder(input, context);
|
|
727
|
-
const headers = {};
|
|
728
|
-
b.bp("/tags/{ResourceArn}");
|
|
729
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
730
|
-
let body;
|
|
731
|
-
b.m("GET").h(headers).b(body);
|
|
732
|
-
return b.build();
|
|
733
|
-
};
|
|
734
|
-
const se_StartCapacityTaskCommand = async (input, context) => {
|
|
735
|
-
const b = core.requestBuilder(input, context);
|
|
736
|
-
const headers = {
|
|
737
|
-
"content-type": "application/json",
|
|
738
|
-
};
|
|
739
|
-
b.bp("/outposts/{OutpostIdentifier}/capacity");
|
|
740
|
-
b.p("OutpostIdentifier", () => input.OutpostIdentifier, "{OutpostIdentifier}", false);
|
|
741
|
-
let body;
|
|
742
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
743
|
-
AssetId: [],
|
|
744
|
-
DryRun: [],
|
|
745
|
-
InstancePools: (_) => smithyClient._json(_),
|
|
746
|
-
InstancesToExclude: (_) => smithyClient._json(_),
|
|
747
|
-
OrderId: [],
|
|
748
|
-
TaskActionOnBlockingInstances: [],
|
|
749
|
-
}));
|
|
750
|
-
b.m("POST").h(headers).b(body);
|
|
751
|
-
return b.build();
|
|
752
|
-
};
|
|
753
|
-
const se_StartConnectionCommand = async (input, context) => {
|
|
754
|
-
const b = core.requestBuilder(input, context);
|
|
755
|
-
const headers = {
|
|
756
|
-
"content-type": "application/json",
|
|
757
|
-
};
|
|
758
|
-
b.bp("/connections");
|
|
759
|
-
let body;
|
|
760
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
761
|
-
AssetId: [],
|
|
762
|
-
ClientPublicKey: [],
|
|
763
|
-
DeviceSerialNumber: [],
|
|
764
|
-
NetworkInterfaceDeviceIndex: [],
|
|
765
|
-
}));
|
|
766
|
-
b.m("POST").h(headers).b(body);
|
|
767
|
-
return b.build();
|
|
768
|
-
};
|
|
769
|
-
const se_StartOutpostDecommissionCommand = async (input, context) => {
|
|
770
|
-
const b = core.requestBuilder(input, context);
|
|
771
|
-
const headers = {
|
|
772
|
-
"content-type": "application/json",
|
|
773
|
-
};
|
|
774
|
-
b.bp("/outposts/{OutpostIdentifier}/decommission");
|
|
775
|
-
b.p("OutpostIdentifier", () => input.OutpostIdentifier, "{OutpostIdentifier}", false);
|
|
776
|
-
let body;
|
|
777
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
778
|
-
ValidateOnly: [],
|
|
779
|
-
}));
|
|
780
|
-
b.m("POST").h(headers).b(body);
|
|
781
|
-
return b.build();
|
|
782
|
-
};
|
|
783
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
784
|
-
const b = core.requestBuilder(input, context);
|
|
785
|
-
const headers = {
|
|
786
|
-
"content-type": "application/json",
|
|
787
|
-
};
|
|
788
|
-
b.bp("/tags/{ResourceArn}");
|
|
789
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
790
|
-
let body;
|
|
791
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
792
|
-
Tags: (_) => smithyClient._json(_),
|
|
793
|
-
}));
|
|
794
|
-
b.m("POST").h(headers).b(body);
|
|
795
|
-
return b.build();
|
|
796
|
-
};
|
|
797
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
798
|
-
const b = core.requestBuilder(input, context);
|
|
799
|
-
const headers = {};
|
|
800
|
-
b.bp("/tags/{ResourceArn}");
|
|
801
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
802
|
-
const query = smithyClient.map({
|
|
803
|
-
[_tK]: [smithyClient.expectNonNull(input.TagKeys, `TagKeys`) != null, () => input[_TK] || []],
|
|
804
|
-
});
|
|
805
|
-
let body;
|
|
806
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
807
|
-
return b.build();
|
|
808
|
-
};
|
|
809
|
-
const se_UpdateOutpostCommand = async (input, context) => {
|
|
810
|
-
const b = core.requestBuilder(input, context);
|
|
811
|
-
const headers = {
|
|
812
|
-
"content-type": "application/json",
|
|
813
|
-
};
|
|
814
|
-
b.bp("/outposts/{OutpostId}");
|
|
815
|
-
b.p("OutpostId", () => input.OutpostId, "{OutpostId}", false);
|
|
816
|
-
let body;
|
|
817
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
818
|
-
Description: [],
|
|
819
|
-
Name: [],
|
|
820
|
-
SupportedHardwareType: [],
|
|
821
|
-
}));
|
|
822
|
-
b.m("PATCH").h(headers).b(body);
|
|
823
|
-
return b.build();
|
|
824
|
-
};
|
|
825
|
-
const se_UpdateSiteCommand = async (input, context) => {
|
|
826
|
-
const b = core.requestBuilder(input, context);
|
|
827
|
-
const headers = {
|
|
828
|
-
"content-type": "application/json",
|
|
829
|
-
};
|
|
830
|
-
b.bp("/sites/{SiteId}");
|
|
831
|
-
b.p("SiteId", () => input.SiteId, "{SiteId}", false);
|
|
832
|
-
let body;
|
|
833
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
834
|
-
Description: [],
|
|
835
|
-
Name: [],
|
|
836
|
-
Notes: [],
|
|
837
|
-
}));
|
|
838
|
-
b.m("PATCH").h(headers).b(body);
|
|
839
|
-
return b.build();
|
|
840
|
-
};
|
|
841
|
-
const se_UpdateSiteAddressCommand = async (input, context) => {
|
|
842
|
-
const b = core.requestBuilder(input, context);
|
|
843
|
-
const headers = {
|
|
844
|
-
"content-type": "application/json",
|
|
845
|
-
};
|
|
846
|
-
b.bp("/sites/{SiteId}/address");
|
|
847
|
-
b.p("SiteId", () => input.SiteId, "{SiteId}", false);
|
|
848
|
-
let body;
|
|
849
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
850
|
-
Address: (_) => smithyClient._json(_),
|
|
851
|
-
AddressType: [],
|
|
852
|
-
}));
|
|
853
|
-
b.m("PUT").h(headers).b(body);
|
|
854
|
-
return b.build();
|
|
855
|
-
};
|
|
856
|
-
const se_UpdateSiteRackPhysicalPropertiesCommand = async (input, context) => {
|
|
857
|
-
const b = core.requestBuilder(input, context);
|
|
858
|
-
const headers = {
|
|
859
|
-
"content-type": "application/json",
|
|
860
|
-
};
|
|
861
|
-
b.bp("/sites/{SiteId}/rackPhysicalProperties");
|
|
862
|
-
b.p("SiteId", () => input.SiteId, "{SiteId}", false);
|
|
863
|
-
let body;
|
|
864
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
865
|
-
FiberOpticCableType: [],
|
|
866
|
-
MaximumSupportedWeightLbs: [],
|
|
867
|
-
OpticalStandard: [],
|
|
868
|
-
PowerConnector: [],
|
|
869
|
-
PowerDrawKva: [],
|
|
870
|
-
PowerFeedDrop: [],
|
|
871
|
-
PowerPhase: [],
|
|
872
|
-
UplinkCount: [],
|
|
873
|
-
UplinkGbps: [],
|
|
874
|
-
}));
|
|
875
|
-
b.m("PATCH").h(headers).b(body);
|
|
876
|
-
return b.build();
|
|
877
|
-
};
|
|
878
|
-
const de_CancelCapacityTaskCommand = async (output, context) => {
|
|
879
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
880
|
-
return de_CommandError(output, context);
|
|
881
|
-
}
|
|
882
|
-
const contents = smithyClient.map({
|
|
883
|
-
$metadata: deserializeMetadata(output),
|
|
884
|
-
});
|
|
885
|
-
await smithyClient.collectBody(output.body, context);
|
|
886
|
-
return contents;
|
|
887
|
-
};
|
|
888
|
-
const de_CancelOrderCommand = async (output, context) => {
|
|
889
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
890
|
-
return de_CommandError(output, context);
|
|
891
|
-
}
|
|
892
|
-
const contents = smithyClient.map({
|
|
893
|
-
$metadata: deserializeMetadata(output),
|
|
894
|
-
});
|
|
895
|
-
await smithyClient.collectBody(output.body, context);
|
|
896
|
-
return contents;
|
|
897
|
-
};
|
|
898
|
-
const de_CreateOrderCommand = async (output, context) => {
|
|
899
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
900
|
-
return de_CommandError(output, context);
|
|
901
|
-
}
|
|
902
|
-
const contents = smithyClient.map({
|
|
903
|
-
$metadata: deserializeMetadata(output),
|
|
904
|
-
});
|
|
905
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
906
|
-
const doc = smithyClient.take(data, {
|
|
907
|
-
Order: (_) => de_Order(_),
|
|
908
|
-
});
|
|
909
|
-
Object.assign(contents, doc);
|
|
910
|
-
return contents;
|
|
911
|
-
};
|
|
912
|
-
const de_CreateOutpostCommand = async (output, context) => {
|
|
913
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
914
|
-
return de_CommandError(output, context);
|
|
915
|
-
}
|
|
916
|
-
const contents = smithyClient.map({
|
|
917
|
-
$metadata: deserializeMetadata(output),
|
|
918
|
-
});
|
|
919
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
920
|
-
const doc = smithyClient.take(data, {
|
|
921
|
-
Outpost: smithyClient._json,
|
|
922
|
-
});
|
|
923
|
-
Object.assign(contents, doc);
|
|
924
|
-
return contents;
|
|
925
|
-
};
|
|
926
|
-
const de_CreateSiteCommand = async (output, context) => {
|
|
927
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
928
|
-
return de_CommandError(output, context);
|
|
929
|
-
}
|
|
930
|
-
const contents = smithyClient.map({
|
|
931
|
-
$metadata: deserializeMetadata(output),
|
|
932
|
-
});
|
|
933
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
934
|
-
const doc = smithyClient.take(data, {
|
|
935
|
-
Site: smithyClient._json,
|
|
936
|
-
});
|
|
937
|
-
Object.assign(contents, doc);
|
|
938
|
-
return contents;
|
|
939
|
-
};
|
|
940
|
-
const de_DeleteOutpostCommand = async (output, context) => {
|
|
941
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
942
|
-
return de_CommandError(output, context);
|
|
943
|
-
}
|
|
944
|
-
const contents = smithyClient.map({
|
|
945
|
-
$metadata: deserializeMetadata(output),
|
|
946
|
-
});
|
|
947
|
-
await smithyClient.collectBody(output.body, context);
|
|
948
|
-
return contents;
|
|
949
|
-
};
|
|
950
|
-
const de_DeleteSiteCommand = async (output, context) => {
|
|
951
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
952
|
-
return de_CommandError(output, context);
|
|
953
|
-
}
|
|
954
|
-
const contents = smithyClient.map({
|
|
955
|
-
$metadata: deserializeMetadata(output),
|
|
956
|
-
});
|
|
957
|
-
await smithyClient.collectBody(output.body, context);
|
|
958
|
-
return contents;
|
|
959
|
-
};
|
|
960
|
-
const de_GetCapacityTaskCommand = async (output, context) => {
|
|
961
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
962
|
-
return de_CommandError(output, context);
|
|
963
|
-
}
|
|
964
|
-
const contents = smithyClient.map({
|
|
965
|
-
$metadata: deserializeMetadata(output),
|
|
966
|
-
});
|
|
967
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
968
|
-
const doc = smithyClient.take(data, {
|
|
969
|
-
AssetId: smithyClient.expectString,
|
|
970
|
-
CapacityTaskId: smithyClient.expectString,
|
|
971
|
-
CapacityTaskStatus: smithyClient.expectString,
|
|
972
|
-
CompletionDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
973
|
-
CreationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
974
|
-
DryRun: smithyClient.expectBoolean,
|
|
975
|
-
Failed: smithyClient._json,
|
|
976
|
-
InstancesToExclude: smithyClient._json,
|
|
977
|
-
LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
978
|
-
OrderId: smithyClient.expectString,
|
|
979
|
-
OutpostId: smithyClient.expectString,
|
|
980
|
-
RequestedInstancePools: smithyClient._json,
|
|
981
|
-
TaskActionOnBlockingInstances: smithyClient.expectString,
|
|
982
|
-
});
|
|
983
|
-
Object.assign(contents, doc);
|
|
984
|
-
return contents;
|
|
985
|
-
};
|
|
986
|
-
const de_GetCatalogItemCommand = async (output, context) => {
|
|
987
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
988
|
-
return de_CommandError(output, context);
|
|
989
|
-
}
|
|
990
|
-
const contents = smithyClient.map({
|
|
991
|
-
$metadata: deserializeMetadata(output),
|
|
992
|
-
});
|
|
993
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
994
|
-
const doc = smithyClient.take(data, {
|
|
995
|
-
CatalogItem: (_) => de_CatalogItem(_),
|
|
996
|
-
});
|
|
997
|
-
Object.assign(contents, doc);
|
|
998
|
-
return contents;
|
|
999
|
-
};
|
|
1000
|
-
const de_GetConnectionCommand = async (output, context) => {
|
|
1001
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1002
|
-
return de_CommandError(output, context);
|
|
1003
|
-
}
|
|
1004
|
-
const contents = smithyClient.map({
|
|
1005
|
-
$metadata: deserializeMetadata(output),
|
|
1006
|
-
});
|
|
1007
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1008
|
-
const doc = smithyClient.take(data, {
|
|
1009
|
-
ConnectionDetails: smithyClient._json,
|
|
1010
|
-
ConnectionId: smithyClient.expectString,
|
|
1011
|
-
});
|
|
1012
|
-
Object.assign(contents, doc);
|
|
1013
|
-
return contents;
|
|
1014
|
-
};
|
|
1015
|
-
const de_GetOrderCommand = async (output, context) => {
|
|
1016
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1017
|
-
return de_CommandError(output, context);
|
|
1018
|
-
}
|
|
1019
|
-
const contents = smithyClient.map({
|
|
1020
|
-
$metadata: deserializeMetadata(output),
|
|
1021
|
-
});
|
|
1022
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1023
|
-
const doc = smithyClient.take(data, {
|
|
1024
|
-
Order: (_) => de_Order(_),
|
|
1025
|
-
});
|
|
1026
|
-
Object.assign(contents, doc);
|
|
1027
|
-
return contents;
|
|
1028
|
-
};
|
|
1029
|
-
const de_GetOutpostCommand = async (output, context) => {
|
|
1030
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1031
|
-
return de_CommandError(output, context);
|
|
1032
|
-
}
|
|
1033
|
-
const contents = smithyClient.map({
|
|
1034
|
-
$metadata: deserializeMetadata(output),
|
|
1035
|
-
});
|
|
1036
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1037
|
-
const doc = smithyClient.take(data, {
|
|
1038
|
-
Outpost: smithyClient._json,
|
|
1039
|
-
});
|
|
1040
|
-
Object.assign(contents, doc);
|
|
1041
|
-
return contents;
|
|
1042
|
-
};
|
|
1043
|
-
const de_GetOutpostBillingInformationCommand = async (output, context) => {
|
|
1044
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1045
|
-
return de_CommandError(output, context);
|
|
1046
|
-
}
|
|
1047
|
-
const contents = smithyClient.map({
|
|
1048
|
-
$metadata: deserializeMetadata(output),
|
|
1049
|
-
});
|
|
1050
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1051
|
-
const doc = smithyClient.take(data, {
|
|
1052
|
-
ContractEndDate: smithyClient.expectString,
|
|
1053
|
-
NextToken: smithyClient.expectString,
|
|
1054
|
-
Subscriptions: (_) => de_SubscriptionList(_),
|
|
1055
|
-
});
|
|
1056
|
-
Object.assign(contents, doc);
|
|
1057
|
-
return contents;
|
|
1058
|
-
};
|
|
1059
|
-
const de_GetOutpostInstanceTypesCommand = async (output, context) => {
|
|
1060
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1061
|
-
return de_CommandError(output, context);
|
|
1062
|
-
}
|
|
1063
|
-
const contents = smithyClient.map({
|
|
1064
|
-
$metadata: deserializeMetadata(output),
|
|
1065
|
-
});
|
|
1066
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1067
|
-
const doc = smithyClient.take(data, {
|
|
1068
|
-
InstanceTypes: smithyClient._json,
|
|
1069
|
-
NextToken: smithyClient.expectString,
|
|
1070
|
-
OutpostArn: smithyClient.expectString,
|
|
1071
|
-
OutpostId: smithyClient.expectString,
|
|
1072
|
-
});
|
|
1073
|
-
Object.assign(contents, doc);
|
|
1074
|
-
return contents;
|
|
1075
|
-
};
|
|
1076
|
-
const de_GetOutpostSupportedInstanceTypesCommand = async (output, context) => {
|
|
1077
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1078
|
-
return de_CommandError(output, context);
|
|
1079
|
-
}
|
|
1080
|
-
const contents = smithyClient.map({
|
|
1081
|
-
$metadata: deserializeMetadata(output),
|
|
1082
|
-
});
|
|
1083
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1084
|
-
const doc = smithyClient.take(data, {
|
|
1085
|
-
InstanceTypes: smithyClient._json,
|
|
1086
|
-
NextToken: smithyClient.expectString,
|
|
1087
|
-
});
|
|
1088
|
-
Object.assign(contents, doc);
|
|
1089
|
-
return contents;
|
|
1090
|
-
};
|
|
1091
|
-
const de_GetSiteCommand = async (output, context) => {
|
|
1092
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1093
|
-
return de_CommandError(output, context);
|
|
1094
|
-
}
|
|
1095
|
-
const contents = smithyClient.map({
|
|
1096
|
-
$metadata: deserializeMetadata(output),
|
|
1097
|
-
});
|
|
1098
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1099
|
-
const doc = smithyClient.take(data, {
|
|
1100
|
-
Site: smithyClient._json,
|
|
1101
|
-
});
|
|
1102
|
-
Object.assign(contents, doc);
|
|
1103
|
-
return contents;
|
|
1104
|
-
};
|
|
1105
|
-
const de_GetSiteAddressCommand = async (output, context) => {
|
|
1106
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1107
|
-
return de_CommandError(output, context);
|
|
1108
|
-
}
|
|
1109
|
-
const contents = smithyClient.map({
|
|
1110
|
-
$metadata: deserializeMetadata(output),
|
|
1111
|
-
});
|
|
1112
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1113
|
-
const doc = smithyClient.take(data, {
|
|
1114
|
-
Address: smithyClient._json,
|
|
1115
|
-
AddressType: smithyClient.expectString,
|
|
1116
|
-
SiteId: smithyClient.expectString,
|
|
1117
|
-
});
|
|
1118
|
-
Object.assign(contents, doc);
|
|
1119
|
-
return contents;
|
|
1120
|
-
};
|
|
1121
|
-
const de_ListAssetInstancesCommand = async (output, context) => {
|
|
1122
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1123
|
-
return de_CommandError(output, context);
|
|
1124
|
-
}
|
|
1125
|
-
const contents = smithyClient.map({
|
|
1126
|
-
$metadata: deserializeMetadata(output),
|
|
1127
|
-
});
|
|
1128
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1129
|
-
const doc = smithyClient.take(data, {
|
|
1130
|
-
AssetInstances: smithyClient._json,
|
|
1131
|
-
NextToken: smithyClient.expectString,
|
|
1132
|
-
});
|
|
1133
|
-
Object.assign(contents, doc);
|
|
1134
|
-
return contents;
|
|
1135
|
-
};
|
|
1136
|
-
const de_ListAssetsCommand = async (output, context) => {
|
|
1137
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1138
|
-
return de_CommandError(output, context);
|
|
1139
|
-
}
|
|
1140
|
-
const contents = smithyClient.map({
|
|
1141
|
-
$metadata: deserializeMetadata(output),
|
|
1142
|
-
});
|
|
1143
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1144
|
-
const doc = smithyClient.take(data, {
|
|
1145
|
-
Assets: (_) => de_AssetListDefinition(_),
|
|
1146
|
-
NextToken: smithyClient.expectString,
|
|
1147
|
-
});
|
|
1148
|
-
Object.assign(contents, doc);
|
|
1149
|
-
return contents;
|
|
1150
|
-
};
|
|
1151
|
-
const de_ListBlockingInstancesForCapacityTaskCommand = async (output, context) => {
|
|
1152
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1153
|
-
return de_CommandError(output, context);
|
|
1154
|
-
}
|
|
1155
|
-
const contents = smithyClient.map({
|
|
1156
|
-
$metadata: deserializeMetadata(output),
|
|
1157
|
-
});
|
|
1158
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1159
|
-
const doc = smithyClient.take(data, {
|
|
1160
|
-
BlockingInstances: smithyClient._json,
|
|
1161
|
-
NextToken: smithyClient.expectString,
|
|
1162
|
-
});
|
|
1163
|
-
Object.assign(contents, doc);
|
|
1164
|
-
return contents;
|
|
1165
|
-
};
|
|
1166
|
-
const de_ListCapacityTasksCommand = async (output, context) => {
|
|
1167
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1168
|
-
return de_CommandError(output, context);
|
|
1169
|
-
}
|
|
1170
|
-
const contents = smithyClient.map({
|
|
1171
|
-
$metadata: deserializeMetadata(output),
|
|
1172
|
-
});
|
|
1173
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1174
|
-
const doc = smithyClient.take(data, {
|
|
1175
|
-
CapacityTasks: (_) => de_CapacityTaskList(_),
|
|
1176
|
-
NextToken: smithyClient.expectString,
|
|
1177
|
-
});
|
|
1178
|
-
Object.assign(contents, doc);
|
|
1179
|
-
return contents;
|
|
1180
|
-
};
|
|
1181
|
-
const de_ListCatalogItemsCommand = async (output, context) => {
|
|
1182
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1183
|
-
return de_CommandError(output, context);
|
|
1184
|
-
}
|
|
1185
|
-
const contents = smithyClient.map({
|
|
1186
|
-
$metadata: deserializeMetadata(output),
|
|
1187
|
-
});
|
|
1188
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1189
|
-
const doc = smithyClient.take(data, {
|
|
1190
|
-
CatalogItems: (_) => de_CatalogItemListDefinition(_),
|
|
1191
|
-
NextToken: smithyClient.expectString,
|
|
1192
|
-
});
|
|
1193
|
-
Object.assign(contents, doc);
|
|
1194
|
-
return contents;
|
|
1195
|
-
};
|
|
1196
|
-
const de_ListOrdersCommand = async (output, context) => {
|
|
1197
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1198
|
-
return de_CommandError(output, context);
|
|
1199
|
-
}
|
|
1200
|
-
const contents = smithyClient.map({
|
|
1201
|
-
$metadata: deserializeMetadata(output),
|
|
1202
|
-
});
|
|
1203
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1204
|
-
const doc = smithyClient.take(data, {
|
|
1205
|
-
NextToken: smithyClient.expectString,
|
|
1206
|
-
Orders: (_) => de_OrderSummaryListDefinition(_),
|
|
1207
|
-
});
|
|
1208
|
-
Object.assign(contents, doc);
|
|
1209
|
-
return contents;
|
|
1210
|
-
};
|
|
1211
|
-
const de_ListOutpostsCommand = async (output, context) => {
|
|
1212
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1213
|
-
return de_CommandError(output, context);
|
|
1214
|
-
}
|
|
1215
|
-
const contents = smithyClient.map({
|
|
1216
|
-
$metadata: deserializeMetadata(output),
|
|
1217
|
-
});
|
|
1218
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1219
|
-
const doc = smithyClient.take(data, {
|
|
1220
|
-
NextToken: smithyClient.expectString,
|
|
1221
|
-
Outposts: smithyClient._json,
|
|
1222
|
-
});
|
|
1223
|
-
Object.assign(contents, doc);
|
|
1224
|
-
return contents;
|
|
1225
|
-
};
|
|
1226
|
-
const de_ListSitesCommand = async (output, context) => {
|
|
1227
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1228
|
-
return de_CommandError(output, context);
|
|
1229
|
-
}
|
|
1230
|
-
const contents = smithyClient.map({
|
|
1231
|
-
$metadata: deserializeMetadata(output),
|
|
1232
|
-
});
|
|
1233
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1234
|
-
const doc = smithyClient.take(data, {
|
|
1235
|
-
NextToken: smithyClient.expectString,
|
|
1236
|
-
Sites: smithyClient._json,
|
|
1237
|
-
});
|
|
1238
|
-
Object.assign(contents, doc);
|
|
1239
|
-
return contents;
|
|
1240
|
-
};
|
|
1241
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1242
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1243
|
-
return de_CommandError(output, context);
|
|
1244
|
-
}
|
|
1245
|
-
const contents = smithyClient.map({
|
|
1246
|
-
$metadata: deserializeMetadata(output),
|
|
1247
|
-
});
|
|
1248
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1249
|
-
const doc = smithyClient.take(data, {
|
|
1250
|
-
Tags: smithyClient._json,
|
|
1251
|
-
});
|
|
1252
|
-
Object.assign(contents, doc);
|
|
1253
|
-
return contents;
|
|
1254
|
-
};
|
|
1255
|
-
const de_StartCapacityTaskCommand = async (output, context) => {
|
|
1256
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1257
|
-
return de_CommandError(output, context);
|
|
1258
|
-
}
|
|
1259
|
-
const contents = smithyClient.map({
|
|
1260
|
-
$metadata: deserializeMetadata(output),
|
|
1261
|
-
});
|
|
1262
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1263
|
-
const doc = smithyClient.take(data, {
|
|
1264
|
-
AssetId: smithyClient.expectString,
|
|
1265
|
-
CapacityTaskId: smithyClient.expectString,
|
|
1266
|
-
CapacityTaskStatus: smithyClient.expectString,
|
|
1267
|
-
CompletionDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1268
|
-
CreationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1269
|
-
DryRun: smithyClient.expectBoolean,
|
|
1270
|
-
Failed: smithyClient._json,
|
|
1271
|
-
InstancesToExclude: smithyClient._json,
|
|
1272
|
-
LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1273
|
-
OrderId: smithyClient.expectString,
|
|
1274
|
-
OutpostId: smithyClient.expectString,
|
|
1275
|
-
RequestedInstancePools: smithyClient._json,
|
|
1276
|
-
TaskActionOnBlockingInstances: smithyClient.expectString,
|
|
1277
|
-
});
|
|
1278
|
-
Object.assign(contents, doc);
|
|
1279
|
-
return contents;
|
|
1280
|
-
};
|
|
1281
|
-
const de_StartConnectionCommand = async (output, context) => {
|
|
1282
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1283
|
-
return de_CommandError(output, context);
|
|
1284
|
-
}
|
|
1285
|
-
const contents = smithyClient.map({
|
|
1286
|
-
$metadata: deserializeMetadata(output),
|
|
1287
|
-
});
|
|
1288
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1289
|
-
const doc = smithyClient.take(data, {
|
|
1290
|
-
ConnectionId: smithyClient.expectString,
|
|
1291
|
-
UnderlayIpAddress: smithyClient.expectString,
|
|
1292
|
-
});
|
|
1293
|
-
Object.assign(contents, doc);
|
|
1294
|
-
return contents;
|
|
1295
|
-
};
|
|
1296
|
-
const de_StartOutpostDecommissionCommand = async (output, context) => {
|
|
1297
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1298
|
-
return de_CommandError(output, context);
|
|
1299
|
-
}
|
|
1300
|
-
const contents = smithyClient.map({
|
|
1301
|
-
$metadata: deserializeMetadata(output),
|
|
1302
|
-
});
|
|
1303
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1304
|
-
const doc = smithyClient.take(data, {
|
|
1305
|
-
BlockingResourceTypes: smithyClient._json,
|
|
1306
|
-
Status: smithyClient.expectString,
|
|
1307
|
-
});
|
|
1308
|
-
Object.assign(contents, doc);
|
|
1309
|
-
return contents;
|
|
1310
|
-
};
|
|
1311
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1312
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1313
|
-
return de_CommandError(output, context);
|
|
1314
|
-
}
|
|
1315
|
-
const contents = smithyClient.map({
|
|
1316
|
-
$metadata: deserializeMetadata(output),
|
|
1317
|
-
});
|
|
1318
|
-
await smithyClient.collectBody(output.body, context);
|
|
1319
|
-
return contents;
|
|
1320
|
-
};
|
|
1321
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1322
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1323
|
-
return de_CommandError(output, context);
|
|
1324
|
-
}
|
|
1325
|
-
const contents = smithyClient.map({
|
|
1326
|
-
$metadata: deserializeMetadata(output),
|
|
1327
|
-
});
|
|
1328
|
-
await smithyClient.collectBody(output.body, context);
|
|
1329
|
-
return contents;
|
|
1330
|
-
};
|
|
1331
|
-
const de_UpdateOutpostCommand = async (output, context) => {
|
|
1332
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1333
|
-
return de_CommandError(output, context);
|
|
1334
|
-
}
|
|
1335
|
-
const contents = smithyClient.map({
|
|
1336
|
-
$metadata: deserializeMetadata(output),
|
|
1337
|
-
});
|
|
1338
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1339
|
-
const doc = smithyClient.take(data, {
|
|
1340
|
-
Outpost: smithyClient._json,
|
|
1341
|
-
});
|
|
1342
|
-
Object.assign(contents, doc);
|
|
1343
|
-
return contents;
|
|
1344
|
-
};
|
|
1345
|
-
const de_UpdateSiteCommand = async (output, context) => {
|
|
1346
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1347
|
-
return de_CommandError(output, context);
|
|
1348
|
-
}
|
|
1349
|
-
const contents = smithyClient.map({
|
|
1350
|
-
$metadata: deserializeMetadata(output),
|
|
1351
|
-
});
|
|
1352
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1353
|
-
const doc = smithyClient.take(data, {
|
|
1354
|
-
Site: smithyClient._json,
|
|
1355
|
-
});
|
|
1356
|
-
Object.assign(contents, doc);
|
|
1357
|
-
return contents;
|
|
1358
|
-
};
|
|
1359
|
-
const de_UpdateSiteAddressCommand = async (output, context) => {
|
|
1360
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1361
|
-
return de_CommandError(output, context);
|
|
1362
|
-
}
|
|
1363
|
-
const contents = smithyClient.map({
|
|
1364
|
-
$metadata: deserializeMetadata(output),
|
|
1365
|
-
});
|
|
1366
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1367
|
-
const doc = smithyClient.take(data, {
|
|
1368
|
-
Address: smithyClient._json,
|
|
1369
|
-
AddressType: smithyClient.expectString,
|
|
1370
|
-
});
|
|
1371
|
-
Object.assign(contents, doc);
|
|
1372
|
-
return contents;
|
|
1373
|
-
};
|
|
1374
|
-
const de_UpdateSiteRackPhysicalPropertiesCommand = async (output, context) => {
|
|
1375
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1376
|
-
return de_CommandError(output, context);
|
|
1377
|
-
}
|
|
1378
|
-
const contents = smithyClient.map({
|
|
1379
|
-
$metadata: deserializeMetadata(output),
|
|
1380
|
-
});
|
|
1381
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1382
|
-
const doc = smithyClient.take(data, {
|
|
1383
|
-
Site: smithyClient._json,
|
|
1384
|
-
});
|
|
1385
|
-
Object.assign(contents, doc);
|
|
1386
|
-
return contents;
|
|
1387
|
-
};
|
|
1388
|
-
const de_CommandError = async (output, context) => {
|
|
1389
|
-
const parsedOutput = {
|
|
1390
|
-
...output,
|
|
1391
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1392
|
-
};
|
|
1393
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1394
|
-
switch (errorCode) {
|
|
1395
|
-
case "AccessDeniedException":
|
|
1396
|
-
case "com.amazonaws.outposts#AccessDeniedException":
|
|
1397
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1398
|
-
case "ConflictException":
|
|
1399
|
-
case "com.amazonaws.outposts#ConflictException":
|
|
1400
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1401
|
-
case "InternalServerException":
|
|
1402
|
-
case "com.amazonaws.outposts#InternalServerException":
|
|
1403
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1404
|
-
case "NotFoundException":
|
|
1405
|
-
case "com.amazonaws.outposts#NotFoundException":
|
|
1406
|
-
throw await de_NotFoundExceptionRes(parsedOutput);
|
|
1407
|
-
case "ValidationException":
|
|
1408
|
-
case "com.amazonaws.outposts#ValidationException":
|
|
1409
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1410
|
-
case "ServiceQuotaExceededException":
|
|
1411
|
-
case "com.amazonaws.outposts#ServiceQuotaExceededException":
|
|
1412
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1413
|
-
default:
|
|
1414
|
-
const parsedBody = parsedOutput.body;
|
|
1415
|
-
return throwDefaultError({
|
|
1416
|
-
output,
|
|
1417
|
-
parsedBody,
|
|
1418
|
-
errorCode,
|
|
1419
|
-
});
|
|
1420
|
-
}
|
|
1421
|
-
};
|
|
1422
|
-
const throwDefaultError = smithyClient.withBaseException(OutpostsServiceException);
|
|
1423
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1424
|
-
const contents = smithyClient.map({});
|
|
1425
|
-
const data = parsedOutput.body;
|
|
1426
|
-
const doc = smithyClient.take(data, {
|
|
1427
|
-
Message: smithyClient.expectString,
|
|
1428
|
-
});
|
|
1429
|
-
Object.assign(contents, doc);
|
|
1430
|
-
const exception = new AccessDeniedException({
|
|
1431
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1432
|
-
...contents,
|
|
1433
|
-
});
|
|
1434
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1435
|
-
};
|
|
1436
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1437
|
-
const contents = smithyClient.map({});
|
|
1438
|
-
const data = parsedOutput.body;
|
|
1439
|
-
const doc = smithyClient.take(data, {
|
|
1440
|
-
Message: smithyClient.expectString,
|
|
1441
|
-
ResourceId: smithyClient.expectString,
|
|
1442
|
-
ResourceType: smithyClient.expectString,
|
|
1443
|
-
});
|
|
1444
|
-
Object.assign(contents, doc);
|
|
1445
|
-
const exception = new ConflictException({
|
|
1446
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1447
|
-
...contents,
|
|
1448
|
-
});
|
|
1449
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1450
|
-
};
|
|
1451
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1452
|
-
const contents = smithyClient.map({});
|
|
1453
|
-
const data = parsedOutput.body;
|
|
1454
|
-
const doc = smithyClient.take(data, {
|
|
1455
|
-
Message: smithyClient.expectString,
|
|
1456
|
-
});
|
|
1457
|
-
Object.assign(contents, doc);
|
|
1458
|
-
const exception = new InternalServerException({
|
|
1459
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1460
|
-
...contents,
|
|
1461
|
-
});
|
|
1462
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1463
|
-
};
|
|
1464
|
-
const de_NotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1465
|
-
const contents = smithyClient.map({});
|
|
1466
|
-
const data = parsedOutput.body;
|
|
1467
|
-
const doc = smithyClient.take(data, {
|
|
1468
|
-
Message: smithyClient.expectString,
|
|
1469
|
-
});
|
|
1470
|
-
Object.assign(contents, doc);
|
|
1471
|
-
const exception = new NotFoundException({
|
|
1472
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1473
|
-
...contents,
|
|
1474
|
-
});
|
|
1475
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1476
|
-
};
|
|
1477
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1478
|
-
const contents = smithyClient.map({});
|
|
1479
|
-
const data = parsedOutput.body;
|
|
1480
|
-
const doc = smithyClient.take(data, {
|
|
1481
|
-
Message: smithyClient.expectString,
|
|
1482
|
-
});
|
|
1483
|
-
Object.assign(contents, doc);
|
|
1484
|
-
const exception = new ServiceQuotaExceededException({
|
|
1485
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1486
|
-
...contents,
|
|
1487
|
-
});
|
|
1488
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1489
|
-
};
|
|
1490
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1491
|
-
const contents = smithyClient.map({});
|
|
1492
|
-
const data = parsedOutput.body;
|
|
1493
|
-
const doc = smithyClient.take(data, {
|
|
1494
|
-
Message: smithyClient.expectString,
|
|
1495
|
-
});
|
|
1496
|
-
Object.assign(contents, doc);
|
|
1497
|
-
const exception = new ValidationException({
|
|
1498
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1499
|
-
...contents,
|
|
1500
|
-
});
|
|
1501
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1502
|
-
};
|
|
1503
|
-
const de_AssetInfo = (output, context) => {
|
|
1504
|
-
return smithyClient.take(output, {
|
|
1505
|
-
AssetId: smithyClient.expectString,
|
|
1506
|
-
AssetLocation: (_) => de_AssetLocation(_),
|
|
1507
|
-
AssetType: smithyClient.expectString,
|
|
1508
|
-
ComputeAttributes: smithyClient._json,
|
|
1509
|
-
RackId: smithyClient.expectString,
|
|
1510
|
-
});
|
|
1511
|
-
};
|
|
1512
|
-
const de_AssetListDefinition = (output, context) => {
|
|
1513
|
-
const retVal = (output || [])
|
|
1514
|
-
.filter((e) => e != null)
|
|
1515
|
-
.map((entry) => {
|
|
1516
|
-
return de_AssetInfo(entry);
|
|
1517
|
-
});
|
|
1518
|
-
return retVal;
|
|
1519
|
-
};
|
|
1520
|
-
const de_AssetLocation = (output, context) => {
|
|
1521
|
-
return smithyClient.take(output, {
|
|
1522
|
-
RackElevation: smithyClient.limitedParseFloat32,
|
|
1523
|
-
});
|
|
1524
|
-
};
|
|
1525
|
-
const de_CapacityTaskList = (output, context) => {
|
|
1526
|
-
const retVal = (output || [])
|
|
1527
|
-
.filter((e) => e != null)
|
|
1528
|
-
.map((entry) => {
|
|
1529
|
-
return de_CapacityTaskSummary(entry);
|
|
1530
|
-
});
|
|
1531
|
-
return retVal;
|
|
1532
|
-
};
|
|
1533
|
-
const de_CapacityTaskSummary = (output, context) => {
|
|
1534
|
-
return smithyClient.take(output, {
|
|
1535
|
-
AssetId: smithyClient.expectString,
|
|
1536
|
-
CapacityTaskId: smithyClient.expectString,
|
|
1537
|
-
CapacityTaskStatus: smithyClient.expectString,
|
|
1538
|
-
CompletionDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1539
|
-
CreationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1540
|
-
LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1541
|
-
OrderId: smithyClient.expectString,
|
|
1542
|
-
OutpostId: smithyClient.expectString,
|
|
1543
|
-
});
|
|
1544
|
-
};
|
|
1545
|
-
const de_CatalogItem = (output, context) => {
|
|
1546
|
-
return smithyClient.take(output, {
|
|
1547
|
-
CatalogItemId: smithyClient.expectString,
|
|
1548
|
-
EC2Capacities: smithyClient._json,
|
|
1549
|
-
ItemStatus: smithyClient.expectString,
|
|
1550
|
-
PowerKva: smithyClient.limitedParseFloat32,
|
|
1551
|
-
SupportedStorage: smithyClient._json,
|
|
1552
|
-
SupportedUplinkGbps: smithyClient._json,
|
|
1553
|
-
WeightLbs: smithyClient.expectInt32,
|
|
1554
|
-
});
|
|
1555
|
-
};
|
|
1556
|
-
const de_CatalogItemListDefinition = (output, context) => {
|
|
1557
|
-
const retVal = (output || [])
|
|
1558
|
-
.filter((e) => e != null)
|
|
1559
|
-
.map((entry) => {
|
|
1560
|
-
return de_CatalogItem(entry);
|
|
1561
|
-
});
|
|
1562
|
-
return retVal;
|
|
1563
|
-
};
|
|
1564
|
-
const de_Order = (output, context) => {
|
|
1565
|
-
return smithyClient.take(output, {
|
|
1566
|
-
LineItems: smithyClient._json,
|
|
1567
|
-
OrderFulfilledDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1568
|
-
OrderId: smithyClient.expectString,
|
|
1569
|
-
OrderSubmissionDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1570
|
-
OrderType: smithyClient.expectString,
|
|
1571
|
-
OutpostId: smithyClient.expectString,
|
|
1572
|
-
PaymentOption: smithyClient.expectString,
|
|
1573
|
-
PaymentTerm: smithyClient.expectString,
|
|
1574
|
-
Status: smithyClient.expectString,
|
|
1575
|
-
});
|
|
1576
|
-
};
|
|
1577
|
-
const de_OrderSummary = (output, context) => {
|
|
1578
|
-
return smithyClient.take(output, {
|
|
1579
|
-
LineItemCountsByStatus: smithyClient._json,
|
|
1580
|
-
OrderFulfilledDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1581
|
-
OrderId: smithyClient.expectString,
|
|
1582
|
-
OrderSubmissionDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1583
|
-
OrderType: smithyClient.expectString,
|
|
1584
|
-
OutpostId: smithyClient.expectString,
|
|
1585
|
-
Status: smithyClient.expectString,
|
|
1586
|
-
});
|
|
1587
|
-
};
|
|
1588
|
-
const de_OrderSummaryListDefinition = (output, context) => {
|
|
1589
|
-
const retVal = (output || [])
|
|
1590
|
-
.filter((e) => e != null)
|
|
1591
|
-
.map((entry) => {
|
|
1592
|
-
return de_OrderSummary(entry);
|
|
1593
|
-
});
|
|
1594
|
-
return retVal;
|
|
1595
|
-
};
|
|
1596
|
-
const de_Subscription = (output, context) => {
|
|
1597
|
-
return smithyClient.take(output, {
|
|
1598
|
-
BeginDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1599
|
-
EndDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1600
|
-
MonthlyRecurringPrice: smithyClient.limitedParseDouble,
|
|
1601
|
-
OrderIds: smithyClient._json,
|
|
1602
|
-
SubscriptionId: smithyClient.expectString,
|
|
1603
|
-
SubscriptionStatus: smithyClient.expectString,
|
|
1604
|
-
SubscriptionType: smithyClient.expectString,
|
|
1605
|
-
UpfrontPrice: smithyClient.limitedParseDouble,
|
|
1606
|
-
});
|
|
1607
|
-
};
|
|
1608
|
-
const de_SubscriptionList = (output, context) => {
|
|
1609
|
-
const retVal = (output || [])
|
|
1610
|
-
.filter((e) => e != null)
|
|
1611
|
-
.map((entry) => {
|
|
1612
|
-
return de_Subscription(entry);
|
|
1613
|
-
});
|
|
1614
|
-
return retVal;
|
|
1615
|
-
};
|
|
1616
|
-
const deserializeMetadata = (output) => ({
|
|
1617
|
-
httpStatusCode: output.statusCode,
|
|
1618
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1619
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1620
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1621
|
-
});
|
|
1622
|
-
const _AI = "AssetId";
|
|
408
|
+
const _A = "Address";
|
|
409
|
+
const _ADE = "AccessDeniedException";
|
|
410
|
+
const _AI = "AssetInfo";
|
|
411
|
+
const _AICL = "AssetInstanceCapacityList";
|
|
1623
412
|
const _AIF = "AssetIdFilter";
|
|
1624
413
|
const _AIFc = "AccountIdFilter";
|
|
414
|
+
const _AIL = "AssetInformationList";
|
|
415
|
+
const _AILs = "AssetInstanceList";
|
|
416
|
+
const _AITC = "AssetInstanceTypeCapacity";
|
|
417
|
+
const _AIc = "AccountId";
|
|
418
|
+
const _AIcc = "AccountIds";
|
|
419
|
+
const _AIl = "AllowedIps";
|
|
420
|
+
const _AIs = "AssetId";
|
|
421
|
+
const _AIss = "AssetInstance";
|
|
422
|
+
const _AIsse = "AssetInstances";
|
|
423
|
+
const _AL = "AddressLine1";
|
|
424
|
+
const _ALD = "AssetListDefinition";
|
|
425
|
+
const _ALd = "AddressLine2";
|
|
426
|
+
const _ALdd = "AddressLine3";
|
|
427
|
+
const _ALs = "AssetLocation";
|
|
1625
428
|
const _ASF = "AwsServiceFilter";
|
|
1626
|
-
const
|
|
429
|
+
const _ASN = "AwsServiceName";
|
|
430
|
+
const _AT = "AssetType";
|
|
431
|
+
const _ATd = "AddressType";
|
|
432
|
+
const _AZ = "AvailabilityZone";
|
|
1627
433
|
const _AZF = "AvailabilityZoneFilter";
|
|
434
|
+
const _AZI = "AvailabilityZoneId";
|
|
1628
435
|
const _AZIF = "AvailabilityZoneIdFilter";
|
|
436
|
+
const _As = "Assets";
|
|
437
|
+
const _BD = "BeginDate";
|
|
438
|
+
const _BI = "BlockingInstance";
|
|
439
|
+
const _BIL = "BlockingInstancesList";
|
|
440
|
+
const _BIl = "BlockingInstances";
|
|
441
|
+
const _BRT = "BlockingResourceTypes";
|
|
442
|
+
const _C = "City";
|
|
443
|
+
const _CA = "ComputeAttributes";
|
|
444
|
+
const _CC = "CountryCode";
|
|
445
|
+
const _CCT = "CancelCapacityTask";
|
|
446
|
+
const _CCTI = "CancelCapacityTaskInput";
|
|
447
|
+
const _CCTO = "CancelCapacityTaskOutput";
|
|
448
|
+
const _CD = "CreationDate";
|
|
449
|
+
const _CDo = "CompletionDate";
|
|
450
|
+
const _CDon = "ConnectionDetails";
|
|
451
|
+
const _CE = "ConflictException";
|
|
452
|
+
const _CED = "ContractEndDate";
|
|
453
|
+
const _CI = "CatalogItem";
|
|
454
|
+
const _CII = "CatalogItemId";
|
|
455
|
+
const _CILD = "CatalogItemListDefinition";
|
|
456
|
+
const _CIa = "CatalogItems";
|
|
457
|
+
const _CIo = "ConnectionId";
|
|
458
|
+
const _CN = "ContactName";
|
|
459
|
+
const _CO = "CancelOrder";
|
|
460
|
+
const _COI = "CancelOrderInput";
|
|
461
|
+
const _COIr = "CreateOrderInput";
|
|
462
|
+
const _COIre = "CreateOutpostInput";
|
|
463
|
+
const _COO = "CancelOrderOutput";
|
|
464
|
+
const _COOr = "CreateOrderOutput";
|
|
465
|
+
const _COOre = "CreateOutpostOutput";
|
|
466
|
+
const _COr = "CreateOrder";
|
|
467
|
+
const _COre = "CreateOutpost";
|
|
468
|
+
const _CPK = "ClientPublicKey";
|
|
469
|
+
const _CPN = "ContactPhoneNumber";
|
|
470
|
+
const _CS = "CreateSite";
|
|
471
|
+
const _CSI = "CreateSiteInput";
|
|
472
|
+
const _CSO = "CreateSiteOutput";
|
|
473
|
+
const _CT = "CapacityTasks";
|
|
474
|
+
const _CTA = "ClientTunnelAddress";
|
|
475
|
+
const _CTF = "CapacityTaskFailure";
|
|
476
|
+
const _CTI = "CapacityTaskId";
|
|
477
|
+
const _CTL = "CapacityTaskList";
|
|
478
|
+
const _CTS = "CapacityTaskSummary";
|
|
1629
479
|
const _CTSF = "CapacityTaskStatusFilter";
|
|
480
|
+
const _CTSa = "CapacityTaskStatus";
|
|
481
|
+
const _Co = "Count";
|
|
482
|
+
const _D = "Description";
|
|
483
|
+
const _DO = "DeleteOutpost";
|
|
484
|
+
const _DOC = "DistrictOrCounty";
|
|
485
|
+
const _DOI = "DeleteOutpostInput";
|
|
486
|
+
const _DOO = "DeleteOutpostOutput";
|
|
487
|
+
const _DR = "DryRun";
|
|
488
|
+
const _DS = "DeleteSite";
|
|
489
|
+
const _DSI = "DeleteSiteInput";
|
|
490
|
+
const _DSN = "DeviceSerialNumber";
|
|
491
|
+
const _DSO = "DeleteSiteOutput";
|
|
492
|
+
const _ECC = "EC2Capacities";
|
|
493
|
+
const _ECCLD = "EC2CapacityListDefinition";
|
|
494
|
+
const _ECCa = "EC2Capacity";
|
|
1630
495
|
const _ECFF = "EC2FamilyFilter";
|
|
496
|
+
const _ED = "EndDate";
|
|
497
|
+
const _F = "Family";
|
|
498
|
+
const _FOCT = "FiberOpticCableType";
|
|
499
|
+
const _Fa = "Failed";
|
|
500
|
+
const _GC = "GetConnection";
|
|
501
|
+
const _GCI = "GetCatalogItem";
|
|
502
|
+
const _GCII = "GetCatalogItemInput";
|
|
503
|
+
const _GCIO = "GetCatalogItemOutput";
|
|
504
|
+
const _GCR = "GetConnectionRequest";
|
|
505
|
+
const _GCRe = "GetConnectionResponse";
|
|
506
|
+
const _GCT = "GetCapacityTask";
|
|
507
|
+
const _GCTI = "GetCapacityTaskInput";
|
|
508
|
+
const _GCTO = "GetCapacityTaskOutput";
|
|
509
|
+
const _GO = "GetOrder";
|
|
510
|
+
const _GOBI = "GetOutpostBillingInformation";
|
|
511
|
+
const _GOBII = "GetOutpostBillingInformationInput";
|
|
512
|
+
const _GOBIO = "GetOutpostBillingInformationOutput";
|
|
513
|
+
const _GOI = "GetOrderInput";
|
|
514
|
+
const _GOIT = "GetOutpostInstanceTypes";
|
|
515
|
+
const _GOITI = "GetOutpostInstanceTypesInput";
|
|
516
|
+
const _GOITO = "GetOutpostInstanceTypesOutput";
|
|
517
|
+
const _GOIe = "GetOutpostInput";
|
|
518
|
+
const _GOO = "GetOrderOutput";
|
|
519
|
+
const _GOOe = "GetOutpostOutput";
|
|
520
|
+
const _GOSIT = "GetOutpostSupportedInstanceTypes";
|
|
521
|
+
const _GOSITI = "GetOutpostSupportedInstanceTypesInput";
|
|
522
|
+
const _GOSITO = "GetOutpostSupportedInstanceTypesOutput";
|
|
523
|
+
const _GOe = "GetOutpost";
|
|
524
|
+
const _GS = "GetSite";
|
|
525
|
+
const _GSA = "GetSiteAddress";
|
|
526
|
+
const _GSAI = "GetSiteAddressInput";
|
|
527
|
+
const _GSAO = "GetSiteAddressOutput";
|
|
528
|
+
const _GSI = "GetSiteInput";
|
|
529
|
+
const _GSO = "GetSiteOutput";
|
|
530
|
+
const _HI = "HostId";
|
|
1631
531
|
const _HIF = "HostIdFilter";
|
|
532
|
+
const _I = "Instances";
|
|
1632
533
|
const _ICF = "ItemClassFilter";
|
|
534
|
+
const _IF = "InstanceFamilies";
|
|
535
|
+
const _II = "InstanceId";
|
|
536
|
+
const _IP = "InstancePools";
|
|
537
|
+
const _IS = "ItemStatus";
|
|
538
|
+
const _ISE = "InternalServerException";
|
|
539
|
+
const _IT = "InstanceType";
|
|
540
|
+
const _ITC = "InstanceTypeCapacities";
|
|
541
|
+
const _ITCn = "InstanceTypeCapacity";
|
|
542
|
+
const _ITE = "InstancesToExclude";
|
|
1633
543
|
const _ITF = "InstanceTypeFilter";
|
|
544
|
+
const _ITI = "InstanceTypeItem";
|
|
545
|
+
const _ITLD = "InstanceTypeListDefinition";
|
|
546
|
+
const _ITn = "InstanceTypes";
|
|
547
|
+
const _LA = "ListAssets";
|
|
548
|
+
const _LAI = "ListAssetsInput";
|
|
549
|
+
const _LAII = "ListAssetInstancesInput";
|
|
550
|
+
const _LAIO = "ListAssetInstancesOutput";
|
|
551
|
+
const _LAIi = "ListAssetInstances";
|
|
552
|
+
const _LAO = "ListAssetsOutput";
|
|
553
|
+
const _LBIFCT = "ListBlockingInstancesForCapacityTask";
|
|
554
|
+
const _LBIFCTI = "ListBlockingInstancesForCapacityTaskInput";
|
|
555
|
+
const _LBIFCTO = "ListBlockingInstancesForCapacityTaskOutput";
|
|
556
|
+
const _LCI = "ListCatalogItems";
|
|
557
|
+
const _LCII = "ListCatalogItemsInput";
|
|
558
|
+
const _LCIO = "ListCatalogItemsOutput";
|
|
559
|
+
const _LCS = "LifeCycleStatus";
|
|
1634
560
|
const _LCSF = "LifeCycleStatusFilter";
|
|
561
|
+
const _LCT = "ListCapacityTasks";
|
|
562
|
+
const _LCTI = "ListCapacityTasksInput";
|
|
563
|
+
const _LCTO = "ListCapacityTasksOutput";
|
|
564
|
+
const _LI = "LineItems";
|
|
565
|
+
const _LIAI = "LineItemAssetInformation";
|
|
566
|
+
const _LIAIL = "LineItemAssetInformationList";
|
|
567
|
+
const _LICBS = "LineItemCountsByStatus";
|
|
568
|
+
const _LII = "LineItemId";
|
|
569
|
+
const _LILD = "LineItemListDefinition";
|
|
570
|
+
const _LIR = "LineItemRequest";
|
|
571
|
+
const _LIRLD = "LineItemRequestListDefinition";
|
|
572
|
+
const _LIi = "LineItem";
|
|
573
|
+
const _LMD = "LastModifiedDate";
|
|
574
|
+
const _LO = "ListOrders";
|
|
575
|
+
const _LOI = "ListOrdersInput";
|
|
576
|
+
const _LOIi = "ListOutpostsInput";
|
|
577
|
+
const _LOO = "ListOrdersOutput";
|
|
578
|
+
const _LOOi = "ListOutpostsOutput";
|
|
579
|
+
const _LOi = "ListOutposts";
|
|
580
|
+
const _LS = "ListSites";
|
|
581
|
+
const _LSI = "ListSitesInput";
|
|
582
|
+
const _LSO = "ListSitesOutput";
|
|
583
|
+
const _LTFR = "ListTagsForResource";
|
|
584
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
585
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
586
|
+
const _M = "Message";
|
|
587
|
+
const _MAL = "MacAddressList";
|
|
1635
588
|
const _MR = "MaxResults";
|
|
589
|
+
const _MRP = "MonthlyRecurringPrice";
|
|
590
|
+
const _MS = "MaxSize";
|
|
591
|
+
const _MSWL = "MaximumSupportedWeightLbs";
|
|
592
|
+
const _MV = "MaxVcpus";
|
|
593
|
+
const _Mu = "Municipality";
|
|
594
|
+
const _N = "Name";
|
|
595
|
+
const _NFE = "NotFoundException";
|
|
596
|
+
const _NIDI = "NetworkInterfaceDeviceIndex";
|
|
1636
597
|
const _NT = "NextToken";
|
|
598
|
+
const _No = "Notes";
|
|
599
|
+
const _O = "Order";
|
|
600
|
+
const _OA = "OperatingAddress";
|
|
601
|
+
const _OAC = "OperatingAddressCity";
|
|
602
|
+
const _OACC = "OperatingAddressCountryCode";
|
|
1637
603
|
const _OACCF = "OperatingAddressCountryCodeFilter";
|
|
1638
604
|
const _OACF = "OperatingAddressCityFilter";
|
|
605
|
+
const _OASOR = "OperatingAddressStateOrRegion";
|
|
1639
606
|
const _OASORF = "OperatingAddressStateOrRegionFilter";
|
|
1640
|
-
const
|
|
607
|
+
const _OAu = "OutpostArn";
|
|
608
|
+
const _OFD = "OrderFulfilledDate";
|
|
609
|
+
const _OI = "OutpostIdentifier";
|
|
1641
610
|
const _OIF = "OutpostIdentifierFilter";
|
|
611
|
+
const _OIr = "OrderId";
|
|
612
|
+
const _OIrd = "OrderIds";
|
|
613
|
+
const _OIu = "OutpostId";
|
|
614
|
+
const _OIw = "OwnerId";
|
|
615
|
+
const _OS = "OrderSummary";
|
|
616
|
+
const _OSD = "OrderSubmissionDate";
|
|
617
|
+
const _OSLD = "OrderSummaryListDefinition";
|
|
618
|
+
const _OSp = "OpticalStandard";
|
|
619
|
+
const _OT = "OrderType";
|
|
620
|
+
const _Or = "Orders";
|
|
621
|
+
const _Ou = "Outpost";
|
|
622
|
+
const _Out = "Outposts";
|
|
623
|
+
const _PC = "PostalCode";
|
|
624
|
+
const _PCo = "PowerConnector";
|
|
625
|
+
const _PDK = "PowerDrawKva";
|
|
626
|
+
const _PFD = "PowerFeedDrop";
|
|
627
|
+
const _PK = "PowerKva";
|
|
628
|
+
const _PLII = "PreviousLineItemId";
|
|
629
|
+
const _PO = "PaymentOption";
|
|
630
|
+
const _POI = "PreviousOrderId";
|
|
631
|
+
const _PP = "PowerPhase";
|
|
632
|
+
const _PT = "PaymentTerm";
|
|
633
|
+
const _Q = "Quantity";
|
|
634
|
+
const _R = "Reason";
|
|
635
|
+
const _RA = "ResourceArn";
|
|
636
|
+
const _RE = "RackElevation";
|
|
637
|
+
const _RI = "RackId";
|
|
638
|
+
const _RIP = "RequestedInstancePools";
|
|
639
|
+
const _RIe = "ResourceId";
|
|
640
|
+
const _RPP = "RackPhysicalProperties";
|
|
641
|
+
const _RT = "ResourceType";
|
|
642
|
+
const _S = "State";
|
|
643
|
+
const _SA = "ShippingAddress";
|
|
644
|
+
const _SAi = "SiteArn";
|
|
645
|
+
const _SC = "ShipmentCarrier";
|
|
646
|
+
const _SCR = "StartConnectionRequest";
|
|
647
|
+
const _SCRt = "StartConnectionResponse";
|
|
648
|
+
const _SCT = "StartCapacityTask";
|
|
649
|
+
const _SCTI = "StartCapacityTaskInput";
|
|
650
|
+
const _SCTO = "StartCapacityTaskOutput";
|
|
651
|
+
const _SCt = "StartConnection";
|
|
652
|
+
const _SE = "ServerEndpoint";
|
|
1642
653
|
const _SF = "StatusFilter";
|
|
654
|
+
const _SHT = "SupportedHardwareType";
|
|
655
|
+
const _SI = "SiteId";
|
|
656
|
+
const _SIh = "ShipmentInformation";
|
|
657
|
+
const _SIu = "SubscriptionId";
|
|
658
|
+
const _SL = "SubscriptionList";
|
|
659
|
+
const _SOD = "StartOutpostDecommission";
|
|
660
|
+
const _SODI = "StartOutpostDecommissionInput";
|
|
661
|
+
const _SODO = "StartOutpostDecommissionOutput";
|
|
662
|
+
const _SOR = "StateOrRegion";
|
|
663
|
+
const _SPK = "ServerPublicKey";
|
|
664
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
665
|
+
const _SS = "SupportedStorage";
|
|
1643
666
|
const _SSF = "SupportedStorageFilter";
|
|
667
|
+
const _SSu = "SubscriptionStatus";
|
|
668
|
+
const _ST = "SubscriptionType";
|
|
669
|
+
const _STA = "ServerTunnelAddress";
|
|
670
|
+
const _STN = "ShipmentTrackingNumber";
|
|
671
|
+
const _SUG = "SupportedUplinkGbps";
|
|
672
|
+
const _Se = "Services";
|
|
673
|
+
const _Si = "Site";
|
|
674
|
+
const _Sit = "Sites";
|
|
675
|
+
const _St = "Status";
|
|
676
|
+
const _Su = "Subscriptions";
|
|
677
|
+
const _Sub = "Subscription";
|
|
678
|
+
const _T = "Type";
|
|
679
|
+
const _TAOBI = "TaskActionOnBlockingInstances";
|
|
1644
680
|
const _TK = "TagKeys";
|
|
681
|
+
const _TR = "TagResource";
|
|
682
|
+
const _TRR = "TagResourceRequest";
|
|
683
|
+
const _TRRa = "TagResourceResponse";
|
|
684
|
+
const _Ta = "Tags";
|
|
685
|
+
const _UC = "UplinkCount";
|
|
686
|
+
const _UG = "UplinkGbps";
|
|
687
|
+
const _UIA = "UnderlayIpAddress";
|
|
688
|
+
const _UO = "UpdateOutpost";
|
|
689
|
+
const _UOI = "UpdateOutpostInput";
|
|
690
|
+
const _UOO = "UpdateOutpostOutput";
|
|
691
|
+
const _UP = "UpfrontPrice";
|
|
692
|
+
const _UR = "UntagResource";
|
|
693
|
+
const _URR = "UntagResourceRequest";
|
|
694
|
+
const _URRn = "UntagResourceResponse";
|
|
695
|
+
const _US = "UpdateSite";
|
|
696
|
+
const _USA = "UpdateSiteAddress";
|
|
697
|
+
const _USAI = "UpdateSiteAddressInput";
|
|
698
|
+
const _USAO = "UpdateSiteAddressOutput";
|
|
699
|
+
const _USI = "UpdateSiteInput";
|
|
700
|
+
const _USO = "UpdateSiteOutput";
|
|
701
|
+
const _USRPP = "UpdateSiteRackPhysicalProperties";
|
|
702
|
+
const _USRPPI = "UpdateSiteRackPhysicalPropertiesInput";
|
|
703
|
+
const _USRPPO = "UpdateSiteRackPhysicalPropertiesOutput";
|
|
704
|
+
const _VCPU = "VCPUs";
|
|
705
|
+
const _VE = "ValidationException";
|
|
706
|
+
const _VO = "ValidateOnly";
|
|
707
|
+
const _WL = "WeightLbs";
|
|
708
|
+
const _c = "client";
|
|
709
|
+
const _e = "error";
|
|
710
|
+
const _h = "http";
|
|
711
|
+
const _hE = "httpError";
|
|
712
|
+
const _hQ = "httpQuery";
|
|
713
|
+
const _oLD = "outpostListDefinition";
|
|
714
|
+
const _s = "server";
|
|
715
|
+
const _sLD = "siteListDefinition";
|
|
716
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.outposts";
|
|
1645
717
|
const _tK = "tagKeys";
|
|
718
|
+
const n0 = "com.amazonaws.outposts";
|
|
719
|
+
var AccessDeniedException = [
|
|
720
|
+
-3,
|
|
721
|
+
n0,
|
|
722
|
+
_ADE,
|
|
723
|
+
{
|
|
724
|
+
[_e]: _c,
|
|
725
|
+
[_hE]: 403,
|
|
726
|
+
},
|
|
727
|
+
[_M],
|
|
728
|
+
[0],
|
|
729
|
+
];
|
|
730
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
731
|
+
var Address = [
|
|
732
|
+
3,
|
|
733
|
+
n0,
|
|
734
|
+
_A,
|
|
735
|
+
0,
|
|
736
|
+
[_CN, _CPN, _AL, _ALd, _ALdd, _C, _SOR, _DOC, _PC, _CC, _Mu],
|
|
737
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
|
738
|
+
];
|
|
739
|
+
var AssetInfo = [
|
|
740
|
+
3,
|
|
741
|
+
n0,
|
|
742
|
+
_AI,
|
|
743
|
+
0,
|
|
744
|
+
[_AIs, _RI, _AT, _CA, _ALs],
|
|
745
|
+
[0, 0, 0, () => ComputeAttributes, () => AssetLocation],
|
|
746
|
+
];
|
|
747
|
+
var AssetInstance = [3, n0, _AIss, 0, [_II, _IT, _AIs, _AIc, _ASN], [0, 0, 0, 0, 0]];
|
|
748
|
+
var AssetInstanceTypeCapacity = [3, n0, _AITC, 0, [_IT, _Co], [0, 1]];
|
|
749
|
+
var AssetLocation = [3, n0, _ALs, 0, [_RE], [1]];
|
|
750
|
+
var BlockingInstance = [3, n0, _BI, 0, [_II, _AIc, _ASN], [0, 0, 0]];
|
|
751
|
+
var CancelCapacityTaskInput = [
|
|
752
|
+
3,
|
|
753
|
+
n0,
|
|
754
|
+
_CCTI,
|
|
755
|
+
0,
|
|
756
|
+
[_CTI, _OI],
|
|
757
|
+
[
|
|
758
|
+
[0, 1],
|
|
759
|
+
[0, 1],
|
|
760
|
+
],
|
|
761
|
+
];
|
|
762
|
+
var CancelCapacityTaskOutput = [3, n0, _CCTO, 0, [], []];
|
|
763
|
+
var CancelOrderInput = [3, n0, _COI, 0, [_OIr], [[0, 1]]];
|
|
764
|
+
var CancelOrderOutput = [3, n0, _COO, 0, [], []];
|
|
765
|
+
var CapacityTaskFailure = [3, n0, _CTF, 0, [_R, _T], [0, 0]];
|
|
766
|
+
var CapacityTaskSummary = [
|
|
767
|
+
3,
|
|
768
|
+
n0,
|
|
769
|
+
_CTS,
|
|
770
|
+
0,
|
|
771
|
+
[_CTI, _OIu, _OIr, _AIs, _CTSa, _CD, _CDo, _LMD],
|
|
772
|
+
[0, 0, 0, 0, 0, 4, 4, 4],
|
|
773
|
+
];
|
|
774
|
+
var CatalogItem = [
|
|
775
|
+
3,
|
|
776
|
+
n0,
|
|
777
|
+
_CI,
|
|
778
|
+
0,
|
|
779
|
+
[_CII, _IS, _ECC, _PK, _WL, _SUG, _SS],
|
|
780
|
+
[0, 0, () => EC2CapacityListDefinition, 1, 1, 64 | 1, 64 | 0],
|
|
781
|
+
];
|
|
782
|
+
var ComputeAttributes = [
|
|
783
|
+
3,
|
|
784
|
+
n0,
|
|
785
|
+
_CA,
|
|
786
|
+
0,
|
|
787
|
+
[_HI, _S, _IF, _ITC, _MV],
|
|
788
|
+
[0, 0, 64 | 0, () => AssetInstanceCapacityList, 1],
|
|
789
|
+
];
|
|
790
|
+
var ConflictException = [
|
|
791
|
+
-3,
|
|
792
|
+
n0,
|
|
793
|
+
_CE,
|
|
794
|
+
{
|
|
795
|
+
[_e]: _c,
|
|
796
|
+
[_hE]: 409,
|
|
797
|
+
},
|
|
798
|
+
[_M, _RIe, _RT],
|
|
799
|
+
[0, 0, 0],
|
|
800
|
+
];
|
|
801
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
802
|
+
var ConnectionDetails = [
|
|
803
|
+
3,
|
|
804
|
+
n0,
|
|
805
|
+
_CDon,
|
|
806
|
+
0,
|
|
807
|
+
[_CPK, _SPK, _SE, _CTA, _STA, _AIl],
|
|
808
|
+
[0, 0, 0, 0, 0, 64 | 0],
|
|
809
|
+
];
|
|
810
|
+
var CreateOrderInput = [
|
|
811
|
+
3,
|
|
812
|
+
n0,
|
|
813
|
+
_COIr,
|
|
814
|
+
0,
|
|
815
|
+
[_OI, _LI, _PO, _PT],
|
|
816
|
+
[0, () => LineItemRequestListDefinition, 0, 0],
|
|
817
|
+
];
|
|
818
|
+
var CreateOrderOutput = [3, n0, _COOr, 0, [_O], [() => Order]];
|
|
819
|
+
var CreateOutpostInput = [
|
|
820
|
+
3,
|
|
821
|
+
n0,
|
|
822
|
+
_COIre,
|
|
823
|
+
0,
|
|
824
|
+
[_N, _D, _SI, _AZ, _AZI, _Ta, _SHT],
|
|
825
|
+
[0, 0, 0, 0, 0, 128 | 0, 0],
|
|
826
|
+
];
|
|
827
|
+
var CreateOutpostOutput = [3, n0, _COOre, 0, [_Ou], [() => Outpost]];
|
|
828
|
+
var CreateSiteInput = [
|
|
829
|
+
3,
|
|
830
|
+
n0,
|
|
831
|
+
_CSI,
|
|
832
|
+
0,
|
|
833
|
+
[_N, _D, _No, _Ta, _OA, _SA, _RPP],
|
|
834
|
+
[0, 0, 0, 128 | 0, () => Address, () => Address, () => RackPhysicalProperties],
|
|
835
|
+
];
|
|
836
|
+
var CreateSiteOutput = [3, n0, _CSO, 0, [_Si], [() => Site]];
|
|
837
|
+
var DeleteOutpostInput = [3, n0, _DOI, 0, [_OIu], [[0, 1]]];
|
|
838
|
+
var DeleteOutpostOutput = [3, n0, _DOO, 0, [], []];
|
|
839
|
+
var DeleteSiteInput = [3, n0, _DSI, 0, [_SI], [[0, 1]]];
|
|
840
|
+
var DeleteSiteOutput = [3, n0, _DSO, 0, [], []];
|
|
841
|
+
var EC2Capacity = [3, n0, _ECCa, 0, [_F, _MS, _Q], [0, 0, 0]];
|
|
842
|
+
var GetCapacityTaskInput = [
|
|
843
|
+
3,
|
|
844
|
+
n0,
|
|
845
|
+
_GCTI,
|
|
846
|
+
0,
|
|
847
|
+
[_CTI, _OI],
|
|
848
|
+
[
|
|
849
|
+
[0, 1],
|
|
850
|
+
[0, 1],
|
|
851
|
+
],
|
|
852
|
+
];
|
|
853
|
+
var GetCapacityTaskOutput = [
|
|
854
|
+
3,
|
|
855
|
+
n0,
|
|
856
|
+
_GCTO,
|
|
857
|
+
0,
|
|
858
|
+
[_CTI, _OIu, _OIr, _AIs, _RIP, _ITE, _DR, _CTSa, _Fa, _CD, _CDo, _LMD, _TAOBI],
|
|
859
|
+
[0, 0, 0, 0, () => RequestedInstancePools, () => InstancesToExclude, 2, 0, () => CapacityTaskFailure, 4, 4, 4, 0],
|
|
860
|
+
];
|
|
861
|
+
var GetCatalogItemInput = [3, n0, _GCII, 0, [_CII], [[0, 1]]];
|
|
862
|
+
var GetCatalogItemOutput = [3, n0, _GCIO, 0, [_CI], [() => CatalogItem]];
|
|
863
|
+
var GetConnectionRequest = [3, n0, _GCR, 0, [_CIo], [[0, 1]]];
|
|
864
|
+
var GetConnectionResponse = [
|
|
865
|
+
3,
|
|
866
|
+
n0,
|
|
867
|
+
_GCRe,
|
|
868
|
+
0,
|
|
869
|
+
[_CIo, _CDon],
|
|
870
|
+
[0, () => ConnectionDetails],
|
|
871
|
+
];
|
|
872
|
+
var GetOrderInput = [3, n0, _GOI, 0, [_OIr], [[0, 1]]];
|
|
873
|
+
var GetOrderOutput = [3, n0, _GOO, 0, [_O], [() => Order]];
|
|
874
|
+
var GetOutpostBillingInformationInput = [
|
|
875
|
+
3,
|
|
876
|
+
n0,
|
|
877
|
+
_GOBII,
|
|
878
|
+
0,
|
|
879
|
+
[_NT, _MR, _OI],
|
|
880
|
+
[
|
|
881
|
+
[
|
|
882
|
+
0,
|
|
883
|
+
{
|
|
884
|
+
[_hQ]: _NT,
|
|
885
|
+
},
|
|
886
|
+
],
|
|
887
|
+
[
|
|
888
|
+
1,
|
|
889
|
+
{
|
|
890
|
+
[_hQ]: _MR,
|
|
891
|
+
},
|
|
892
|
+
],
|
|
893
|
+
[0, 1],
|
|
894
|
+
],
|
|
895
|
+
];
|
|
896
|
+
var GetOutpostBillingInformationOutput = [
|
|
897
|
+
3,
|
|
898
|
+
n0,
|
|
899
|
+
_GOBIO,
|
|
900
|
+
0,
|
|
901
|
+
[_NT, _Su, _CED],
|
|
902
|
+
[0, () => SubscriptionList, 0],
|
|
903
|
+
];
|
|
904
|
+
var GetOutpostInput = [3, n0, _GOIe, 0, [_OIu], [[0, 1]]];
|
|
905
|
+
var GetOutpostInstanceTypesInput = [
|
|
906
|
+
3,
|
|
907
|
+
n0,
|
|
908
|
+
_GOITI,
|
|
909
|
+
0,
|
|
910
|
+
[_OIu, _NT, _MR],
|
|
911
|
+
[
|
|
912
|
+
[0, 1],
|
|
913
|
+
[
|
|
914
|
+
0,
|
|
915
|
+
{
|
|
916
|
+
[_hQ]: _NT,
|
|
917
|
+
},
|
|
918
|
+
],
|
|
919
|
+
[
|
|
920
|
+
1,
|
|
921
|
+
{
|
|
922
|
+
[_hQ]: _MR,
|
|
923
|
+
},
|
|
924
|
+
],
|
|
925
|
+
],
|
|
926
|
+
];
|
|
927
|
+
var GetOutpostInstanceTypesOutput = [
|
|
928
|
+
3,
|
|
929
|
+
n0,
|
|
930
|
+
_GOITO,
|
|
931
|
+
0,
|
|
932
|
+
[_ITn, _NT, _OIu, _OAu],
|
|
933
|
+
[() => InstanceTypeListDefinition, 0, 0, 0],
|
|
934
|
+
];
|
|
935
|
+
var GetOutpostOutput = [3, n0, _GOOe, 0, [_Ou], [() => Outpost]];
|
|
936
|
+
var GetOutpostSupportedInstanceTypesInput = [
|
|
937
|
+
3,
|
|
938
|
+
n0,
|
|
939
|
+
_GOSITI,
|
|
940
|
+
0,
|
|
941
|
+
[_OI, _OIr, _AIs, _MR, _NT],
|
|
942
|
+
[
|
|
943
|
+
[0, 1],
|
|
944
|
+
[
|
|
945
|
+
0,
|
|
946
|
+
{
|
|
947
|
+
[_hQ]: _OIr,
|
|
948
|
+
},
|
|
949
|
+
],
|
|
950
|
+
[
|
|
951
|
+
0,
|
|
952
|
+
{
|
|
953
|
+
[_hQ]: _AIs,
|
|
954
|
+
},
|
|
955
|
+
],
|
|
956
|
+
[
|
|
957
|
+
1,
|
|
958
|
+
{
|
|
959
|
+
[_hQ]: _MR,
|
|
960
|
+
},
|
|
961
|
+
],
|
|
962
|
+
[
|
|
963
|
+
0,
|
|
964
|
+
{
|
|
965
|
+
[_hQ]: _NT,
|
|
966
|
+
},
|
|
967
|
+
],
|
|
968
|
+
],
|
|
969
|
+
];
|
|
970
|
+
var GetOutpostSupportedInstanceTypesOutput = [
|
|
971
|
+
3,
|
|
972
|
+
n0,
|
|
973
|
+
_GOSITO,
|
|
974
|
+
0,
|
|
975
|
+
[_ITn, _NT],
|
|
976
|
+
[() => InstanceTypeListDefinition, 0],
|
|
977
|
+
];
|
|
978
|
+
var GetSiteAddressInput = [
|
|
979
|
+
3,
|
|
980
|
+
n0,
|
|
981
|
+
_GSAI,
|
|
982
|
+
0,
|
|
983
|
+
[_SI, _ATd],
|
|
984
|
+
[
|
|
985
|
+
[0, 1],
|
|
986
|
+
[
|
|
987
|
+
0,
|
|
988
|
+
{
|
|
989
|
+
[_hQ]: _ATd,
|
|
990
|
+
},
|
|
991
|
+
],
|
|
992
|
+
],
|
|
993
|
+
];
|
|
994
|
+
var GetSiteAddressOutput = [3, n0, _GSAO, 0, [_SI, _ATd, _A], [0, 0, () => Address]];
|
|
995
|
+
var GetSiteInput = [3, n0, _GSI, 0, [_SI], [[0, 1]]];
|
|
996
|
+
var GetSiteOutput = [3, n0, _GSO, 0, [_Si], [() => Site]];
|
|
997
|
+
var InstancesToExclude = [3, n0, _ITE, 0, [_I, _AIcc, _Se], [64 | 0, 64 | 0, 64 | 0]];
|
|
998
|
+
var InstanceTypeCapacity = [3, n0, _ITCn, 0, [_IT, _Co], [0, 1]];
|
|
999
|
+
var InstanceTypeItem = [3, n0, _ITI, 0, [_IT, _VCPU], [0, 1]];
|
|
1000
|
+
var InternalServerException = [
|
|
1001
|
+
-3,
|
|
1002
|
+
n0,
|
|
1003
|
+
_ISE,
|
|
1004
|
+
{
|
|
1005
|
+
[_e]: _s,
|
|
1006
|
+
[_hE]: 500,
|
|
1007
|
+
},
|
|
1008
|
+
[_M],
|
|
1009
|
+
[0],
|
|
1010
|
+
];
|
|
1011
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
1012
|
+
var LineItem = [
|
|
1013
|
+
3,
|
|
1014
|
+
n0,
|
|
1015
|
+
_LIi,
|
|
1016
|
+
0,
|
|
1017
|
+
[_CII, _LII, _Q, _St, _SIh, _AIL, _PLII, _POI],
|
|
1018
|
+
[0, 0, 1, 0, () => ShipmentInformation, () => LineItemAssetInformationList, 0, 0],
|
|
1019
|
+
];
|
|
1020
|
+
var LineItemAssetInformation = [3, n0, _LIAI, 0, [_AIs, _MAL], [0, 64 | 0]];
|
|
1021
|
+
var LineItemRequest = [3, n0, _LIR, 0, [_CII, _Q], [0, 1]];
|
|
1022
|
+
var ListAssetInstancesInput = [
|
|
1023
|
+
3,
|
|
1024
|
+
n0,
|
|
1025
|
+
_LAII,
|
|
1026
|
+
0,
|
|
1027
|
+
[_OI, _AIF, _ITF, _AIFc, _ASF, _MR, _NT],
|
|
1028
|
+
[
|
|
1029
|
+
[0, 1],
|
|
1030
|
+
[
|
|
1031
|
+
64 | 0,
|
|
1032
|
+
{
|
|
1033
|
+
[_hQ]: _AIF,
|
|
1034
|
+
},
|
|
1035
|
+
],
|
|
1036
|
+
[
|
|
1037
|
+
64 | 0,
|
|
1038
|
+
{
|
|
1039
|
+
[_hQ]: _ITF,
|
|
1040
|
+
},
|
|
1041
|
+
],
|
|
1042
|
+
[
|
|
1043
|
+
64 | 0,
|
|
1044
|
+
{
|
|
1045
|
+
[_hQ]: _AIFc,
|
|
1046
|
+
},
|
|
1047
|
+
],
|
|
1048
|
+
[
|
|
1049
|
+
64 | 0,
|
|
1050
|
+
{
|
|
1051
|
+
[_hQ]: _ASF,
|
|
1052
|
+
},
|
|
1053
|
+
],
|
|
1054
|
+
[
|
|
1055
|
+
1,
|
|
1056
|
+
{
|
|
1057
|
+
[_hQ]: _MR,
|
|
1058
|
+
},
|
|
1059
|
+
],
|
|
1060
|
+
[
|
|
1061
|
+
0,
|
|
1062
|
+
{
|
|
1063
|
+
[_hQ]: _NT,
|
|
1064
|
+
},
|
|
1065
|
+
],
|
|
1066
|
+
],
|
|
1067
|
+
];
|
|
1068
|
+
var ListAssetInstancesOutput = [
|
|
1069
|
+
3,
|
|
1070
|
+
n0,
|
|
1071
|
+
_LAIO,
|
|
1072
|
+
0,
|
|
1073
|
+
[_AIsse, _NT],
|
|
1074
|
+
[() => AssetInstanceList, 0],
|
|
1075
|
+
];
|
|
1076
|
+
var ListAssetsInput = [
|
|
1077
|
+
3,
|
|
1078
|
+
n0,
|
|
1079
|
+
_LAI,
|
|
1080
|
+
0,
|
|
1081
|
+
[_OI, _HIF, _MR, _NT, _SF],
|
|
1082
|
+
[
|
|
1083
|
+
[0, 1],
|
|
1084
|
+
[
|
|
1085
|
+
64 | 0,
|
|
1086
|
+
{
|
|
1087
|
+
[_hQ]: _HIF,
|
|
1088
|
+
},
|
|
1089
|
+
],
|
|
1090
|
+
[
|
|
1091
|
+
1,
|
|
1092
|
+
{
|
|
1093
|
+
[_hQ]: _MR,
|
|
1094
|
+
},
|
|
1095
|
+
],
|
|
1096
|
+
[
|
|
1097
|
+
0,
|
|
1098
|
+
{
|
|
1099
|
+
[_hQ]: _NT,
|
|
1100
|
+
},
|
|
1101
|
+
],
|
|
1102
|
+
[
|
|
1103
|
+
64 | 0,
|
|
1104
|
+
{
|
|
1105
|
+
[_hQ]: _SF,
|
|
1106
|
+
},
|
|
1107
|
+
],
|
|
1108
|
+
],
|
|
1109
|
+
];
|
|
1110
|
+
var ListAssetsOutput = [3, n0, _LAO, 0, [_As, _NT], [() => AssetListDefinition, 0]];
|
|
1111
|
+
var ListBlockingInstancesForCapacityTaskInput = [
|
|
1112
|
+
3,
|
|
1113
|
+
n0,
|
|
1114
|
+
_LBIFCTI,
|
|
1115
|
+
0,
|
|
1116
|
+
[_OI, _CTI, _MR, _NT],
|
|
1117
|
+
[
|
|
1118
|
+
[0, 1],
|
|
1119
|
+
[0, 1],
|
|
1120
|
+
[
|
|
1121
|
+
1,
|
|
1122
|
+
{
|
|
1123
|
+
[_hQ]: _MR,
|
|
1124
|
+
},
|
|
1125
|
+
],
|
|
1126
|
+
[
|
|
1127
|
+
0,
|
|
1128
|
+
{
|
|
1129
|
+
[_hQ]: _NT,
|
|
1130
|
+
},
|
|
1131
|
+
],
|
|
1132
|
+
],
|
|
1133
|
+
];
|
|
1134
|
+
var ListBlockingInstancesForCapacityTaskOutput = [
|
|
1135
|
+
3,
|
|
1136
|
+
n0,
|
|
1137
|
+
_LBIFCTO,
|
|
1138
|
+
0,
|
|
1139
|
+
[_BIl, _NT],
|
|
1140
|
+
[() => BlockingInstancesList, 0],
|
|
1141
|
+
];
|
|
1142
|
+
var ListCapacityTasksInput = [
|
|
1143
|
+
3,
|
|
1144
|
+
n0,
|
|
1145
|
+
_LCTI,
|
|
1146
|
+
0,
|
|
1147
|
+
[_OIF, _MR, _NT, _CTSF],
|
|
1148
|
+
[
|
|
1149
|
+
[
|
|
1150
|
+
0,
|
|
1151
|
+
{
|
|
1152
|
+
[_hQ]: _OIF,
|
|
1153
|
+
},
|
|
1154
|
+
],
|
|
1155
|
+
[
|
|
1156
|
+
1,
|
|
1157
|
+
{
|
|
1158
|
+
[_hQ]: _MR,
|
|
1159
|
+
},
|
|
1160
|
+
],
|
|
1161
|
+
[
|
|
1162
|
+
0,
|
|
1163
|
+
{
|
|
1164
|
+
[_hQ]: _NT,
|
|
1165
|
+
},
|
|
1166
|
+
],
|
|
1167
|
+
[
|
|
1168
|
+
64 | 0,
|
|
1169
|
+
{
|
|
1170
|
+
[_hQ]: _CTSF,
|
|
1171
|
+
},
|
|
1172
|
+
],
|
|
1173
|
+
],
|
|
1174
|
+
];
|
|
1175
|
+
var ListCapacityTasksOutput = [3, n0, _LCTO, 0, [_CT, _NT], [() => CapacityTaskList, 0]];
|
|
1176
|
+
var ListCatalogItemsInput = [
|
|
1177
|
+
3,
|
|
1178
|
+
n0,
|
|
1179
|
+
_LCII,
|
|
1180
|
+
0,
|
|
1181
|
+
[_NT, _MR, _ICF, _SSF, _ECFF],
|
|
1182
|
+
[
|
|
1183
|
+
[
|
|
1184
|
+
0,
|
|
1185
|
+
{
|
|
1186
|
+
[_hQ]: _NT,
|
|
1187
|
+
},
|
|
1188
|
+
],
|
|
1189
|
+
[
|
|
1190
|
+
1,
|
|
1191
|
+
{
|
|
1192
|
+
[_hQ]: _MR,
|
|
1193
|
+
},
|
|
1194
|
+
],
|
|
1195
|
+
[
|
|
1196
|
+
64 | 0,
|
|
1197
|
+
{
|
|
1198
|
+
[_hQ]: _ICF,
|
|
1199
|
+
},
|
|
1200
|
+
],
|
|
1201
|
+
[
|
|
1202
|
+
64 | 0,
|
|
1203
|
+
{
|
|
1204
|
+
[_hQ]: _SSF,
|
|
1205
|
+
},
|
|
1206
|
+
],
|
|
1207
|
+
[
|
|
1208
|
+
64 | 0,
|
|
1209
|
+
{
|
|
1210
|
+
[_hQ]: _ECFF,
|
|
1211
|
+
},
|
|
1212
|
+
],
|
|
1213
|
+
],
|
|
1214
|
+
];
|
|
1215
|
+
var ListCatalogItemsOutput = [
|
|
1216
|
+
3,
|
|
1217
|
+
n0,
|
|
1218
|
+
_LCIO,
|
|
1219
|
+
0,
|
|
1220
|
+
[_CIa, _NT],
|
|
1221
|
+
[() => CatalogItemListDefinition, 0],
|
|
1222
|
+
];
|
|
1223
|
+
var ListOrdersInput = [
|
|
1224
|
+
3,
|
|
1225
|
+
n0,
|
|
1226
|
+
_LOI,
|
|
1227
|
+
0,
|
|
1228
|
+
[_OIF, _NT, _MR],
|
|
1229
|
+
[
|
|
1230
|
+
[
|
|
1231
|
+
0,
|
|
1232
|
+
{
|
|
1233
|
+
[_hQ]: _OIF,
|
|
1234
|
+
},
|
|
1235
|
+
],
|
|
1236
|
+
[
|
|
1237
|
+
0,
|
|
1238
|
+
{
|
|
1239
|
+
[_hQ]: _NT,
|
|
1240
|
+
},
|
|
1241
|
+
],
|
|
1242
|
+
[
|
|
1243
|
+
1,
|
|
1244
|
+
{
|
|
1245
|
+
[_hQ]: _MR,
|
|
1246
|
+
},
|
|
1247
|
+
],
|
|
1248
|
+
],
|
|
1249
|
+
];
|
|
1250
|
+
var ListOrdersOutput = [
|
|
1251
|
+
3,
|
|
1252
|
+
n0,
|
|
1253
|
+
_LOO,
|
|
1254
|
+
0,
|
|
1255
|
+
[_Or, _NT],
|
|
1256
|
+
[() => OrderSummaryListDefinition, 0],
|
|
1257
|
+
];
|
|
1258
|
+
var ListOutpostsInput = [
|
|
1259
|
+
3,
|
|
1260
|
+
n0,
|
|
1261
|
+
_LOIi,
|
|
1262
|
+
0,
|
|
1263
|
+
[_NT, _MR, _LCSF, _AZF, _AZIF],
|
|
1264
|
+
[
|
|
1265
|
+
[
|
|
1266
|
+
0,
|
|
1267
|
+
{
|
|
1268
|
+
[_hQ]: _NT,
|
|
1269
|
+
},
|
|
1270
|
+
],
|
|
1271
|
+
[
|
|
1272
|
+
1,
|
|
1273
|
+
{
|
|
1274
|
+
[_hQ]: _MR,
|
|
1275
|
+
},
|
|
1276
|
+
],
|
|
1277
|
+
[
|
|
1278
|
+
64 | 0,
|
|
1279
|
+
{
|
|
1280
|
+
[_hQ]: _LCSF,
|
|
1281
|
+
},
|
|
1282
|
+
],
|
|
1283
|
+
[
|
|
1284
|
+
64 | 0,
|
|
1285
|
+
{
|
|
1286
|
+
[_hQ]: _AZF,
|
|
1287
|
+
},
|
|
1288
|
+
],
|
|
1289
|
+
[
|
|
1290
|
+
64 | 0,
|
|
1291
|
+
{
|
|
1292
|
+
[_hQ]: _AZIF,
|
|
1293
|
+
},
|
|
1294
|
+
],
|
|
1295
|
+
],
|
|
1296
|
+
];
|
|
1297
|
+
var ListOutpostsOutput = [3, n0, _LOOi, 0, [_Out, _NT], [() => outpostListDefinition, 0]];
|
|
1298
|
+
var ListSitesInput = [
|
|
1299
|
+
3,
|
|
1300
|
+
n0,
|
|
1301
|
+
_LSI,
|
|
1302
|
+
0,
|
|
1303
|
+
[_NT, _MR, _OACCF, _OASORF, _OACF],
|
|
1304
|
+
[
|
|
1305
|
+
[
|
|
1306
|
+
0,
|
|
1307
|
+
{
|
|
1308
|
+
[_hQ]: _NT,
|
|
1309
|
+
},
|
|
1310
|
+
],
|
|
1311
|
+
[
|
|
1312
|
+
1,
|
|
1313
|
+
{
|
|
1314
|
+
[_hQ]: _MR,
|
|
1315
|
+
},
|
|
1316
|
+
],
|
|
1317
|
+
[
|
|
1318
|
+
64 | 0,
|
|
1319
|
+
{
|
|
1320
|
+
[_hQ]: _OACCF,
|
|
1321
|
+
},
|
|
1322
|
+
],
|
|
1323
|
+
[
|
|
1324
|
+
64 | 0,
|
|
1325
|
+
{
|
|
1326
|
+
[_hQ]: _OASORF,
|
|
1327
|
+
},
|
|
1328
|
+
],
|
|
1329
|
+
[
|
|
1330
|
+
64 | 0,
|
|
1331
|
+
{
|
|
1332
|
+
[_hQ]: _OACF,
|
|
1333
|
+
},
|
|
1334
|
+
],
|
|
1335
|
+
],
|
|
1336
|
+
];
|
|
1337
|
+
var ListSitesOutput = [3, n0, _LSO, 0, [_Sit, _NT], [() => siteListDefinition, 0]];
|
|
1338
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
1339
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta], [128 | 0]];
|
|
1340
|
+
var NotFoundException = [
|
|
1341
|
+
-3,
|
|
1342
|
+
n0,
|
|
1343
|
+
_NFE,
|
|
1344
|
+
{
|
|
1345
|
+
[_e]: _c,
|
|
1346
|
+
[_hE]: 404,
|
|
1347
|
+
},
|
|
1348
|
+
[_M],
|
|
1349
|
+
[0],
|
|
1350
|
+
];
|
|
1351
|
+
schema.TypeRegistry.for(n0).registerError(NotFoundException, NotFoundException$1);
|
|
1352
|
+
var Order = [
|
|
1353
|
+
3,
|
|
1354
|
+
n0,
|
|
1355
|
+
_O,
|
|
1356
|
+
0,
|
|
1357
|
+
[_OIu, _OIr, _St, _LI, _PO, _OSD, _OFD, _PT, _OT],
|
|
1358
|
+
[0, 0, 0, () => LineItemListDefinition, 0, 4, 4, 0, 0],
|
|
1359
|
+
];
|
|
1360
|
+
var OrderSummary = [
|
|
1361
|
+
3,
|
|
1362
|
+
n0,
|
|
1363
|
+
_OS,
|
|
1364
|
+
0,
|
|
1365
|
+
[_OIu, _OIr, _OT, _St, _LICBS, _OSD, _OFD],
|
|
1366
|
+
[0, 0, 0, 0, 128 | 1, 4, 4],
|
|
1367
|
+
];
|
|
1368
|
+
var Outpost = [
|
|
1369
|
+
3,
|
|
1370
|
+
n0,
|
|
1371
|
+
_Ou,
|
|
1372
|
+
0,
|
|
1373
|
+
[_OIu, _OIw, _OAu, _SI, _N, _D, _LCS, _AZ, _AZI, _Ta, _SAi, _SHT],
|
|
1374
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 0, 0],
|
|
1375
|
+
];
|
|
1376
|
+
var RackPhysicalProperties = [
|
|
1377
|
+
3,
|
|
1378
|
+
n0,
|
|
1379
|
+
_RPP,
|
|
1380
|
+
0,
|
|
1381
|
+
[_PDK, _PP, _PCo, _PFD, _UG, _UC, _FOCT, _OSp, _MSWL],
|
|
1382
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0],
|
|
1383
|
+
];
|
|
1384
|
+
var ServiceQuotaExceededException = [
|
|
1385
|
+
-3,
|
|
1386
|
+
n0,
|
|
1387
|
+
_SQEE,
|
|
1388
|
+
{
|
|
1389
|
+
[_e]: _c,
|
|
1390
|
+
[_hE]: 402,
|
|
1391
|
+
},
|
|
1392
|
+
[_M],
|
|
1393
|
+
[0],
|
|
1394
|
+
];
|
|
1395
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1396
|
+
var ShipmentInformation = [3, n0, _SIh, 0, [_STN, _SC], [0, 0]];
|
|
1397
|
+
var Site = [
|
|
1398
|
+
3,
|
|
1399
|
+
n0,
|
|
1400
|
+
_Si,
|
|
1401
|
+
0,
|
|
1402
|
+
[_SI, _AIc, _N, _D, _Ta, _SAi, _No, _OACC, _OASOR, _OAC, _RPP],
|
|
1403
|
+
[0, 0, 0, 0, 128 | 0, 0, 0, 0, 0, 0, () => RackPhysicalProperties],
|
|
1404
|
+
];
|
|
1405
|
+
var StartCapacityTaskInput = [
|
|
1406
|
+
3,
|
|
1407
|
+
n0,
|
|
1408
|
+
_SCTI,
|
|
1409
|
+
0,
|
|
1410
|
+
[_OI, _OIr, _AIs, _IP, _ITE, _DR, _TAOBI],
|
|
1411
|
+
[[0, 1], 0, 0, () => RequestedInstancePools, () => InstancesToExclude, 2, 0],
|
|
1412
|
+
];
|
|
1413
|
+
var StartCapacityTaskOutput = [
|
|
1414
|
+
3,
|
|
1415
|
+
n0,
|
|
1416
|
+
_SCTO,
|
|
1417
|
+
0,
|
|
1418
|
+
[_CTI, _OIu, _OIr, _AIs, _RIP, _ITE, _DR, _CTSa, _Fa, _CD, _CDo, _LMD, _TAOBI],
|
|
1419
|
+
[0, 0, 0, 0, () => RequestedInstancePools, () => InstancesToExclude, 2, 0, () => CapacityTaskFailure, 4, 4, 4, 0],
|
|
1420
|
+
];
|
|
1421
|
+
var StartConnectionRequest = [3, n0, _SCR, 0, [_DSN, _AIs, _CPK, _NIDI], [0, 0, 0, 1]];
|
|
1422
|
+
var StartConnectionResponse = [3, n0, _SCRt, 0, [_CIo, _UIA], [0, 0]];
|
|
1423
|
+
var StartOutpostDecommissionInput = [3, n0, _SODI, 0, [_OI, _VO], [[0, 1], 2]];
|
|
1424
|
+
var StartOutpostDecommissionOutput = [3, n0, _SODO, 0, [_St, _BRT], [0, 64 | 0]];
|
|
1425
|
+
var Subscription = [
|
|
1426
|
+
3,
|
|
1427
|
+
n0,
|
|
1428
|
+
_Sub,
|
|
1429
|
+
0,
|
|
1430
|
+
[_SIu, _ST, _SSu, _OIrd, _BD, _ED, _MRP, _UP],
|
|
1431
|
+
[0, 0, 0, 64 | 0, 4, 4, 1, 1],
|
|
1432
|
+
];
|
|
1433
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _Ta], [[0, 1], 128 | 0]];
|
|
1434
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1435
|
+
var UntagResourceRequest = [
|
|
1436
|
+
3,
|
|
1437
|
+
n0,
|
|
1438
|
+
_URR,
|
|
1439
|
+
0,
|
|
1440
|
+
[_RA, _TK],
|
|
1441
|
+
[
|
|
1442
|
+
[0, 1],
|
|
1443
|
+
[
|
|
1444
|
+
64 | 0,
|
|
1445
|
+
{
|
|
1446
|
+
[_hQ]: _tK,
|
|
1447
|
+
},
|
|
1448
|
+
],
|
|
1449
|
+
],
|
|
1450
|
+
];
|
|
1451
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1452
|
+
var UpdateOutpostInput = [3, n0, _UOI, 0, [_OIu, _N, _D, _SHT], [[0, 1], 0, 0, 0]];
|
|
1453
|
+
var UpdateOutpostOutput = [3, n0, _UOO, 0, [_Ou], [() => Outpost]];
|
|
1454
|
+
var UpdateSiteAddressInput = [
|
|
1455
|
+
3,
|
|
1456
|
+
n0,
|
|
1457
|
+
_USAI,
|
|
1458
|
+
0,
|
|
1459
|
+
[_SI, _ATd, _A],
|
|
1460
|
+
[[0, 1], 0, () => Address],
|
|
1461
|
+
];
|
|
1462
|
+
var UpdateSiteAddressOutput = [3, n0, _USAO, 0, [_ATd, _A], [0, () => Address]];
|
|
1463
|
+
var UpdateSiteInput = [3, n0, _USI, 0, [_SI, _N, _D, _No], [[0, 1], 0, 0, 0]];
|
|
1464
|
+
var UpdateSiteOutput = [3, n0, _USO, 0, [_Si], [() => Site]];
|
|
1465
|
+
var UpdateSiteRackPhysicalPropertiesInput = [
|
|
1466
|
+
3,
|
|
1467
|
+
n0,
|
|
1468
|
+
_USRPPI,
|
|
1469
|
+
0,
|
|
1470
|
+
[_SI, _PDK, _PP, _PCo, _PFD, _UG, _UC, _FOCT, _OSp, _MSWL],
|
|
1471
|
+
[[0, 1], 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
|
1472
|
+
];
|
|
1473
|
+
var UpdateSiteRackPhysicalPropertiesOutput = [3, n0, _USRPPO, 0, [_Si], [() => Site]];
|
|
1474
|
+
var ValidationException = [
|
|
1475
|
+
-3,
|
|
1476
|
+
n0,
|
|
1477
|
+
_VE,
|
|
1478
|
+
{
|
|
1479
|
+
[_e]: _c,
|
|
1480
|
+
[_hE]: 400,
|
|
1481
|
+
},
|
|
1482
|
+
[_M],
|
|
1483
|
+
[0],
|
|
1484
|
+
];
|
|
1485
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1486
|
+
var OutpostsServiceException = [-3, _sm, "OutpostsServiceException", 0, [], []];
|
|
1487
|
+
schema.TypeRegistry.for(_sm).registerError(OutpostsServiceException, OutpostsServiceException$1);
|
|
1488
|
+
var AssetInstanceCapacityList = [1, n0, _AICL, 0, () => AssetInstanceTypeCapacity];
|
|
1489
|
+
var AssetInstanceList = [1, n0, _AILs, 0, () => AssetInstance];
|
|
1490
|
+
var AssetListDefinition = [1, n0, _ALD, 0, () => AssetInfo];
|
|
1491
|
+
var BlockingInstancesList = [1, n0, _BIL, 0, () => BlockingInstance];
|
|
1492
|
+
var CapacityTaskList = [1, n0, _CTL, 0, () => CapacityTaskSummary];
|
|
1493
|
+
var CatalogItemListDefinition = [1, n0, _CILD, 0, () => CatalogItem];
|
|
1494
|
+
var EC2CapacityListDefinition = [1, n0, _ECCLD, 0, () => EC2Capacity];
|
|
1495
|
+
var InstanceTypeListDefinition = [1, n0, _ITLD, 0, () => InstanceTypeItem];
|
|
1496
|
+
var LineItemAssetInformationList = [1, n0, _LIAIL, 0, () => LineItemAssetInformation];
|
|
1497
|
+
var LineItemListDefinition = [1, n0, _LILD, 0, () => LineItem];
|
|
1498
|
+
var LineItemRequestListDefinition = [1, n0, _LIRLD, 0, () => LineItemRequest];
|
|
1499
|
+
var OrderSummaryListDefinition = [1, n0, _OSLD, 0, () => OrderSummary];
|
|
1500
|
+
var outpostListDefinition = [1, n0, _oLD, 0, () => Outpost];
|
|
1501
|
+
var RequestedInstancePools = [1, n0, _RIP, 0, () => InstanceTypeCapacity];
|
|
1502
|
+
var siteListDefinition = [1, n0, _sLD, 0, () => Site];
|
|
1503
|
+
var SubscriptionList = [1, n0, _SL, 0, () => Subscription];
|
|
1504
|
+
var CancelCapacityTask = [
|
|
1505
|
+
9,
|
|
1506
|
+
n0,
|
|
1507
|
+
_CCT,
|
|
1508
|
+
{
|
|
1509
|
+
[_h]: ["POST", "/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}", 200],
|
|
1510
|
+
},
|
|
1511
|
+
() => CancelCapacityTaskInput,
|
|
1512
|
+
() => CancelCapacityTaskOutput,
|
|
1513
|
+
];
|
|
1514
|
+
var CancelOrder = [
|
|
1515
|
+
9,
|
|
1516
|
+
n0,
|
|
1517
|
+
_CO,
|
|
1518
|
+
{
|
|
1519
|
+
[_h]: ["POST", "/orders/{OrderId}/cancel", 200],
|
|
1520
|
+
},
|
|
1521
|
+
() => CancelOrderInput,
|
|
1522
|
+
() => CancelOrderOutput,
|
|
1523
|
+
];
|
|
1524
|
+
var CreateOrder = [
|
|
1525
|
+
9,
|
|
1526
|
+
n0,
|
|
1527
|
+
_COr,
|
|
1528
|
+
{
|
|
1529
|
+
[_h]: ["POST", "/orders", 200],
|
|
1530
|
+
},
|
|
1531
|
+
() => CreateOrderInput,
|
|
1532
|
+
() => CreateOrderOutput,
|
|
1533
|
+
];
|
|
1534
|
+
var CreateOutpost = [
|
|
1535
|
+
9,
|
|
1536
|
+
n0,
|
|
1537
|
+
_COre,
|
|
1538
|
+
{
|
|
1539
|
+
[_h]: ["POST", "/outposts", 200],
|
|
1540
|
+
},
|
|
1541
|
+
() => CreateOutpostInput,
|
|
1542
|
+
() => CreateOutpostOutput,
|
|
1543
|
+
];
|
|
1544
|
+
var CreateSite = [
|
|
1545
|
+
9,
|
|
1546
|
+
n0,
|
|
1547
|
+
_CS,
|
|
1548
|
+
{
|
|
1549
|
+
[_h]: ["POST", "/sites", 200],
|
|
1550
|
+
},
|
|
1551
|
+
() => CreateSiteInput,
|
|
1552
|
+
() => CreateSiteOutput,
|
|
1553
|
+
];
|
|
1554
|
+
var DeleteOutpost = [
|
|
1555
|
+
9,
|
|
1556
|
+
n0,
|
|
1557
|
+
_DO,
|
|
1558
|
+
{
|
|
1559
|
+
[_h]: ["DELETE", "/outposts/{OutpostId}", 200],
|
|
1560
|
+
},
|
|
1561
|
+
() => DeleteOutpostInput,
|
|
1562
|
+
() => DeleteOutpostOutput,
|
|
1563
|
+
];
|
|
1564
|
+
var DeleteSite = [
|
|
1565
|
+
9,
|
|
1566
|
+
n0,
|
|
1567
|
+
_DS,
|
|
1568
|
+
{
|
|
1569
|
+
[_h]: ["DELETE", "/sites/{SiteId}", 200],
|
|
1570
|
+
},
|
|
1571
|
+
() => DeleteSiteInput,
|
|
1572
|
+
() => DeleteSiteOutput,
|
|
1573
|
+
];
|
|
1574
|
+
var GetCapacityTask = [
|
|
1575
|
+
9,
|
|
1576
|
+
n0,
|
|
1577
|
+
_GCT,
|
|
1578
|
+
{
|
|
1579
|
+
[_h]: ["GET", "/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}", 200],
|
|
1580
|
+
},
|
|
1581
|
+
() => GetCapacityTaskInput,
|
|
1582
|
+
() => GetCapacityTaskOutput,
|
|
1583
|
+
];
|
|
1584
|
+
var GetCatalogItem = [
|
|
1585
|
+
9,
|
|
1586
|
+
n0,
|
|
1587
|
+
_GCI,
|
|
1588
|
+
{
|
|
1589
|
+
[_h]: ["GET", "/catalog/item/{CatalogItemId}", 200],
|
|
1590
|
+
},
|
|
1591
|
+
() => GetCatalogItemInput,
|
|
1592
|
+
() => GetCatalogItemOutput,
|
|
1593
|
+
];
|
|
1594
|
+
var GetConnection = [
|
|
1595
|
+
9,
|
|
1596
|
+
n0,
|
|
1597
|
+
_GC,
|
|
1598
|
+
{
|
|
1599
|
+
[_h]: ["GET", "/connections/{ConnectionId}", 200],
|
|
1600
|
+
},
|
|
1601
|
+
() => GetConnectionRequest,
|
|
1602
|
+
() => GetConnectionResponse,
|
|
1603
|
+
];
|
|
1604
|
+
var GetOrder = [
|
|
1605
|
+
9,
|
|
1606
|
+
n0,
|
|
1607
|
+
_GO,
|
|
1608
|
+
{
|
|
1609
|
+
[_h]: ["GET", "/orders/{OrderId}", 200],
|
|
1610
|
+
},
|
|
1611
|
+
() => GetOrderInput,
|
|
1612
|
+
() => GetOrderOutput,
|
|
1613
|
+
];
|
|
1614
|
+
var GetOutpost = [
|
|
1615
|
+
9,
|
|
1616
|
+
n0,
|
|
1617
|
+
_GOe,
|
|
1618
|
+
{
|
|
1619
|
+
[_h]: ["GET", "/outposts/{OutpostId}", 200],
|
|
1620
|
+
},
|
|
1621
|
+
() => GetOutpostInput,
|
|
1622
|
+
() => GetOutpostOutput,
|
|
1623
|
+
];
|
|
1624
|
+
var GetOutpostBillingInformation = [
|
|
1625
|
+
9,
|
|
1626
|
+
n0,
|
|
1627
|
+
_GOBI,
|
|
1628
|
+
{
|
|
1629
|
+
[_h]: ["GET", "/outpost/{OutpostIdentifier}/billing-information", 200],
|
|
1630
|
+
},
|
|
1631
|
+
() => GetOutpostBillingInformationInput,
|
|
1632
|
+
() => GetOutpostBillingInformationOutput,
|
|
1633
|
+
];
|
|
1634
|
+
var GetOutpostInstanceTypes = [
|
|
1635
|
+
9,
|
|
1636
|
+
n0,
|
|
1637
|
+
_GOIT,
|
|
1638
|
+
{
|
|
1639
|
+
[_h]: ["GET", "/outposts/{OutpostId}/instanceTypes", 200],
|
|
1640
|
+
},
|
|
1641
|
+
() => GetOutpostInstanceTypesInput,
|
|
1642
|
+
() => GetOutpostInstanceTypesOutput,
|
|
1643
|
+
];
|
|
1644
|
+
var GetOutpostSupportedInstanceTypes = [
|
|
1645
|
+
9,
|
|
1646
|
+
n0,
|
|
1647
|
+
_GOSIT,
|
|
1648
|
+
{
|
|
1649
|
+
[_h]: ["GET", "/outposts/{OutpostIdentifier}/supportedInstanceTypes", 200],
|
|
1650
|
+
},
|
|
1651
|
+
() => GetOutpostSupportedInstanceTypesInput,
|
|
1652
|
+
() => GetOutpostSupportedInstanceTypesOutput,
|
|
1653
|
+
];
|
|
1654
|
+
var GetSite = [
|
|
1655
|
+
9,
|
|
1656
|
+
n0,
|
|
1657
|
+
_GS,
|
|
1658
|
+
{
|
|
1659
|
+
[_h]: ["GET", "/sites/{SiteId}", 200],
|
|
1660
|
+
},
|
|
1661
|
+
() => GetSiteInput,
|
|
1662
|
+
() => GetSiteOutput,
|
|
1663
|
+
];
|
|
1664
|
+
var GetSiteAddress = [
|
|
1665
|
+
9,
|
|
1666
|
+
n0,
|
|
1667
|
+
_GSA,
|
|
1668
|
+
{
|
|
1669
|
+
[_h]: ["GET", "/sites/{SiteId}/address", 200],
|
|
1670
|
+
},
|
|
1671
|
+
() => GetSiteAddressInput,
|
|
1672
|
+
() => GetSiteAddressOutput,
|
|
1673
|
+
];
|
|
1674
|
+
var ListAssetInstances = [
|
|
1675
|
+
9,
|
|
1676
|
+
n0,
|
|
1677
|
+
_LAIi,
|
|
1678
|
+
{
|
|
1679
|
+
[_h]: ["GET", "/outposts/{OutpostIdentifier}/assetInstances", 200],
|
|
1680
|
+
},
|
|
1681
|
+
() => ListAssetInstancesInput,
|
|
1682
|
+
() => ListAssetInstancesOutput,
|
|
1683
|
+
];
|
|
1684
|
+
var ListAssets = [
|
|
1685
|
+
9,
|
|
1686
|
+
n0,
|
|
1687
|
+
_LA,
|
|
1688
|
+
{
|
|
1689
|
+
[_h]: ["GET", "/outposts/{OutpostIdentifier}/assets", 200],
|
|
1690
|
+
},
|
|
1691
|
+
() => ListAssetsInput,
|
|
1692
|
+
() => ListAssetsOutput,
|
|
1693
|
+
];
|
|
1694
|
+
var ListBlockingInstancesForCapacityTask = [
|
|
1695
|
+
9,
|
|
1696
|
+
n0,
|
|
1697
|
+
_LBIFCT,
|
|
1698
|
+
{
|
|
1699
|
+
[_h]: ["GET", "/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}/blockingInstances", 200],
|
|
1700
|
+
},
|
|
1701
|
+
() => ListBlockingInstancesForCapacityTaskInput,
|
|
1702
|
+
() => ListBlockingInstancesForCapacityTaskOutput,
|
|
1703
|
+
];
|
|
1704
|
+
var ListCapacityTasks = [
|
|
1705
|
+
9,
|
|
1706
|
+
n0,
|
|
1707
|
+
_LCT,
|
|
1708
|
+
{
|
|
1709
|
+
[_h]: ["GET", "/capacity/tasks", 200],
|
|
1710
|
+
},
|
|
1711
|
+
() => ListCapacityTasksInput,
|
|
1712
|
+
() => ListCapacityTasksOutput,
|
|
1713
|
+
];
|
|
1714
|
+
var ListCatalogItems = [
|
|
1715
|
+
9,
|
|
1716
|
+
n0,
|
|
1717
|
+
_LCI,
|
|
1718
|
+
{
|
|
1719
|
+
[_h]: ["GET", "/catalog/items", 200],
|
|
1720
|
+
},
|
|
1721
|
+
() => ListCatalogItemsInput,
|
|
1722
|
+
() => ListCatalogItemsOutput,
|
|
1723
|
+
];
|
|
1724
|
+
var ListOrders = [
|
|
1725
|
+
9,
|
|
1726
|
+
n0,
|
|
1727
|
+
_LO,
|
|
1728
|
+
{
|
|
1729
|
+
[_h]: ["GET", "/list-orders", 200],
|
|
1730
|
+
},
|
|
1731
|
+
() => ListOrdersInput,
|
|
1732
|
+
() => ListOrdersOutput,
|
|
1733
|
+
];
|
|
1734
|
+
var ListOutposts = [
|
|
1735
|
+
9,
|
|
1736
|
+
n0,
|
|
1737
|
+
_LOi,
|
|
1738
|
+
{
|
|
1739
|
+
[_h]: ["GET", "/outposts", 200],
|
|
1740
|
+
},
|
|
1741
|
+
() => ListOutpostsInput,
|
|
1742
|
+
() => ListOutpostsOutput,
|
|
1743
|
+
];
|
|
1744
|
+
var ListSites = [
|
|
1745
|
+
9,
|
|
1746
|
+
n0,
|
|
1747
|
+
_LS,
|
|
1748
|
+
{
|
|
1749
|
+
[_h]: ["GET", "/sites", 200],
|
|
1750
|
+
},
|
|
1751
|
+
() => ListSitesInput,
|
|
1752
|
+
() => ListSitesOutput,
|
|
1753
|
+
];
|
|
1754
|
+
var ListTagsForResource = [
|
|
1755
|
+
9,
|
|
1756
|
+
n0,
|
|
1757
|
+
_LTFR,
|
|
1758
|
+
{
|
|
1759
|
+
[_h]: ["GET", "/tags/{ResourceArn}", 200],
|
|
1760
|
+
},
|
|
1761
|
+
() => ListTagsForResourceRequest,
|
|
1762
|
+
() => ListTagsForResourceResponse,
|
|
1763
|
+
];
|
|
1764
|
+
var StartCapacityTask = [
|
|
1765
|
+
9,
|
|
1766
|
+
n0,
|
|
1767
|
+
_SCT,
|
|
1768
|
+
{
|
|
1769
|
+
[_h]: ["POST", "/outposts/{OutpostIdentifier}/capacity", 200],
|
|
1770
|
+
},
|
|
1771
|
+
() => StartCapacityTaskInput,
|
|
1772
|
+
() => StartCapacityTaskOutput,
|
|
1773
|
+
];
|
|
1774
|
+
var StartConnection = [
|
|
1775
|
+
9,
|
|
1776
|
+
n0,
|
|
1777
|
+
_SCt,
|
|
1778
|
+
{
|
|
1779
|
+
[_h]: ["POST", "/connections", 200],
|
|
1780
|
+
},
|
|
1781
|
+
() => StartConnectionRequest,
|
|
1782
|
+
() => StartConnectionResponse,
|
|
1783
|
+
];
|
|
1784
|
+
var StartOutpostDecommission = [
|
|
1785
|
+
9,
|
|
1786
|
+
n0,
|
|
1787
|
+
_SOD,
|
|
1788
|
+
{
|
|
1789
|
+
[_h]: ["POST", "/outposts/{OutpostIdentifier}/decommission", 200],
|
|
1790
|
+
},
|
|
1791
|
+
() => StartOutpostDecommissionInput,
|
|
1792
|
+
() => StartOutpostDecommissionOutput,
|
|
1793
|
+
];
|
|
1794
|
+
var TagResource = [
|
|
1795
|
+
9,
|
|
1796
|
+
n0,
|
|
1797
|
+
_TR,
|
|
1798
|
+
{
|
|
1799
|
+
[_h]: ["POST", "/tags/{ResourceArn}", 200],
|
|
1800
|
+
},
|
|
1801
|
+
() => TagResourceRequest,
|
|
1802
|
+
() => TagResourceResponse,
|
|
1803
|
+
];
|
|
1804
|
+
var UntagResource = [
|
|
1805
|
+
9,
|
|
1806
|
+
n0,
|
|
1807
|
+
_UR,
|
|
1808
|
+
{
|
|
1809
|
+
[_h]: ["DELETE", "/tags/{ResourceArn}", 200],
|
|
1810
|
+
},
|
|
1811
|
+
() => UntagResourceRequest,
|
|
1812
|
+
() => UntagResourceResponse,
|
|
1813
|
+
];
|
|
1814
|
+
var UpdateOutpost = [
|
|
1815
|
+
9,
|
|
1816
|
+
n0,
|
|
1817
|
+
_UO,
|
|
1818
|
+
{
|
|
1819
|
+
[_h]: ["PATCH", "/outposts/{OutpostId}", 200],
|
|
1820
|
+
},
|
|
1821
|
+
() => UpdateOutpostInput,
|
|
1822
|
+
() => UpdateOutpostOutput,
|
|
1823
|
+
];
|
|
1824
|
+
var UpdateSite = [
|
|
1825
|
+
9,
|
|
1826
|
+
n0,
|
|
1827
|
+
_US,
|
|
1828
|
+
{
|
|
1829
|
+
[_h]: ["PATCH", "/sites/{SiteId}", 200],
|
|
1830
|
+
},
|
|
1831
|
+
() => UpdateSiteInput,
|
|
1832
|
+
() => UpdateSiteOutput,
|
|
1833
|
+
];
|
|
1834
|
+
var UpdateSiteAddress = [
|
|
1835
|
+
9,
|
|
1836
|
+
n0,
|
|
1837
|
+
_USA,
|
|
1838
|
+
{
|
|
1839
|
+
[_h]: ["PUT", "/sites/{SiteId}/address", 200],
|
|
1840
|
+
},
|
|
1841
|
+
() => UpdateSiteAddressInput,
|
|
1842
|
+
() => UpdateSiteAddressOutput,
|
|
1843
|
+
];
|
|
1844
|
+
var UpdateSiteRackPhysicalProperties = [
|
|
1845
|
+
9,
|
|
1846
|
+
n0,
|
|
1847
|
+
_USRPP,
|
|
1848
|
+
{
|
|
1849
|
+
[_h]: ["PATCH", "/sites/{SiteId}/rackPhysicalProperties", 200],
|
|
1850
|
+
},
|
|
1851
|
+
() => UpdateSiteRackPhysicalPropertiesInput,
|
|
1852
|
+
() => UpdateSiteRackPhysicalPropertiesOutput,
|
|
1853
|
+
];
|
|
1646
1854
|
|
|
1647
1855
|
class CancelCapacityTaskCommand extends smithyClient.Command
|
|
1648
1856
|
.classBuilder()
|
|
1649
1857
|
.ep(commonParams)
|
|
1650
1858
|
.m(function (Command, cs, config, o) {
|
|
1651
|
-
return [
|
|
1652
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1653
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1654
|
-
];
|
|
1859
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1655
1860
|
})
|
|
1656
1861
|
.s("OutpostsOlafService", "CancelCapacityTask", {})
|
|
1657
1862
|
.n("OutpostsClient", "CancelCapacityTaskCommand")
|
|
1658
|
-
.
|
|
1659
|
-
.ser(se_CancelCapacityTaskCommand)
|
|
1660
|
-
.de(de_CancelCapacityTaskCommand)
|
|
1863
|
+
.sc(CancelCapacityTask)
|
|
1661
1864
|
.build() {
|
|
1662
1865
|
}
|
|
1663
1866
|
|
|
@@ -1665,16 +1868,11 @@ class CancelOrderCommand extends smithyClient.Command
|
|
|
1665
1868
|
.classBuilder()
|
|
1666
1869
|
.ep(commonParams)
|
|
1667
1870
|
.m(function (Command, cs, config, o) {
|
|
1668
|
-
return [
|
|
1669
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1670
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1671
|
-
];
|
|
1871
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1672
1872
|
})
|
|
1673
1873
|
.s("OutpostsOlafService", "CancelOrder", {})
|
|
1674
1874
|
.n("OutpostsClient", "CancelOrderCommand")
|
|
1675
|
-
.
|
|
1676
|
-
.ser(se_CancelOrderCommand)
|
|
1677
|
-
.de(de_CancelOrderCommand)
|
|
1875
|
+
.sc(CancelOrder)
|
|
1678
1876
|
.build() {
|
|
1679
1877
|
}
|
|
1680
1878
|
|
|
@@ -1682,16 +1880,11 @@ class CreateOrderCommand extends smithyClient.Command
|
|
|
1682
1880
|
.classBuilder()
|
|
1683
1881
|
.ep(commonParams)
|
|
1684
1882
|
.m(function (Command, cs, config, o) {
|
|
1685
|
-
return [
|
|
1686
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1687
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1688
|
-
];
|
|
1883
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1689
1884
|
})
|
|
1690
1885
|
.s("OutpostsOlafService", "CreateOrder", {})
|
|
1691
1886
|
.n("OutpostsClient", "CreateOrderCommand")
|
|
1692
|
-
.
|
|
1693
|
-
.ser(se_CreateOrderCommand)
|
|
1694
|
-
.de(de_CreateOrderCommand)
|
|
1887
|
+
.sc(CreateOrder)
|
|
1695
1888
|
.build() {
|
|
1696
1889
|
}
|
|
1697
1890
|
|
|
@@ -1699,16 +1892,11 @@ class CreateOutpostCommand extends smithyClient.Command
|
|
|
1699
1892
|
.classBuilder()
|
|
1700
1893
|
.ep(commonParams)
|
|
1701
1894
|
.m(function (Command, cs, config, o) {
|
|
1702
|
-
return [
|
|
1703
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1704
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1705
|
-
];
|
|
1895
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1706
1896
|
})
|
|
1707
1897
|
.s("OutpostsOlafService", "CreateOutpost", {})
|
|
1708
1898
|
.n("OutpostsClient", "CreateOutpostCommand")
|
|
1709
|
-
.
|
|
1710
|
-
.ser(se_CreateOutpostCommand)
|
|
1711
|
-
.de(de_CreateOutpostCommand)
|
|
1899
|
+
.sc(CreateOutpost)
|
|
1712
1900
|
.build() {
|
|
1713
1901
|
}
|
|
1714
1902
|
|
|
@@ -1716,16 +1904,11 @@ class CreateSiteCommand extends smithyClient.Command
|
|
|
1716
1904
|
.classBuilder()
|
|
1717
1905
|
.ep(commonParams)
|
|
1718
1906
|
.m(function (Command, cs, config, o) {
|
|
1719
|
-
return [
|
|
1720
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1721
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1722
|
-
];
|
|
1907
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1723
1908
|
})
|
|
1724
1909
|
.s("OutpostsOlafService", "CreateSite", {})
|
|
1725
1910
|
.n("OutpostsClient", "CreateSiteCommand")
|
|
1726
|
-
.
|
|
1727
|
-
.ser(se_CreateSiteCommand)
|
|
1728
|
-
.de(de_CreateSiteCommand)
|
|
1911
|
+
.sc(CreateSite)
|
|
1729
1912
|
.build() {
|
|
1730
1913
|
}
|
|
1731
1914
|
|
|
@@ -1733,16 +1916,11 @@ class DeleteOutpostCommand extends smithyClient.Command
|
|
|
1733
1916
|
.classBuilder()
|
|
1734
1917
|
.ep(commonParams)
|
|
1735
1918
|
.m(function (Command, cs, config, o) {
|
|
1736
|
-
return [
|
|
1737
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1738
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1739
|
-
];
|
|
1919
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1740
1920
|
})
|
|
1741
1921
|
.s("OutpostsOlafService", "DeleteOutpost", {})
|
|
1742
1922
|
.n("OutpostsClient", "DeleteOutpostCommand")
|
|
1743
|
-
.
|
|
1744
|
-
.ser(se_DeleteOutpostCommand)
|
|
1745
|
-
.de(de_DeleteOutpostCommand)
|
|
1923
|
+
.sc(DeleteOutpost)
|
|
1746
1924
|
.build() {
|
|
1747
1925
|
}
|
|
1748
1926
|
|
|
@@ -1750,16 +1928,11 @@ class DeleteSiteCommand extends smithyClient.Command
|
|
|
1750
1928
|
.classBuilder()
|
|
1751
1929
|
.ep(commonParams)
|
|
1752
1930
|
.m(function (Command, cs, config, o) {
|
|
1753
|
-
return [
|
|
1754
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1755
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1756
|
-
];
|
|
1931
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1757
1932
|
})
|
|
1758
1933
|
.s("OutpostsOlafService", "DeleteSite", {})
|
|
1759
1934
|
.n("OutpostsClient", "DeleteSiteCommand")
|
|
1760
|
-
.
|
|
1761
|
-
.ser(se_DeleteSiteCommand)
|
|
1762
|
-
.de(de_DeleteSiteCommand)
|
|
1935
|
+
.sc(DeleteSite)
|
|
1763
1936
|
.build() {
|
|
1764
1937
|
}
|
|
1765
1938
|
|
|
@@ -1767,16 +1940,11 @@ class GetCapacityTaskCommand extends smithyClient.Command
|
|
|
1767
1940
|
.classBuilder()
|
|
1768
1941
|
.ep(commonParams)
|
|
1769
1942
|
.m(function (Command, cs, config, o) {
|
|
1770
|
-
return [
|
|
1771
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1772
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1773
|
-
];
|
|
1943
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1774
1944
|
})
|
|
1775
1945
|
.s("OutpostsOlafService", "GetCapacityTask", {})
|
|
1776
1946
|
.n("OutpostsClient", "GetCapacityTaskCommand")
|
|
1777
|
-
.
|
|
1778
|
-
.ser(se_GetCapacityTaskCommand)
|
|
1779
|
-
.de(de_GetCapacityTaskCommand)
|
|
1947
|
+
.sc(GetCapacityTask)
|
|
1780
1948
|
.build() {
|
|
1781
1949
|
}
|
|
1782
1950
|
|
|
@@ -1784,16 +1952,11 @@ class GetCatalogItemCommand extends smithyClient.Command
|
|
|
1784
1952
|
.classBuilder()
|
|
1785
1953
|
.ep(commonParams)
|
|
1786
1954
|
.m(function (Command, cs, config, o) {
|
|
1787
|
-
return [
|
|
1788
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1789
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1790
|
-
];
|
|
1955
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1791
1956
|
})
|
|
1792
1957
|
.s("OutpostsOlafService", "GetCatalogItem", {})
|
|
1793
1958
|
.n("OutpostsClient", "GetCatalogItemCommand")
|
|
1794
|
-
.
|
|
1795
|
-
.ser(se_GetCatalogItemCommand)
|
|
1796
|
-
.de(de_GetCatalogItemCommand)
|
|
1959
|
+
.sc(GetCatalogItem)
|
|
1797
1960
|
.build() {
|
|
1798
1961
|
}
|
|
1799
1962
|
|
|
@@ -1801,16 +1964,11 @@ class GetConnectionCommand extends smithyClient.Command
|
|
|
1801
1964
|
.classBuilder()
|
|
1802
1965
|
.ep(commonParams)
|
|
1803
1966
|
.m(function (Command, cs, config, o) {
|
|
1804
|
-
return [
|
|
1805
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1806
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1807
|
-
];
|
|
1967
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1808
1968
|
})
|
|
1809
1969
|
.s("OutpostsOlafService", "GetConnection", {})
|
|
1810
1970
|
.n("OutpostsClient", "GetConnectionCommand")
|
|
1811
|
-
.
|
|
1812
|
-
.ser(se_GetConnectionCommand)
|
|
1813
|
-
.de(de_GetConnectionCommand)
|
|
1971
|
+
.sc(GetConnection)
|
|
1814
1972
|
.build() {
|
|
1815
1973
|
}
|
|
1816
1974
|
|
|
@@ -1818,16 +1976,11 @@ class GetOrderCommand extends smithyClient.Command
|
|
|
1818
1976
|
.classBuilder()
|
|
1819
1977
|
.ep(commonParams)
|
|
1820
1978
|
.m(function (Command, cs, config, o) {
|
|
1821
|
-
return [
|
|
1822
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1823
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1824
|
-
];
|
|
1979
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1825
1980
|
})
|
|
1826
1981
|
.s("OutpostsOlafService", "GetOrder", {})
|
|
1827
1982
|
.n("OutpostsClient", "GetOrderCommand")
|
|
1828
|
-
.
|
|
1829
|
-
.ser(se_GetOrderCommand)
|
|
1830
|
-
.de(de_GetOrderCommand)
|
|
1983
|
+
.sc(GetOrder)
|
|
1831
1984
|
.build() {
|
|
1832
1985
|
}
|
|
1833
1986
|
|
|
@@ -1835,16 +1988,11 @@ class GetOutpostBillingInformationCommand extends smithyClient.Command
|
|
|
1835
1988
|
.classBuilder()
|
|
1836
1989
|
.ep(commonParams)
|
|
1837
1990
|
.m(function (Command, cs, config, o) {
|
|
1838
|
-
return [
|
|
1839
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1840
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1841
|
-
];
|
|
1991
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1842
1992
|
})
|
|
1843
1993
|
.s("OutpostsOlafService", "GetOutpostBillingInformation", {})
|
|
1844
1994
|
.n("OutpostsClient", "GetOutpostBillingInformationCommand")
|
|
1845
|
-
.
|
|
1846
|
-
.ser(se_GetOutpostBillingInformationCommand)
|
|
1847
|
-
.de(de_GetOutpostBillingInformationCommand)
|
|
1995
|
+
.sc(GetOutpostBillingInformation)
|
|
1848
1996
|
.build() {
|
|
1849
1997
|
}
|
|
1850
1998
|
|
|
@@ -1852,16 +2000,11 @@ class GetOutpostCommand extends smithyClient.Command
|
|
|
1852
2000
|
.classBuilder()
|
|
1853
2001
|
.ep(commonParams)
|
|
1854
2002
|
.m(function (Command, cs, config, o) {
|
|
1855
|
-
return [
|
|
1856
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1857
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1858
|
-
];
|
|
2003
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1859
2004
|
})
|
|
1860
2005
|
.s("OutpostsOlafService", "GetOutpost", {})
|
|
1861
2006
|
.n("OutpostsClient", "GetOutpostCommand")
|
|
1862
|
-
.
|
|
1863
|
-
.ser(se_GetOutpostCommand)
|
|
1864
|
-
.de(de_GetOutpostCommand)
|
|
2007
|
+
.sc(GetOutpost)
|
|
1865
2008
|
.build() {
|
|
1866
2009
|
}
|
|
1867
2010
|
|
|
@@ -1869,16 +2012,11 @@ class GetOutpostInstanceTypesCommand extends smithyClient.Command
|
|
|
1869
2012
|
.classBuilder()
|
|
1870
2013
|
.ep(commonParams)
|
|
1871
2014
|
.m(function (Command, cs, config, o) {
|
|
1872
|
-
return [
|
|
1873
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1874
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1875
|
-
];
|
|
2015
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1876
2016
|
})
|
|
1877
2017
|
.s("OutpostsOlafService", "GetOutpostInstanceTypes", {})
|
|
1878
2018
|
.n("OutpostsClient", "GetOutpostInstanceTypesCommand")
|
|
1879
|
-
.
|
|
1880
|
-
.ser(se_GetOutpostInstanceTypesCommand)
|
|
1881
|
-
.de(de_GetOutpostInstanceTypesCommand)
|
|
2019
|
+
.sc(GetOutpostInstanceTypes)
|
|
1882
2020
|
.build() {
|
|
1883
2021
|
}
|
|
1884
2022
|
|
|
@@ -1886,16 +2024,11 @@ class GetOutpostSupportedInstanceTypesCommand extends smithyClient.Command
|
|
|
1886
2024
|
.classBuilder()
|
|
1887
2025
|
.ep(commonParams)
|
|
1888
2026
|
.m(function (Command, cs, config, o) {
|
|
1889
|
-
return [
|
|
1890
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1891
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1892
|
-
];
|
|
2027
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1893
2028
|
})
|
|
1894
2029
|
.s("OutpostsOlafService", "GetOutpostSupportedInstanceTypes", {})
|
|
1895
2030
|
.n("OutpostsClient", "GetOutpostSupportedInstanceTypesCommand")
|
|
1896
|
-
.
|
|
1897
|
-
.ser(se_GetOutpostSupportedInstanceTypesCommand)
|
|
1898
|
-
.de(de_GetOutpostSupportedInstanceTypesCommand)
|
|
2031
|
+
.sc(GetOutpostSupportedInstanceTypes)
|
|
1899
2032
|
.build() {
|
|
1900
2033
|
}
|
|
1901
2034
|
|
|
@@ -1903,16 +2036,11 @@ class GetSiteAddressCommand extends smithyClient.Command
|
|
|
1903
2036
|
.classBuilder()
|
|
1904
2037
|
.ep(commonParams)
|
|
1905
2038
|
.m(function (Command, cs, config, o) {
|
|
1906
|
-
return [
|
|
1907
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1908
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1909
|
-
];
|
|
2039
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1910
2040
|
})
|
|
1911
2041
|
.s("OutpostsOlafService", "GetSiteAddress", {})
|
|
1912
2042
|
.n("OutpostsClient", "GetSiteAddressCommand")
|
|
1913
|
-
.
|
|
1914
|
-
.ser(se_GetSiteAddressCommand)
|
|
1915
|
-
.de(de_GetSiteAddressCommand)
|
|
2043
|
+
.sc(GetSiteAddress)
|
|
1916
2044
|
.build() {
|
|
1917
2045
|
}
|
|
1918
2046
|
|
|
@@ -1920,16 +2048,11 @@ class GetSiteCommand extends smithyClient.Command
|
|
|
1920
2048
|
.classBuilder()
|
|
1921
2049
|
.ep(commonParams)
|
|
1922
2050
|
.m(function (Command, cs, config, o) {
|
|
1923
|
-
return [
|
|
1924
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1925
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1926
|
-
];
|
|
2051
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1927
2052
|
})
|
|
1928
2053
|
.s("OutpostsOlafService", "GetSite", {})
|
|
1929
2054
|
.n("OutpostsClient", "GetSiteCommand")
|
|
1930
|
-
.
|
|
1931
|
-
.ser(se_GetSiteCommand)
|
|
1932
|
-
.de(de_GetSiteCommand)
|
|
2055
|
+
.sc(GetSite)
|
|
1933
2056
|
.build() {
|
|
1934
2057
|
}
|
|
1935
2058
|
|
|
@@ -1937,16 +2060,11 @@ class ListAssetInstancesCommand extends smithyClient.Command
|
|
|
1937
2060
|
.classBuilder()
|
|
1938
2061
|
.ep(commonParams)
|
|
1939
2062
|
.m(function (Command, cs, config, o) {
|
|
1940
|
-
return [
|
|
1941
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1942
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1943
|
-
];
|
|
2063
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1944
2064
|
})
|
|
1945
2065
|
.s("OutpostsOlafService", "ListAssetInstances", {})
|
|
1946
2066
|
.n("OutpostsClient", "ListAssetInstancesCommand")
|
|
1947
|
-
.
|
|
1948
|
-
.ser(se_ListAssetInstancesCommand)
|
|
1949
|
-
.de(de_ListAssetInstancesCommand)
|
|
2067
|
+
.sc(ListAssetInstances)
|
|
1950
2068
|
.build() {
|
|
1951
2069
|
}
|
|
1952
2070
|
|
|
@@ -1954,16 +2072,11 @@ class ListAssetsCommand extends smithyClient.Command
|
|
|
1954
2072
|
.classBuilder()
|
|
1955
2073
|
.ep(commonParams)
|
|
1956
2074
|
.m(function (Command, cs, config, o) {
|
|
1957
|
-
return [
|
|
1958
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1959
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1960
|
-
];
|
|
2075
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1961
2076
|
})
|
|
1962
2077
|
.s("OutpostsOlafService", "ListAssets", {})
|
|
1963
2078
|
.n("OutpostsClient", "ListAssetsCommand")
|
|
1964
|
-
.
|
|
1965
|
-
.ser(se_ListAssetsCommand)
|
|
1966
|
-
.de(de_ListAssetsCommand)
|
|
2079
|
+
.sc(ListAssets)
|
|
1967
2080
|
.build() {
|
|
1968
2081
|
}
|
|
1969
2082
|
|
|
@@ -1971,16 +2084,11 @@ class ListBlockingInstancesForCapacityTaskCommand extends smithyClient.Command
|
|
|
1971
2084
|
.classBuilder()
|
|
1972
2085
|
.ep(commonParams)
|
|
1973
2086
|
.m(function (Command, cs, config, o) {
|
|
1974
|
-
return [
|
|
1975
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1976
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1977
|
-
];
|
|
2087
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1978
2088
|
})
|
|
1979
2089
|
.s("OutpostsOlafService", "ListBlockingInstancesForCapacityTask", {})
|
|
1980
2090
|
.n("OutpostsClient", "ListBlockingInstancesForCapacityTaskCommand")
|
|
1981
|
-
.
|
|
1982
|
-
.ser(se_ListBlockingInstancesForCapacityTaskCommand)
|
|
1983
|
-
.de(de_ListBlockingInstancesForCapacityTaskCommand)
|
|
2091
|
+
.sc(ListBlockingInstancesForCapacityTask)
|
|
1984
2092
|
.build() {
|
|
1985
2093
|
}
|
|
1986
2094
|
|
|
@@ -1988,16 +2096,11 @@ class ListCapacityTasksCommand extends smithyClient.Command
|
|
|
1988
2096
|
.classBuilder()
|
|
1989
2097
|
.ep(commonParams)
|
|
1990
2098
|
.m(function (Command, cs, config, o) {
|
|
1991
|
-
return [
|
|
1992
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1993
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1994
|
-
];
|
|
2099
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1995
2100
|
})
|
|
1996
2101
|
.s("OutpostsOlafService", "ListCapacityTasks", {})
|
|
1997
2102
|
.n("OutpostsClient", "ListCapacityTasksCommand")
|
|
1998
|
-
.
|
|
1999
|
-
.ser(se_ListCapacityTasksCommand)
|
|
2000
|
-
.de(de_ListCapacityTasksCommand)
|
|
2103
|
+
.sc(ListCapacityTasks)
|
|
2001
2104
|
.build() {
|
|
2002
2105
|
}
|
|
2003
2106
|
|
|
@@ -2005,16 +2108,11 @@ class ListCatalogItemsCommand extends smithyClient.Command
|
|
|
2005
2108
|
.classBuilder()
|
|
2006
2109
|
.ep(commonParams)
|
|
2007
2110
|
.m(function (Command, cs, config, o) {
|
|
2008
|
-
return [
|
|
2009
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2010
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2011
|
-
];
|
|
2111
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2012
2112
|
})
|
|
2013
2113
|
.s("OutpostsOlafService", "ListCatalogItems", {})
|
|
2014
2114
|
.n("OutpostsClient", "ListCatalogItemsCommand")
|
|
2015
|
-
.
|
|
2016
|
-
.ser(se_ListCatalogItemsCommand)
|
|
2017
|
-
.de(de_ListCatalogItemsCommand)
|
|
2115
|
+
.sc(ListCatalogItems)
|
|
2018
2116
|
.build() {
|
|
2019
2117
|
}
|
|
2020
2118
|
|
|
@@ -2022,16 +2120,11 @@ class ListOrdersCommand extends smithyClient.Command
|
|
|
2022
2120
|
.classBuilder()
|
|
2023
2121
|
.ep(commonParams)
|
|
2024
2122
|
.m(function (Command, cs, config, o) {
|
|
2025
|
-
return [
|
|
2026
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2027
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2028
|
-
];
|
|
2123
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2029
2124
|
})
|
|
2030
2125
|
.s("OutpostsOlafService", "ListOrders", {})
|
|
2031
2126
|
.n("OutpostsClient", "ListOrdersCommand")
|
|
2032
|
-
.
|
|
2033
|
-
.ser(se_ListOrdersCommand)
|
|
2034
|
-
.de(de_ListOrdersCommand)
|
|
2127
|
+
.sc(ListOrders)
|
|
2035
2128
|
.build() {
|
|
2036
2129
|
}
|
|
2037
2130
|
|
|
@@ -2039,16 +2132,11 @@ class ListOutpostsCommand extends smithyClient.Command
|
|
|
2039
2132
|
.classBuilder()
|
|
2040
2133
|
.ep(commonParams)
|
|
2041
2134
|
.m(function (Command, cs, config, o) {
|
|
2042
|
-
return [
|
|
2043
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2044
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2045
|
-
];
|
|
2135
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2046
2136
|
})
|
|
2047
2137
|
.s("OutpostsOlafService", "ListOutposts", {})
|
|
2048
2138
|
.n("OutpostsClient", "ListOutpostsCommand")
|
|
2049
|
-
.
|
|
2050
|
-
.ser(se_ListOutpostsCommand)
|
|
2051
|
-
.de(de_ListOutpostsCommand)
|
|
2139
|
+
.sc(ListOutposts)
|
|
2052
2140
|
.build() {
|
|
2053
2141
|
}
|
|
2054
2142
|
|
|
@@ -2056,16 +2144,11 @@ class ListSitesCommand extends smithyClient.Command
|
|
|
2056
2144
|
.classBuilder()
|
|
2057
2145
|
.ep(commonParams)
|
|
2058
2146
|
.m(function (Command, cs, config, o) {
|
|
2059
|
-
return [
|
|
2060
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2061
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2062
|
-
];
|
|
2147
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2063
2148
|
})
|
|
2064
2149
|
.s("OutpostsOlafService", "ListSites", {})
|
|
2065
2150
|
.n("OutpostsClient", "ListSitesCommand")
|
|
2066
|
-
.
|
|
2067
|
-
.ser(se_ListSitesCommand)
|
|
2068
|
-
.de(de_ListSitesCommand)
|
|
2151
|
+
.sc(ListSites)
|
|
2069
2152
|
.build() {
|
|
2070
2153
|
}
|
|
2071
2154
|
|
|
@@ -2073,16 +2156,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2073
2156
|
.classBuilder()
|
|
2074
2157
|
.ep(commonParams)
|
|
2075
2158
|
.m(function (Command, cs, config, o) {
|
|
2076
|
-
return [
|
|
2077
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2078
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2079
|
-
];
|
|
2159
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2080
2160
|
})
|
|
2081
2161
|
.s("OutpostsOlafService", "ListTagsForResource", {})
|
|
2082
2162
|
.n("OutpostsClient", "ListTagsForResourceCommand")
|
|
2083
|
-
.
|
|
2084
|
-
.ser(se_ListTagsForResourceCommand)
|
|
2085
|
-
.de(de_ListTagsForResourceCommand)
|
|
2163
|
+
.sc(ListTagsForResource)
|
|
2086
2164
|
.build() {
|
|
2087
2165
|
}
|
|
2088
2166
|
|
|
@@ -2090,16 +2168,11 @@ class StartCapacityTaskCommand extends smithyClient.Command
|
|
|
2090
2168
|
.classBuilder()
|
|
2091
2169
|
.ep(commonParams)
|
|
2092
2170
|
.m(function (Command, cs, config, o) {
|
|
2093
|
-
return [
|
|
2094
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2095
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2096
|
-
];
|
|
2171
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2097
2172
|
})
|
|
2098
2173
|
.s("OutpostsOlafService", "StartCapacityTask", {})
|
|
2099
2174
|
.n("OutpostsClient", "StartCapacityTaskCommand")
|
|
2100
|
-
.
|
|
2101
|
-
.ser(se_StartCapacityTaskCommand)
|
|
2102
|
-
.de(de_StartCapacityTaskCommand)
|
|
2175
|
+
.sc(StartCapacityTask)
|
|
2103
2176
|
.build() {
|
|
2104
2177
|
}
|
|
2105
2178
|
|
|
@@ -2107,16 +2180,11 @@ class StartConnectionCommand extends smithyClient.Command
|
|
|
2107
2180
|
.classBuilder()
|
|
2108
2181
|
.ep(commonParams)
|
|
2109
2182
|
.m(function (Command, cs, config, o) {
|
|
2110
|
-
return [
|
|
2111
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2112
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2113
|
-
];
|
|
2183
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2114
2184
|
})
|
|
2115
2185
|
.s("OutpostsOlafService", "StartConnection", {})
|
|
2116
2186
|
.n("OutpostsClient", "StartConnectionCommand")
|
|
2117
|
-
.
|
|
2118
|
-
.ser(se_StartConnectionCommand)
|
|
2119
|
-
.de(de_StartConnectionCommand)
|
|
2187
|
+
.sc(StartConnection)
|
|
2120
2188
|
.build() {
|
|
2121
2189
|
}
|
|
2122
2190
|
|
|
@@ -2124,16 +2192,11 @@ class StartOutpostDecommissionCommand extends smithyClient.Command
|
|
|
2124
2192
|
.classBuilder()
|
|
2125
2193
|
.ep(commonParams)
|
|
2126
2194
|
.m(function (Command, cs, config, o) {
|
|
2127
|
-
return [
|
|
2128
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2129
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2130
|
-
];
|
|
2195
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2131
2196
|
})
|
|
2132
2197
|
.s("OutpostsOlafService", "StartOutpostDecommission", {})
|
|
2133
2198
|
.n("OutpostsClient", "StartOutpostDecommissionCommand")
|
|
2134
|
-
.
|
|
2135
|
-
.ser(se_StartOutpostDecommissionCommand)
|
|
2136
|
-
.de(de_StartOutpostDecommissionCommand)
|
|
2199
|
+
.sc(StartOutpostDecommission)
|
|
2137
2200
|
.build() {
|
|
2138
2201
|
}
|
|
2139
2202
|
|
|
@@ -2141,16 +2204,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2141
2204
|
.classBuilder()
|
|
2142
2205
|
.ep(commonParams)
|
|
2143
2206
|
.m(function (Command, cs, config, o) {
|
|
2144
|
-
return [
|
|
2145
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2146
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2147
|
-
];
|
|
2207
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2148
2208
|
})
|
|
2149
2209
|
.s("OutpostsOlafService", "TagResource", {})
|
|
2150
2210
|
.n("OutpostsClient", "TagResourceCommand")
|
|
2151
|
-
.
|
|
2152
|
-
.ser(se_TagResourceCommand)
|
|
2153
|
-
.de(de_TagResourceCommand)
|
|
2211
|
+
.sc(TagResource)
|
|
2154
2212
|
.build() {
|
|
2155
2213
|
}
|
|
2156
2214
|
|
|
@@ -2158,16 +2216,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2158
2216
|
.classBuilder()
|
|
2159
2217
|
.ep(commonParams)
|
|
2160
2218
|
.m(function (Command, cs, config, o) {
|
|
2161
|
-
return [
|
|
2162
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2163
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2164
|
-
];
|
|
2219
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2165
2220
|
})
|
|
2166
2221
|
.s("OutpostsOlafService", "UntagResource", {})
|
|
2167
2222
|
.n("OutpostsClient", "UntagResourceCommand")
|
|
2168
|
-
.
|
|
2169
|
-
.ser(se_UntagResourceCommand)
|
|
2170
|
-
.de(de_UntagResourceCommand)
|
|
2223
|
+
.sc(UntagResource)
|
|
2171
2224
|
.build() {
|
|
2172
2225
|
}
|
|
2173
2226
|
|
|
@@ -2175,16 +2228,11 @@ class UpdateOutpostCommand extends smithyClient.Command
|
|
|
2175
2228
|
.classBuilder()
|
|
2176
2229
|
.ep(commonParams)
|
|
2177
2230
|
.m(function (Command, cs, config, o) {
|
|
2178
|
-
return [
|
|
2179
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2180
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2181
|
-
];
|
|
2231
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2182
2232
|
})
|
|
2183
2233
|
.s("OutpostsOlafService", "UpdateOutpost", {})
|
|
2184
2234
|
.n("OutpostsClient", "UpdateOutpostCommand")
|
|
2185
|
-
.
|
|
2186
|
-
.ser(se_UpdateOutpostCommand)
|
|
2187
|
-
.de(de_UpdateOutpostCommand)
|
|
2235
|
+
.sc(UpdateOutpost)
|
|
2188
2236
|
.build() {
|
|
2189
2237
|
}
|
|
2190
2238
|
|
|
@@ -2192,16 +2240,11 @@ class UpdateSiteAddressCommand extends smithyClient.Command
|
|
|
2192
2240
|
.classBuilder()
|
|
2193
2241
|
.ep(commonParams)
|
|
2194
2242
|
.m(function (Command, cs, config, o) {
|
|
2195
|
-
return [
|
|
2196
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2197
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2198
|
-
];
|
|
2243
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2199
2244
|
})
|
|
2200
2245
|
.s("OutpostsOlafService", "UpdateSiteAddress", {})
|
|
2201
2246
|
.n("OutpostsClient", "UpdateSiteAddressCommand")
|
|
2202
|
-
.
|
|
2203
|
-
.ser(se_UpdateSiteAddressCommand)
|
|
2204
|
-
.de(de_UpdateSiteAddressCommand)
|
|
2247
|
+
.sc(UpdateSiteAddress)
|
|
2205
2248
|
.build() {
|
|
2206
2249
|
}
|
|
2207
2250
|
|
|
@@ -2209,16 +2252,11 @@ class UpdateSiteCommand extends smithyClient.Command
|
|
|
2209
2252
|
.classBuilder()
|
|
2210
2253
|
.ep(commonParams)
|
|
2211
2254
|
.m(function (Command, cs, config, o) {
|
|
2212
|
-
return [
|
|
2213
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2214
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2215
|
-
];
|
|
2255
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2216
2256
|
})
|
|
2217
2257
|
.s("OutpostsOlafService", "UpdateSite", {})
|
|
2218
2258
|
.n("OutpostsClient", "UpdateSiteCommand")
|
|
2219
|
-
.
|
|
2220
|
-
.ser(se_UpdateSiteCommand)
|
|
2221
|
-
.de(de_UpdateSiteCommand)
|
|
2259
|
+
.sc(UpdateSite)
|
|
2222
2260
|
.build() {
|
|
2223
2261
|
}
|
|
2224
2262
|
|
|
@@ -2226,16 +2264,11 @@ class UpdateSiteRackPhysicalPropertiesCommand extends smithyClient.Command
|
|
|
2226
2264
|
.classBuilder()
|
|
2227
2265
|
.ep(commonParams)
|
|
2228
2266
|
.m(function (Command, cs, config, o) {
|
|
2229
|
-
return [
|
|
2230
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2231
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2232
|
-
];
|
|
2267
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2233
2268
|
})
|
|
2234
2269
|
.s("OutpostsOlafService", "UpdateSiteRackPhysicalProperties", {})
|
|
2235
2270
|
.n("OutpostsClient", "UpdateSiteRackPhysicalPropertiesCommand")
|
|
2236
|
-
.
|
|
2237
|
-
.ser(se_UpdateSiteRackPhysicalPropertiesCommand)
|
|
2238
|
-
.de(de_UpdateSiteRackPhysicalPropertiesCommand)
|
|
2271
|
+
.sc(UpdateSiteRackPhysicalProperties)
|
|
2239
2272
|
.build() {
|
|
2240
2273
|
}
|
|
2241
2274
|
|
|
@@ -2311,7 +2344,7 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2311
2344
|
get: function () { return smithyClient.Client; }
|
|
2312
2345
|
});
|
|
2313
2346
|
exports.AWSServiceName = AWSServiceName;
|
|
2314
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2347
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2315
2348
|
exports.AddressType = AddressType;
|
|
2316
2349
|
exports.AssetState = AssetState;
|
|
2317
2350
|
exports.AssetType = AssetType;
|
|
@@ -2323,7 +2356,7 @@ exports.CapacityTaskStatus = CapacityTaskStatus;
|
|
|
2323
2356
|
exports.CatalogItemClass = CatalogItemClass;
|
|
2324
2357
|
exports.CatalogItemStatus = CatalogItemStatus;
|
|
2325
2358
|
exports.ComputeAssetState = ComputeAssetState;
|
|
2326
|
-
exports.ConflictException = ConflictException;
|
|
2359
|
+
exports.ConflictException = ConflictException$1;
|
|
2327
2360
|
exports.CreateOrderCommand = CreateOrderCommand;
|
|
2328
2361
|
exports.CreateOutpostCommand = CreateOutpostCommand;
|
|
2329
2362
|
exports.CreateSiteCommand = CreateSiteCommand;
|
|
@@ -2341,7 +2374,7 @@ exports.GetOutpostInstanceTypesCommand = GetOutpostInstanceTypesCommand;
|
|
|
2341
2374
|
exports.GetOutpostSupportedInstanceTypesCommand = GetOutpostSupportedInstanceTypesCommand;
|
|
2342
2375
|
exports.GetSiteAddressCommand = GetSiteAddressCommand;
|
|
2343
2376
|
exports.GetSiteCommand = GetSiteCommand;
|
|
2344
|
-
exports.InternalServerException = InternalServerException;
|
|
2377
|
+
exports.InternalServerException = InternalServerException$1;
|
|
2345
2378
|
exports.LineItemStatus = LineItemStatus;
|
|
2346
2379
|
exports.ListAssetInstancesCommand = ListAssetInstancesCommand;
|
|
2347
2380
|
exports.ListAssetsCommand = ListAssetsCommand;
|
|
@@ -2353,13 +2386,13 @@ exports.ListOutpostsCommand = ListOutpostsCommand;
|
|
|
2353
2386
|
exports.ListSitesCommand = ListSitesCommand;
|
|
2354
2387
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2355
2388
|
exports.MaximumSupportedWeightLbs = MaximumSupportedWeightLbs;
|
|
2356
|
-
exports.NotFoundException = NotFoundException;
|
|
2389
|
+
exports.NotFoundException = NotFoundException$1;
|
|
2357
2390
|
exports.OpticalStandard = OpticalStandard;
|
|
2358
2391
|
exports.OrderStatus = OrderStatus;
|
|
2359
2392
|
exports.OrderType = OrderType;
|
|
2360
2393
|
exports.Outposts = Outposts;
|
|
2361
2394
|
exports.OutpostsClient = OutpostsClient;
|
|
2362
|
-
exports.OutpostsServiceException = OutpostsServiceException;
|
|
2395
|
+
exports.OutpostsServiceException = OutpostsServiceException$1;
|
|
2363
2396
|
exports.PaymentOption = PaymentOption;
|
|
2364
2397
|
exports.PaymentTerm = PaymentTerm;
|
|
2365
2398
|
exports.PowerConnector = PowerConnector;
|
|
@@ -2367,7 +2400,7 @@ exports.PowerDrawKva = PowerDrawKva;
|
|
|
2367
2400
|
exports.PowerFeedDrop = PowerFeedDrop;
|
|
2368
2401
|
exports.PowerPhase = PowerPhase;
|
|
2369
2402
|
exports.ResourceType = ResourceType;
|
|
2370
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2403
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2371
2404
|
exports.ShipmentCarrier = ShipmentCarrier;
|
|
2372
2405
|
exports.StartCapacityTaskCommand = StartCapacityTaskCommand;
|
|
2373
2406
|
exports.StartConnectionCommand = StartConnectionCommand;
|
|
@@ -2385,7 +2418,7 @@ exports.UpdateSiteCommand = UpdateSiteCommand;
|
|
|
2385
2418
|
exports.UpdateSiteRackPhysicalPropertiesCommand = UpdateSiteRackPhysicalPropertiesCommand;
|
|
2386
2419
|
exports.UplinkCount = UplinkCount;
|
|
2387
2420
|
exports.UplinkGbps = UplinkGbps;
|
|
2388
|
-
exports.ValidationException = ValidationException;
|
|
2421
|
+
exports.ValidationException = ValidationException$1;
|
|
2389
2422
|
exports.paginateGetOutpostBillingInformation = paginateGetOutpostBillingInformation;
|
|
2390
2423
|
exports.paginateGetOutpostInstanceTypes = paginateGetOutpostInstanceTypes;
|
|
2391
2424
|
exports.paginateGetOutpostSupportedInstanceTypes = paginateGetOutpostSupportedInstanceTypes;
|