@aws-sdk/client-elastic-beanstalk 3.952.0 → 3.954.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
|
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsQueryProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.elasticbeanstalk",
|
|
32
|
+
xmlNamespace: "http://elasticbeanstalk.amazonaws.com/docs/2010-12-01/",
|
|
33
|
+
version: "2010-12-01",
|
|
34
|
+
serviceTarget: "AWSElasticBeanstalkService",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "Elastic Beanstalk",
|
|
36
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -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 { AbortEnvironmentUpdate } from "../schemas/schemas_0";
|
|
4
|
+
import { AbortEnvironmentUpdate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AbortEnvironmentUpdateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AbortEnvironmentUpdateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "AbortEnvironmentUpdate", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "AbortEnvironmentUpdateCommand")
|
|
14
|
-
.sc(AbortEnvironmentUpdate)
|
|
14
|
+
.sc(AbortEnvironmentUpdate$)
|
|
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 { ApplyEnvironmentManagedAction } from "../schemas/schemas_0";
|
|
4
|
+
import { ApplyEnvironmentManagedAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ApplyEnvironmentManagedActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ApplyEnvironmentManagedActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "ApplyEnvironmentManagedAction", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "ApplyEnvironmentManagedActionCommand")
|
|
14
|
-
.sc(ApplyEnvironmentManagedAction)
|
|
14
|
+
.sc(ApplyEnvironmentManagedAction$)
|
|
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 { AssociateEnvironmentOperationsRole } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateEnvironmentOperationsRole$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateEnvironmentOperationsRoleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateEnvironmentOperationsRoleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "AssociateEnvironmentOperationsRole", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "AssociateEnvironmentOperationsRoleCommand")
|
|
14
|
-
.sc(AssociateEnvironmentOperationsRole)
|
|
14
|
+
.sc(AssociateEnvironmentOperationsRole$)
|
|
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 { CheckDNSAvailability } from "../schemas/schemas_0";
|
|
4
|
+
import { CheckDNSAvailability$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CheckDNSAvailabilityCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CheckDNSAvailabilityCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "CheckDNSAvailability", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "CheckDNSAvailabilityCommand")
|
|
14
|
-
.sc(CheckDNSAvailability)
|
|
14
|
+
.sc(CheckDNSAvailability$)
|
|
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 { ComposeEnvironments } from "../schemas/schemas_0";
|
|
4
|
+
import { ComposeEnvironments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ComposeEnvironmentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ComposeEnvironmentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "ComposeEnvironments", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "ComposeEnvironmentsCommand")
|
|
14
|
-
.sc(ComposeEnvironments)
|
|
14
|
+
.sc(ComposeEnvironments$)
|
|
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 { CreateApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "CreateApplication", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "CreateApplicationCommand")
|
|
14
|
-
.sc(CreateApplication)
|
|
14
|
+
.sc(CreateApplication$)
|
|
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 { CreateApplicationVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateApplicationVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateApplicationVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateApplicationVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "CreateApplicationVersion", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "CreateApplicationVersionCommand")
|
|
14
|
-
.sc(CreateApplicationVersion)
|
|
14
|
+
.sc(CreateApplicationVersion$)
|
|
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 { CreateConfigurationTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateConfigurationTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateConfigurationTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateConfigurationTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "CreateConfigurationTemplate", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "CreateConfigurationTemplateCommand")
|
|
14
|
-
.sc(CreateConfigurationTemplate)
|
|
14
|
+
.sc(CreateConfigurationTemplate$)
|
|
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 { CreateEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "CreateEnvironment", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "CreateEnvironmentCommand")
|
|
14
|
-
.sc(CreateEnvironment)
|
|
14
|
+
.sc(CreateEnvironment$)
|
|
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 { CreatePlatformVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePlatformVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePlatformVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePlatformVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "CreatePlatformVersion", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "CreatePlatformVersionCommand")
|
|
14
|
-
.sc(CreatePlatformVersion)
|
|
14
|
+
.sc(CreatePlatformVersion$)
|
|
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 { CreateStorageLocation } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateStorageLocation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateStorageLocationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateStorageLocationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "CreateStorageLocation", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "CreateStorageLocationCommand")
|
|
14
|
-
.sc(CreateStorageLocation)
|
|
14
|
+
.sc(CreateStorageLocation$)
|
|
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 { DeleteApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DeleteApplication", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DeleteApplicationCommand")
|
|
14
|
-
.sc(DeleteApplication)
|
|
14
|
+
.sc(DeleteApplication$)
|
|
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 { DeleteApplicationVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteApplicationVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteApplicationVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteApplicationVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DeleteApplicationVersion", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DeleteApplicationVersionCommand")
|
|
14
|
-
.sc(DeleteApplicationVersion)
|
|
14
|
+
.sc(DeleteApplicationVersion$)
|
|
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 { DeleteConfigurationTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteConfigurationTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteConfigurationTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteConfigurationTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DeleteConfigurationTemplate", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DeleteConfigurationTemplateCommand")
|
|
14
|
-
.sc(DeleteConfigurationTemplate)
|
|
14
|
+
.sc(DeleteConfigurationTemplate$)
|
|
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 { DeleteEnvironmentConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteEnvironmentConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteEnvironmentConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteEnvironmentConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DeleteEnvironmentConfiguration", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DeleteEnvironmentConfigurationCommand")
|
|
14
|
-
.sc(DeleteEnvironmentConfiguration)
|
|
14
|
+
.sc(DeleteEnvironmentConfiguration$)
|
|
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 { DeletePlatformVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePlatformVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePlatformVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePlatformVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DeletePlatformVersion", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DeletePlatformVersionCommand")
|
|
14
|
-
.sc(DeletePlatformVersion)
|
|
14
|
+
.sc(DeletePlatformVersion$)
|
|
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 { DescribeAccountAttributes } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAccountAttributes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAccountAttributesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAccountAttributesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribeAccountAttributes", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribeAccountAttributesCommand")
|
|
14
|
-
.sc(DescribeAccountAttributes)
|
|
14
|
+
.sc(DescribeAccountAttributes$)
|
|
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 { DescribeApplicationVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeApplicationVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeApplicationVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeApplicationVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribeApplicationVersions", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribeApplicationVersionsCommand")
|
|
14
|
-
.sc(DescribeApplicationVersions)
|
|
14
|
+
.sc(DescribeApplicationVersions$)
|
|
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 { DescribeApplications } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeApplications$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeApplicationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeApplicationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribeApplications", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribeApplicationsCommand")
|
|
14
|
-
.sc(DescribeApplications)
|
|
14
|
+
.sc(DescribeApplications$)
|
|
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 { DescribeConfigurationOptions } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeConfigurationOptions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeConfigurationOptionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeConfigurationOptionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribeConfigurationOptions", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribeConfigurationOptionsCommand")
|
|
14
|
-
.sc(DescribeConfigurationOptions)
|
|
14
|
+
.sc(DescribeConfigurationOptions$)
|
|
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 { DescribeConfigurationSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeConfigurationSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeConfigurationSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeConfigurationSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribeConfigurationSettings", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribeConfigurationSettingsCommand")
|
|
14
|
-
.sc(DescribeConfigurationSettings)
|
|
14
|
+
.sc(DescribeConfigurationSettings$)
|
|
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 { DescribeEnvironmentHealth } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEnvironmentHealth$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEnvironmentHealthCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEnvironmentHealthCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribeEnvironmentHealth", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribeEnvironmentHealthCommand")
|
|
14
|
-
.sc(DescribeEnvironmentHealth)
|
|
14
|
+
.sc(DescribeEnvironmentHealth$)
|
|
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 { DescribeEnvironmentManagedActionHistory } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEnvironmentManagedActionHistory$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEnvironmentManagedActionHistoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEnvironmentManagedActionHistoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribeEnvironmentManagedActionHistory", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribeEnvironmentManagedActionHistoryCommand")
|
|
14
|
-
.sc(DescribeEnvironmentManagedActionHistory)
|
|
14
|
+
.sc(DescribeEnvironmentManagedActionHistory$)
|
|
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 { DescribeEnvironmentManagedActions } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEnvironmentManagedActions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEnvironmentManagedActionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEnvironmentManagedActionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribeEnvironmentManagedActions", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribeEnvironmentManagedActionsCommand")
|
|
14
|
-
.sc(DescribeEnvironmentManagedActions)
|
|
14
|
+
.sc(DescribeEnvironmentManagedActions$)
|
|
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 { DescribeEnvironmentResources } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEnvironmentResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEnvironmentResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEnvironmentResourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribeEnvironmentResources", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribeEnvironmentResourcesCommand")
|
|
14
|
-
.sc(DescribeEnvironmentResources)
|
|
14
|
+
.sc(DescribeEnvironmentResources$)
|
|
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 { DescribeEnvironments } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEnvironments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEnvironmentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEnvironmentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribeEnvironments", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribeEnvironmentsCommand")
|
|
14
|
-
.sc(DescribeEnvironments)
|
|
14
|
+
.sc(DescribeEnvironments$)
|
|
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 { DescribeEvents } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEvents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEventsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEventsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribeEvents", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribeEventsCommand")
|
|
14
|
-
.sc(DescribeEvents)
|
|
14
|
+
.sc(DescribeEvents$)
|
|
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 { DescribeInstancesHealth } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeInstancesHealth$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeInstancesHealthCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeInstancesHealthCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribeInstancesHealth", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribeInstancesHealthCommand")
|
|
14
|
-
.sc(DescribeInstancesHealth)
|
|
14
|
+
.sc(DescribeInstancesHealth$)
|
|
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 { DescribePlatformVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePlatformVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePlatformVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePlatformVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DescribePlatformVersion", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DescribePlatformVersionCommand")
|
|
14
|
-
.sc(DescribePlatformVersion)
|
|
14
|
+
.sc(DescribePlatformVersion$)
|
|
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 { DisassociateEnvironmentOperationsRole } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateEnvironmentOperationsRole$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateEnvironmentOperationsRoleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateEnvironmentOperationsRoleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "DisassociateEnvironmentOperationsRole", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "DisassociateEnvironmentOperationsRoleCommand")
|
|
14
|
-
.sc(DisassociateEnvironmentOperationsRole)
|
|
14
|
+
.sc(DisassociateEnvironmentOperationsRole$)
|
|
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 { ListAvailableSolutionStacks } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAvailableSolutionStacks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAvailableSolutionStacksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAvailableSolutionStacksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "ListAvailableSolutionStacks", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "ListAvailableSolutionStacksCommand")
|
|
14
|
-
.sc(ListAvailableSolutionStacks)
|
|
14
|
+
.sc(ListAvailableSolutionStacks$)
|
|
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 { ListPlatformBranches } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPlatformBranches$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPlatformBranchesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPlatformBranchesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "ListPlatformBranches", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "ListPlatformBranchesCommand")
|
|
14
|
-
.sc(ListPlatformBranches)
|
|
14
|
+
.sc(ListPlatformBranches$)
|
|
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 { ListPlatformVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPlatformVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPlatformVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPlatformVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "ListPlatformVersions", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "ListPlatformVersionsCommand")
|
|
14
|
-
.sc(ListPlatformVersions)
|
|
14
|
+
.sc(ListPlatformVersions$)
|
|
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 { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSElasticBeanstalkService", "ListTagsForResource", {})
|
|
13
13
|
.n("ElasticBeanstalkClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|