@aws-sdk/client-elastic-beanstalk 3.775.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.
- package/dist-types/commands/AbortEnvironmentUpdateCommand.d.ts +7 -4
- package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +1 -0
- package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +1 -0
- package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +6 -6
- package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +1 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +11 -11
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +20 -20
- package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +11 -11
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +22 -22
- package/dist-types/commands/CreatePlatformVersionCommand.d.ts +1 -0
- package/dist-types/commands/CreateStorageLocationCommand.d.ts +5 -5
- package/dist-types/commands/DeleteApplicationCommand.d.ts +7 -4
- package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +9 -6
- package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +8 -5
- package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +8 -5
- package/dist-types/commands/DeletePlatformVersionCommand.d.ts +1 -0
- package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +22 -22
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +21 -21
- package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +21 -21
- package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +30 -30
- package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +36 -36
- package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +1 -0
- package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +16 -16
- package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +21 -21
- package/dist-types/commands/DescribeEventsCommand.d.ts +28 -28
- package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +39 -39
- package/dist-types/commands/DescribePlatformVersionCommand.d.ts +1 -0
- package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +1 -0
- package/dist-types/commands/ListAvailableSolutionStacksCommand.d.ts +8 -8
- package/dist-types/commands/ListPlatformBranchesCommand.d.ts +1 -0
- package/dist-types/commands/ListPlatformVersionsCommand.d.ts +1 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -0
- package/dist-types/commands/RebuildEnvironmentCommand.d.ts +7 -4
- package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +8 -5
- package/dist-types/commands/RestartAppServerCommand.d.ts +7 -4
- package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +10 -10
- package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +8 -5
- package/dist-types/commands/TerminateEnvironmentCommand.d.ts +19 -19
- package/dist-types/commands/UpdateApplicationCommand.d.ts +12 -12
- package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +1 -0
- package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +15 -15
- package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +13 -13
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +63 -64
- package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +1 -0
- package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +10 -10
- package/package.json +2 -2
|
@@ -92,44 +92,44 @@ declare const DescribeConfigurationOptionsCommand_base: {
|
|
|
92
92
|
* @throws {@link ElasticBeanstalkServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
94
94
|
*
|
|
95
|
-
*
|
|
95
|
+
*
|
|
96
96
|
* @example To view configuration options for an environment
|
|
97
97
|
* ```javascript
|
|
98
98
|
* // The following operation retrieves descriptions of all available configuration options for an environment named my-env:
|
|
99
99
|
* const input = {
|
|
100
|
-
*
|
|
101
|
-
*
|
|
100
|
+
* ApplicationName: "my-app",
|
|
101
|
+
* EnvironmentName: "my-env"
|
|
102
102
|
* };
|
|
103
103
|
* const command = new DescribeConfigurationOptionsCommand(input);
|
|
104
104
|
* const response = await client.send(command);
|
|
105
|
-
* /* response
|
|
105
|
+
* /* response is
|
|
106
106
|
* {
|
|
107
|
-
*
|
|
107
|
+
* Options: [
|
|
108
108
|
* {
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
109
|
+
* ChangeSeverity: "NoInterruption",
|
|
110
|
+
* DefaultValue: "30",
|
|
111
|
+
* MaxValue: 300,
|
|
112
|
+
* MinValue: 5,
|
|
113
|
+
* Name: "Interval",
|
|
114
|
+
* Namespace: "aws:elb:healthcheck",
|
|
115
|
+
* UserDefined: false,
|
|
116
|
+
* ValueType: "Scalar"
|
|
117
117
|
* },
|
|
118
118
|
* {
|
|
119
|
-
*
|
|
120
|
-
*
|
|
121
|
-
*
|
|
122
|
-
*
|
|
123
|
-
*
|
|
124
|
-
*
|
|
125
|
-
*
|
|
119
|
+
* ChangeSeverity: "NoInterruption",
|
|
120
|
+
* DefaultValue: "2000000",
|
|
121
|
+
* MinValue: 0,
|
|
122
|
+
* Name: "LowerThreshold",
|
|
123
|
+
* Namespace: "aws:autoscaling:trigger",
|
|
124
|
+
* UserDefined: false,
|
|
125
|
+
* ValueType: "Scalar"
|
|
126
126
|
* }
|
|
127
127
|
* ]
|
|
128
128
|
* }
|
|
129
129
|
* *\/
|
|
130
|
-
* // example id: to-view-configuration-options-for-an-environment-1456276763917
|
|
131
130
|
* ```
|
|
132
131
|
*
|
|
132
|
+
* @public
|
|
133
133
|
*/
|
|
134
134
|
export declare class DescribeConfigurationOptionsCommand extends DescribeConfigurationOptionsCommand_base {
|
|
135
135
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -93,60 +93,60 @@ declare const DescribeConfigurationSettingsCommand_base: {
|
|
|
93
93
|
* @throws {@link ElasticBeanstalkServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
95
95
|
*
|
|
96
|
-
*
|
|
96
|
+
*
|
|
97
97
|
* @example To view configurations settings for an environment
|
|
98
98
|
* ```javascript
|
|
99
99
|
* // The following operation retrieves configuration settings for an environment named my-env:
|
|
100
100
|
* const input = {
|
|
101
|
-
*
|
|
102
|
-
*
|
|
101
|
+
* ApplicationName: "my-app",
|
|
102
|
+
* EnvironmentName: "my-env"
|
|
103
103
|
* };
|
|
104
104
|
* const command = new DescribeConfigurationSettingsCommand(input);
|
|
105
105
|
* const response = await client.send(command);
|
|
106
|
-
* /* response
|
|
106
|
+
* /* response is
|
|
107
107
|
* {
|
|
108
|
-
*
|
|
108
|
+
* ConfigurationSettings: [
|
|
109
109
|
* {
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
110
|
+
* ApplicationName: "my-app",
|
|
111
|
+
* DateCreated: "2015-08-13T19:16:25Z",
|
|
112
|
+
* DateUpdated: "2015-08-13T23:30:07Z",
|
|
113
|
+
* DeploymentStatus: "deployed",
|
|
114
|
+
* Description: `Environment created from the EB CLI using "eb create"`,
|
|
115
|
+
* EnvironmentName: "my-env",
|
|
116
|
+
* OptionSettings: [
|
|
117
117
|
* {
|
|
118
|
-
*
|
|
119
|
-
*
|
|
120
|
-
*
|
|
121
|
-
*
|
|
118
|
+
* Namespace: "aws:autoscaling:asg",
|
|
119
|
+
* OptionName: "Availability Zones",
|
|
120
|
+
* ResourceName: "AWSEBAutoScalingGroup",
|
|
121
|
+
* Value: "Any"
|
|
122
122
|
* },
|
|
123
123
|
* {
|
|
124
|
-
*
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
*
|
|
124
|
+
* Namespace: "aws:autoscaling:asg",
|
|
125
|
+
* OptionName: "Cooldown",
|
|
126
|
+
* ResourceName: "AWSEBAutoScalingGroup",
|
|
127
|
+
* Value: "360"
|
|
128
128
|
* },
|
|
129
129
|
* {
|
|
130
|
-
*
|
|
131
|
-
*
|
|
132
|
-
*
|
|
133
|
-
*
|
|
130
|
+
* Namespace: "aws:elb:policies",
|
|
131
|
+
* OptionName: "ConnectionDrainingTimeout",
|
|
132
|
+
* ResourceName: "AWSEBLoadBalancer",
|
|
133
|
+
* Value: "20"
|
|
134
134
|
* },
|
|
135
135
|
* {
|
|
136
|
-
*
|
|
137
|
-
*
|
|
138
|
-
*
|
|
139
|
-
*
|
|
136
|
+
* Namespace: "aws:elb:policies",
|
|
137
|
+
* OptionName: "ConnectionSettingIdleTimeout",
|
|
138
|
+
* ResourceName: "AWSEBLoadBalancer",
|
|
139
|
+
* Value: "60"
|
|
140
140
|
* }
|
|
141
141
|
* ],
|
|
142
|
-
*
|
|
142
|
+
* SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8"
|
|
143
143
|
* }
|
|
144
144
|
* ]
|
|
145
145
|
* }
|
|
146
146
|
* *\/
|
|
147
|
-
* // example id: to-view-configurations-settings-for-an-environment-1456276924537
|
|
148
147
|
* ```
|
|
149
148
|
*
|
|
149
|
+
* @public
|
|
150
150
|
*/
|
|
151
151
|
export declare class DescribeConfigurationSettingsCommand extends DescribeConfigurationSettingsCommand_base {
|
|
152
152
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -104,60 +104,60 @@ declare const DescribeEnvironmentHealthCommand_base: {
|
|
|
104
104
|
* @throws {@link ElasticBeanstalkServiceException}
|
|
105
105
|
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
106
106
|
*
|
|
107
|
-
*
|
|
107
|
+
*
|
|
108
108
|
* @example To view environment health
|
|
109
109
|
* ```javascript
|
|
110
110
|
* // The following operation retrieves overall health information for an environment named my-env:
|
|
111
111
|
* const input = {
|
|
112
|
-
*
|
|
112
|
+
* AttributeNames: [
|
|
113
113
|
* "All"
|
|
114
114
|
* ],
|
|
115
|
-
*
|
|
115
|
+
* EnvironmentName: "my-env"
|
|
116
116
|
* };
|
|
117
117
|
* const command = new DescribeEnvironmentHealthCommand(input);
|
|
118
118
|
* const response = await client.send(command);
|
|
119
|
-
* /* response
|
|
119
|
+
* /* response is
|
|
120
120
|
* {
|
|
121
|
-
*
|
|
122
|
-
*
|
|
123
|
-
*
|
|
124
|
-
*
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
-
*
|
|
130
|
-
*
|
|
131
|
-
*
|
|
121
|
+
* ApplicationMetrics: {
|
|
122
|
+
* Duration: 10,
|
|
123
|
+
* Latency: {
|
|
124
|
+
* P10: 0.001,
|
|
125
|
+
* P50: 0.001,
|
|
126
|
+
* P75: 0.002,
|
|
127
|
+
* P85: 0.003,
|
|
128
|
+
* P90: 0.003,
|
|
129
|
+
* P95: 0.004,
|
|
130
|
+
* P99: 0.004,
|
|
131
|
+
* P999: 0.004
|
|
132
132
|
* },
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
*
|
|
136
|
-
*
|
|
137
|
-
*
|
|
138
|
-
*
|
|
133
|
+
* RequestCount: 45,
|
|
134
|
+
* StatusCodes: {
|
|
135
|
+
* Status2xx: 45,
|
|
136
|
+
* Status3xx: 0,
|
|
137
|
+
* Status4xx: 0,
|
|
138
|
+
* Status5xx: 0
|
|
139
139
|
* }
|
|
140
140
|
* },
|
|
141
|
-
*
|
|
142
|
-
*
|
|
143
|
-
*
|
|
144
|
-
*
|
|
145
|
-
*
|
|
146
|
-
*
|
|
147
|
-
*
|
|
148
|
-
*
|
|
149
|
-
*
|
|
150
|
-
*
|
|
151
|
-
*
|
|
152
|
-
*
|
|
153
|
-
*
|
|
141
|
+
* Causes: [],
|
|
142
|
+
* Color: "Green",
|
|
143
|
+
* EnvironmentName: "my-env",
|
|
144
|
+
* HealthStatus: "Ok",
|
|
145
|
+
* InstancesHealth: {
|
|
146
|
+
* Degraded: 0,
|
|
147
|
+
* Info: 0,
|
|
148
|
+
* NoData: 0,
|
|
149
|
+
* Ok: 1,
|
|
150
|
+
* Pending: 0,
|
|
151
|
+
* Severe: 0,
|
|
152
|
+
* Unknown: 0,
|
|
153
|
+
* Warning: 0
|
|
154
154
|
* },
|
|
155
|
-
*
|
|
155
|
+
* RefreshedAt: "2015-08-20T21:09:18Z"
|
|
156
156
|
* }
|
|
157
157
|
* *\/
|
|
158
|
-
* // example id: to-view-environment-health-1456277109510
|
|
159
158
|
* ```
|
|
160
159
|
*
|
|
160
|
+
* @public
|
|
161
161
|
*/
|
|
162
162
|
export declare class DescribeEnvironmentHealthCommand extends DescribeEnvironmentHealthCommand_base {
|
|
163
163
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -72,6 +72,7 @@ declare const DescribeEnvironmentManagedActionHistoryCommand_base: {
|
|
|
72
72
|
* @throws {@link ElasticBeanstalkServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
74
74
|
*
|
|
75
|
+
*
|
|
75
76
|
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class DescribeEnvironmentManagedActionHistoryCommand extends DescribeEnvironmentManagedActionHistoryCommand_base {
|
|
@@ -67,6 +67,7 @@ declare const DescribeEnvironmentManagedActionsCommand_base: {
|
|
|
67
67
|
* @throws {@link ElasticBeanstalkServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
69
69
|
*
|
|
70
|
+
*
|
|
70
71
|
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class DescribeEnvironmentManagedActionsCommand extends DescribeEnvironmentManagedActionsCommand_base {
|
|
@@ -97,47 +97,47 @@ declare const DescribeEnvironmentResourcesCommand_base: {
|
|
|
97
97
|
* @throws {@link ElasticBeanstalkServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
99
99
|
*
|
|
100
|
-
*
|
|
100
|
+
*
|
|
101
101
|
* @example To view information about the AWS resources in your environment
|
|
102
102
|
* ```javascript
|
|
103
103
|
* // The following operation retrieves information about resources in an environment named my-env:
|
|
104
104
|
* const input = {
|
|
105
|
-
*
|
|
105
|
+
* EnvironmentName: "my-env"
|
|
106
106
|
* };
|
|
107
107
|
* const command = new DescribeEnvironmentResourcesCommand(input);
|
|
108
108
|
* const response = await client.send(command);
|
|
109
|
-
* /* response
|
|
109
|
+
* /* response is
|
|
110
110
|
* {
|
|
111
|
-
*
|
|
112
|
-
*
|
|
111
|
+
* EnvironmentResources: {
|
|
112
|
+
* AutoScalingGroups: [
|
|
113
113
|
* {
|
|
114
|
-
*
|
|
114
|
+
* Name: "awseb-e-qu3fyyjyjs-stack-AWSEBAutoScalingGroup-QSB2ZO88SXZT"
|
|
115
115
|
* }
|
|
116
116
|
* ],
|
|
117
|
-
*
|
|
118
|
-
*
|
|
117
|
+
* EnvironmentName: "my-env",
|
|
118
|
+
* Instances: [
|
|
119
119
|
* {
|
|
120
|
-
*
|
|
120
|
+
* Id: "i-0c91c786"
|
|
121
121
|
* }
|
|
122
122
|
* ],
|
|
123
|
-
*
|
|
123
|
+
* LaunchConfigurations: [
|
|
124
124
|
* {
|
|
125
|
-
*
|
|
125
|
+
* Name: "awseb-e-qu3fyyjyjs-stack-AWSEBAutoScalingLaunchConfiguration-1UUVQIBC96TQ2"
|
|
126
126
|
* }
|
|
127
127
|
* ],
|
|
128
|
-
*
|
|
128
|
+
* LoadBalancers: [
|
|
129
129
|
* {
|
|
130
|
-
*
|
|
130
|
+
* Name: "awseb-e-q-AWSEBLoa-1EEPZ0K98BIF0"
|
|
131
131
|
* }
|
|
132
132
|
* ],
|
|
133
|
-
*
|
|
134
|
-
*
|
|
133
|
+
* Queues: [],
|
|
134
|
+
* Triggers: []
|
|
135
135
|
* }
|
|
136
136
|
* }
|
|
137
137
|
* *\/
|
|
138
|
-
* // example id: to-view-information-about-the-aws-resources-in-your-environment-1456277206232
|
|
139
138
|
* ```
|
|
140
139
|
*
|
|
140
|
+
* @public
|
|
141
141
|
*/
|
|
142
142
|
export declare class DescribeEnvironmentResourcesCommand extends DescribeEnvironmentResourcesCommand_base {
|
|
143
143
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -110,45 +110,45 @@ declare const DescribeEnvironmentsCommand_base: {
|
|
|
110
110
|
* @throws {@link ElasticBeanstalkServiceException}
|
|
111
111
|
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
112
112
|
*
|
|
113
|
-
*
|
|
113
|
+
*
|
|
114
114
|
* @example To view information about an environment
|
|
115
115
|
* ```javascript
|
|
116
116
|
* // The following operation retrieves information about an environment named my-env:
|
|
117
117
|
* const input = {
|
|
118
|
-
*
|
|
118
|
+
* EnvironmentNames: [
|
|
119
119
|
* "my-env"
|
|
120
120
|
* ]
|
|
121
121
|
* };
|
|
122
122
|
* const command = new DescribeEnvironmentsCommand(input);
|
|
123
123
|
* const response = await client.send(command);
|
|
124
|
-
* /* response
|
|
124
|
+
* /* response is
|
|
125
125
|
* {
|
|
126
|
-
*
|
|
126
|
+
* Environments: [
|
|
127
127
|
* {
|
|
128
|
-
*
|
|
129
|
-
*
|
|
130
|
-
*
|
|
131
|
-
*
|
|
132
|
-
*
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
*
|
|
136
|
-
*
|
|
137
|
-
*
|
|
138
|
-
*
|
|
139
|
-
*
|
|
140
|
-
*
|
|
141
|
-
*
|
|
142
|
-
*
|
|
128
|
+
* AbortableOperationInProgress: false,
|
|
129
|
+
* ApplicationName: "my-app",
|
|
130
|
+
* CNAME: "my-env.elasticbeanstalk.com",
|
|
131
|
+
* DateCreated: "2015-08-07T20:48:49.599Z",
|
|
132
|
+
* DateUpdated: "2015-08-12T18:16:55.019Z",
|
|
133
|
+
* EndpointURL: "awseb-e-w-AWSEBLoa-1483140XB0Q4L-109QXY8121.us-west-2.elb.amazonaws.com",
|
|
134
|
+
* EnvironmentId: "e-rpqsewtp2j",
|
|
135
|
+
* EnvironmentName: "my-env",
|
|
136
|
+
* Health: "Green",
|
|
137
|
+
* SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8",
|
|
138
|
+
* Status: "Ready",
|
|
139
|
+
* Tier: {
|
|
140
|
+
* Name: "WebServer",
|
|
141
|
+
* Type: "Standard",
|
|
142
|
+
* Version: " "
|
|
143
143
|
* },
|
|
144
|
-
*
|
|
144
|
+
* VersionLabel: "7f58-stage-150812_025409"
|
|
145
145
|
* }
|
|
146
146
|
* ]
|
|
147
147
|
* }
|
|
148
148
|
* *\/
|
|
149
|
-
* // example id: to-view-information-about-an-environment-1456277288662
|
|
150
149
|
* ```
|
|
151
150
|
*
|
|
151
|
+
* @public
|
|
152
152
|
*/
|
|
153
153
|
export declare class DescribeEnvironmentsCommand extends DescribeEnvironmentsCommand_base {
|
|
154
154
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -82,55 +82,55 @@ declare const DescribeEventsCommand_base: {
|
|
|
82
82
|
* @throws {@link ElasticBeanstalkServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
84
84
|
*
|
|
85
|
-
*
|
|
85
|
+
*
|
|
86
86
|
* @example To view events for an environment
|
|
87
87
|
* ```javascript
|
|
88
88
|
* // The following operation retrieves events for an environment named my-env:
|
|
89
89
|
* const input = {
|
|
90
|
-
*
|
|
90
|
+
* EnvironmentName: "my-env"
|
|
91
91
|
* };
|
|
92
92
|
* const command = new DescribeEventsCommand(input);
|
|
93
93
|
* const response = await client.send(command);
|
|
94
|
-
* /* response
|
|
94
|
+
* /* response is
|
|
95
95
|
* {
|
|
96
|
-
*
|
|
96
|
+
* Events: [
|
|
97
97
|
* {
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
98
|
+
* ApplicationName: "my-app",
|
|
99
|
+
* EnvironmentName: "my-env",
|
|
100
|
+
* EventDate: "2015-08-20T07:06:53.535Z",
|
|
101
|
+
* Message: "Environment health has transitioned from Info to Ok.",
|
|
102
|
+
* Severity: "INFO"
|
|
103
103
|
* },
|
|
104
104
|
* {
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
105
|
+
* ApplicationName: "my-app",
|
|
106
|
+
* EnvironmentName: "my-env",
|
|
107
|
+
* EventDate: "2015-08-20T07:06:02.049Z",
|
|
108
|
+
* Message: "Environment update completed successfully.",
|
|
109
|
+
* RequestId: "b7f3960b-4709-11e5-ba1e-07e16200da41",
|
|
110
|
+
* Severity: "INFO"
|
|
111
111
|
* },
|
|
112
112
|
* {
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
113
|
+
* ApplicationName: "my-app",
|
|
114
|
+
* EnvironmentName: "my-env",
|
|
115
|
+
* EventDate: "2015-08-13T19:16:27.561Z",
|
|
116
|
+
* Message: "Using elasticbeanstalk-us-west-2-012445113685 as Amazon S3 storage bucket for environment data.",
|
|
117
|
+
* RequestId: "ca8dfbf6-41ef-11e5-988b-651aa638f46b",
|
|
118
|
+
* Severity: "INFO"
|
|
119
119
|
* },
|
|
120
120
|
* {
|
|
121
|
-
*
|
|
122
|
-
*
|
|
123
|
-
*
|
|
124
|
-
*
|
|
125
|
-
*
|
|
126
|
-
*
|
|
121
|
+
* ApplicationName: "my-app",
|
|
122
|
+
* EnvironmentName: "my-env",
|
|
123
|
+
* EventDate: "2015-08-13T19:16:26.581Z",
|
|
124
|
+
* Message: "createEnvironment is starting.",
|
|
125
|
+
* RequestId: "cdfba8f6-41ef-11e5-988b-65638f41aa6b",
|
|
126
|
+
* Severity: "INFO"
|
|
127
127
|
* }
|
|
128
128
|
* ]
|
|
129
129
|
* }
|
|
130
130
|
* *\/
|
|
131
|
-
* // example id: to-view-events-for-an-environment-1456277367589
|
|
132
131
|
* ```
|
|
133
132
|
*
|
|
133
|
+
* @public
|
|
134
134
|
*/
|
|
135
135
|
export declare class DescribeEventsCommand extends DescribeEventsCommand_base {
|
|
136
136
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -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
|
-
*
|
|
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
|
-
*
|
|
131
|
+
* AttributeNames: [
|
|
132
132
|
* "All"
|
|
133
133
|
* ],
|
|
134
|
-
*
|
|
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
|
-
*
|
|
140
|
+
* InstanceHealthList: [
|
|
141
141
|
* {
|
|
142
|
-
*
|
|
143
|
-
*
|
|
144
|
-
*
|
|
145
|
-
*
|
|
146
|
-
*
|
|
147
|
-
*
|
|
148
|
-
*
|
|
149
|
-
*
|
|
150
|
-
*
|
|
151
|
-
*
|
|
152
|
-
*
|
|
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
|
-
*
|
|
155
|
-
*
|
|
156
|
-
*
|
|
157
|
-
*
|
|
158
|
-
*
|
|
159
|
-
*
|
|
154
|
+
* RequestCount: 48,
|
|
155
|
+
* StatusCodes: {
|
|
156
|
+
* Status2xx: 47,
|
|
157
|
+
* Status3xx: 0,
|
|
158
|
+
* Status4xx: 1,
|
|
159
|
+
* Status5xx: 0
|
|
160
160
|
* }
|
|
161
161
|
* },
|
|
162
|
-
*
|
|
163
|
-
*
|
|
164
|
-
*
|
|
165
|
-
*
|
|
166
|
-
*
|
|
167
|
-
*
|
|
168
|
-
*
|
|
169
|
-
*
|
|
170
|
-
*
|
|
171
|
-
*
|
|
172
|
-
*
|
|
173
|
-
*
|
|
174
|
-
*
|
|
175
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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 {
|