@aws-sdk/client-elastic-beanstalk 3.774.0 → 3.777.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.
Files changed (54) hide show
  1. package/dist-cjs/auth/httpAuthSchemeProvider.js +1 -3
  2. package/dist-cjs/index.js +17 -18
  3. package/dist-es/ElasticBeanstalkClient.js +2 -1
  4. package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
  5. package/dist-es/endpoint/EndpointParameters.js +2 -3
  6. package/dist-es/runtimeExtensions.js +2 -14
  7. package/dist-types/commands/AbortEnvironmentUpdateCommand.d.ts +7 -4
  8. package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +1 -0
  9. package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +1 -0
  10. package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +6 -6
  11. package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +1 -0
  12. package/dist-types/commands/CreateApplicationCommand.d.ts +11 -11
  13. package/dist-types/commands/CreateApplicationVersionCommand.d.ts +20 -20
  14. package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +11 -11
  15. package/dist-types/commands/CreateEnvironmentCommand.d.ts +22 -22
  16. package/dist-types/commands/CreatePlatformVersionCommand.d.ts +1 -0
  17. package/dist-types/commands/CreateStorageLocationCommand.d.ts +5 -5
  18. package/dist-types/commands/DeleteApplicationCommand.d.ts +7 -4
  19. package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +9 -6
  20. package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +8 -5
  21. package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +8 -5
  22. package/dist-types/commands/DeletePlatformVersionCommand.d.ts +1 -0
  23. package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +1 -0
  24. package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +22 -22
  25. package/dist-types/commands/DescribeApplicationsCommand.d.ts +21 -21
  26. package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +21 -21
  27. package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +30 -30
  28. package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +36 -36
  29. package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +1 -0
  30. package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +1 -0
  31. package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +16 -16
  32. package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +21 -21
  33. package/dist-types/commands/DescribeEventsCommand.d.ts +28 -28
  34. package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +39 -39
  35. package/dist-types/commands/DescribePlatformVersionCommand.d.ts +1 -0
  36. package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +1 -0
  37. package/dist-types/commands/ListAvailableSolutionStacksCommand.d.ts +8 -8
  38. package/dist-types/commands/ListPlatformBranchesCommand.d.ts +1 -0
  39. package/dist-types/commands/ListPlatformVersionsCommand.d.ts +1 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -0
  41. package/dist-types/commands/RebuildEnvironmentCommand.d.ts +7 -4
  42. package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +8 -5
  43. package/dist-types/commands/RestartAppServerCommand.d.ts +7 -4
  44. package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +10 -10
  45. package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +8 -5
  46. package/dist-types/commands/TerminateEnvironmentCommand.d.ts +19 -19
  47. package/dist-types/commands/UpdateApplicationCommand.d.ts +12 -12
  48. package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +1 -0
  49. package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +15 -15
  50. package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +13 -13
  51. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +63 -64
  52. package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +1 -0
  53. package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +10 -10
  54. package/package.json +34 -34
@@ -123,58 +123,58 @@ declare const DescribeInstancesHealthCommand_base: {
123
123
  * @throws {@link ElasticBeanstalkServiceException}
124
124
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
125
125
  *
126
- * @public
126
+ *
127
127
  * @example To view environment health
128
128
  * ```javascript
129
129
  * // The following operation retrieves health information for instances in an environment named my-env:
130
130
  * const input = {
131
- * "AttributeNames": [
131
+ * AttributeNames: [
132
132
  * "All"
133
133
  * ],
134
- * "EnvironmentName": "my-env"
134
+ * EnvironmentName: "my-env"
135
135
  * };
136
136
  * const command = new DescribeInstancesHealthCommand(input);
137
137
  * const response = await client.send(command);
138
- * /* response ==
138
+ * /* response is
139
139
  * {
140
- * "InstanceHealthList": [
140
+ * InstanceHealthList: [
141
141
  * {
142
- * "ApplicationMetrics": {
143
- * "Duration": 10,
144
- * "Latency": {
145
- * "P10": 0,
146
- * "P50": 0.001,
147
- * "P75": 0.002,
148
- * "P85": 0.003,
149
- * "P90": 0.004,
150
- * "P95": 0.005,
151
- * "P99": 0.006,
152
- * "P999": 0.006
142
+ * ApplicationMetrics: {
143
+ * Duration: 10,
144
+ * Latency: {
145
+ * P10: 0,
146
+ * P50: 0.001,
147
+ * P75: 0.002,
148
+ * P85: 0.003,
149
+ * P90: 0.004,
150
+ * P95: 0.005,
151
+ * P99: 0.006,
152
+ * P999: 0.006
153
153
  * },
154
- * "RequestCount": 48,
155
- * "StatusCodes": {
156
- * "Status2xx": 47,
157
- * "Status3xx": 0,
158
- * "Status4xx": 1,
159
- * "Status5xx": 0
154
+ * RequestCount: 48,
155
+ * StatusCodes: {
156
+ * Status2xx: 47,
157
+ * Status3xx: 0,
158
+ * Status4xx: 1,
159
+ * Status5xx: 0
160
160
  * }
161
161
  * },
162
- * "Causes": [],
163
- * "Color": "Green",
164
- * "HealthStatus": "Ok",
165
- * "InstanceId": "i-08691cc7",
166
- * "LaunchedAt": "2015-08-13T19:17:09Z",
167
- * "System": {
168
- * "CPUUtilization": {
169
- * "IOWait": 0.2,
170
- * "IRQ": 0,
171
- * "Idle": 97.8,
172
- * "Nice": 0.1,
173
- * "SoftIRQ": 0.1,
174
- * "System": 0.3,
175
- * "User": 1.5
162
+ * Causes: [],
163
+ * Color: "Green",
164
+ * HealthStatus: "Ok",
165
+ * InstanceId: "i-08691cc7",
166
+ * LaunchedAt: "2015-08-13T19:17:09Z",
167
+ * System: {
168
+ * CPUUtilization: {
169
+ * IOWait: 0.2,
170
+ * IRQ: 0,
171
+ * Idle: 97.8,
172
+ * Nice: 0.1,
173
+ * SoftIRQ: 0.1,
174
+ * System: 0.3,
175
+ * User: 1.5
176
176
  * },
177
- * "LoadAverage": [
177
+ * LoadAverage: [
178
178
  * 0,
179
179
  * 0.02,
180
180
  * 0.05
@@ -182,12 +182,12 @@ declare const DescribeInstancesHealthCommand_base: {
182
182
  * }
183
183
  * }
184
184
  * ],
185
- * "RefreshedAt": "2015-08-20T21:09:08Z"
185
+ * RefreshedAt: "2015-08-20T21:09:08Z"
186
186
  * }
187
187
  * *\/
188
- * // example id: to-view-environment-health-1456277424757
189
188
  * ```
190
189
  *
190
+ * @public
191
191
  */
192
192
  export declare class DescribeInstancesHealthCommand extends DescribeInstancesHealthCommand_base {
193
193
  /** @internal type navigation helper, not in runtime. */
@@ -105,6 +105,7 @@ declare const DescribePlatformVersionCommand_base: {
105
105
  * @throws {@link ElasticBeanstalkServiceException}
106
106
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
107
107
  *
108
+ *
108
109
  * @public
109
110
  */
110
111
  export declare class DescribePlatformVersionCommand extends DescribePlatformVersionCommand_base {
@@ -59,6 +59,7 @@ declare const DisassociateEnvironmentOperationsRoleCommand_base: {
59
59
  * @throws {@link ElasticBeanstalkServiceException}
60
60
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
61
61
  *
62
+ *
62
63
  * @public
63
64
  */
64
65
  export declare class DisassociateEnvironmentOperationsRoleCommand extends DisassociateEnvironmentOperationsRoleCommand_base {
@@ -63,24 +63,24 @@ declare const ListAvailableSolutionStacksCommand_base: {
63
63
  * @throws {@link ElasticBeanstalkServiceException}
64
64
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
65
65
  *
66
- * @public
66
+ *
67
67
  * @example To view solution stacks
68
68
  * ```javascript
69
69
  * // The following operation lists solution stacks for all currently available platform configurations and any that you have used in the past:
70
- * const input = {};
70
+ * const input = { /* empty *\/ };
71
71
  * const command = new ListAvailableSolutionStacksCommand(input);
72
72
  * const response = await client.send(command);
73
- * /* response ==
73
+ * /* response is
74
74
  * {
75
- * "SolutionStackDetails": [
75
+ * SolutionStackDetails: [
76
76
  * {
77
- * "PermittedFileTypes": [
77
+ * PermittedFileTypes: [
78
78
  * "zip"
79
79
  * ],
80
- * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Node.js"
80
+ * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Node.js"
81
81
  * }
82
82
  * ],
83
- * "SolutionStacks": [
83
+ * SolutionStacks: [
84
84
  * "64bit Amazon Linux 2015.03 v2.0.0 running Node.js",
85
85
  * "64bit Amazon Linux 2015.03 v2.0.0 running PHP 5.6",
86
86
  * "64bit Amazon Linux 2015.03 v2.0.0 running PHP 5.5",
@@ -112,9 +112,9 @@ declare const ListAvailableSolutionStacksCommand_base: {
112
112
  * ]
113
113
  * }
114
114
  * *\/
115
- * // example id: to-view-solution-stacks-1456277504811
116
115
  * ```
117
116
  *
117
+ * @public
118
118
  */
119
119
  export declare class ListAvailableSolutionStacksCommand extends ListAvailableSolutionStacksCommand_base {
120
120
  /** @internal type navigation helper, not in runtime. */
@@ -78,6 +78,7 @@ declare const ListPlatformBranchesCommand_base: {
78
78
  * @throws {@link ElasticBeanstalkServiceException}
79
79
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
80
80
  *
81
+ *
81
82
  * @public
82
83
  */
83
84
  export declare class ListPlatformBranchesCommand extends ListPlatformBranchesCommand_base {
@@ -95,6 +95,7 @@ declare const ListPlatformVersionsCommand_base: {
95
95
  * @throws {@link ElasticBeanstalkServiceException}
96
96
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
97
97
  *
98
+ *
98
99
  * @public
99
100
  */
100
101
  export declare class ListPlatformVersionsCommand extends ListPlatformVersionsCommand_base {
@@ -73,6 +73,7 @@ declare const ListTagsForResourceCommand_base: {
73
73
  * @throws {@link ElasticBeanstalkServiceException}
74
74
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
75
75
  *
76
+ *
76
77
  * @public
77
78
  */
78
79
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
@@ -58,18 +58,21 @@ declare const RebuildEnvironmentCommand_base: {
58
58
  * @throws {@link ElasticBeanstalkServiceException}
59
59
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
60
60
  *
61
- * @public
61
+ *
62
62
  * @example To rebuild an environment
63
63
  * ```javascript
64
64
  * // The following operation terminates and recreates the resources in an environment named my-env:
65
65
  * const input = {
66
- * "EnvironmentName": "my-env"
66
+ * EnvironmentName: "my-env"
67
67
  * };
68
68
  * const command = new RebuildEnvironmentCommand(input);
69
- * await client.send(command);
70
- * // example id: to-rebuild-an-environment-1456277600918
69
+ * const response = await client.send(command);
70
+ * /* response is
71
+ * { /* metadata only *\/ }
72
+ * *\/
71
73
  * ```
72
74
  *
75
+ * @public
73
76
  */
74
77
  export declare class RebuildEnvironmentCommand extends RebuildEnvironmentCommand_base {
75
78
  /** @internal type navigation helper, not in runtime. */
@@ -69,19 +69,22 @@ declare const RequestEnvironmentInfoCommand_base: {
69
69
  * @throws {@link ElasticBeanstalkServiceException}
70
70
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
71
71
  *
72
- * @public
72
+ *
73
73
  * @example To request tailed logs
74
74
  * ```javascript
75
75
  * // The following operation requests logs from an environment named my-env:
76
76
  * const input = {
77
- * "EnvironmentName": "my-env",
78
- * "InfoType": "tail"
77
+ * EnvironmentName: "my-env",
78
+ * InfoType: "tail"
79
79
  * };
80
80
  * const command = new RequestEnvironmentInfoCommand(input);
81
- * await client.send(command);
82
- * // example id: to-request-tailed-logs-1456277657045
81
+ * const response = await client.send(command);
82
+ * /* response is
83
+ * { /* metadata only *\/ }
84
+ * *\/
83
85
  * ```
84
86
  *
87
+ * @public
85
88
  */
86
89
  export declare class RequestEnvironmentInfoCommand extends RequestEnvironmentInfoCommand_base {
87
90
  /** @internal type navigation helper, not in runtime. */
@@ -54,18 +54,21 @@ declare const RestartAppServerCommand_base: {
54
54
  * @throws {@link ElasticBeanstalkServiceException}
55
55
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
56
56
  *
57
- * @public
57
+ *
58
58
  * @example To restart application servers
59
59
  * ```javascript
60
60
  * // The following operation restarts application servers on all instances in an environment named my-env:
61
61
  * const input = {
62
- * "EnvironmentName": "my-env"
62
+ * EnvironmentName: "my-env"
63
63
  * };
64
64
  * const command = new RestartAppServerCommand(input);
65
- * await client.send(command);
66
- * // example id: to-restart-application-servers-1456277739302
65
+ * const response = await client.send(command);
66
+ * /* response is
67
+ * { /* metadata only *\/ }
68
+ * *\/
67
69
  * ```
68
70
  *
71
+ * @public
69
72
  */
70
73
  export declare class RestartAppServerCommand extends RestartAppServerCommand_base {
71
74
  /** @internal type navigation helper, not in runtime. */
@@ -72,31 +72,31 @@ declare const RetrieveEnvironmentInfoCommand_base: {
72
72
  * @throws {@link ElasticBeanstalkServiceException}
73
73
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
74
74
  *
75
- * @public
75
+ *
76
76
  * @example To retrieve tailed logs
77
77
  * ```javascript
78
78
  * // The following operation retrieves a link to logs from an environment named my-env:
79
79
  * const input = {
80
- * "EnvironmentName": "my-env",
81
- * "InfoType": "tail"
80
+ * EnvironmentName: "my-env",
81
+ * InfoType: "tail"
82
82
  * };
83
83
  * const command = new RetrieveEnvironmentInfoCommand(input);
84
84
  * const response = await client.send(command);
85
- * /* response ==
85
+ * /* response is
86
86
  * {
87
- * "EnvironmentInfo": [
87
+ * EnvironmentInfo: [
88
88
  * {
89
- * "Ec2InstanceId": "i-09c1c867",
90
- * "InfoType": "tail",
91
- * "Message": "https://elasticbeanstalk-us-west-2-0123456789012.s3.amazonaws.com/resources/environments/logs/tail/e-fyqyju3yjs/i-09c1c867/TailLogs-1440109397703.out?AWSAccessKeyId=AKGPT4J56IAJ2EUBL5CQ&Expires=1440195891&Signature=n%2BEalOV6A2HIOx4Rcfb7LT16bBM%3D",
92
- * "SampleTimestamp": "2015-08-20T22:23:17.703Z"
89
+ * Ec2InstanceId: "i-09c1c867",
90
+ * InfoType: "tail",
91
+ * Message: "https://elasticbeanstalk-us-west-2-0123456789012.s3.amazonaws.com/resources/environments/logs/tail/e-fyqyju3yjs/i-09c1c867/TailLogs-1440109397703.out?AWSAccessKeyId=AKGPT4J56IAJ2EUBL5CQ&Expires=1440195891&Signature=n%2BEalOV6A2HIOx4Rcfb7LT16bBM%3D",
92
+ * SampleTimestamp: "2015-08-20T22:23:17.703Z"
93
93
  * }
94
94
  * ]
95
95
  * }
96
96
  * *\/
97
- * // example id: to-retrieve-tailed-logs-1456277792734
98
97
  * ```
99
98
  *
99
+ * @public
100
100
  */
101
101
  export declare class RetrieveEnvironmentInfoCommand extends RetrieveEnvironmentInfoCommand_base {
102
102
  /** @internal type navigation helper, not in runtime. */
@@ -55,19 +55,22 @@ declare const SwapEnvironmentCNAMEsCommand_base: {
55
55
  * @throws {@link ElasticBeanstalkServiceException}
56
56
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
57
57
  *
58
- * @public
58
+ *
59
59
  * @example To swap environment CNAMES
60
60
  * ```javascript
61
61
  * // The following operation swaps the assigned subdomains of two environments:
62
62
  * const input = {
63
- * "DestinationEnvironmentName": "my-env-green",
64
- * "SourceEnvironmentName": "my-env-blue"
63
+ * DestinationEnvironmentName: "my-env-green",
64
+ * SourceEnvironmentName: "my-env-blue"
65
65
  * };
66
66
  * const command = new SwapEnvironmentCNAMEsCommand(input);
67
- * await client.send(command);
68
- * // example id: to-swap-environment-cnames-1456277839438
67
+ * const response = await client.send(command);
68
+ * /* response is
69
+ * { /* metadata only *\/ }
70
+ * *\/
69
71
  * ```
70
72
  *
73
+ * @public
71
74
  */
72
75
  export declare class SwapEnvironmentCNAMEsCommand extends SwapEnvironmentCNAMEsCommand_base {
73
76
  /** @internal type navigation helper, not in runtime. */
@@ -101,38 +101,38 @@ declare const TerminateEnvironmentCommand_base: {
101
101
  * @throws {@link ElasticBeanstalkServiceException}
102
102
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
103
103
  *
104
- * @public
104
+ *
105
105
  * @example To terminate an environment
106
106
  * ```javascript
107
107
  * // The following operation terminates an Elastic Beanstalk environment named my-env:
108
108
  * const input = {
109
- * "EnvironmentName": "my-env"
109
+ * EnvironmentName: "my-env"
110
110
  * };
111
111
  * const command = new TerminateEnvironmentCommand(input);
112
112
  * const response = await client.send(command);
113
- * /* response ==
113
+ * /* response is
114
114
  * {
115
- * "AbortableOperationInProgress": false,
116
- * "ApplicationName": "my-app",
117
- * "CNAME": "my-env.elasticbeanstalk.com",
118
- * "DateCreated": "2015-08-12T18:52:53.622Z",
119
- * "DateUpdated": "2015-08-12T19:05:54.744Z",
120
- * "EndpointURL": "awseb-e-f-AWSEBLoa-1I9XUMP4-8492WNUP202574.us-west-2.elb.amazonaws.com",
121
- * "EnvironmentId": "e-fh2eravpns",
122
- * "EnvironmentName": "my-env",
123
- * "Health": "Grey",
124
- * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8",
125
- * "Status": "Terminating",
126
- * "Tier": {
127
- * "Name": "WebServer",
128
- * "Type": "Standard",
129
- * "Version": " "
115
+ * AbortableOperationInProgress: false,
116
+ * ApplicationName: "my-app",
117
+ * CNAME: "my-env.elasticbeanstalk.com",
118
+ * DateCreated: "2015-08-12T18:52:53.622Z",
119
+ * DateUpdated: "2015-08-12T19:05:54.744Z",
120
+ * EndpointURL: "awseb-e-f-AWSEBLoa-1I9XUMP4-8492WNUP202574.us-west-2.elb.amazonaws.com",
121
+ * EnvironmentId: "e-fh2eravpns",
122
+ * EnvironmentName: "my-env",
123
+ * Health: "Grey",
124
+ * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8",
125
+ * Status: "Terminating",
126
+ * Tier: {
127
+ * Name: "WebServer",
128
+ * Type: "Standard",
129
+ * Version: " "
130
130
  * }
131
131
  * }
132
132
  * *\/
133
- * // example id: to-terminate-an-environment-1456277888556
134
133
  * ```
135
134
  *
135
+ * @public
136
136
  */
137
137
  export declare class TerminateEnvironmentCommand extends TerminateEnvironmentCommand_base {
138
138
  /** @internal type navigation helper, not in runtime. */
@@ -86,25 +86,25 @@ declare const UpdateApplicationCommand_base: {
86
86
  * @throws {@link ElasticBeanstalkServiceException}
87
87
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
88
88
  *
89
- * @public
89
+ *
90
90
  * @example To change an application's description
91
91
  * ```javascript
92
92
  * // The following operation updates the description of an application named my-app:
93
93
  * const input = {
94
- * "ApplicationName": "my-app",
95
- * "Description": "my Elastic Beanstalk application"
94
+ * ApplicationName: "my-app",
95
+ * Description: "my Elastic Beanstalk application"
96
96
  * };
97
97
  * const command = new UpdateApplicationCommand(input);
98
98
  * const response = await client.send(command);
99
- * /* response ==
99
+ * /* response is
100
100
  * {
101
- * "Application": {
102
- * "ApplicationName": "my-app",
103
- * "ConfigurationTemplates": [],
104
- * "DateCreated": "2015-08-13T19:15:50.449Z",
105
- * "DateUpdated": "2015-08-20T22:34:56.195Z",
106
- * "Description": "my Elastic Beanstalk application",
107
- * "Versions": [
101
+ * Application: {
102
+ * ApplicationName: "my-app",
103
+ * ConfigurationTemplates: [],
104
+ * DateCreated: "2015-08-13T19:15:50.449Z",
105
+ * DateUpdated: "2015-08-20T22:34:56.195Z",
106
+ * Description: "my Elastic Beanstalk application",
107
+ * Versions: [
108
108
  * "2fba-stage-150819_234450",
109
109
  * "bf07-stage-150820_214945",
110
110
  * "93f8",
@@ -114,9 +114,9 @@ declare const UpdateApplicationCommand_base: {
114
114
  * }
115
115
  * }
116
116
  * *\/
117
- * // example id: to-change-an-applications-description-1456277957075
118
117
  * ```
119
118
  *
119
+ * @public
120
120
  */
121
121
  export declare class UpdateApplicationCommand extends UpdateApplicationCommand_base {
122
122
  /** @internal type navigation helper, not in runtime. */
@@ -88,6 +88,7 @@ declare const UpdateApplicationResourceLifecycleCommand_base: {
88
88
  * @throws {@link ElasticBeanstalkServiceException}
89
89
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
90
90
  *
91
+ *
91
92
  * @public
92
93
  */
93
94
  export declare class UpdateApplicationResourceLifecycleCommand extends UpdateApplicationResourceLifecycleCommand_base {
@@ -78,35 +78,35 @@ declare const UpdateApplicationVersionCommand_base: {
78
78
  * @throws {@link ElasticBeanstalkServiceException}
79
79
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
80
80
  *
81
- * @public
81
+ *
82
82
  * @example To change an application version's description
83
83
  * ```javascript
84
84
  * // The following operation updates the description of an application version named 22a0-stage-150819_185942:
85
85
  * const input = {
86
- * "ApplicationName": "my-app",
87
- * "Description": "new description",
88
- * "VersionLabel": "22a0-stage-150819_185942"
86
+ * ApplicationName: "my-app",
87
+ * Description: "new description",
88
+ * VersionLabel: "22a0-stage-150819_185942"
89
89
  * };
90
90
  * const command = new UpdateApplicationVersionCommand(input);
91
91
  * const response = await client.send(command);
92
- * /* response ==
92
+ * /* response is
93
93
  * {
94
- * "ApplicationVersion": {
95
- * "ApplicationName": "my-app",
96
- * "DateCreated": "2015-08-19T18:59:17.646Z",
97
- * "DateUpdated": "2015-08-20T22:53:28.871Z",
98
- * "Description": "new description",
99
- * "SourceBundle": {
100
- * "S3Bucket": "elasticbeanstalk-us-west-2-0123456789012",
101
- * "S3Key": "my-app/22a0-stage-150819_185942.war"
94
+ * ApplicationVersion: {
95
+ * ApplicationName: "my-app",
96
+ * DateCreated: "2015-08-19T18:59:17.646Z",
97
+ * DateUpdated: "2015-08-20T22:53:28.871Z",
98
+ * Description: "new description",
99
+ * SourceBundle: {
100
+ * S3Bucket: "elasticbeanstalk-us-west-2-0123456789012",
101
+ * S3Key: "my-app/22a0-stage-150819_185942.war"
102
102
  * },
103
- * "VersionLabel": "22a0-stage-150819_185942"
103
+ * VersionLabel: "22a0-stage-150819_185942"
104
104
  * }
105
105
  * }
106
106
  * *\/
107
- * // example id: to-change-an-application-versions-description-1456278019237
108
107
  * ```
109
108
  *
109
+ * @public
110
110
  */
111
111
  export declare class UpdateApplicationVersionCommand extends UpdateApplicationVersionCommand_base {
112
112
  /** @internal type navigation helper, not in runtime. */
@@ -107,34 +107,34 @@ declare const UpdateConfigurationTemplateCommand_base: {
107
107
  * @throws {@link ElasticBeanstalkServiceException}
108
108
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
109
109
  *
110
- * @public
110
+ *
111
111
  * @example To update a configuration template
112
112
  * ```javascript
113
113
  * // The following operation removes the configured CloudWatch custom health metrics configuration ConfigDocument from a saved configuration template named my-template:
114
114
  * const input = {
115
- * "ApplicationName": "my-app",
116
- * "OptionsToRemove": [
115
+ * ApplicationName: "my-app",
116
+ * OptionsToRemove: [
117
117
  * {
118
- * "Namespace": "aws:elasticbeanstalk:healthreporting:system",
119
- * "OptionName": "ConfigDocument"
118
+ * Namespace: "aws:elasticbeanstalk:healthreporting:system",
119
+ * OptionName: "ConfigDocument"
120
120
  * }
121
121
  * ],
122
- * "TemplateName": "my-template"
122
+ * TemplateName: "my-template"
123
123
  * };
124
124
  * const command = new UpdateConfigurationTemplateCommand(input);
125
125
  * const response = await client.send(command);
126
- * /* response ==
126
+ * /* response is
127
127
  * {
128
- * "ApplicationName": "my-app",
129
- * "DateCreated": "2015-08-20T22:39:31Z",
130
- * "DateUpdated": "2015-08-20T22:43:11Z",
131
- * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8",
132
- * "TemplateName": "my-template"
128
+ * ApplicationName: "my-app",
129
+ * DateCreated: "2015-08-20T22:39:31Z",
130
+ * DateUpdated: "2015-08-20T22:43:11Z",
131
+ * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8",
132
+ * TemplateName: "my-template"
133
133
  * }
134
134
  * *\/
135
- * // example id: to-update-a-configuration-template-1456278075300
136
135
  * ```
137
136
  *
137
+ * @public
138
138
  */
139
139
  export declare class UpdateConfigurationTemplateCommand extends UpdateConfigurationTemplateCommand_base {
140
140
  /** @internal type navigation helper, not in runtime. */