@aws-sdk/client-appconfig 3.952.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
|
@@ -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 { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "TagResource", {})
|
|
13
13
|
.n("AppConfigClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
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 { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "UntagResource", {})
|
|
13
13
|
.n("AppConfigClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
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 { UpdateAccountSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAccountSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAccountSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAccountSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "UpdateAccountSettings", {})
|
|
13
13
|
.n("AppConfigClient", "UpdateAccountSettingsCommand")
|
|
14
|
-
.sc(UpdateAccountSettings)
|
|
14
|
+
.sc(UpdateAccountSettings$)
|
|
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("AmazonAppConfig", "UpdateApplication", {})
|
|
13
13
|
.n("AppConfigClient", "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 { UpdateConfigurationProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateConfigurationProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateConfigurationProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateConfigurationProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "UpdateConfigurationProfile", {})
|
|
13
13
|
.n("AppConfigClient", "UpdateConfigurationProfileCommand")
|
|
14
|
-
.sc(UpdateConfigurationProfile)
|
|
14
|
+
.sc(UpdateConfigurationProfile$)
|
|
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 { UpdateDeploymentStrategy } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateDeploymentStrategy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateDeploymentStrategyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateDeploymentStrategyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "UpdateDeploymentStrategy", {})
|
|
13
13
|
.n("AppConfigClient", "UpdateDeploymentStrategyCommand")
|
|
14
|
-
.sc(UpdateDeploymentStrategy)
|
|
14
|
+
.sc(UpdateDeploymentStrategy$)
|
|
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("AmazonAppConfig", "UpdateEnvironment", {})
|
|
13
13
|
.n("AppConfigClient", "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 { UpdateExtensionAssociation } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateExtensionAssociation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateExtensionAssociationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateExtensionAssociationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "UpdateExtensionAssociation", {})
|
|
13
13
|
.n("AppConfigClient", "UpdateExtensionAssociationCommand")
|
|
14
|
-
.sc(UpdateExtensionAssociation)
|
|
14
|
+
.sc(UpdateExtensionAssociation$)
|
|
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 { UpdateExtension } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateExtension$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateExtensionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateExtensionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "UpdateExtension", {})
|
|
13
13
|
.n("AppConfigClient", "UpdateExtensionCommand")
|
|
14
|
-
.sc(UpdateExtension)
|
|
14
|
+
.sc(UpdateExtension$)
|
|
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 { ValidateConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { ValidateConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ValidateConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ValidateConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonAppConfig", "ValidateConfiguration", {})
|
|
13
13
|
.n("AppConfigClient", "ValidateConfigurationCommand")
|
|
14
|
-
.sc(ValidateConfiguration)
|
|
14
|
+
.sc(ValidateConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.appconfig",
|
|
29
|
+
version: "2019-10-09",
|
|
30
|
+
serviceTarget: "AmazonAppConfig",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "AppConfig",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|