@aws-sdk/client-elastic-beanstalk 3.325.0 → 3.326.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 +4 -0
- package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +9 -0
- package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +4 -0
- package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +7 -0
- package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +51 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +33 -0
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +24 -0
- package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +22 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +46 -0
- package/dist-types/commands/CreatePlatformVersionCommand.d.ts +26 -0
- package/dist-types/commands/CreateStorageLocationCommand.d.ts +6 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +4 -0
- package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/DeletePlatformVersionCommand.d.ts +23 -0
- package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +22 -0
- package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +27 -0
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +35 -0
- package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +27 -0
- package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +26 -0
- package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +43 -0
- package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +18 -0
- package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +14 -0
- package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +44 -0
- package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +51 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +19 -0
- package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +61 -0
- package/dist-types/commands/DescribePlatformVersionCommand.d.ts +47 -0
- package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +4 -0
- package/dist-types/commands/ListAvailableSolutionStacksCommand.d.ts +16 -0
- package/dist-types/commands/ListPlatformBranchesCommand.d.ts +17 -0
- package/dist-types/commands/ListPlatformVersionsCommand.d.ts +26 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/RebuildEnvironmentCommand.d.ts +4 -0
- package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +4 -0
- package/dist-types/commands/RestartAppServerCommand.d.ts +4 -0
- package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +13 -0
- package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +4 -0
- package/dist-types/commands/TerminateEnvironmentCommand.d.ts +46 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +33 -0
- package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +21 -0
- package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +24 -0
- package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +22 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +46 -0
- package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +4 -0
- package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +13 -0
- package/package.json +3 -3
|
@@ -48,6 +48,8 @@ export interface RequestEnvironmentInfoCommandOutput extends __MetadataBearer {
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new RequestEnvironmentInfoCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // {};
|
|
52
|
+
*
|
|
51
53
|
* ```
|
|
52
54
|
*
|
|
53
55
|
* @param RequestEnvironmentInfoCommandInput - {@link RequestEnvironmentInfoCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface RequestEnvironmentInfoCommandOutput extends __MetadataBearer {
|
|
|
56
58
|
* @see {@link RequestEnvironmentInfoCommandOutput} for command's `response` shape.
|
|
57
59
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link ElasticBeanstalkServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
59
63
|
*
|
|
60
64
|
* @example To request tailed logs
|
|
61
65
|
* ```javascript
|
|
@@ -33,6 +33,8 @@ export interface RestartAppServerCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new RestartAppServerCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param RestartAppServerCommandInput - {@link RestartAppServerCommandInput}
|
|
@@ -41,6 +43,8 @@ export interface RestartAppServerCommandOutput extends __MetadataBearer {
|
|
|
41
43
|
* @see {@link RestartAppServerCommandOutput} for command's `response` shape.
|
|
42
44
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
43
45
|
*
|
|
46
|
+
* @throws {@link ElasticBeanstalkServiceException}
|
|
47
|
+
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
44
48
|
*
|
|
45
49
|
* @example To restart application servers
|
|
46
50
|
* ```javascript
|
|
@@ -42,6 +42,17 @@ export interface RetrieveEnvironmentInfoCommandOutput extends RetrieveEnvironmen
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new RetrieveEnvironmentInfoCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // RetrieveEnvironmentInfoResultMessage
|
|
46
|
+
* // EnvironmentInfo: [ // EnvironmentInfoDescriptionList
|
|
47
|
+
* // { // EnvironmentInfoDescription
|
|
48
|
+
* // InfoType: "tail" || "bundle",
|
|
49
|
+
* // Ec2InstanceId: "STRING_VALUE",
|
|
50
|
+
* // SampleTimestamp: new Date("TIMESTAMP"),
|
|
51
|
+
* // Message: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
45
56
|
* ```
|
|
46
57
|
*
|
|
47
58
|
* @param RetrieveEnvironmentInfoCommandInput - {@link RetrieveEnvironmentInfoCommandInput}
|
|
@@ -50,6 +61,8 @@ export interface RetrieveEnvironmentInfoCommandOutput extends RetrieveEnvironmen
|
|
|
50
61
|
* @see {@link RetrieveEnvironmentInfoCommandOutput} for command's `response` shape.
|
|
51
62
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
52
63
|
*
|
|
64
|
+
* @throws {@link ElasticBeanstalkServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
53
66
|
*
|
|
54
67
|
* @example To retrieve tailed logs
|
|
55
68
|
* ```javascript
|
|
@@ -34,6 +34,8 @@ export interface SwapEnvironmentCNAMEsCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new SwapEnvironmentCNAMEsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param SwapEnvironmentCNAMEsCommandInput - {@link SwapEnvironmentCNAMEsCommandInput}
|
|
@@ -42,6 +44,8 @@ export interface SwapEnvironmentCNAMEsCommandOutput extends __MetadataBearer {
|
|
|
42
44
|
* @see {@link SwapEnvironmentCNAMEsCommandOutput} for command's `response` shape.
|
|
43
45
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
44
46
|
*
|
|
47
|
+
* @throws {@link ElasticBeanstalkServiceException}
|
|
48
|
+
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
45
49
|
*
|
|
46
50
|
* @example To swap environment CNAMES
|
|
47
51
|
* ```javascript
|
|
@@ -34,6 +34,50 @@ export interface TerminateEnvironmentCommandOutput extends EnvironmentDescriptio
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TerminateEnvironmentCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // EnvironmentDescription
|
|
38
|
+
* // EnvironmentName: "STRING_VALUE",
|
|
39
|
+
* // EnvironmentId: "STRING_VALUE",
|
|
40
|
+
* // ApplicationName: "STRING_VALUE",
|
|
41
|
+
* // VersionLabel: "STRING_VALUE",
|
|
42
|
+
* // SolutionStackName: "STRING_VALUE",
|
|
43
|
+
* // PlatformArn: "STRING_VALUE",
|
|
44
|
+
* // TemplateName: "STRING_VALUE",
|
|
45
|
+
* // Description: "STRING_VALUE",
|
|
46
|
+
* // EndpointURL: "STRING_VALUE",
|
|
47
|
+
* // CNAME: "STRING_VALUE",
|
|
48
|
+
* // DateCreated: new Date("TIMESTAMP"),
|
|
49
|
+
* // DateUpdated: new Date("TIMESTAMP"),
|
|
50
|
+
* // Status: "Aborting" || "Launching" || "Updating" || "LinkingFrom" || "LinkingTo" || "Ready" || "Terminating" || "Terminated",
|
|
51
|
+
* // AbortableOperationInProgress: true || false,
|
|
52
|
+
* // Health: "Green" || "Yellow" || "Red" || "Grey",
|
|
53
|
+
* // HealthStatus: "NoData" || "Unknown" || "Pending" || "Ok" || "Info" || "Warning" || "Degraded" || "Severe" || "Suspended",
|
|
54
|
+
* // Resources: { // EnvironmentResourcesDescription
|
|
55
|
+
* // LoadBalancer: { // LoadBalancerDescription
|
|
56
|
+
* // LoadBalancerName: "STRING_VALUE",
|
|
57
|
+
* // Domain: "STRING_VALUE",
|
|
58
|
+
* // Listeners: [ // LoadBalancerListenersDescription
|
|
59
|
+
* // { // Listener
|
|
60
|
+
* // Protocol: "STRING_VALUE",
|
|
61
|
+
* // Port: Number("int"),
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // Tier: { // EnvironmentTier
|
|
67
|
+
* // Name: "STRING_VALUE",
|
|
68
|
+
* // Type: "STRING_VALUE",
|
|
69
|
+
* // Version: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // EnvironmentLinks: [ // EnvironmentLinks
|
|
72
|
+
* // { // EnvironmentLink
|
|
73
|
+
* // LinkName: "STRING_VALUE",
|
|
74
|
+
* // EnvironmentName: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // EnvironmentArn: "STRING_VALUE",
|
|
78
|
+
* // OperationsRole: "STRING_VALUE",
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
37
81
|
* ```
|
|
38
82
|
*
|
|
39
83
|
* @param TerminateEnvironmentCommandInput - {@link TerminateEnvironmentCommandInput}
|
|
@@ -46,6 +90,8 @@ export interface TerminateEnvironmentCommandOutput extends EnvironmentDescriptio
|
|
|
46
90
|
* <p>The specified account does not have sufficient privileges for one or more AWS
|
|
47
91
|
* services.</p>
|
|
48
92
|
*
|
|
93
|
+
* @throws {@link ElasticBeanstalkServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
49
95
|
*
|
|
50
96
|
* @example To terminate an environment
|
|
51
97
|
* ```javascript
|
|
@@ -36,6 +36,37 @@ export interface UpdateApplicationCommandOutput extends ApplicationDescriptionMe
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new UpdateApplicationCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ApplicationDescriptionMessage
|
|
40
|
+
* // Application: { // ApplicationDescription
|
|
41
|
+
* // ApplicationArn: "STRING_VALUE",
|
|
42
|
+
* // ApplicationName: "STRING_VALUE",
|
|
43
|
+
* // Description: "STRING_VALUE",
|
|
44
|
+
* // DateCreated: new Date("TIMESTAMP"),
|
|
45
|
+
* // DateUpdated: new Date("TIMESTAMP"),
|
|
46
|
+
* // Versions: [ // VersionLabelsList
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // ConfigurationTemplates: [ // ConfigurationTemplateNamesList
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // ResourceLifecycleConfig: { // ApplicationResourceLifecycleConfig
|
|
53
|
+
* // ServiceRole: "STRING_VALUE",
|
|
54
|
+
* // VersionLifecycleConfig: { // ApplicationVersionLifecycleConfig
|
|
55
|
+
* // MaxCountRule: { // MaxCountRule
|
|
56
|
+
* // Enabled: true || false, // required
|
|
57
|
+
* // MaxCount: Number("int"),
|
|
58
|
+
* // DeleteSourceFromS3: true || false,
|
|
59
|
+
* // },
|
|
60
|
+
* // MaxAgeRule: { // MaxAgeRule
|
|
61
|
+
* // Enabled: true || false, // required
|
|
62
|
+
* // MaxAgeInDays: Number("int"),
|
|
63
|
+
* // DeleteSourceFromS3: true || false,
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
39
70
|
* ```
|
|
40
71
|
*
|
|
41
72
|
* @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
|
|
@@ -44,6 +75,8 @@ export interface UpdateApplicationCommandOutput extends ApplicationDescriptionMe
|
|
|
44
75
|
* @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
|
|
45
76
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
46
77
|
*
|
|
78
|
+
* @throws {@link ElasticBeanstalkServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
47
80
|
*
|
|
48
81
|
* @example To change an application's description
|
|
49
82
|
* ```javascript
|
|
@@ -46,6 +46,25 @@ export interface UpdateApplicationResourceLifecycleCommandOutput extends Applica
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new UpdateApplicationResourceLifecycleCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // ApplicationResourceLifecycleDescriptionMessage
|
|
50
|
+
* // ApplicationName: "STRING_VALUE",
|
|
51
|
+
* // ResourceLifecycleConfig: { // ApplicationResourceLifecycleConfig
|
|
52
|
+
* // ServiceRole: "STRING_VALUE",
|
|
53
|
+
* // VersionLifecycleConfig: { // ApplicationVersionLifecycleConfig
|
|
54
|
+
* // MaxCountRule: { // MaxCountRule
|
|
55
|
+
* // Enabled: true || false, // required
|
|
56
|
+
* // MaxCount: Number("int"),
|
|
57
|
+
* // DeleteSourceFromS3: true || false,
|
|
58
|
+
* // },
|
|
59
|
+
* // MaxAgeRule: { // MaxAgeRule
|
|
60
|
+
* // Enabled: true || false, // required
|
|
61
|
+
* // MaxAgeInDays: Number("int"),
|
|
62
|
+
* // DeleteSourceFromS3: true || false,
|
|
63
|
+
* // },
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
49
68
|
* ```
|
|
50
69
|
*
|
|
51
70
|
* @param UpdateApplicationResourceLifecycleCommandInput - {@link UpdateApplicationResourceLifecycleCommandInput}
|
|
@@ -58,6 +77,8 @@ export interface UpdateApplicationResourceLifecycleCommandOutput extends Applica
|
|
|
58
77
|
* <p>The specified account does not have sufficient privileges for one or more AWS
|
|
59
78
|
* services.</p>
|
|
60
79
|
*
|
|
80
|
+
* @throws {@link ElasticBeanstalkServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
61
82
|
*
|
|
62
83
|
*/
|
|
63
84
|
export declare class UpdateApplicationResourceLifecycleCommand extends $Command<UpdateApplicationResourceLifecycleCommandInput, UpdateApplicationResourceLifecycleCommandOutput, ElasticBeanstalkClientResolvedConfig> {
|
|
@@ -37,6 +37,28 @@ export interface UpdateApplicationVersionCommandOutput extends ApplicationVersio
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new UpdateApplicationVersionCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ApplicationVersionDescriptionMessage
|
|
41
|
+
* // ApplicationVersion: { // ApplicationVersionDescription
|
|
42
|
+
* // ApplicationVersionArn: "STRING_VALUE",
|
|
43
|
+
* // ApplicationName: "STRING_VALUE",
|
|
44
|
+
* // Description: "STRING_VALUE",
|
|
45
|
+
* // VersionLabel: "STRING_VALUE",
|
|
46
|
+
* // SourceBuildInformation: { // SourceBuildInformation
|
|
47
|
+
* // SourceType: "Git" || "Zip", // required
|
|
48
|
+
* // SourceRepository: "CodeCommit" || "S3", // required
|
|
49
|
+
* // SourceLocation: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // BuildArn: "STRING_VALUE",
|
|
52
|
+
* // SourceBundle: { // S3Location
|
|
53
|
+
* // S3Bucket: "STRING_VALUE",
|
|
54
|
+
* // S3Key: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // DateCreated: new Date("TIMESTAMP"),
|
|
57
|
+
* // DateUpdated: new Date("TIMESTAMP"),
|
|
58
|
+
* // Status: "Processed" || "Unprocessed" || "Failed" || "Processing" || "Building",
|
|
59
|
+
* // },
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
40
62
|
* ```
|
|
41
63
|
*
|
|
42
64
|
* @param UpdateApplicationVersionCommandInput - {@link UpdateApplicationVersionCommandInput}
|
|
@@ -45,6 +67,8 @@ export interface UpdateApplicationVersionCommandOutput extends ApplicationVersio
|
|
|
45
67
|
* @see {@link UpdateApplicationVersionCommandOutput} for command's `response` shape.
|
|
46
68
|
* @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
|
|
47
69
|
*
|
|
70
|
+
* @throws {@link ElasticBeanstalkServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
48
72
|
*
|
|
49
73
|
* @example To change an application version's description
|
|
50
74
|
* ```javascript
|
|
@@ -61,6 +61,26 @@ export interface UpdateConfigurationTemplateCommandOutput extends ConfigurationS
|
|
|
61
61
|
* };
|
|
62
62
|
* const command = new UpdateConfigurationTemplateCommand(input);
|
|
63
63
|
* const response = await client.send(command);
|
|
64
|
+
* // { // ConfigurationSettingsDescription
|
|
65
|
+
* // SolutionStackName: "STRING_VALUE",
|
|
66
|
+
* // PlatformArn: "STRING_VALUE",
|
|
67
|
+
* // ApplicationName: "STRING_VALUE",
|
|
68
|
+
* // TemplateName: "STRING_VALUE",
|
|
69
|
+
* // Description: "STRING_VALUE",
|
|
70
|
+
* // EnvironmentName: "STRING_VALUE",
|
|
71
|
+
* // DeploymentStatus: "deployed" || "pending" || "failed",
|
|
72
|
+
* // DateCreated: new Date("TIMESTAMP"),
|
|
73
|
+
* // DateUpdated: new Date("TIMESTAMP"),
|
|
74
|
+
* // OptionSettings: [ // ConfigurationOptionSettingsList
|
|
75
|
+
* // { // ConfigurationOptionSetting
|
|
76
|
+
* // ResourceName: "STRING_VALUE",
|
|
77
|
+
* // Namespace: "STRING_VALUE",
|
|
78
|
+
* // OptionName: "STRING_VALUE",
|
|
79
|
+
* // Value: "STRING_VALUE",
|
|
80
|
+
* // },
|
|
81
|
+
* // ],
|
|
82
|
+
* // };
|
|
83
|
+
*
|
|
64
84
|
* ```
|
|
65
85
|
*
|
|
66
86
|
* @param UpdateConfigurationTemplateCommandInput - {@link UpdateConfigurationTemplateCommandInput}
|
|
@@ -76,6 +96,8 @@ export interface UpdateConfigurationTemplateCommandOutput extends ConfigurationS
|
|
|
76
96
|
* @throws {@link TooManyBucketsException} (client fault)
|
|
77
97
|
* <p>The specified account has reached its limit of Amazon S3 buckets.</p>
|
|
78
98
|
*
|
|
99
|
+
* @throws {@link ElasticBeanstalkServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
79
101
|
*
|
|
80
102
|
* @example To update a configuration template
|
|
81
103
|
* ```javascript
|
|
@@ -67,6 +67,50 @@ export interface UpdateEnvironmentCommandOutput extends EnvironmentDescription,
|
|
|
67
67
|
* };
|
|
68
68
|
* const command = new UpdateEnvironmentCommand(input);
|
|
69
69
|
* const response = await client.send(command);
|
|
70
|
+
* // { // EnvironmentDescription
|
|
71
|
+
* // EnvironmentName: "STRING_VALUE",
|
|
72
|
+
* // EnvironmentId: "STRING_VALUE",
|
|
73
|
+
* // ApplicationName: "STRING_VALUE",
|
|
74
|
+
* // VersionLabel: "STRING_VALUE",
|
|
75
|
+
* // SolutionStackName: "STRING_VALUE",
|
|
76
|
+
* // PlatformArn: "STRING_VALUE",
|
|
77
|
+
* // TemplateName: "STRING_VALUE",
|
|
78
|
+
* // Description: "STRING_VALUE",
|
|
79
|
+
* // EndpointURL: "STRING_VALUE",
|
|
80
|
+
* // CNAME: "STRING_VALUE",
|
|
81
|
+
* // DateCreated: new Date("TIMESTAMP"),
|
|
82
|
+
* // DateUpdated: new Date("TIMESTAMP"),
|
|
83
|
+
* // Status: "Aborting" || "Launching" || "Updating" || "LinkingFrom" || "LinkingTo" || "Ready" || "Terminating" || "Terminated",
|
|
84
|
+
* // AbortableOperationInProgress: true || false,
|
|
85
|
+
* // Health: "Green" || "Yellow" || "Red" || "Grey",
|
|
86
|
+
* // HealthStatus: "NoData" || "Unknown" || "Pending" || "Ok" || "Info" || "Warning" || "Degraded" || "Severe" || "Suspended",
|
|
87
|
+
* // Resources: { // EnvironmentResourcesDescription
|
|
88
|
+
* // LoadBalancer: { // LoadBalancerDescription
|
|
89
|
+
* // LoadBalancerName: "STRING_VALUE",
|
|
90
|
+
* // Domain: "STRING_VALUE",
|
|
91
|
+
* // Listeners: [ // LoadBalancerListenersDescription
|
|
92
|
+
* // { // Listener
|
|
93
|
+
* // Protocol: "STRING_VALUE",
|
|
94
|
+
* // Port: Number("int"),
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
97
|
+
* // },
|
|
98
|
+
* // },
|
|
99
|
+
* // Tier: { // EnvironmentTier
|
|
100
|
+
* // Name: "STRING_VALUE",
|
|
101
|
+
* // Type: "STRING_VALUE",
|
|
102
|
+
* // Version: "STRING_VALUE",
|
|
103
|
+
* // },
|
|
104
|
+
* // EnvironmentLinks: [ // EnvironmentLinks
|
|
105
|
+
* // { // EnvironmentLink
|
|
106
|
+
* // LinkName: "STRING_VALUE",
|
|
107
|
+
* // EnvironmentName: "STRING_VALUE",
|
|
108
|
+
* // },
|
|
109
|
+
* // ],
|
|
110
|
+
* // EnvironmentArn: "STRING_VALUE",
|
|
111
|
+
* // OperationsRole: "STRING_VALUE",
|
|
112
|
+
* // };
|
|
113
|
+
*
|
|
70
114
|
* ```
|
|
71
115
|
*
|
|
72
116
|
* @param UpdateEnvironmentCommandInput - {@link UpdateEnvironmentCommandInput}
|
|
@@ -82,6 +126,8 @@ export interface UpdateEnvironmentCommandOutput extends EnvironmentDescription,
|
|
|
82
126
|
* @throws {@link TooManyBucketsException} (client fault)
|
|
83
127
|
* <p>The specified account has reached its limit of Amazon S3 buckets.</p>
|
|
84
128
|
*
|
|
129
|
+
* @throws {@link ElasticBeanstalkServiceException}
|
|
130
|
+
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
85
131
|
*
|
|
86
132
|
* @example To update an environment to a new version
|
|
87
133
|
* ```javascript
|
|
@@ -59,6 +59,8 @@ export interface UpdateTagsForResourceCommandOutput extends __MetadataBearer {
|
|
|
59
59
|
* };
|
|
60
60
|
* const command = new UpdateTagsForResourceCommand(input);
|
|
61
61
|
* const response = await client.send(command);
|
|
62
|
+
* // {};
|
|
63
|
+
*
|
|
62
64
|
* ```
|
|
63
65
|
*
|
|
64
66
|
* @param UpdateTagsForResourceCommandInput - {@link UpdateTagsForResourceCommandInput}
|
|
@@ -87,6 +89,8 @@ export interface UpdateTagsForResourceCommandOutput extends __MetadataBearer {
|
|
|
87
89
|
* <p>To calculate this, the operation considers both the number of tags the resource already has
|
|
88
90
|
* and the tags this operation would add if it succeeded.</p>
|
|
89
91
|
*
|
|
92
|
+
* @throws {@link ElasticBeanstalkServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
90
94
|
*
|
|
91
95
|
*/
|
|
92
96
|
export declare class UpdateTagsForResourceCommand extends $Command<UpdateTagsForResourceCommandInput, UpdateTagsForResourceCommandOutput, ElasticBeanstalkClientResolvedConfig> {
|
|
@@ -44,6 +44,17 @@ export interface ValidateConfigurationSettingsCommandOutput extends Configuratio
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new ValidateConfigurationSettingsCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // ConfigurationSettingsValidationMessages
|
|
48
|
+
* // Messages: [ // ValidationMessagesList
|
|
49
|
+
* // { // ValidationMessage
|
|
50
|
+
* // Message: "STRING_VALUE",
|
|
51
|
+
* // Severity: "error" || "warning",
|
|
52
|
+
* // Namespace: "STRING_VALUE",
|
|
53
|
+
* // OptionName: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
47
58
|
* ```
|
|
48
59
|
*
|
|
49
60
|
* @param ValidateConfigurationSettingsCommandInput - {@link ValidateConfigurationSettingsCommandInput}
|
|
@@ -59,6 +70,8 @@ export interface ValidateConfigurationSettingsCommandOutput extends Configuratio
|
|
|
59
70
|
* @throws {@link TooManyBucketsException} (client fault)
|
|
60
71
|
* <p>The specified account has reached its limit of Amazon S3 buckets.</p>
|
|
61
72
|
*
|
|
73
|
+
* @throws {@link ElasticBeanstalkServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
|
|
62
75
|
*
|
|
63
76
|
* @example To validate configuration settings
|
|
64
77
|
* ```javascript
|
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.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|