@aws-sdk/client-appconfig 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 +437 -300
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateApplicationCommand.js +2 -2
- package/dist-es/commands/CreateConfigurationProfileCommand.js +2 -2
- package/dist-es/commands/CreateDeploymentStrategyCommand.js +2 -2
- package/dist-es/commands/CreateEnvironmentCommand.js +2 -2
- package/dist-es/commands/CreateExtensionAssociationCommand.js +2 -2
- package/dist-es/commands/CreateExtensionCommand.js +2 -2
- package/dist-es/commands/CreateHostedConfigurationVersionCommand.js +2 -2
- package/dist-es/commands/DeleteApplicationCommand.js +2 -2
- package/dist-es/commands/DeleteConfigurationProfileCommand.js +2 -2
- package/dist-es/commands/DeleteDeploymentStrategyCommand.js +2 -2
- package/dist-es/commands/DeleteEnvironmentCommand.js +2 -2
- package/dist-es/commands/DeleteExtensionAssociationCommand.js +2 -2
- package/dist-es/commands/DeleteExtensionCommand.js +2 -2
- package/dist-es/commands/DeleteHostedConfigurationVersionCommand.js +2 -2
- package/dist-es/commands/GetAccountSettingsCommand.js +2 -2
- package/dist-es/commands/GetApplicationCommand.js +2 -2
- package/dist-es/commands/GetConfigurationCommand.js +2 -2
- package/dist-es/commands/GetConfigurationProfileCommand.js +2 -2
- package/dist-es/commands/GetDeploymentCommand.js +2 -2
- package/dist-es/commands/GetDeploymentStrategyCommand.js +2 -2
- package/dist-es/commands/GetEnvironmentCommand.js +2 -2
- package/dist-es/commands/GetExtensionAssociationCommand.js +2 -2
- package/dist-es/commands/GetExtensionCommand.js +2 -2
- package/dist-es/commands/GetHostedConfigurationVersionCommand.js +2 -2
- package/dist-es/commands/ListApplicationsCommand.js +2 -2
- package/dist-es/commands/ListConfigurationProfilesCommand.js +2 -2
- package/dist-es/commands/ListDeploymentStrategiesCommand.js +2 -2
- package/dist-es/commands/ListDeploymentsCommand.js +2 -2
- package/dist-es/commands/ListEnvironmentsCommand.js +2 -2
- package/dist-es/commands/ListExtensionAssociationsCommand.js +2 -2
- package/dist-es/commands/ListExtensionsCommand.js +2 -2
- package/dist-es/commands/ListHostedConfigurationVersionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/StartDeploymentCommand.js +2 -2
- package/dist-es/commands/StopDeploymentCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAccountSettingsCommand.js +2 -2
- package/dist-es/commands/UpdateApplicationCommand.js +2 -2
- package/dist-es/commands/UpdateConfigurationProfileCommand.js +2 -2
- package/dist-es/commands/UpdateDeploymentStrategyCommand.js +2 -2
- package/dist-es/commands/UpdateEnvironmentCommand.js +2 -2
- package/dist-es/commands/UpdateExtensionAssociationCommand.js +2 -2
- package/dist-es/commands/UpdateExtensionCommand.js +2 -2
- package/dist-es/commands/ValidateConfigurationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +254 -247
- package/dist-types/AppConfigClient.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 +131 -156
- package/dist-types/ts3.4/AppConfigClient.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 +130 -158
- package/package.json +36 -36
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.appconfig",
|
|
32
|
+
version: "2019-10-09",
|
|
33
|
+
serviceTarget: "AmazonAppConfig",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "AppConfig",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
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 { 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("AmazonAppConfig", "CreateApplication", {})
|
|
13
13
|
.n("AppConfigClient", "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 { CreateConfigurationProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateConfigurationProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateConfigurationProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateConfigurationProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "CreateConfigurationProfile", {})
|
|
13
13
|
.n("AppConfigClient", "CreateConfigurationProfileCommand")
|
|
14
|
-
.sc(CreateConfigurationProfile)
|
|
14
|
+
.sc(CreateConfigurationProfile$)
|
|
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 { CreateDeploymentStrategy } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDeploymentStrategy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDeploymentStrategyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDeploymentStrategyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "CreateDeploymentStrategy", {})
|
|
13
13
|
.n("AppConfigClient", "CreateDeploymentStrategyCommand")
|
|
14
|
-
.sc(CreateDeploymentStrategy)
|
|
14
|
+
.sc(CreateDeploymentStrategy$)
|
|
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("AmazonAppConfig", "CreateEnvironment", {})
|
|
13
13
|
.n("AppConfigClient", "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 { CreateExtensionAssociation } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateExtensionAssociation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateExtensionAssociationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateExtensionAssociationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "CreateExtensionAssociation", {})
|
|
13
13
|
.n("AppConfigClient", "CreateExtensionAssociationCommand")
|
|
14
|
-
.sc(CreateExtensionAssociation)
|
|
14
|
+
.sc(CreateExtensionAssociation$)
|
|
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 { CreateExtension } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateExtension$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateExtensionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateExtensionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "CreateExtension", {})
|
|
13
13
|
.n("AppConfigClient", "CreateExtensionCommand")
|
|
14
|
-
.sc(CreateExtension)
|
|
14
|
+
.sc(CreateExtension$)
|
|
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 { CreateHostedConfigurationVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateHostedConfigurationVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateHostedConfigurationVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateHostedConfigurationVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "CreateHostedConfigurationVersion", {})
|
|
13
13
|
.n("AppConfigClient", "CreateHostedConfigurationVersionCommand")
|
|
14
|
-
.sc(CreateHostedConfigurationVersion)
|
|
14
|
+
.sc(CreateHostedConfigurationVersion$)
|
|
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("AmazonAppConfig", "DeleteApplication", {})
|
|
13
13
|
.n("AppConfigClient", "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 { DeleteConfigurationProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteConfigurationProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteConfigurationProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteConfigurationProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "DeleteConfigurationProfile", {})
|
|
13
13
|
.n("AppConfigClient", "DeleteConfigurationProfileCommand")
|
|
14
|
-
.sc(DeleteConfigurationProfile)
|
|
14
|
+
.sc(DeleteConfigurationProfile$)
|
|
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 { DeleteDeploymentStrategy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDeploymentStrategy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDeploymentStrategyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDeploymentStrategyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "DeleteDeploymentStrategy", {})
|
|
13
13
|
.n("AppConfigClient", "DeleteDeploymentStrategyCommand")
|
|
14
|
-
.sc(DeleteDeploymentStrategy)
|
|
14
|
+
.sc(DeleteDeploymentStrategy$)
|
|
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 { DeleteEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "DeleteEnvironment", {})
|
|
13
13
|
.n("AppConfigClient", "DeleteEnvironmentCommand")
|
|
14
|
-
.sc(DeleteEnvironment)
|
|
14
|
+
.sc(DeleteEnvironment$)
|
|
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 { DeleteExtensionAssociation } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteExtensionAssociation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteExtensionAssociationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteExtensionAssociationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "DeleteExtensionAssociation", {})
|
|
13
13
|
.n("AppConfigClient", "DeleteExtensionAssociationCommand")
|
|
14
|
-
.sc(DeleteExtensionAssociation)
|
|
14
|
+
.sc(DeleteExtensionAssociation$)
|
|
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 { DeleteExtension } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteExtension$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteExtensionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteExtensionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "DeleteExtension", {})
|
|
13
13
|
.n("AppConfigClient", "DeleteExtensionCommand")
|
|
14
|
-
.sc(DeleteExtension)
|
|
14
|
+
.sc(DeleteExtension$)
|
|
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 { DeleteHostedConfigurationVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteHostedConfigurationVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteHostedConfigurationVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteHostedConfigurationVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "DeleteHostedConfigurationVersion", {})
|
|
13
13
|
.n("AppConfigClient", "DeleteHostedConfigurationVersionCommand")
|
|
14
|
-
.sc(DeleteHostedConfigurationVersion)
|
|
14
|
+
.sc(DeleteHostedConfigurationVersion$)
|
|
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 { GetAccountSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAccountSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAccountSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAccountSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "GetAccountSettings", {})
|
|
13
13
|
.n("AppConfigClient", "GetAccountSettingsCommand")
|
|
14
|
-
.sc(GetAccountSettings)
|
|
14
|
+
.sc(GetAccountSettings$)
|
|
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 { GetApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { GetApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "GetApplication", {})
|
|
13
13
|
.n("AppConfigClient", "GetApplicationCommand")
|
|
14
|
-
.sc(GetApplication)
|
|
14
|
+
.sc(GetApplication$)
|
|
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 { GetConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "GetConfiguration", {})
|
|
13
13
|
.n("AppConfigClient", "GetConfigurationCommand")
|
|
14
|
-
.sc(GetConfiguration)
|
|
14
|
+
.sc(GetConfiguration$)
|
|
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 { GetConfigurationProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { GetConfigurationProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetConfigurationProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetConfigurationProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "GetConfigurationProfile", {})
|
|
13
13
|
.n("AppConfigClient", "GetConfigurationProfileCommand")
|
|
14
|
-
.sc(GetConfigurationProfile)
|
|
14
|
+
.sc(GetConfigurationProfile$)
|
|
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 { GetDeployment } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDeploymentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "GetDeployment", {})
|
|
13
13
|
.n("AppConfigClient", "GetDeploymentCommand")
|
|
14
|
-
.sc(GetDeployment)
|
|
14
|
+
.sc(GetDeployment$)
|
|
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 { GetDeploymentStrategy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDeploymentStrategy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDeploymentStrategyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDeploymentStrategyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "GetDeploymentStrategy", {})
|
|
13
13
|
.n("AppConfigClient", "GetDeploymentStrategyCommand")
|
|
14
|
-
.sc(GetDeploymentStrategy)
|
|
14
|
+
.sc(GetDeploymentStrategy$)
|
|
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 { GetEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { GetEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "GetEnvironment", {})
|
|
13
13
|
.n("AppConfigClient", "GetEnvironmentCommand")
|
|
14
|
-
.sc(GetEnvironment)
|
|
14
|
+
.sc(GetEnvironment$)
|
|
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 { GetExtensionAssociation } from "../schemas/schemas_0";
|
|
4
|
+
import { GetExtensionAssociation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetExtensionAssociationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetExtensionAssociationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "GetExtensionAssociation", {})
|
|
13
13
|
.n("AppConfigClient", "GetExtensionAssociationCommand")
|
|
14
|
-
.sc(GetExtensionAssociation)
|
|
14
|
+
.sc(GetExtensionAssociation$)
|
|
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 { GetExtension } from "../schemas/schemas_0";
|
|
4
|
+
import { GetExtension$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetExtensionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetExtensionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "GetExtension", {})
|
|
13
13
|
.n("AppConfigClient", "GetExtensionCommand")
|
|
14
|
-
.sc(GetExtension)
|
|
14
|
+
.sc(GetExtension$)
|
|
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 { GetHostedConfigurationVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { GetHostedConfigurationVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetHostedConfigurationVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetHostedConfigurationVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "GetHostedConfigurationVersion", {})
|
|
13
13
|
.n("AppConfigClient", "GetHostedConfigurationVersionCommand")
|
|
14
|
-
.sc(GetHostedConfigurationVersion)
|
|
14
|
+
.sc(GetHostedConfigurationVersion$)
|
|
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 { ListApplications } from "../schemas/schemas_0";
|
|
4
|
+
import { ListApplications$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListApplicationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListApplicationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "ListApplications", {})
|
|
13
13
|
.n("AppConfigClient", "ListApplicationsCommand")
|
|
14
|
-
.sc(ListApplications)
|
|
14
|
+
.sc(ListApplications$)
|
|
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 { ListConfigurationProfiles } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConfigurationProfiles$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConfigurationProfilesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConfigurationProfilesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "ListConfigurationProfiles", {})
|
|
13
13
|
.n("AppConfigClient", "ListConfigurationProfilesCommand")
|
|
14
|
-
.sc(ListConfigurationProfiles)
|
|
14
|
+
.sc(ListConfigurationProfiles$)
|
|
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 { ListDeploymentStrategies } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDeploymentStrategies$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDeploymentStrategiesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDeploymentStrategiesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "ListDeploymentStrategies", {})
|
|
13
13
|
.n("AppConfigClient", "ListDeploymentStrategiesCommand")
|
|
14
|
-
.sc(ListDeploymentStrategies)
|
|
14
|
+
.sc(ListDeploymentStrategies$)
|
|
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 { ListDeployments } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDeployments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDeploymentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDeploymentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "ListDeployments", {})
|
|
13
13
|
.n("AppConfigClient", "ListDeploymentsCommand")
|
|
14
|
-
.sc(ListDeployments)
|
|
14
|
+
.sc(ListDeployments$)
|
|
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 { ListEnvironments } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEnvironments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEnvironmentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEnvironmentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "ListEnvironments", {})
|
|
13
13
|
.n("AppConfigClient", "ListEnvironmentsCommand")
|
|
14
|
-
.sc(ListEnvironments)
|
|
14
|
+
.sc(ListEnvironments$)
|
|
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 { ListExtensionAssociations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListExtensionAssociations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListExtensionAssociationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListExtensionAssociationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "ListExtensionAssociations", {})
|
|
13
13
|
.n("AppConfigClient", "ListExtensionAssociationsCommand")
|
|
14
|
-
.sc(ListExtensionAssociations)
|
|
14
|
+
.sc(ListExtensionAssociations$)
|
|
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 { ListExtensions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListExtensions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListExtensionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListExtensionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "ListExtensions", {})
|
|
13
13
|
.n("AppConfigClient", "ListExtensionsCommand")
|
|
14
|
-
.sc(ListExtensions)
|
|
14
|
+
.sc(ListExtensions$)
|
|
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 { ListHostedConfigurationVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListHostedConfigurationVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListHostedConfigurationVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListHostedConfigurationVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "ListHostedConfigurationVersions", {})
|
|
13
13
|
.n("AppConfigClient", "ListHostedConfigurationVersionsCommand")
|
|
14
|
-
.sc(ListHostedConfigurationVersions)
|
|
14
|
+
.sc(ListHostedConfigurationVersions$)
|
|
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("AmazonAppConfig", "ListTagsForResource", {})
|
|
13
13
|
.n("AppConfigClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
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 { StartDeployment } from "../schemas/schemas_0";
|
|
4
|
+
import { StartDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartDeploymentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "StartDeployment", {})
|
|
13
13
|
.n("AppConfigClient", "StartDeploymentCommand")
|
|
14
|
-
.sc(StartDeployment)
|
|
14
|
+
.sc(StartDeployment$)
|
|
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 { StopDeployment } from "../schemas/schemas_0";
|
|
4
|
+
import { StopDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopDeploymentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "StopDeployment", {})
|
|
13
13
|
.n("AppConfigClient", "StopDeploymentCommand")
|
|
14
|
-
.sc(StopDeployment)
|
|
14
|
+
.sc(StopDeployment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|