@aws-sdk/client-global-accelerator 3.183.0 → 3.186.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 +19 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/GlobalAccelerator.js +197 -190
- package/dist-es/GlobalAcceleratorClient.js +28 -22
- package/dist-es/commands/AddCustomRoutingEndpointsCommand.js +28 -21
- package/dist-es/commands/AdvertiseByoipCidrCommand.js +28 -21
- package/dist-es/commands/AllowCustomRoutingTrafficCommand.js +29 -22
- package/dist-es/commands/CreateAcceleratorCommand.js +28 -21
- package/dist-es/commands/CreateCustomRoutingAcceleratorCommand.js +28 -21
- package/dist-es/commands/CreateCustomRoutingEndpointGroupCommand.js +28 -21
- package/dist-es/commands/CreateCustomRoutingListenerCommand.js +28 -21
- package/dist-es/commands/CreateEndpointGroupCommand.js +28 -21
- package/dist-es/commands/CreateListenerCommand.js +28 -21
- package/dist-es/commands/DeleteAcceleratorCommand.js +29 -22
- package/dist-es/commands/DeleteCustomRoutingAcceleratorCommand.js +29 -22
- package/dist-es/commands/DeleteCustomRoutingEndpointGroupCommand.js +29 -22
- package/dist-es/commands/DeleteCustomRoutingListenerCommand.js +29 -22
- package/dist-es/commands/DeleteEndpointGroupCommand.js +29 -22
- package/dist-es/commands/DeleteListenerCommand.js +29 -22
- package/dist-es/commands/DenyCustomRoutingTrafficCommand.js +29 -22
- package/dist-es/commands/DeprovisionByoipCidrCommand.js +28 -21
- package/dist-es/commands/DescribeAcceleratorAttributesCommand.js +28 -21
- package/dist-es/commands/DescribeAcceleratorCommand.js +28 -21
- package/dist-es/commands/DescribeCustomRoutingAcceleratorAttributesCommand.js +28 -21
- package/dist-es/commands/DescribeCustomRoutingAcceleratorCommand.js +28 -21
- package/dist-es/commands/DescribeCustomRoutingEndpointGroupCommand.js +28 -21
- package/dist-es/commands/DescribeCustomRoutingListenerCommand.js +28 -21
- package/dist-es/commands/DescribeEndpointGroupCommand.js +28 -21
- package/dist-es/commands/DescribeListenerCommand.js +28 -21
- package/dist-es/commands/ListAcceleratorsCommand.js +28 -21
- package/dist-es/commands/ListByoipCidrsCommand.js +28 -21
- package/dist-es/commands/ListCustomRoutingAcceleratorsCommand.js +28 -21
- package/dist-es/commands/ListCustomRoutingEndpointGroupsCommand.js +28 -21
- package/dist-es/commands/ListCustomRoutingListenersCommand.js +28 -21
- package/dist-es/commands/ListCustomRoutingPortMappingsByDestinationCommand.js +28 -21
- package/dist-es/commands/ListCustomRoutingPortMappingsCommand.js +28 -21
- package/dist-es/commands/ListEndpointGroupsCommand.js +28 -21
- package/dist-es/commands/ListListenersCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/ProvisionByoipCidrCommand.js +28 -21
- package/dist-es/commands/RemoveCustomRoutingEndpointsCommand.js +29 -22
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateAcceleratorAttributesCommand.js +28 -21
- package/dist-es/commands/UpdateAcceleratorCommand.js +28 -21
- package/dist-es/commands/UpdateCustomRoutingAcceleratorAttributesCommand.js +28 -21
- package/dist-es/commands/UpdateCustomRoutingAcceleratorCommand.js +28 -21
- package/dist-es/commands/UpdateCustomRoutingListenerCommand.js +28 -21
- package/dist-es/commands/UpdateEndpointGroupCommand.js +28 -21
- package/dist-es/commands/UpdateListenerCommand.js +28 -21
- package/dist-es/commands/WithdrawByoipCidrCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/GlobalAcceleratorServiceException.js +10 -5
- package/dist-es/models/models_0.js +327 -546
- package/dist-es/pagination/ListAcceleratorsPaginator.js +68 -25
- package/dist-es/pagination/ListByoipCidrsPaginator.js +68 -25
- package/dist-es/pagination/ListCustomRoutingAcceleratorsPaginator.js +68 -25
- package/dist-es/pagination/ListCustomRoutingEndpointGroupsPaginator.js +68 -25
- package/dist-es/pagination/ListCustomRoutingListenersPaginator.js +68 -25
- package/dist-es/pagination/ListCustomRoutingPortMappingsByDestinationPaginator.js +68 -25
- package/dist-es/pagination/ListCustomRoutingPortMappingsPaginator.js +68 -25
- package/dist-es/pagination/ListEndpointGroupsPaginator.js +68 -25
- package/dist-es/pagination/ListListenersPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +4071 -3127
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribeCustomRoutingAcceleratorAttributesRequestFilterSensitiveLog, DescribeCustomRoutingAcceleratorAttributesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribeCustomRoutingAcceleratorAttributesCommand, serializeAws_json1_1DescribeCustomRoutingAcceleratorAttributesCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeCustomRoutingAcceleratorAttributesCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeCustomRoutingAcceleratorAttributesCommand, _super);
|
|
8
|
+
function DescribeCustomRoutingAcceleratorAttributesCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeCustomRoutingAcceleratorAttributesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "GlobalAcceleratorClient";
|
|
18
|
+
var commandName = "DescribeCustomRoutingAcceleratorAttributesCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeCustomRoutingAcceleratorAttributesRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeCustomRoutingAcceleratorAttributesResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeCustomRoutingAcceleratorAttributesCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribeCustomRoutingAcceleratorAttributesCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeCustomRoutingAcceleratorAttributesCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribeCustomRoutingAcceleratorAttributesCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeCustomRoutingAcceleratorAttributesCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeCustomRoutingAcceleratorAttributesCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribeCustomRoutingAcceleratorRequestFilterSensitiveLog, DescribeCustomRoutingAcceleratorResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribeCustomRoutingAcceleratorCommand, serializeAws_json1_1DescribeCustomRoutingAcceleratorCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeCustomRoutingAcceleratorCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeCustomRoutingAcceleratorCommand, _super);
|
|
8
|
+
function DescribeCustomRoutingAcceleratorCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeCustomRoutingAcceleratorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "GlobalAcceleratorClient";
|
|
18
|
+
var commandName = "DescribeCustomRoutingAcceleratorCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeCustomRoutingAcceleratorRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeCustomRoutingAcceleratorResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeCustomRoutingAcceleratorCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribeCustomRoutingAcceleratorCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeCustomRoutingAcceleratorCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribeCustomRoutingAcceleratorCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeCustomRoutingAcceleratorCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeCustomRoutingAcceleratorCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribeCustomRoutingEndpointGroupRequestFilterSensitiveLog, DescribeCustomRoutingEndpointGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribeCustomRoutingEndpointGroupCommand, serializeAws_json1_1DescribeCustomRoutingEndpointGroupCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeCustomRoutingEndpointGroupCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeCustomRoutingEndpointGroupCommand, _super);
|
|
8
|
+
function DescribeCustomRoutingEndpointGroupCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeCustomRoutingEndpointGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "GlobalAcceleratorClient";
|
|
18
|
+
var commandName = "DescribeCustomRoutingEndpointGroupCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeCustomRoutingEndpointGroupRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeCustomRoutingEndpointGroupResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeCustomRoutingEndpointGroupCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribeCustomRoutingEndpointGroupCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeCustomRoutingEndpointGroupCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribeCustomRoutingEndpointGroupCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeCustomRoutingEndpointGroupCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeCustomRoutingEndpointGroupCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribeCustomRoutingListenerRequestFilterSensitiveLog, DescribeCustomRoutingListenerResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribeCustomRoutingListenerCommand, serializeAws_json1_1DescribeCustomRoutingListenerCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeCustomRoutingListenerCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeCustomRoutingListenerCommand, _super);
|
|
8
|
+
function DescribeCustomRoutingListenerCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeCustomRoutingListenerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "GlobalAcceleratorClient";
|
|
18
|
+
var commandName = "DescribeCustomRoutingListenerCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeCustomRoutingListenerRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeCustomRoutingListenerResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeCustomRoutingListenerCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribeCustomRoutingListenerCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeCustomRoutingListenerCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribeCustomRoutingListenerCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeCustomRoutingListenerCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeCustomRoutingListenerCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribeEndpointGroupRequestFilterSensitiveLog, DescribeEndpointGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribeEndpointGroupCommand, serializeAws_json1_1DescribeEndpointGroupCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeEndpointGroupCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeEndpointGroupCommand, _super);
|
|
8
|
+
function DescribeEndpointGroupCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeEndpointGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "GlobalAcceleratorClient";
|
|
18
|
+
var commandName = "DescribeEndpointGroupCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeEndpointGroupRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeEndpointGroupResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeEndpointGroupCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribeEndpointGroupCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeEndpointGroupCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribeEndpointGroupCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeEndpointGroupCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeEndpointGroupCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribeListenerRequestFilterSensitiveLog, DescribeListenerResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribeListenerCommand, serializeAws_json1_1DescribeListenerCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeListenerCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeListenerCommand, _super);
|
|
8
|
+
function DescribeListenerCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeListenerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "GlobalAcceleratorClient";
|
|
18
|
+
var commandName = "DescribeListenerCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeListenerRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeListenerResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeListenerCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribeListenerCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeListenerCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribeListenerCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeListenerCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeListenerCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { ListAcceleratorsRequestFilterSensitiveLog, ListAcceleratorsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1ListAcceleratorsCommand, serializeAws_json1_1ListAcceleratorsCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ListAcceleratorsCommand = (function (_super) {
|
|
7
|
+
__extends(ListAcceleratorsCommand, _super);
|
|
8
|
+
function ListAcceleratorsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ListAcceleratorsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "GlobalAcceleratorClient";
|
|
18
|
+
var commandName = "ListAcceleratorsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ListAcceleratorsRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ListAcceleratorsResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListAcceleratorsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1ListAcceleratorsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ListAcceleratorsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1ListAcceleratorsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ListAcceleratorsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListAcceleratorsCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { ListByoipCidrsRequestFilterSensitiveLog, ListByoipCidrsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1ListByoipCidrsCommand, serializeAws_json1_1ListByoipCidrsCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ListByoipCidrsCommand = (function (_super) {
|
|
7
|
+
__extends(ListByoipCidrsCommand, _super);
|
|
8
|
+
function ListByoipCidrsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ListByoipCidrsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "GlobalAcceleratorClient";
|
|
18
|
+
var commandName = "ListByoipCidrsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ListByoipCidrsRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ListByoipCidrsResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListByoipCidrsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1ListByoipCidrsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ListByoipCidrsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1ListByoipCidrsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ListByoipCidrsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListByoipCidrsCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { ListCustomRoutingAcceleratorsRequestFilterSensitiveLog, ListCustomRoutingAcceleratorsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1ListCustomRoutingAcceleratorsCommand, serializeAws_json1_1ListCustomRoutingAcceleratorsCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ListCustomRoutingAcceleratorsCommand = (function (_super) {
|
|
7
|
+
__extends(ListCustomRoutingAcceleratorsCommand, _super);
|
|
8
|
+
function ListCustomRoutingAcceleratorsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ListCustomRoutingAcceleratorsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "GlobalAcceleratorClient";
|
|
18
|
+
var commandName = "ListCustomRoutingAcceleratorsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ListCustomRoutingAcceleratorsRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ListCustomRoutingAcceleratorsResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListCustomRoutingAcceleratorsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1ListCustomRoutingAcceleratorsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ListCustomRoutingAcceleratorsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1ListCustomRoutingAcceleratorsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ListCustomRoutingAcceleratorsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListCustomRoutingAcceleratorsCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { ListCustomRoutingEndpointGroupsRequestFilterSensitiveLog, ListCustomRoutingEndpointGroupsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1ListCustomRoutingEndpointGroupsCommand, serializeAws_json1_1ListCustomRoutingEndpointGroupsCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ListCustomRoutingEndpointGroupsCommand = (function (_super) {
|
|
7
|
+
__extends(ListCustomRoutingEndpointGroupsCommand, _super);
|
|
8
|
+
function ListCustomRoutingEndpointGroupsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ListCustomRoutingEndpointGroupsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "GlobalAcceleratorClient";
|
|
18
|
+
var commandName = "ListCustomRoutingEndpointGroupsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ListCustomRoutingEndpointGroupsRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ListCustomRoutingEndpointGroupsResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListCustomRoutingEndpointGroupsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1ListCustomRoutingEndpointGroupsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ListCustomRoutingEndpointGroupsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1ListCustomRoutingEndpointGroupsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ListCustomRoutingEndpointGroupsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListCustomRoutingEndpointGroupsCommand };
|