@aws-sdk/client-elastic-load-balancing-v2 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/ElasticLoadBalancingV2.js +145 -138
- package/dist-es/ElasticLoadBalancingV2Client.js +28 -22
- package/dist-es/commands/AddListenerCertificatesCommand.js +28 -21
- package/dist-es/commands/AddTagsCommand.js +28 -21
- package/dist-es/commands/CreateListenerCommand.js +28 -21
- package/dist-es/commands/CreateLoadBalancerCommand.js +28 -21
- package/dist-es/commands/CreateRuleCommand.js +28 -21
- package/dist-es/commands/CreateTargetGroupCommand.js +28 -21
- package/dist-es/commands/DeleteListenerCommand.js +28 -21
- package/dist-es/commands/DeleteLoadBalancerCommand.js +28 -21
- package/dist-es/commands/DeleteRuleCommand.js +28 -21
- package/dist-es/commands/DeleteTargetGroupCommand.js +28 -21
- package/dist-es/commands/DeregisterTargetsCommand.js +28 -21
- package/dist-es/commands/DescribeAccountLimitsCommand.js +28 -21
- package/dist-es/commands/DescribeListenerCertificatesCommand.js +28 -21
- package/dist-es/commands/DescribeListenersCommand.js +28 -21
- package/dist-es/commands/DescribeLoadBalancerAttributesCommand.js +28 -21
- package/dist-es/commands/DescribeLoadBalancersCommand.js +28 -21
- package/dist-es/commands/DescribeRulesCommand.js +28 -21
- package/dist-es/commands/DescribeSSLPoliciesCommand.js +28 -21
- package/dist-es/commands/DescribeTagsCommand.js +28 -21
- package/dist-es/commands/DescribeTargetGroupAttributesCommand.js +28 -21
- package/dist-es/commands/DescribeTargetGroupsCommand.js +28 -21
- package/dist-es/commands/DescribeTargetHealthCommand.js +28 -21
- package/dist-es/commands/ModifyListenerCommand.js +28 -21
- package/dist-es/commands/ModifyLoadBalancerAttributesCommand.js +28 -21
- package/dist-es/commands/ModifyRuleCommand.js +28 -21
- package/dist-es/commands/ModifyTargetGroupAttributesCommand.js +28 -21
- package/dist-es/commands/ModifyTargetGroupCommand.js +28 -21
- package/dist-es/commands/RegisterTargetsCommand.js +28 -21
- package/dist-es/commands/RemoveListenerCertificatesCommand.js +28 -21
- package/dist-es/commands/RemoveTagsCommand.js +28 -21
- package/dist-es/commands/SetIpAddressTypeCommand.js +28 -21
- package/dist-es/commands/SetRulePrioritiesCommand.js +28 -21
- package/dist-es/commands/SetSecurityGroupsCommand.js +28 -21
- package/dist-es/commands/SetSubnetsCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ElasticLoadBalancingV2ServiceException.js +10 -5
- package/dist-es/models/models_0.js +587 -796
- package/dist-es/pagination/DescribeListenersPaginator.js +67 -24
- package/dist-es/pagination/DescribeLoadBalancersPaginator.js +67 -24
- package/dist-es/pagination/DescribeTargetGroupsPaginator.js +67 -24
- package/dist-es/protocols/Aws_query.js +4090 -3070
- 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/waitForLoadBalancerAvailable.js +93 -52
- package/dist-es/waiters/waitForLoadBalancerExists.js +42 -23
- package/dist-es/waiters/waitForLoadBalancersDeleted.js +69 -38
- package/dist-es/waiters/waitForTargetDeregistered.js +69 -38
- package/dist-es/waiters/waitForTargetInService.js +69 -38
- 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 { DescribeTargetGroupAttributesInputFilterSensitiveLog, DescribeTargetGroupAttributesOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryDescribeTargetGroupAttributesCommand, serializeAws_queryDescribeTargetGroupAttributesCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeTargetGroupAttributesCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeTargetGroupAttributesCommand, _super);
|
|
8
|
+
function DescribeTargetGroupAttributesCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeTargetGroupAttributesCommand.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 = "ElasticLoadBalancingV2Client";
|
|
18
|
+
var commandName = "DescribeTargetGroupAttributesCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeTargetGroupAttributesInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeTargetGroupAttributesOutputFilterSensitiveLog,
|
|
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
|
+
DescribeTargetGroupAttributesCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryDescribeTargetGroupAttributesCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeTargetGroupAttributesCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryDescribeTargetGroupAttributesCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeTargetGroupAttributesCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeTargetGroupAttributesCommand };
|
|
@@ -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 { DescribeTargetGroupsInputFilterSensitiveLog, DescribeTargetGroupsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryDescribeTargetGroupsCommand, serializeAws_queryDescribeTargetGroupsCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeTargetGroupsCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeTargetGroupsCommand, _super);
|
|
8
|
+
function DescribeTargetGroupsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeTargetGroupsCommand.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 = "ElasticLoadBalancingV2Client";
|
|
18
|
+
var commandName = "DescribeTargetGroupsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeTargetGroupsInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeTargetGroupsOutputFilterSensitiveLog,
|
|
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
|
+
DescribeTargetGroupsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryDescribeTargetGroupsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeTargetGroupsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryDescribeTargetGroupsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeTargetGroupsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeTargetGroupsCommand };
|
|
@@ -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 { DescribeTargetHealthInputFilterSensitiveLog, DescribeTargetHealthOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryDescribeTargetHealthCommand, serializeAws_queryDescribeTargetHealthCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeTargetHealthCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeTargetHealthCommand, _super);
|
|
8
|
+
function DescribeTargetHealthCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeTargetHealthCommand.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 = "ElasticLoadBalancingV2Client";
|
|
18
|
+
var commandName = "DescribeTargetHealthCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeTargetHealthInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeTargetHealthOutputFilterSensitiveLog,
|
|
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
|
+
DescribeTargetHealthCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryDescribeTargetHealthCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeTargetHealthCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryDescribeTargetHealthCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeTargetHealthCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeTargetHealthCommand };
|
|
@@ -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 { ModifyListenerInputFilterSensitiveLog, ModifyListenerOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryModifyListenerCommand, serializeAws_queryModifyListenerCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ModifyListenerCommand = (function (_super) {
|
|
7
|
+
__extends(ModifyListenerCommand, _super);
|
|
8
|
+
function ModifyListenerCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ModifyListenerCommand.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 = "ElasticLoadBalancingV2Client";
|
|
18
|
+
var commandName = "ModifyListenerCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ModifyListenerInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ModifyListenerOutputFilterSensitiveLog,
|
|
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
|
+
ModifyListenerCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryModifyListenerCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ModifyListenerCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryModifyListenerCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ModifyListenerCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ModifyListenerCommand };
|
|
@@ -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 { ModifyLoadBalancerAttributesInputFilterSensitiveLog, ModifyLoadBalancerAttributesOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryModifyLoadBalancerAttributesCommand, serializeAws_queryModifyLoadBalancerAttributesCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ModifyLoadBalancerAttributesCommand = (function (_super) {
|
|
7
|
+
__extends(ModifyLoadBalancerAttributesCommand, _super);
|
|
8
|
+
function ModifyLoadBalancerAttributesCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ModifyLoadBalancerAttributesCommand.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 = "ElasticLoadBalancingV2Client";
|
|
18
|
+
var commandName = "ModifyLoadBalancerAttributesCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ModifyLoadBalancerAttributesInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ModifyLoadBalancerAttributesOutputFilterSensitiveLog,
|
|
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
|
+
ModifyLoadBalancerAttributesCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryModifyLoadBalancerAttributesCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ModifyLoadBalancerAttributesCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryModifyLoadBalancerAttributesCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ModifyLoadBalancerAttributesCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ModifyLoadBalancerAttributesCommand };
|
|
@@ -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 { ModifyRuleInputFilterSensitiveLog, ModifyRuleOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryModifyRuleCommand, serializeAws_queryModifyRuleCommand } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ModifyRuleCommand = (function (_super) {
|
|
7
|
+
__extends(ModifyRuleCommand, _super);
|
|
8
|
+
function ModifyRuleCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ModifyRuleCommand.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 = "ElasticLoadBalancingV2Client";
|
|
18
|
+
var commandName = "ModifyRuleCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ModifyRuleInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ModifyRuleOutputFilterSensitiveLog,
|
|
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
|
+
ModifyRuleCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryModifyRuleCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ModifyRuleCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryModifyRuleCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ModifyRuleCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ModifyRuleCommand };
|
|
@@ -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 { ModifyTargetGroupAttributesInputFilterSensitiveLog, ModifyTargetGroupAttributesOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryModifyTargetGroupAttributesCommand, serializeAws_queryModifyTargetGroupAttributesCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ModifyTargetGroupAttributesCommand = (function (_super) {
|
|
7
|
+
__extends(ModifyTargetGroupAttributesCommand, _super);
|
|
8
|
+
function ModifyTargetGroupAttributesCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ModifyTargetGroupAttributesCommand.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 = "ElasticLoadBalancingV2Client";
|
|
18
|
+
var commandName = "ModifyTargetGroupAttributesCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ModifyTargetGroupAttributesInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ModifyTargetGroupAttributesOutputFilterSensitiveLog,
|
|
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
|
+
ModifyTargetGroupAttributesCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryModifyTargetGroupAttributesCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ModifyTargetGroupAttributesCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryModifyTargetGroupAttributesCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ModifyTargetGroupAttributesCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ModifyTargetGroupAttributesCommand };
|
|
@@ -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 { ModifyTargetGroupInputFilterSensitiveLog, ModifyTargetGroupOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryModifyTargetGroupCommand, serializeAws_queryModifyTargetGroupCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ModifyTargetGroupCommand = (function (_super) {
|
|
7
|
+
__extends(ModifyTargetGroupCommand, _super);
|
|
8
|
+
function ModifyTargetGroupCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ModifyTargetGroupCommand.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 = "ElasticLoadBalancingV2Client";
|
|
18
|
+
var commandName = "ModifyTargetGroupCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ModifyTargetGroupInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ModifyTargetGroupOutputFilterSensitiveLog,
|
|
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
|
+
ModifyTargetGroupCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryModifyTargetGroupCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ModifyTargetGroupCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryModifyTargetGroupCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ModifyTargetGroupCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ModifyTargetGroupCommand };
|
|
@@ -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 { RegisterTargetsInputFilterSensitiveLog, RegisterTargetsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryRegisterTargetsCommand, serializeAws_queryRegisterTargetsCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var RegisterTargetsCommand = (function (_super) {
|
|
7
|
+
__extends(RegisterTargetsCommand, _super);
|
|
8
|
+
function RegisterTargetsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
RegisterTargetsCommand.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 = "ElasticLoadBalancingV2Client";
|
|
18
|
+
var commandName = "RegisterTargetsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: RegisterTargetsInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: RegisterTargetsOutputFilterSensitiveLog,
|
|
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
|
+
RegisterTargetsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryRegisterTargetsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
RegisterTargetsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryRegisterTargetsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return RegisterTargetsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { RegisterTargetsCommand };
|
|
@@ -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 { RemoveListenerCertificatesInputFilterSensitiveLog, RemoveListenerCertificatesOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryRemoveListenerCertificatesCommand, serializeAws_queryRemoveListenerCertificatesCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var RemoveListenerCertificatesCommand = (function (_super) {
|
|
7
|
+
__extends(RemoveListenerCertificatesCommand, _super);
|
|
8
|
+
function RemoveListenerCertificatesCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
RemoveListenerCertificatesCommand.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 = "ElasticLoadBalancingV2Client";
|
|
18
|
+
var commandName = "RemoveListenerCertificatesCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: RemoveListenerCertificatesInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: RemoveListenerCertificatesOutputFilterSensitiveLog,
|
|
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
|
+
RemoveListenerCertificatesCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryRemoveListenerCertificatesCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
RemoveListenerCertificatesCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryRemoveListenerCertificatesCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return RemoveListenerCertificatesCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { RemoveListenerCertificatesCommand };
|