@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
@@ -137,93 +137,92 @@ declare const UpdateEnvironmentCommand_base: {
137
137
  * @throws {@link ElasticBeanstalkServiceException}
138
138
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
139
139
  *
140
- * @public
141
- * @example To update an environment to a new version
142
- * ```javascript
143
- * // The following operation updates an environment named "my-env" to version "v2" of the application to which it belongs:
144
- * const input = {
145
- * "EnvironmentName": "my-env",
146
- * "VersionLabel": "v2"
147
- * };
148
- * const command = new UpdateEnvironmentCommand(input);
149
- * const response = await client.send(command);
150
- * /* response ==
151
- * {
152
- * "ApplicationName": "my-app",
153
- * "CNAME": "my-env.elasticbeanstalk.com",
154
- * "DateCreated": "2015-02-03T23:04:54.453Z",
155
- * "DateUpdated": "2015-02-03T23:12:29.119Z",
156
- * "EndpointURL": "awseb-e-i-AWSEBLoa-1RDLX6TC9VUAO-0123456789.us-west-2.elb.amazonaws.com",
157
- * "EnvironmentId": "e-szqipays4h",
158
- * "EnvironmentName": "my-env",
159
- * "Health": "Grey",
160
- * "SolutionStackName": "64bit Amazon Linux running Tomcat 7",
161
- * "Status": "Updating",
162
- * "Tier": {
163
- * "Name": "WebServer",
164
- * "Type": "Standard",
165
- * "Version": " "
166
- * },
167
- * "VersionLabel": "v2"
168
- * }
169
- * *\/
170
- * // example id: to-update-an-environment-to-a-new-version-1456278210718
171
- * ```
172
140
  *
173
141
  * @example To configure option settings
174
142
  * ```javascript
175
143
  * // The following operation configures several options in the aws:elb:loadbalancer namespace:
176
144
  * const input = {
177
- * "EnvironmentName": "my-env",
178
- * "OptionSettings": [
145
+ * EnvironmentName: "my-env",
146
+ * OptionSettings: [
179
147
  * {
180
- * "Namespace": "aws:elb:healthcheck",
181
- * "OptionName": "Interval",
182
- * "Value": "15"
148
+ * Namespace: "aws:elb:healthcheck",
149
+ * OptionName: "Interval",
150
+ * Value: "15"
183
151
  * },
184
152
  * {
185
- * "Namespace": "aws:elb:healthcheck",
186
- * "OptionName": "Timeout",
187
- * "Value": "8"
153
+ * Namespace: "aws:elb:healthcheck",
154
+ * OptionName: "Timeout",
155
+ * Value: "8"
188
156
  * },
189
157
  * {
190
- * "Namespace": "aws:elb:healthcheck",
191
- * "OptionName": "HealthyThreshold",
192
- * "Value": "2"
158
+ * Namespace: "aws:elb:healthcheck",
159
+ * OptionName: "HealthyThreshold",
160
+ * Value: "2"
193
161
  * },
194
162
  * {
195
- * "Namespace": "aws:elb:healthcheck",
196
- * "OptionName": "UnhealthyThreshold",
197
- * "Value": "3"
163
+ * Namespace: "aws:elb:healthcheck",
164
+ * OptionName: "UnhealthyThreshold",
165
+ * Value: "3"
198
166
  * }
199
167
  * ]
200
168
  * };
201
169
  * const command = new UpdateEnvironmentCommand(input);
202
170
  * const response = await client.send(command);
203
- * /* response ==
171
+ * /* response is
204
172
  * {
205
- * "AbortableOperationInProgress": true,
206
- * "ApplicationName": "my-app",
207
- * "CNAME": "my-env.elasticbeanstalk.com",
208
- * "DateCreated": "2015-08-07T20:48:49.599Z",
209
- * "DateUpdated": "2015-08-12T18:15:23.804Z",
210
- * "EndpointURL": "awseb-e-w-AWSEBLoa-14XB83101Q4L-104QXY80921.sa-east-1.elb.amazonaws.com",
211
- * "EnvironmentId": "e-wtp2rpqsej",
212
- * "EnvironmentName": "my-env",
213
- * "Health": "Grey",
214
- * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8",
215
- * "Status": "Updating",
216
- * "Tier": {
217
- * "Name": "WebServer",
218
- * "Type": "Standard",
219
- * "Version": " "
173
+ * AbortableOperationInProgress: true,
174
+ * ApplicationName: "my-app",
175
+ * CNAME: "my-env.elasticbeanstalk.com",
176
+ * DateCreated: "2015-08-07T20:48:49.599Z",
177
+ * DateUpdated: "2015-08-12T18:15:23.804Z",
178
+ * EndpointURL: "awseb-e-w-AWSEBLoa-14XB83101Q4L-104QXY80921.sa-east-1.elb.amazonaws.com",
179
+ * EnvironmentId: "e-wtp2rpqsej",
180
+ * EnvironmentName: "my-env",
181
+ * Health: "Grey",
182
+ * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8",
183
+ * Status: "Updating",
184
+ * Tier: {
185
+ * Name: "WebServer",
186
+ * Type: "Standard",
187
+ * Version: " "
220
188
  * },
221
- * "VersionLabel": "7f58-stage-150812_025409"
189
+ * VersionLabel: "7f58-stage-150812_025409"
222
190
  * }
223
191
  * *\/
224
- * // example id: to-configure-option-settings-1456278286349
225
192
  * ```
226
193
  *
194
+ * @example To update an environment to a new version
195
+ * ```javascript
196
+ * // The following operation updates an environment named "my-env" to version "v2" of the application to which it belongs:
197
+ * const input = {
198
+ * EnvironmentName: "my-env",
199
+ * VersionLabel: "v2"
200
+ * };
201
+ * const command = new UpdateEnvironmentCommand(input);
202
+ * const response = await client.send(command);
203
+ * /* response is
204
+ * {
205
+ * ApplicationName: "my-app",
206
+ * CNAME: "my-env.elasticbeanstalk.com",
207
+ * DateCreated: "2015-02-03T23:04:54.453Z",
208
+ * DateUpdated: "2015-02-03T23:12:29.119Z",
209
+ * EndpointURL: "awseb-e-i-AWSEBLoa-1RDLX6TC9VUAO-0123456789.us-west-2.elb.amazonaws.com",
210
+ * EnvironmentId: "e-szqipays4h",
211
+ * EnvironmentName: "my-env",
212
+ * Health: "Grey",
213
+ * SolutionStackName: "64bit Amazon Linux running Tomcat 7",
214
+ * Status: "Updating",
215
+ * Tier: {
216
+ * Name: "WebServer",
217
+ * Type: "Standard",
218
+ * Version: " "
219
+ * },
220
+ * VersionLabel: "v2"
221
+ * }
222
+ * *\/
223
+ * ```
224
+ *
225
+ * @public
227
226
  */
228
227
  export declare class UpdateEnvironmentCommand extends UpdateEnvironmentCommand_base {
229
228
  /** @internal type navigation helper, not in runtime. */
@@ -100,6 +100,7 @@ declare const UpdateTagsForResourceCommand_base: {
100
100
  * @throws {@link ElasticBeanstalkServiceException}
101
101
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
102
102
  *
103
+ *
103
104
  * @public
104
105
  */
105
106
  export declare class UpdateTagsForResourceCommand extends UpdateTagsForResourceCommand_base {
@@ -81,31 +81,31 @@ declare const ValidateConfigurationSettingsCommand_base: {
81
81
  * @throws {@link ElasticBeanstalkServiceException}
82
82
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
83
83
  *
84
- * @public
84
+ *
85
85
  * @example To validate configuration settings
86
86
  * ```javascript
87
87
  * // The following operation validates a CloudWatch custom metrics config document:
88
88
  * const input = {
89
- * "ApplicationName": "my-app",
90
- * "EnvironmentName": "my-env",
91
- * "OptionSettings": [
89
+ * ApplicationName: "my-app",
90
+ * EnvironmentName: "my-env",
91
+ * OptionSettings: [
92
92
  * {
93
- * "Namespace": "aws:elasticbeanstalk:healthreporting:system",
94
- * "OptionName": "ConfigDocument",
95
- * "Value": "{\"CloudWatchMetrics\": {\"Environment\": {\"ApplicationLatencyP99.9\": null,\"InstancesSevere\": 60,\"ApplicationLatencyP90\": 60,\"ApplicationLatencyP99\": null,\"ApplicationLatencyP95\": 60,\"InstancesUnknown\": 60,\"ApplicationLatencyP85\": 60,\"InstancesInfo\": null,\"ApplicationRequests2xx\": null,\"InstancesDegraded\": null,\"InstancesWarning\": 60,\"ApplicationLatencyP50\": 60,\"ApplicationRequestsTotal\": null,\"InstancesNoData\": null,\"InstancesPending\": 60,\"ApplicationLatencyP10\": null,\"ApplicationRequests5xx\": null,\"ApplicationLatencyP75\": null,\"InstancesOk\": 60,\"ApplicationRequests3xx\": null,\"ApplicationRequests4xx\": null},\"Instance\": {\"ApplicationLatencyP99.9\": null,\"ApplicationLatencyP90\": 60,\"ApplicationLatencyP99\": null,\"ApplicationLatencyP95\": null,\"ApplicationLatencyP85\": null,\"CPUUser\": 60,\"ApplicationRequests2xx\": null,\"CPUIdle\": null,\"ApplicationLatencyP50\": null,\"ApplicationRequestsTotal\": 60,\"RootFilesystemUtil\": null,\"LoadAverage1min\": null,\"CPUIrq\": null,\"CPUNice\": 60,\"CPUIowait\": 60,\"ApplicationLatencyP10\": null,\"LoadAverage5min\": null,\"ApplicationRequests5xx\": null,\"ApplicationLatencyP75\": 60,\"CPUSystem\": 60,\"ApplicationRequests3xx\": 60,\"ApplicationRequests4xx\": null,\"InstanceHealth\": null,\"CPUSoftirq\": 60}},\"Version\": 1}"
93
+ * Namespace: "aws:elasticbeanstalk:healthreporting:system",
94
+ * OptionName: "ConfigDocument",
95
+ * Value: `{"CloudWatchMetrics": {"Environment": {"ApplicationLatencyP99.9": null,"InstancesSevere": 60,"ApplicationLatencyP90": 60,"ApplicationLatencyP99": null,"ApplicationLatencyP95": 60,"InstancesUnknown": 60,"ApplicationLatencyP85": 60,"InstancesInfo": null,"ApplicationRequests2xx": null,"InstancesDegraded": null,"InstancesWarning": 60,"ApplicationLatencyP50": 60,"ApplicationRequestsTotal": null,"InstancesNoData": null,"InstancesPending": 60,"ApplicationLatencyP10": null,"ApplicationRequests5xx": null,"ApplicationLatencyP75": null,"InstancesOk": 60,"ApplicationRequests3xx": null,"ApplicationRequests4xx": null},"Instance": {"ApplicationLatencyP99.9": null,"ApplicationLatencyP90": 60,"ApplicationLatencyP99": null,"ApplicationLatencyP95": null,"ApplicationLatencyP85": null,"CPUUser": 60,"ApplicationRequests2xx": null,"CPUIdle": null,"ApplicationLatencyP50": null,"ApplicationRequestsTotal": 60,"RootFilesystemUtil": null,"LoadAverage1min": null,"CPUIrq": null,"CPUNice": 60,"CPUIowait": 60,"ApplicationLatencyP10": null,"LoadAverage5min": null,"ApplicationRequests5xx": null,"ApplicationLatencyP75": 60,"CPUSystem": 60,"ApplicationRequests3xx": 60,"ApplicationRequests4xx": null,"InstanceHealth": null,"CPUSoftirq": 60}},"Version": 1}`
96
96
  * }
97
97
  * ]
98
98
  * };
99
99
  * const command = new ValidateConfigurationSettingsCommand(input);
100
100
  * const response = await client.send(command);
101
- * /* response ==
101
+ * /* response is
102
102
  * {
103
- * "Messages": []
103
+ * Messages: []
104
104
  * }
105
105
  * *\/
106
- * // example id: to-validate-configuration-settings-1456278393654
107
106
  * ```
108
107
  *
108
+ * @public
109
109
  */
110
110
  export declare class ValidateConfigurationSettingsCommand extends ValidateConfigurationSettingsCommand_base {
111
111
  /** @internal type navigation helper, not in runtime. */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-elastic-beanstalk",
3
3
  "description": "AWS SDK for JavaScript Elastic Beanstalk Client for Node.js, Browser and React Native",
4
- "version": "3.774.0",
4
+ "version": "3.777.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-elastic-beanstalk",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.774.0",
24
- "@aws-sdk/credential-provider-node": "3.774.0",
25
- "@aws-sdk/middleware-host-header": "3.774.0",
26
- "@aws-sdk/middleware-logger": "3.734.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.772.0",
28
- "@aws-sdk/middleware-user-agent": "3.774.0",
29
- "@aws-sdk/region-config-resolver": "3.734.0",
30
- "@aws-sdk/types": "3.734.0",
31
- "@aws-sdk/util-endpoints": "3.743.0",
32
- "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.774.0",
34
- "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.5",
36
- "@smithy/fetch-http-handler": "^5.0.1",
37
- "@smithy/hash-node": "^4.0.1",
38
- "@smithy/invalid-dependency": "^4.0.1",
39
- "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.6",
41
- "@smithy/middleware-retry": "^4.0.7",
42
- "@smithy/middleware-serde": "^4.0.2",
43
- "@smithy/middleware-stack": "^4.0.1",
44
- "@smithy/node-config-provider": "^4.0.1",
45
- "@smithy/node-http-handler": "^4.0.3",
46
- "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.6",
48
- "@smithy/types": "^4.1.0",
49
- "@smithy/url-parser": "^4.0.1",
23
+ "@aws-sdk/core": "3.775.0",
24
+ "@aws-sdk/credential-provider-node": "3.777.0",
25
+ "@aws-sdk/middleware-host-header": "3.775.0",
26
+ "@aws-sdk/middleware-logger": "3.775.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
+ "@aws-sdk/middleware-user-agent": "3.775.0",
29
+ "@aws-sdk/region-config-resolver": "3.775.0",
30
+ "@aws-sdk/types": "3.775.0",
31
+ "@aws-sdk/util-endpoints": "3.775.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.775.0",
33
+ "@aws-sdk/util-user-agent-node": "3.775.0",
34
+ "@smithy/config-resolver": "^4.1.0",
35
+ "@smithy/core": "^3.2.0",
36
+ "@smithy/fetch-http-handler": "^5.0.2",
37
+ "@smithy/hash-node": "^4.0.2",
38
+ "@smithy/invalid-dependency": "^4.0.2",
39
+ "@smithy/middleware-content-length": "^4.0.2",
40
+ "@smithy/middleware-endpoint": "^4.1.0",
41
+ "@smithy/middleware-retry": "^4.1.0",
42
+ "@smithy/middleware-serde": "^4.0.3",
43
+ "@smithy/middleware-stack": "^4.0.2",
44
+ "@smithy/node-config-provider": "^4.0.2",
45
+ "@smithy/node-http-handler": "^4.0.4",
46
+ "@smithy/protocol-http": "^5.1.0",
47
+ "@smithy/smithy-client": "^4.2.0",
48
+ "@smithy/types": "^4.2.0",
49
+ "@smithy/url-parser": "^4.0.2",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.7",
54
- "@smithy/util-defaults-mode-node": "^4.0.7",
55
- "@smithy/util-endpoints": "^3.0.1",
56
- "@smithy/util-middleware": "^4.0.1",
57
- "@smithy/util-retry": "^4.0.1",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.8",
54
+ "@smithy/util-defaults-mode-node": "^4.0.8",
55
+ "@smithy/util-endpoints": "^3.0.2",
56
+ "@smithy/util-middleware": "^4.0.2",
57
+ "@smithy/util-retry": "^4.0.2",
58
58
  "@smithy/util-utf8": "^4.0.0",
59
- "@smithy/util-waiter": "^4.0.2",
59
+ "@smithy/util-waiter": "^4.0.3",
60
60
  "tslib": "^2.6.2"
61
61
  },
62
62
  "devDependencies": {