@aws-sdk/client-elastic-beanstalk 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/ElasticBeanstalk.js +197 -190
- package/dist-es/ElasticBeanstalkClient.js +28 -22
- package/dist-es/commands/AbortEnvironmentUpdateCommand.js +29 -22
- package/dist-es/commands/ApplyEnvironmentManagedActionCommand.js +28 -21
- package/dist-es/commands/AssociateEnvironmentOperationsRoleCommand.js +29 -22
- package/dist-es/commands/CheckDNSAvailabilityCommand.js +28 -21
- package/dist-es/commands/ComposeEnvironmentsCommand.js +28 -21
- package/dist-es/commands/CreateApplicationCommand.js +28 -21
- package/dist-es/commands/CreateApplicationVersionCommand.js +28 -21
- package/dist-es/commands/CreateConfigurationTemplateCommand.js +28 -21
- package/dist-es/commands/CreateEnvironmentCommand.js +28 -21
- package/dist-es/commands/CreatePlatformVersionCommand.js +28 -21
- package/dist-es/commands/CreateStorageLocationCommand.js +29 -22
- package/dist-es/commands/DeleteApplicationCommand.js +29 -22
- package/dist-es/commands/DeleteApplicationVersionCommand.js +29 -22
- package/dist-es/commands/DeleteConfigurationTemplateCommand.js +29 -22
- package/dist-es/commands/DeleteEnvironmentConfigurationCommand.js +29 -22
- package/dist-es/commands/DeletePlatformVersionCommand.js +28 -21
- package/dist-es/commands/DescribeAccountAttributesCommand.js +29 -22
- package/dist-es/commands/DescribeApplicationVersionsCommand.js +28 -21
- package/dist-es/commands/DescribeApplicationsCommand.js +28 -21
- package/dist-es/commands/DescribeConfigurationOptionsCommand.js +28 -21
- package/dist-es/commands/DescribeConfigurationSettingsCommand.js +28 -21
- package/dist-es/commands/DescribeEnvironmentHealthCommand.js +28 -21
- package/dist-es/commands/DescribeEnvironmentManagedActionHistoryCommand.js +28 -21
- package/dist-es/commands/DescribeEnvironmentManagedActionsCommand.js +28 -21
- package/dist-es/commands/DescribeEnvironmentResourcesCommand.js +28 -21
- package/dist-es/commands/DescribeEnvironmentsCommand.js +28 -21
- package/dist-es/commands/DescribeEventsCommand.js +28 -21
- package/dist-es/commands/DescribeInstancesHealthCommand.js +28 -21
- package/dist-es/commands/DescribePlatformVersionCommand.js +28 -21
- package/dist-es/commands/DisassociateEnvironmentOperationsRoleCommand.js +29 -22
- package/dist-es/commands/ListAvailableSolutionStacksCommand.js +29 -22
- package/dist-es/commands/ListPlatformBranchesCommand.js +28 -21
- package/dist-es/commands/ListPlatformVersionsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/RebuildEnvironmentCommand.js +29 -22
- package/dist-es/commands/RequestEnvironmentInfoCommand.js +29 -22
- package/dist-es/commands/RestartAppServerCommand.js +29 -22
- package/dist-es/commands/RetrieveEnvironmentInfoCommand.js +28 -21
- package/dist-es/commands/SwapEnvironmentCNAMEsCommand.js +29 -22
- package/dist-es/commands/TerminateEnvironmentCommand.js +28 -21
- package/dist-es/commands/UpdateApplicationCommand.js +28 -21
- package/dist-es/commands/UpdateApplicationResourceLifecycleCommand.js +28 -21
- package/dist-es/commands/UpdateApplicationVersionCommand.js +28 -21
- package/dist-es/commands/UpdateConfigurationTemplateCommand.js +28 -21
- package/dist-es/commands/UpdateEnvironmentCommand.js +28 -21
- package/dist-es/commands/UpdateTagsForResourceCommand.js +29 -22
- package/dist-es/commands/ValidateConfigurationSettingsCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ElasticBeanstalkServiceException.js +10 -5
- package/dist-es/models/models_0.js +336 -587
- package/dist-es/pagination/DescribeEnvironmentManagedActionHistoryPaginator.js +68 -25
- package/dist-es/pagination/DescribeEventsPaginator.js +68 -25
- package/dist-es/pagination/ListPlatformBranchesPaginator.js +68 -25
- package/dist-es/pagination/ListPlatformVersionsPaginator.js +68 -25
- package/dist-es/protocols/Aws_query.js +3981 -2951
- 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/waitForEnvironmentExists.js +93 -52
- package/dist-es/waiters/waitForEnvironmentTerminated.js +93 -52
- package/dist-es/waiters/waitForEnvironmentUpdated.js +93 -52
- package/package.json +5 -5
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
|
|
2
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
3
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
@@ -8,26 +9,31 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
|
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
9
10
|
import { Client as __Client, } from "@aws-sdk/smithy-client";
|
|
10
11
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
12
|
+
var ElasticBeanstalkClient = (function (_super) {
|
|
13
|
+
__extends(ElasticBeanstalkClient, _super);
|
|
14
|
+
function ElasticBeanstalkClient(configuration) {
|
|
15
|
+
var _this = this;
|
|
16
|
+
var _config_0 = __getRuntimeConfig(configuration);
|
|
17
|
+
var _config_1 = resolveRegionConfig(_config_0);
|
|
18
|
+
var _config_2 = resolveEndpointsConfig(_config_1);
|
|
19
|
+
var _config_3 = resolveRetryConfig(_config_2);
|
|
20
|
+
var _config_4 = resolveHostHeaderConfig(_config_3);
|
|
21
|
+
var _config_5 = resolveAwsAuthConfig(_config_4);
|
|
22
|
+
var _config_6 = resolveUserAgentConfig(_config_5);
|
|
23
|
+
_this = _super.call(this, _config_6) || this;
|
|
24
|
+
_this.config = _config_6;
|
|
25
|
+
_this.middlewareStack.use(getRetryPlugin(_this.config));
|
|
26
|
+
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
27
|
+
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
28
|
+
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
30
|
+
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
31
|
+
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
32
|
+
return _this;
|
|
29
33
|
}
|
|
30
|
-
destroy() {
|
|
31
|
-
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
+
ElasticBeanstalkClient.prototype.destroy = function () {
|
|
35
|
+
_super.prototype.destroy.call(this);
|
|
36
|
+
};
|
|
37
|
+
return ElasticBeanstalkClient;
|
|
38
|
+
}(__Client));
|
|
39
|
+
export { ElasticBeanstalkClient };
|
|
@@ -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 { AbortEnvironmentUpdateMessageFilterSensitiveLog } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryAbortEnvironmentUpdateCommand, serializeAws_queryAbortEnvironmentUpdateCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var AbortEnvironmentUpdateCommand = (function (_super) {
|
|
7
|
+
__extends(AbortEnvironmentUpdateCommand, _super);
|
|
8
|
+
function AbortEnvironmentUpdateCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
AbortEnvironmentUpdateCommand.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 = "ElasticBeanstalkClient";
|
|
18
|
+
var commandName = "AbortEnvironmentUpdateCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: AbortEnvironmentUpdateMessageFilterSensitiveLog,
|
|
21
|
-
outputFilterSensitiveLog: (output)
|
|
24
|
+
outputFilterSensitiveLog: function (output) { return output; },
|
|
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
|
+
AbortEnvironmentUpdateCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryAbortEnvironmentUpdateCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
AbortEnvironmentUpdateCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryAbortEnvironmentUpdateCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return AbortEnvironmentUpdateCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { AbortEnvironmentUpdateCommand };
|
|
@@ -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 { ApplyEnvironmentManagedActionRequestFilterSensitiveLog, ApplyEnvironmentManagedActionResultFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryApplyEnvironmentManagedActionCommand, serializeAws_queryApplyEnvironmentManagedActionCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ApplyEnvironmentManagedActionCommand = (function (_super) {
|
|
7
|
+
__extends(ApplyEnvironmentManagedActionCommand, _super);
|
|
8
|
+
function ApplyEnvironmentManagedActionCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ApplyEnvironmentManagedActionCommand.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 = "ElasticBeanstalkClient";
|
|
18
|
+
var commandName = "ApplyEnvironmentManagedActionCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ApplyEnvironmentManagedActionRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ApplyEnvironmentManagedActionResultFilterSensitiveLog,
|
|
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
|
+
ApplyEnvironmentManagedActionCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryApplyEnvironmentManagedActionCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ApplyEnvironmentManagedActionCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryApplyEnvironmentManagedActionCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ApplyEnvironmentManagedActionCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ApplyEnvironmentManagedActionCommand };
|
|
@@ -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 { AssociateEnvironmentOperationsRoleMessageFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryAssociateEnvironmentOperationsRoleCommand, serializeAws_queryAssociateEnvironmentOperationsRoleCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var AssociateEnvironmentOperationsRoleCommand = (function (_super) {
|
|
7
|
+
__extends(AssociateEnvironmentOperationsRoleCommand, _super);
|
|
8
|
+
function AssociateEnvironmentOperationsRoleCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
AssociateEnvironmentOperationsRoleCommand.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 = "ElasticBeanstalkClient";
|
|
18
|
+
var commandName = "AssociateEnvironmentOperationsRoleCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: AssociateEnvironmentOperationsRoleMessageFilterSensitiveLog,
|
|
21
|
-
outputFilterSensitiveLog: (output)
|
|
24
|
+
outputFilterSensitiveLog: function (output) { return output; },
|
|
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
|
+
AssociateEnvironmentOperationsRoleCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryAssociateEnvironmentOperationsRoleCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
AssociateEnvironmentOperationsRoleCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryAssociateEnvironmentOperationsRoleCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return AssociateEnvironmentOperationsRoleCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { AssociateEnvironmentOperationsRoleCommand };
|
|
@@ -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 { CheckDNSAvailabilityMessageFilterSensitiveLog, CheckDNSAvailabilityResultMessageFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryCheckDNSAvailabilityCommand, serializeAws_queryCheckDNSAvailabilityCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CheckDNSAvailabilityCommand = (function (_super) {
|
|
7
|
+
__extends(CheckDNSAvailabilityCommand, _super);
|
|
8
|
+
function CheckDNSAvailabilityCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
CheckDNSAvailabilityCommand.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 = "ElasticBeanstalkClient";
|
|
18
|
+
var commandName = "CheckDNSAvailabilityCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: CheckDNSAvailabilityMessageFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: CheckDNSAvailabilityResultMessageFilterSensitiveLog,
|
|
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
|
+
CheckDNSAvailabilityCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryCheckDNSAvailabilityCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
CheckDNSAvailabilityCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryCheckDNSAvailabilityCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return CheckDNSAvailabilityCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CheckDNSAvailabilityCommand };
|
|
@@ -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 { ComposeEnvironmentsMessageFilterSensitiveLog, EnvironmentDescriptionsMessageFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryComposeEnvironmentsCommand, serializeAws_queryComposeEnvironmentsCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ComposeEnvironmentsCommand = (function (_super) {
|
|
7
|
+
__extends(ComposeEnvironmentsCommand, _super);
|
|
8
|
+
function ComposeEnvironmentsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ComposeEnvironmentsCommand.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 = "ElasticBeanstalkClient";
|
|
18
|
+
var commandName = "ComposeEnvironmentsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ComposeEnvironmentsMessageFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: EnvironmentDescriptionsMessageFilterSensitiveLog,
|
|
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
|
+
ComposeEnvironmentsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryComposeEnvironmentsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ComposeEnvironmentsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryComposeEnvironmentsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ComposeEnvironmentsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ComposeEnvironmentsCommand };
|
|
@@ -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 { ApplicationDescriptionMessageFilterSensitiveLog, CreateApplicationMessageFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryCreateApplicationCommand, serializeAws_queryCreateApplicationCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CreateApplicationCommand = (function (_super) {
|
|
7
|
+
__extends(CreateApplicationCommand, _super);
|
|
8
|
+
function CreateApplicationCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
CreateApplicationCommand.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 = "ElasticBeanstalkClient";
|
|
18
|
+
var commandName = "CreateApplicationCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: CreateApplicationMessageFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ApplicationDescriptionMessageFilterSensitiveLog,
|
|
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
|
+
CreateApplicationCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryCreateApplicationCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
CreateApplicationCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryCreateApplicationCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return CreateApplicationCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateApplicationCommand };
|
|
@@ -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 { ApplicationVersionDescriptionMessageFilterSensitiveLog, CreateApplicationVersionMessageFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryCreateApplicationVersionCommand, serializeAws_queryCreateApplicationVersionCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CreateApplicationVersionCommand = (function (_super) {
|
|
7
|
+
__extends(CreateApplicationVersionCommand, _super);
|
|
8
|
+
function CreateApplicationVersionCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
CreateApplicationVersionCommand.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 = "ElasticBeanstalkClient";
|
|
18
|
+
var commandName = "CreateApplicationVersionCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: CreateApplicationVersionMessageFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ApplicationVersionDescriptionMessageFilterSensitiveLog,
|
|
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
|
+
CreateApplicationVersionCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryCreateApplicationVersionCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
CreateApplicationVersionCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryCreateApplicationVersionCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return CreateApplicationVersionCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateApplicationVersionCommand };
|
|
@@ -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 { ConfigurationSettingsDescriptionFilterSensitiveLog, CreateConfigurationTemplateMessageFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryCreateConfigurationTemplateCommand, serializeAws_queryCreateConfigurationTemplateCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CreateConfigurationTemplateCommand = (function (_super) {
|
|
7
|
+
__extends(CreateConfigurationTemplateCommand, _super);
|
|
8
|
+
function CreateConfigurationTemplateCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
CreateConfigurationTemplateCommand.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 = "ElasticBeanstalkClient";
|
|
18
|
+
var commandName = "CreateConfigurationTemplateCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: CreateConfigurationTemplateMessageFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ConfigurationSettingsDescriptionFilterSensitiveLog,
|
|
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
|
+
CreateConfigurationTemplateCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryCreateConfigurationTemplateCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
CreateConfigurationTemplateCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryCreateConfigurationTemplateCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return CreateConfigurationTemplateCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateConfigurationTemplateCommand };
|
|
@@ -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 { CreateEnvironmentMessageFilterSensitiveLog, EnvironmentDescriptionFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_queryCreateEnvironmentCommand, serializeAws_queryCreateEnvironmentCommand, } from "../protocols/Aws_query";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var CreateEnvironmentCommand = (function (_super) {
|
|
7
|
+
__extends(CreateEnvironmentCommand, _super);
|
|
8
|
+
function CreateEnvironmentCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
CreateEnvironmentCommand.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 = "ElasticBeanstalkClient";
|
|
18
|
+
var commandName = "CreateEnvironmentCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: CreateEnvironmentMessageFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: EnvironmentDescriptionFilterSensitiveLog,
|
|
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
|
+
CreateEnvironmentCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_queryCreateEnvironmentCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
CreateEnvironmentCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_queryCreateEnvironmentCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return CreateEnvironmentCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateEnvironmentCommand };
|