@aws-sdk/client-elastic-load-balancing 3.183.0 → 3.185.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 +11 -0
- package/dist-cjs/protocols/Aws_query.js +2 -2
- package/dist-es/ElasticLoadBalancing.js +125 -118
- package/dist-es/ElasticLoadBalancingClient.js +28 -22
- package/dist-es/commands/AddTagsCommand.js +28 -21
- package/dist-es/commands/ApplySecurityGroupsToLoadBalancerCommand.js +28 -21
- package/dist-es/commands/AttachLoadBalancerToSubnetsCommand.js +28 -21
- package/dist-es/commands/ConfigureHealthCheckCommand.js +28 -21
- package/dist-es/commands/CreateAppCookieStickinessPolicyCommand.js +28 -21
- package/dist-es/commands/CreateLBCookieStickinessPolicyCommand.js +28 -21
- package/dist-es/commands/CreateLoadBalancerCommand.js +28 -21
- package/dist-es/commands/CreateLoadBalancerListenersCommand.js +28 -21
- package/dist-es/commands/CreateLoadBalancerPolicyCommand.js +28 -21
- package/dist-es/commands/DeleteLoadBalancerCommand.js +28 -21
- package/dist-es/commands/DeleteLoadBalancerListenersCommand.js +28 -21
- package/dist-es/commands/DeleteLoadBalancerPolicyCommand.js +28 -21
- package/dist-es/commands/DeregisterInstancesFromLoadBalancerCommand.js +28 -21
- package/dist-es/commands/DescribeAccountLimitsCommand.js +28 -21
- package/dist-es/commands/DescribeInstanceHealthCommand.js +28 -21
- package/dist-es/commands/DescribeLoadBalancerAttributesCommand.js +28 -21
- package/dist-es/commands/DescribeLoadBalancerPoliciesCommand.js +28 -21
- package/dist-es/commands/DescribeLoadBalancerPolicyTypesCommand.js +28 -21
- package/dist-es/commands/DescribeLoadBalancersCommand.js +28 -21
- package/dist-es/commands/DescribeTagsCommand.js +28 -21
- package/dist-es/commands/DetachLoadBalancerFromSubnetsCommand.js +28 -21
- package/dist-es/commands/DisableAvailabilityZonesForLoadBalancerCommand.js +28 -21
- package/dist-es/commands/EnableAvailabilityZonesForLoadBalancerCommand.js +28 -21
- package/dist-es/commands/ModifyLoadBalancerAttributesCommand.js +28 -21
- package/dist-es/commands/RegisterInstancesWithLoadBalancerCommand.js +28 -21
- package/dist-es/commands/RemoveTagsCommand.js +28 -21
- package/dist-es/commands/SetLoadBalancerListenerSSLCertificateCommand.js +28 -21
- package/dist-es/commands/SetLoadBalancerPoliciesForBackendServerCommand.js +28 -21
- package/dist-es/commands/SetLoadBalancerPoliciesOfListenerCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ElasticLoadBalancingServiceException.js +10 -5
- package/dist-es/models/models_0.js +349 -516
- package/dist-es/pagination/DescribeLoadBalancersPaginator.js +67 -24
- package/dist-es/protocols/Aws_query.js +2924 -2194
- 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/dist-es/waiters/waitForAnyInstanceInService.js +64 -33
- package/package.json +5 -5
|
@@ -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 { AddTagsInputFilterSensitiveLog, AddTagsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryAddTagsCommand, serializeAws_queryAddTagsCommand } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var AddTagsCommand = (function (_super) {
|
|
7
|
+
__extends(AddTagsCommand, _super);
|
|
8
|
+
function AddTagsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
AddTagsCommand.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 = "ElasticLoadBalancingClient";
|
|
18
|
+
var commandName = "AddTagsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: AddTagsInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: AddTagsOutputFilterSensitiveLog,
|
|
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
|
+
AddTagsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryAddTagsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
AddTagsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryAddTagsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return AddTagsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { AddTagsCommand };
|
|
@@ -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 { ApplySecurityGroupsToLoadBalancerInputFilterSensitiveLog, ApplySecurityGroupsToLoadBalancerOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryApplySecurityGroupsToLoadBalancerCommand, serializeAws_queryApplySecurityGroupsToLoadBalancerCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ApplySecurityGroupsToLoadBalancerCommand = (function (_super) {
|
|
7
|
+
__extends(ApplySecurityGroupsToLoadBalancerCommand, _super);
|
|
8
|
+
function ApplySecurityGroupsToLoadBalancerCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ApplySecurityGroupsToLoadBalancerCommand.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 = "ElasticLoadBalancingClient";
|
|
18
|
+
var commandName = "ApplySecurityGroupsToLoadBalancerCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ApplySecurityGroupsToLoadBalancerInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ApplySecurityGroupsToLoadBalancerOutputFilterSensitiveLog,
|
|
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
|
+
ApplySecurityGroupsToLoadBalancerCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryApplySecurityGroupsToLoadBalancerCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ApplySecurityGroupsToLoadBalancerCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryApplySecurityGroupsToLoadBalancerCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ApplySecurityGroupsToLoadBalancerCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ApplySecurityGroupsToLoadBalancerCommand };
|
|
@@ -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 { AttachLoadBalancerToSubnetsInputFilterSensitiveLog, AttachLoadBalancerToSubnetsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryAttachLoadBalancerToSubnetsCommand, serializeAws_queryAttachLoadBalancerToSubnetsCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var AttachLoadBalancerToSubnetsCommand = (function (_super) {
|
|
7
|
+
__extends(AttachLoadBalancerToSubnetsCommand, _super);
|
|
8
|
+
function AttachLoadBalancerToSubnetsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
AttachLoadBalancerToSubnetsCommand.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 = "ElasticLoadBalancingClient";
|
|
18
|
+
var commandName = "AttachLoadBalancerToSubnetsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: AttachLoadBalancerToSubnetsInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: AttachLoadBalancerToSubnetsOutputFilterSensitiveLog,
|
|
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
|
+
AttachLoadBalancerToSubnetsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryAttachLoadBalancerToSubnetsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
AttachLoadBalancerToSubnetsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryAttachLoadBalancerToSubnetsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return AttachLoadBalancerToSubnetsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { AttachLoadBalancerToSubnetsCommand };
|
|
@@ -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 { ConfigureHealthCheckInputFilterSensitiveLog, ConfigureHealthCheckOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryConfigureHealthCheckCommand, serializeAws_queryConfigureHealthCheckCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ConfigureHealthCheckCommand = (function (_super) {
|
|
7
|
+
__extends(ConfigureHealthCheckCommand, _super);
|
|
8
|
+
function ConfigureHealthCheckCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ConfigureHealthCheckCommand.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 = "ElasticLoadBalancingClient";
|
|
18
|
+
var commandName = "ConfigureHealthCheckCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ConfigureHealthCheckInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ConfigureHealthCheckOutputFilterSensitiveLog,
|
|
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
|
+
ConfigureHealthCheckCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryConfigureHealthCheckCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ConfigureHealthCheckCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryConfigureHealthCheckCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ConfigureHealthCheckCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ConfigureHealthCheckCommand };
|
|
@@ -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 { CreateAppCookieStickinessPolicyInputFilterSensitiveLog, CreateAppCookieStickinessPolicyOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryCreateAppCookieStickinessPolicyCommand, serializeAws_queryCreateAppCookieStickinessPolicyCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CreateAppCookieStickinessPolicyCommand = (function (_super) {
|
|
7
|
+
__extends(CreateAppCookieStickinessPolicyCommand, _super);
|
|
8
|
+
function CreateAppCookieStickinessPolicyCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
CreateAppCookieStickinessPolicyCommand.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 = "ElasticLoadBalancingClient";
|
|
18
|
+
var commandName = "CreateAppCookieStickinessPolicyCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: CreateAppCookieStickinessPolicyInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: CreateAppCookieStickinessPolicyOutputFilterSensitiveLog,
|
|
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
|
+
CreateAppCookieStickinessPolicyCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryCreateAppCookieStickinessPolicyCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
CreateAppCookieStickinessPolicyCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryCreateAppCookieStickinessPolicyCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return CreateAppCookieStickinessPolicyCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateAppCookieStickinessPolicyCommand };
|
|
@@ -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 { CreateLBCookieStickinessPolicyInputFilterSensitiveLog, CreateLBCookieStickinessPolicyOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryCreateLBCookieStickinessPolicyCommand, serializeAws_queryCreateLBCookieStickinessPolicyCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CreateLBCookieStickinessPolicyCommand = (function (_super) {
|
|
7
|
+
__extends(CreateLBCookieStickinessPolicyCommand, _super);
|
|
8
|
+
function CreateLBCookieStickinessPolicyCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
CreateLBCookieStickinessPolicyCommand.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 = "ElasticLoadBalancingClient";
|
|
18
|
+
var commandName = "CreateLBCookieStickinessPolicyCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: CreateLBCookieStickinessPolicyInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: CreateLBCookieStickinessPolicyOutputFilterSensitiveLog,
|
|
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
|
+
CreateLBCookieStickinessPolicyCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryCreateLBCookieStickinessPolicyCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
CreateLBCookieStickinessPolicyCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryCreateLBCookieStickinessPolicyCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return CreateLBCookieStickinessPolicyCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateLBCookieStickinessPolicyCommand };
|
|
@@ -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 { CreateAccessPointInputFilterSensitiveLog, CreateAccessPointOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryCreateLoadBalancerCommand, serializeAws_queryCreateLoadBalancerCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CreateLoadBalancerCommand = (function (_super) {
|
|
7
|
+
__extends(CreateLoadBalancerCommand, _super);
|
|
8
|
+
function CreateLoadBalancerCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
CreateLoadBalancerCommand.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 = "ElasticLoadBalancingClient";
|
|
18
|
+
var commandName = "CreateLoadBalancerCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: CreateAccessPointInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: CreateAccessPointOutputFilterSensitiveLog,
|
|
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
|
+
CreateLoadBalancerCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryCreateLoadBalancerCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
CreateLoadBalancerCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryCreateLoadBalancerCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return CreateLoadBalancerCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateLoadBalancerCommand };
|
|
@@ -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 { CreateLoadBalancerListenerInputFilterSensitiveLog, CreateLoadBalancerListenerOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryCreateLoadBalancerListenersCommand, serializeAws_queryCreateLoadBalancerListenersCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CreateLoadBalancerListenersCommand = (function (_super) {
|
|
7
|
+
__extends(CreateLoadBalancerListenersCommand, _super);
|
|
8
|
+
function CreateLoadBalancerListenersCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
CreateLoadBalancerListenersCommand.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 = "ElasticLoadBalancingClient";
|
|
18
|
+
var commandName = "CreateLoadBalancerListenersCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: CreateLoadBalancerListenerInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: CreateLoadBalancerListenerOutputFilterSensitiveLog,
|
|
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
|
+
CreateLoadBalancerListenersCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryCreateLoadBalancerListenersCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
CreateLoadBalancerListenersCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryCreateLoadBalancerListenersCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return CreateLoadBalancerListenersCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateLoadBalancerListenersCommand };
|
|
@@ -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 { CreateLoadBalancerPolicyInputFilterSensitiveLog, CreateLoadBalancerPolicyOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryCreateLoadBalancerPolicyCommand, serializeAws_queryCreateLoadBalancerPolicyCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CreateLoadBalancerPolicyCommand = (function (_super) {
|
|
7
|
+
__extends(CreateLoadBalancerPolicyCommand, _super);
|
|
8
|
+
function CreateLoadBalancerPolicyCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
CreateLoadBalancerPolicyCommand.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 = "ElasticLoadBalancingClient";
|
|
18
|
+
var commandName = "CreateLoadBalancerPolicyCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: CreateLoadBalancerPolicyInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: CreateLoadBalancerPolicyOutputFilterSensitiveLog,
|
|
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
|
+
CreateLoadBalancerPolicyCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryCreateLoadBalancerPolicyCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
CreateLoadBalancerPolicyCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryCreateLoadBalancerPolicyCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return CreateLoadBalancerPolicyCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateLoadBalancerPolicyCommand };
|
|
@@ -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 { DeleteAccessPointInputFilterSensitiveLog, DeleteAccessPointOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryDeleteLoadBalancerCommand, serializeAws_queryDeleteLoadBalancerCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DeleteLoadBalancerCommand = (function (_super) {
|
|
7
|
+
__extends(DeleteLoadBalancerCommand, _super);
|
|
8
|
+
function DeleteLoadBalancerCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DeleteLoadBalancerCommand.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 = "ElasticLoadBalancingClient";
|
|
18
|
+
var commandName = "DeleteLoadBalancerCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DeleteAccessPointInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DeleteAccessPointOutputFilterSensitiveLog,
|
|
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
|
+
DeleteLoadBalancerCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryDeleteLoadBalancerCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DeleteLoadBalancerCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryDeleteLoadBalancerCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DeleteLoadBalancerCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DeleteLoadBalancerCommand };
|