@aws-sdk/client-elastic-beanstalk 3.948.0 → 3.953.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +667 -466
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/AbortEnvironmentUpdateCommand.js +2 -2
- package/dist-es/commands/ApplyEnvironmentManagedActionCommand.js +2 -2
- package/dist-es/commands/AssociateEnvironmentOperationsRoleCommand.js +2 -2
- package/dist-es/commands/CheckDNSAvailabilityCommand.js +2 -2
- package/dist-es/commands/ComposeEnvironmentsCommand.js +2 -2
- package/dist-es/commands/CreateApplicationCommand.js +2 -2
- package/dist-es/commands/CreateApplicationVersionCommand.js +2 -2
- package/dist-es/commands/CreateConfigurationTemplateCommand.js +2 -2
- package/dist-es/commands/CreateEnvironmentCommand.js +2 -2
- package/dist-es/commands/CreatePlatformVersionCommand.js +2 -2
- package/dist-es/commands/CreateStorageLocationCommand.js +2 -2
- package/dist-es/commands/DeleteApplicationCommand.js +2 -2
- package/dist-es/commands/DeleteApplicationVersionCommand.js +2 -2
- package/dist-es/commands/DeleteConfigurationTemplateCommand.js +2 -2
- package/dist-es/commands/DeleteEnvironmentConfigurationCommand.js +2 -2
- package/dist-es/commands/DeletePlatformVersionCommand.js +2 -2
- package/dist-es/commands/DescribeAccountAttributesCommand.js +2 -2
- package/dist-es/commands/DescribeApplicationVersionsCommand.js +2 -2
- package/dist-es/commands/DescribeApplicationsCommand.js +2 -2
- package/dist-es/commands/DescribeConfigurationOptionsCommand.js +2 -2
- package/dist-es/commands/DescribeConfigurationSettingsCommand.js +2 -2
- package/dist-es/commands/DescribeEnvironmentHealthCommand.js +2 -2
- package/dist-es/commands/DescribeEnvironmentManagedActionHistoryCommand.js +2 -2
- package/dist-es/commands/DescribeEnvironmentManagedActionsCommand.js +2 -2
- package/dist-es/commands/DescribeEnvironmentResourcesCommand.js +2 -2
- package/dist-es/commands/DescribeEnvironmentsCommand.js +2 -2
- package/dist-es/commands/DescribeEventsCommand.js +2 -2
- package/dist-es/commands/DescribeInstancesHealthCommand.js +2 -2
- package/dist-es/commands/DescribePlatformVersionCommand.js +2 -2
- package/dist-es/commands/DisassociateEnvironmentOperationsRoleCommand.js +2 -2
- package/dist-es/commands/ListAvailableSolutionStacksCommand.js +2 -2
- package/dist-es/commands/ListPlatformBranchesCommand.js +2 -2
- package/dist-es/commands/ListPlatformVersionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RebuildEnvironmentCommand.js +2 -2
- package/dist-es/commands/RequestEnvironmentInfoCommand.js +2 -2
- package/dist-es/commands/RestartAppServerCommand.js +2 -2
- package/dist-es/commands/RetrieveEnvironmentInfoCommand.js +2 -2
- package/dist-es/commands/SwapEnvironmentCNAMEsCommand.js +2 -2
- package/dist-es/commands/TerminateEnvironmentCommand.js +2 -2
- package/dist-es/commands/UpdateApplicationCommand.js +2 -2
- package/dist-es/commands/UpdateApplicationResourceLifecycleCommand.js +2 -2
- package/dist-es/commands/UpdateApplicationVersionCommand.js +2 -2
- package/dist-es/commands/UpdateConfigurationTemplateCommand.js +2 -2
- package/dist-es/commands/UpdateEnvironmentCommand.js +2 -2
- package/dist-es/commands/UpdateTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ValidateConfigurationSettingsCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +388 -380
- package/dist-types/ElasticBeanstalkClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +194 -245
- package/dist-types/ts3.4/ElasticBeanstalkClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +193 -245
- package/package.json +35 -35
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RebuildEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { RebuildEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RebuildEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RebuildEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "RebuildEnvironment", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "RebuildEnvironmentCommand")
|
|
14
|
-
.sc(RebuildEnvironment)
|
|
14
|
+
.sc(RebuildEnvironment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RequestEnvironmentInfo } from "../schemas/schemas_0";
|
|
4
|
+
import { RequestEnvironmentInfo$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RequestEnvironmentInfoCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RequestEnvironmentInfoCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "RequestEnvironmentInfo", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "RequestEnvironmentInfoCommand")
|
|
14
|
-
.sc(RequestEnvironmentInfo)
|
|
14
|
+
.sc(RequestEnvironmentInfo$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RestartAppServer } from "../schemas/schemas_0";
|
|
4
|
+
import { RestartAppServer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RestartAppServerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RestartAppServerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "RestartAppServer", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "RestartAppServerCommand")
|
|
14
|
-
.sc(RestartAppServer)
|
|
14
|
+
.sc(RestartAppServer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RetrieveEnvironmentInfo } from "../schemas/schemas_0";
|
|
4
|
+
import { RetrieveEnvironmentInfo$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RetrieveEnvironmentInfoCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RetrieveEnvironmentInfoCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "RetrieveEnvironmentInfo", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "RetrieveEnvironmentInfoCommand")
|
|
14
|
-
.sc(RetrieveEnvironmentInfo)
|
|
14
|
+
.sc(RetrieveEnvironmentInfo$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SwapEnvironmentCNAMEs } from "../schemas/schemas_0";
|
|
4
|
+
import { SwapEnvironmentCNAMEs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SwapEnvironmentCNAMEsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SwapEnvironmentCNAMEsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "SwapEnvironmentCNAMEs", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "SwapEnvironmentCNAMEsCommand")
|
|
14
|
-
.sc(SwapEnvironmentCNAMEs)
|
|
14
|
+
.sc(SwapEnvironmentCNAMEs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TerminateEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { TerminateEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TerminateEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TerminateEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "TerminateEnvironment", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "TerminateEnvironmentCommand")
|
|
14
|
-
.sc(TerminateEnvironment)
|
|
14
|
+
.sc(TerminateEnvironment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "UpdateApplication", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "UpdateApplicationCommand")
|
|
14
|
-
.sc(UpdateApplication)
|
|
14
|
+
.sc(UpdateApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateApplicationResourceLifecycle } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateApplicationResourceLifecycle$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateApplicationResourceLifecycleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateApplicationResourceLifecycleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "UpdateApplicationResourceLifecycle", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "UpdateApplicationResourceLifecycleCommand")
|
|
14
|
-
.sc(UpdateApplicationResourceLifecycle)
|
|
14
|
+
.sc(UpdateApplicationResourceLifecycle$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateApplicationVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateApplicationVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateApplicationVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateApplicationVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "UpdateApplicationVersion", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "UpdateApplicationVersionCommand")
|
|
14
|
-
.sc(UpdateApplicationVersion)
|
|
14
|
+
.sc(UpdateApplicationVersion$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateConfigurationTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateConfigurationTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateConfigurationTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateConfigurationTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "UpdateConfigurationTemplate", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "UpdateConfigurationTemplateCommand")
|
|
14
|
-
.sc(UpdateConfigurationTemplate)
|
|
14
|
+
.sc(UpdateConfigurationTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "UpdateEnvironment", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "UpdateEnvironmentCommand")
|
|
14
|
-
.sc(UpdateEnvironment)
|
|
14
|
+
.sc(UpdateEnvironment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "UpdateTagsForResource", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "UpdateTagsForResourceCommand")
|
|
14
|
-
.sc(UpdateTagsForResource)
|
|
14
|
+
.sc(UpdateTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ValidateConfigurationSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { ValidateConfigurationSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ValidateConfigurationSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ValidateConfigurationSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "ValidateConfigurationSettings", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "ValidateConfigurationSettingsCommand")
|
|
14
|
-
.sc(ValidateConfigurationSettings)
|
|
14
|
+
.sc(ValidateConfigurationSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,13 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsQueryProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.elasticbeanstalk",
|
|
29
|
+
xmlNamespace: "http://elasticbeanstalk.amazonaws.com/docs/2010-12-01/",
|
|
30
|
+
version: "2010-12-01",
|
|
31
|
+
serviceTarget: "AWSElasticBeanstalkService",
|
|
32
|
+
},
|
|
32
33
|
serviceId: config?.serviceId ?? "Elastic Beanstalk",
|
|
33
34
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
35
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|