@aws-sdk/client-elastic-beanstalk 3.296.0 → 3.297.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/dist-cjs/protocols/Aws_query.js +96 -504
- package/dist-es/protocols/Aws_query.js +96 -504
- package/dist-types/ElasticBeanstalk.d.ts +48 -0
- package/dist-types/ElasticBeanstalkClient.d.ts +24 -4
- package/dist-types/commands/AbortEnvironmentUpdateCommand.d.ts +16 -0
- package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +16 -0
- package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +16 -0
- package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +16 -0
- package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/CreatePlatformVersionCommand.d.ts +16 -0
- package/dist-types/commands/CreateStorageLocationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeletePlatformVersionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +16 -0
- package/dist-types/commands/DescribePlatformVersionCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +16 -0
- package/dist-types/commands/ListAvailableSolutionStacksCommand.d.ts +16 -0
- package/dist-types/commands/ListPlatformBranchesCommand.d.ts +16 -0
- package/dist-types/commands/ListPlatformVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RebuildEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +16 -0
- package/dist-types/commands/RestartAppServerCommand.d.ts +16 -0
- package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +16 -0
- package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +16 -0
- package/dist-types/commands/TerminateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +16 -0
- package/dist-types/models/ElasticBeanstalkServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +232 -0
- package/dist-types/pagination/DescribeEnvironmentManagedActionHistoryPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeEventsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListPlatformBranchesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPlatformVersionsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient";
|
|
5
5
|
import { EnvironmentDescription, TerminateEnvironmentMessage } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TerminateEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TerminateEnvironmentCommandInput extends TerminateEnvironmentMessage {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TerminateEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TerminateEnvironmentCommandOutput extends EnvironmentDescription, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Terminates the specified environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface TerminateEnvironmentCommandOutput extends EnvironmentDescriptio
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param TerminateEnvironmentCommandInput - {@link TerminateEnvironmentCommandInput}
|
|
34
|
+
* @returns {@link TerminateEnvironmentCommandOutput}
|
|
28
35
|
* @see {@link TerminateEnvironmentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link TerminateEnvironmentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface TerminateEnvironmentCommandOutput extends EnvironmentDescriptio
|
|
|
69
76
|
export declare class TerminateEnvironmentCommand extends $Command<TerminateEnvironmentCommandInput, TerminateEnvironmentCommandOutput, ElasticBeanstalkClientResolvedConfig> {
|
|
70
77
|
readonly input: TerminateEnvironmentCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: TerminateEnvironmentCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticBeanstalkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TerminateEnvironmentCommandInput, TerminateEnvironmentCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient";
|
|
5
5
|
import { ApplicationDescriptionMessage, UpdateApplicationMessage } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateApplicationCommandInput extends UpdateApplicationMessage {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateApplicationCommandOutput extends ApplicationDescriptionMessage, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the specified application to have the specified properties.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>If a property (for example, <code>description</code>) is not provided, the value
|
|
@@ -29,6 +34,8 @@ export interface UpdateApplicationCommandOutput extends ApplicationDescriptionMe
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
|
|
38
|
+
* @returns {@link UpdateApplicationCommandOutput}
|
|
32
39
|
* @see {@link UpdateApplicationCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface UpdateApplicationCommandOutput extends ApplicationDescriptionMe
|
|
|
68
75
|
export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ElasticBeanstalkClientResolvedConfig> {
|
|
69
76
|
readonly input: UpdateApplicationCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: UpdateApplicationCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticBeanstalkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient";
|
|
5
5
|
import { ApplicationResourceLifecycleDescriptionMessage, UpdateApplicationResourceLifecycleMessage } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateApplicationResourceLifecycleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateApplicationResourceLifecycleCommandInput extends UpdateApplicationResourceLifecycleMessage {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateApplicationResourceLifecycleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateApplicationResourceLifecycleCommandOutput extends ApplicationResourceLifecycleDescriptionMessage, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies lifecycle settings for an application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateApplicationResourceLifecycleCommandOutput extends Applica
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateApplicationResourceLifecycleCommandInput - {@link UpdateApplicationResourceLifecycleCommandInput}
|
|
34
|
+
* @returns {@link UpdateApplicationResourceLifecycleCommandOutput}
|
|
28
35
|
* @see {@link UpdateApplicationResourceLifecycleCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateApplicationResourceLifecycleCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
@@ -38,11 +45,20 @@ export interface UpdateApplicationResourceLifecycleCommandOutput extends Applica
|
|
|
38
45
|
export declare class UpdateApplicationResourceLifecycleCommand extends $Command<UpdateApplicationResourceLifecycleCommandInput, UpdateApplicationResourceLifecycleCommandOutput, ElasticBeanstalkClientResolvedConfig> {
|
|
39
46
|
readonly input: UpdateApplicationResourceLifecycleCommandInput;
|
|
40
47
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
41
51
|
constructor(input: UpdateApplicationResourceLifecycleCommandInput);
|
|
42
52
|
/**
|
|
43
53
|
* @internal
|
|
44
54
|
*/
|
|
45
55
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticBeanstalkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationResourceLifecycleCommandInput, UpdateApplicationResourceLifecycleCommandOutput>;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
46
59
|
private serialize;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
47
63
|
private deserialize;
|
|
48
64
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient";
|
|
5
5
|
import { ApplicationVersionDescriptionMessage, UpdateApplicationVersionMessage } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateApplicationVersionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateApplicationVersionCommandInput extends UpdateApplicationVersionMessage {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateApplicationVersionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateApplicationVersionCommandOutput extends ApplicationVersionDescriptionMessage, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the specified application version to have the specified properties.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>If a property (for example, <code>description</code>) is not provided, the value
|
|
@@ -29,6 +34,8 @@ export interface UpdateApplicationVersionCommandOutput extends ApplicationVersio
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param UpdateApplicationVersionCommandInput - {@link UpdateApplicationVersionCommandInput}
|
|
38
|
+
* @returns {@link UpdateApplicationVersionCommandOutput}
|
|
32
39
|
* @see {@link UpdateApplicationVersionCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link UpdateApplicationVersionCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface UpdateApplicationVersionCommandOutput extends ApplicationVersio
|
|
|
66
73
|
export declare class UpdateApplicationVersionCommand extends $Command<UpdateApplicationVersionCommandInput, UpdateApplicationVersionCommandOutput, ElasticBeanstalkClientResolvedConfig> {
|
|
67
74
|
readonly input: UpdateApplicationVersionCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: UpdateApplicationVersionCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticBeanstalkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationVersionCommandInput, UpdateApplicationVersionCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient";
|
|
5
5
|
import { ConfigurationSettingsDescription, UpdateConfigurationTemplateMessage } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateConfigurationTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateConfigurationTemplateCommandInput extends UpdateConfigurationTemplateMessage {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateConfigurationTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateConfigurationTemplateCommandOutput extends ConfigurationSettingsDescription, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the specified configuration template to have the specified properties or
|
|
18
23
|
* configuration option values.</p>
|
|
19
24
|
* <note>
|
|
@@ -38,6 +43,8 @@ export interface UpdateConfigurationTemplateCommandOutput extends ConfigurationS
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param UpdateConfigurationTemplateCommandInput - {@link UpdateConfigurationTemplateCommandInput}
|
|
47
|
+
* @returns {@link UpdateConfigurationTemplateCommandOutput}
|
|
41
48
|
* @see {@link UpdateConfigurationTemplateCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link UpdateConfigurationTemplateCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
@@ -81,11 +88,20 @@ export interface UpdateConfigurationTemplateCommandOutput extends ConfigurationS
|
|
|
81
88
|
export declare class UpdateConfigurationTemplateCommand extends $Command<UpdateConfigurationTemplateCommandInput, UpdateConfigurationTemplateCommandOutput, ElasticBeanstalkClientResolvedConfig> {
|
|
82
89
|
readonly input: UpdateConfigurationTemplateCommandInput;
|
|
83
90
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
84
94
|
constructor(input: UpdateConfigurationTemplateCommandInput);
|
|
85
95
|
/**
|
|
86
96
|
* @internal
|
|
87
97
|
*/
|
|
88
98
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticBeanstalkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConfigurationTemplateCommandInput, UpdateConfigurationTemplateCommandOutput>;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
89
102
|
private serialize;
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
90
106
|
private deserialize;
|
|
91
107
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient";
|
|
5
5
|
import { EnvironmentDescription, UpdateEnvironmentMessage } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateEnvironmentCommandInput extends UpdateEnvironmentMessage {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateEnvironmentCommandOutput extends EnvironmentDescription, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the environment description, deploys a new application version, updates the
|
|
18
23
|
* configuration settings to an entirely new configuration template, or updates select
|
|
19
24
|
* configuration option values in the running environment.</p>
|
|
@@ -33,6 +38,8 @@ export interface UpdateEnvironmentCommandOutput extends EnvironmentDescription,
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param UpdateEnvironmentCommandInput - {@link UpdateEnvironmentCommandInput}
|
|
42
|
+
* @returns {@link UpdateEnvironmentCommandOutput}
|
|
36
43
|
* @see {@link UpdateEnvironmentCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link UpdateEnvironmentCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
@@ -135,11 +142,20 @@ export interface UpdateEnvironmentCommandOutput extends EnvironmentDescription,
|
|
|
135
142
|
export declare class UpdateEnvironmentCommand extends $Command<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, ElasticBeanstalkClientResolvedConfig> {
|
|
136
143
|
readonly input: UpdateEnvironmentCommandInput;
|
|
137
144
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
138
148
|
constructor(input: UpdateEnvironmentCommandInput);
|
|
139
149
|
/**
|
|
140
150
|
* @internal
|
|
141
151
|
*/
|
|
142
152
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticBeanstalkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput>;
|
|
153
|
+
/**
|
|
154
|
+
* @internal
|
|
155
|
+
*/
|
|
143
156
|
private serialize;
|
|
157
|
+
/**
|
|
158
|
+
* @internal
|
|
159
|
+
*/
|
|
144
160
|
private deserialize;
|
|
145
161
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient";
|
|
5
5
|
import { UpdateTagsForResourceMessage } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateTagsForResourceCommandInput extends UpdateTagsForResourceMessage {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateTagsForResourceCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Update the list of tags applied to an AWS Elastic Beanstalk resource. Two lists can be passed: <code>TagsToAdd</code>
|
|
18
23
|
* for tags to add or update, and <code>TagsToRemove</code>.</p>
|
|
19
24
|
* <p>Elastic Beanstalk supports tagging of all of its resources. For details about resource tagging, see
|
|
@@ -44,6 +49,8 @@ export interface UpdateTagsForResourceCommandOutput extends __MetadataBearer {
|
|
|
44
49
|
* const response = await client.send(command);
|
|
45
50
|
* ```
|
|
46
51
|
*
|
|
52
|
+
* @param UpdateTagsForResourceCommandInput - {@link UpdateTagsForResourceCommandInput}
|
|
53
|
+
* @returns {@link UpdateTagsForResourceCommandOutput}
|
|
47
54
|
* @see {@link UpdateTagsForResourceCommandInput} for command's `input` shape.
|
|
48
55
|
* @see {@link UpdateTagsForResourceCommandOutput} for command's `response` shape.
|
|
49
56
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
@@ -73,11 +80,20 @@ export interface UpdateTagsForResourceCommandOutput extends __MetadataBearer {
|
|
|
73
80
|
export declare class UpdateTagsForResourceCommand extends $Command<UpdateTagsForResourceCommandInput, UpdateTagsForResourceCommandOutput, ElasticBeanstalkClientResolvedConfig> {
|
|
74
81
|
readonly input: UpdateTagsForResourceCommandInput;
|
|
75
82
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
76
86
|
constructor(input: UpdateTagsForResourceCommandInput);
|
|
77
87
|
/**
|
|
78
88
|
* @internal
|
|
79
89
|
*/
|
|
80
90
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticBeanstalkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateTagsForResourceCommandInput, UpdateTagsForResourceCommandOutput>;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
81
94
|
private serialize;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
82
98
|
private deserialize;
|
|
83
99
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient";
|
|
5
5
|
import { ConfigurationSettingsValidationMessages, ValidateConfigurationSettingsMessage } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ValidateConfigurationSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ValidateConfigurationSettingsCommandInput extends ValidateConfigurationSettingsMessage {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ValidateConfigurationSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ValidateConfigurationSettingsCommandOutput extends ConfigurationSettingsValidationMessages, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Takes a set of configuration settings and either a configuration template or
|
|
18
23
|
* environment, and determines whether those values are valid.</p>
|
|
19
24
|
* <p>This action returns a list of messages indicating any errors or warnings associated
|
|
@@ -28,6 +33,8 @@ export interface ValidateConfigurationSettingsCommandOutput extends Configuratio
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ValidateConfigurationSettingsCommandInput - {@link ValidateConfigurationSettingsCommandInput}
|
|
37
|
+
* @returns {@link ValidateConfigurationSettingsCommandOutput}
|
|
31
38
|
* @see {@link ValidateConfigurationSettingsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ValidateConfigurationSettingsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface ValidateConfigurationSettingsCommandOutput extends Configuratio
|
|
|
68
75
|
export declare class ValidateConfigurationSettingsCommand extends $Command<ValidateConfigurationSettingsCommandInput, ValidateConfigurationSettingsCommandOutput, ElasticBeanstalkClientResolvedConfig> {
|
|
69
76
|
readonly input: ValidateConfigurationSettingsCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: ValidateConfigurationSettingsCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticBeanstalkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ValidateConfigurationSettingsCommandInput, ValidateConfigurationSettingsCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from ElasticBeanstalk service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class ElasticBeanstalkServiceException extends __ServiceException {
|