@aws-sdk/client-outposts 3.128.0 → 3.137.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/CHANGELOG.md +35 -0
- package/dist-cjs/commands/CancelOrderCommand.js +2 -2
- package/dist-cjs/commands/CreateOrderCommand.js +2 -2
- package/dist-cjs/commands/CreateOutpostCommand.js +2 -2
- package/dist-cjs/commands/CreateSiteCommand.js +2 -2
- package/dist-cjs/commands/DeleteOutpostCommand.js +2 -2
- package/dist-cjs/commands/DeleteSiteCommand.js +2 -2
- package/dist-cjs/commands/GetCatalogItemCommand.js +2 -2
- package/dist-cjs/commands/GetConnectionCommand.js +2 -2
- package/dist-cjs/commands/GetOrderCommand.js +2 -2
- package/dist-cjs/commands/GetOutpostCommand.js +2 -2
- package/dist-cjs/commands/GetOutpostInstanceTypesCommand.js +2 -2
- package/dist-cjs/commands/GetSiteAddressCommand.js +2 -2
- package/dist-cjs/commands/GetSiteCommand.js +2 -2
- package/dist-cjs/commands/ListAssetsCommand.js +2 -2
- package/dist-cjs/commands/ListCatalogItemsCommand.js +2 -2
- package/dist-cjs/commands/ListOrdersCommand.js +2 -2
- package/dist-cjs/commands/ListOutpostsCommand.js +2 -2
- package/dist-cjs/commands/ListSitesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/StartConnectionCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateOutpostCommand.js +2 -2
- package/dist-cjs/commands/UpdateSiteAddressCommand.js +2 -2
- package/dist-cjs/commands/UpdateSiteCommand.js +2 -2
- package/dist-cjs/commands/UpdateSiteRackPhysicalPropertiesCommand.js +2 -2
- package/dist-cjs/models/models_0.js +285 -404
- package/dist-cjs/protocols/Aws_restJson1.js +45 -0
- package/dist-es/commands/CancelOrderCommand.js +3 -3
- package/dist-es/commands/CreateOrderCommand.js +3 -3
- package/dist-es/commands/CreateOutpostCommand.js +3 -3
- package/dist-es/commands/CreateSiteCommand.js +3 -3
- package/dist-es/commands/DeleteOutpostCommand.js +3 -3
- package/dist-es/commands/DeleteSiteCommand.js +3 -3
- package/dist-es/commands/GetCatalogItemCommand.js +3 -3
- package/dist-es/commands/GetConnectionCommand.js +3 -3
- package/dist-es/commands/GetOrderCommand.js +3 -3
- package/dist-es/commands/GetOutpostCommand.js +3 -3
- package/dist-es/commands/GetOutpostInstanceTypesCommand.js +3 -3
- package/dist-es/commands/GetSiteAddressCommand.js +3 -3
- package/dist-es/commands/GetSiteCommand.js +3 -3
- package/dist-es/commands/ListAssetsCommand.js +3 -3
- package/dist-es/commands/ListCatalogItemsCommand.js +3 -3
- package/dist-es/commands/ListOrdersCommand.js +3 -3
- package/dist-es/commands/ListOutpostsCommand.js +3 -3
- package/dist-es/commands/ListSitesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/StartConnectionCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateOutpostCommand.js +3 -3
- package/dist-es/commands/UpdateSiteAddressCommand.js +3 -3
- package/dist-es/commands/UpdateSiteCommand.js +3 -3
- package/dist-es/commands/UpdateSiteRackPhysicalPropertiesCommand.js +3 -3
- package/dist-es/models/models_0.js +76 -268
- package/dist-es/protocols/Aws_restJson1.js +45 -0
- package/dist-types/models/models_0.d.ts +327 -397
- package/dist-types/ts3.4/models/models_0.d.ts +159 -265
- package/package.json +9 -9
|
@@ -2288,12 +2288,37 @@ const deserializeAws_restJson1InstanceTypeListDefinition = (output, context) =>
|
|
|
2288
2288
|
};
|
|
2289
2289
|
const deserializeAws_restJson1LineItem = (output, context) => {
|
|
2290
2290
|
return {
|
|
2291
|
+
AssetInformationList: output.AssetInformationList != null
|
|
2292
|
+
? deserializeAws_restJson1LineItemAssetInformationList(output.AssetInformationList, context)
|
|
2293
|
+
: undefined,
|
|
2291
2294
|
CatalogItemId: (0, smithy_client_1.expectString)(output.CatalogItemId),
|
|
2292
2295
|
LineItemId: (0, smithy_client_1.expectString)(output.LineItemId),
|
|
2293
2296
|
Quantity: (0, smithy_client_1.expectInt32)(output.Quantity),
|
|
2297
|
+
ShipmentInformation: output.ShipmentInformation != null
|
|
2298
|
+
? deserializeAws_restJson1ShipmentInformation(output.ShipmentInformation, context)
|
|
2299
|
+
: undefined,
|
|
2294
2300
|
Status: (0, smithy_client_1.expectString)(output.Status),
|
|
2295
2301
|
};
|
|
2296
2302
|
};
|
|
2303
|
+
const deserializeAws_restJson1LineItemAssetInformation = (output, context) => {
|
|
2304
|
+
return {
|
|
2305
|
+
AssetId: (0, smithy_client_1.expectString)(output.AssetId),
|
|
2306
|
+
MacAddressList: output.MacAddressList != null
|
|
2307
|
+
? deserializeAws_restJson1MacAddressList(output.MacAddressList, context)
|
|
2308
|
+
: undefined,
|
|
2309
|
+
};
|
|
2310
|
+
};
|
|
2311
|
+
const deserializeAws_restJson1LineItemAssetInformationList = (output, context) => {
|
|
2312
|
+
const retVal = (output || [])
|
|
2313
|
+
.filter((e) => e != null)
|
|
2314
|
+
.map((entry) => {
|
|
2315
|
+
if (entry === null) {
|
|
2316
|
+
return null;
|
|
2317
|
+
}
|
|
2318
|
+
return deserializeAws_restJson1LineItemAssetInformation(entry, context);
|
|
2319
|
+
});
|
|
2320
|
+
return retVal;
|
|
2321
|
+
};
|
|
2297
2322
|
const deserializeAws_restJson1LineItemListDefinition = (output, context) => {
|
|
2298
2323
|
const retVal = (output || [])
|
|
2299
2324
|
.filter((e) => e != null)
|
|
@@ -2316,6 +2341,17 @@ const deserializeAws_restJson1LineItemStatusCounts = (output, context) => {
|
|
|
2316
2341
|
};
|
|
2317
2342
|
}, {});
|
|
2318
2343
|
};
|
|
2344
|
+
const deserializeAws_restJson1MacAddressList = (output, context) => {
|
|
2345
|
+
const retVal = (output || [])
|
|
2346
|
+
.filter((e) => e != null)
|
|
2347
|
+
.map((entry) => {
|
|
2348
|
+
if (entry === null) {
|
|
2349
|
+
return null;
|
|
2350
|
+
}
|
|
2351
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
2352
|
+
});
|
|
2353
|
+
return retVal;
|
|
2354
|
+
};
|
|
2319
2355
|
const deserializeAws_restJson1Order = (output, context) => {
|
|
2320
2356
|
return {
|
|
2321
2357
|
LineItems: output.LineItems != null ? deserializeAws_restJson1LineItemListDefinition(output.LineItems, context) : undefined,
|
|
@@ -2399,6 +2435,12 @@ const deserializeAws_restJson1RackPhysicalProperties = (output, context) => {
|
|
|
2399
2435
|
UplinkGbps: (0, smithy_client_1.expectString)(output.UplinkGbps),
|
|
2400
2436
|
};
|
|
2401
2437
|
};
|
|
2438
|
+
const deserializeAws_restJson1ShipmentInformation = (output, context) => {
|
|
2439
|
+
return {
|
|
2440
|
+
ShipmentCarrier: (0, smithy_client_1.expectString)(output.ShipmentCarrier),
|
|
2441
|
+
ShipmentTrackingNumber: (0, smithy_client_1.expectString)(output.ShipmentTrackingNumber),
|
|
2442
|
+
};
|
|
2443
|
+
};
|
|
2402
2444
|
const deserializeAws_restJson1Site = (output, context) => {
|
|
2403
2445
|
return {
|
|
2404
2446
|
AccountId: (0, smithy_client_1.expectString)(output.AccountId),
|
|
@@ -2491,6 +2533,9 @@ const loadRestJsonErrorCode = (output, data) => {
|
|
|
2491
2533
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
2492
2534
|
const sanitizeErrorCode = (rawValue) => {
|
|
2493
2535
|
let cleanValue = rawValue;
|
|
2536
|
+
if (typeof cleanValue === "number") {
|
|
2537
|
+
cleanValue = cleanValue.toString();
|
|
2538
|
+
}
|
|
2494
2539
|
if (cleanValue.indexOf(":") >= 0) {
|
|
2495
2540
|
cleanValue = cleanValue.split(":")[0];
|
|
2496
2541
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CancelOrderInputFilterSensitiveLog, CancelOrderOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CancelOrderCommand, serializeAws_restJson1CancelOrderCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CancelOrderCommand = (function (_super) {
|
|
7
7
|
__extends(CancelOrderCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CancelOrderCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CancelOrderInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CancelOrderOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateOrderInputFilterSensitiveLog, CreateOrderOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateOrderCommand, serializeAws_restJson1CreateOrderCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateOrderCommand = (function (_super) {
|
|
7
7
|
__extends(CreateOrderCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateOrderCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateOrderInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateOrderOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateOutpostInputFilterSensitiveLog, CreateOutpostOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateOutpostCommand, serializeAws_restJson1CreateOutpostCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateOutpostCommand = (function (_super) {
|
|
7
7
|
__extends(CreateOutpostCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateOutpostCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateOutpostInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateOutpostOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateSiteInputFilterSensitiveLog, CreateSiteOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateSiteCommand, serializeAws_restJson1CreateSiteCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateSiteCommand = (function (_super) {
|
|
7
7
|
__extends(CreateSiteCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateSiteCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateSiteInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateSiteOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteOutpostInputFilterSensitiveLog, DeleteOutpostOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteOutpostCommand, serializeAws_restJson1DeleteOutpostCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteOutpostCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteOutpostCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteOutpostCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteOutpostInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteOutpostOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteSiteInputFilterSensitiveLog, DeleteSiteOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteSiteCommand, serializeAws_restJson1DeleteSiteCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteSiteCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteSiteCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteSiteCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteSiteInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteSiteOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetCatalogItemInputFilterSensitiveLog, GetCatalogItemOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetCatalogItemCommand, serializeAws_restJson1GetCatalogItemCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetCatalogItemCommand = (function (_super) {
|
|
7
7
|
__extends(GetCatalogItemCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetCatalogItemCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetCatalogItemInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetCatalogItemOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetConnectionRequestFilterSensitiveLog, GetConnectionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetConnectionCommand, serializeAws_restJson1GetConnectionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetConnectionCommand = (function (_super) {
|
|
7
7
|
__extends(GetConnectionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetConnectionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetConnectionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetConnectionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetOrderInputFilterSensitiveLog, GetOrderOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetOrderCommand, serializeAws_restJson1GetOrderCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetOrderCommand = (function (_super) {
|
|
7
7
|
__extends(GetOrderCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetOrderCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetOrderInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetOrderOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetOutpostInputFilterSensitiveLog, GetOutpostOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetOutpostCommand, serializeAws_restJson1GetOutpostCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetOutpostCommand = (function (_super) {
|
|
7
7
|
__extends(GetOutpostCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetOutpostCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetOutpostInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetOutpostOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetOutpostInstanceTypesInputFilterSensitiveLog, GetOutpostInstanceTypesOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetOutpostInstanceTypesCommand, serializeAws_restJson1GetOutpostInstanceTypesCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetOutpostInstanceTypesCommand = (function (_super) {
|
|
7
7
|
__extends(GetOutpostInstanceTypesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetOutpostInstanceTypesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetOutpostInstanceTypesInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetOutpostInstanceTypesOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetSiteAddressInputFilterSensitiveLog, GetSiteAddressOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetSiteAddressCommand, serializeAws_restJson1GetSiteAddressCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetSiteAddressCommand = (function (_super) {
|
|
7
7
|
__extends(GetSiteAddressCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetSiteAddressCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetSiteAddressInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetSiteAddressOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetSiteInputFilterSensitiveLog, GetSiteOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetSiteCommand, serializeAws_restJson1GetSiteCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetSiteCommand = (function (_super) {
|
|
7
7
|
__extends(GetSiteCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetSiteCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetSiteInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetSiteOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListAssetsInputFilterSensitiveLog, ListAssetsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListAssetsCommand, serializeAws_restJson1ListAssetsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListAssetsCommand = (function (_super) {
|
|
7
7
|
__extends(ListAssetsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListAssetsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListAssetsInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListAssetsOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListCatalogItemsInputFilterSensitiveLog, ListCatalogItemsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListCatalogItemsCommand, serializeAws_restJson1ListCatalogItemsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListCatalogItemsCommand = (function (_super) {
|
|
7
7
|
__extends(ListCatalogItemsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListCatalogItemsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListCatalogItemsInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListCatalogItemsOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListOrdersInputFilterSensitiveLog, ListOrdersOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListOrdersCommand, serializeAws_restJson1ListOrdersCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListOrdersCommand = (function (_super) {
|
|
7
7
|
__extends(ListOrdersCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListOrdersCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListOrdersInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListOrdersOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListOutpostsInputFilterSensitiveLog, ListOutpostsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListOutpostsCommand, serializeAws_restJson1ListOutpostsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListOutpostsCommand = (function (_super) {
|
|
7
7
|
__extends(ListOutpostsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListOutpostsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListOutpostsInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListOutpostsOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListSitesInputFilterSensitiveLog, ListSitesOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListSitesCommand, serializeAws_restJson1ListSitesCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListSitesCommand = (function (_super) {
|
|
7
7
|
__extends(ListSitesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListSitesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListSitesInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListSitesOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListTagsForResourceCommand = (function (_super) {
|
|
7
7
|
__extends(ListTagsForResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListTagsForResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { StartConnectionRequestFilterSensitiveLog, StartConnectionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1StartConnectionCommand, serializeAws_restJson1StartConnectionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var StartConnectionCommand = (function (_super) {
|
|
7
7
|
__extends(StartConnectionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartConnectionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartConnectionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartConnectionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var TagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(TagResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var TagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: TagResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UntagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(UntagResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UntagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UntagResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateOutpostInputFilterSensitiveLog, UpdateOutpostOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateOutpostCommand, serializeAws_restJson1UpdateOutpostCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateOutpostCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateOutpostCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateOutpostCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateOutpostInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateOutpostOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateSiteAddressInputFilterSensitiveLog, UpdateSiteAddressOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateSiteAddressCommand, serializeAws_restJson1UpdateSiteAddressCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateSiteAddressCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateSiteAddressCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateSiteAddressCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateSiteAddressInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateSiteAddressOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateSiteInputFilterSensitiveLog, UpdateSiteOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateSiteCommand, serializeAws_restJson1UpdateSiteCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateSiteCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateSiteCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateSiteCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateSiteInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateSiteOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateSiteRackPhysicalPropertiesInputFilterSensitiveLog, UpdateSiteRackPhysicalPropertiesOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateSiteRackPhysicalPropertiesCommand, serializeAws_restJson1UpdateSiteRackPhysicalPropertiesCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateSiteRackPhysicalPropertiesCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateSiteRackPhysicalPropertiesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateSiteRackPhysicalPropertiesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateSiteRackPhysicalPropertiesInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateSiteRackPhysicalPropertiesOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|