@aws-sdk/client-appconfig 3.928.0 → 3.929.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 +1704 -1953
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/AppConfigClient.js +2 -0
- package/dist-es/commands/CreateApplicationCommand.js +3 -9
- package/dist-es/commands/CreateConfigurationProfileCommand.js +3 -10
- package/dist-es/commands/CreateDeploymentStrategyCommand.js +3 -9
- package/dist-es/commands/CreateEnvironmentCommand.js +3 -9
- package/dist-es/commands/CreateExtensionAssociationCommand.js +3 -9
- package/dist-es/commands/CreateExtensionCommand.js +3 -9
- package/dist-es/commands/CreateHostedConfigurationVersionCommand.js +3 -10
- package/dist-es/commands/DeleteApplicationCommand.js +3 -9
- package/dist-es/commands/DeleteConfigurationProfileCommand.js +3 -9
- package/dist-es/commands/DeleteDeploymentStrategyCommand.js +3 -9
- package/dist-es/commands/DeleteEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeleteExtensionAssociationCommand.js +3 -9
- package/dist-es/commands/DeleteExtensionCommand.js +3 -9
- package/dist-es/commands/DeleteHostedConfigurationVersionCommand.js +3 -9
- package/dist-es/commands/GetAccountSettingsCommand.js +3 -9
- package/dist-es/commands/GetApplicationCommand.js +3 -9
- package/dist-es/commands/GetConfigurationCommand.js +3 -10
- package/dist-es/commands/GetConfigurationProfileCommand.js +3 -10
- package/dist-es/commands/GetDeploymentCommand.js +3 -9
- package/dist-es/commands/GetDeploymentStrategyCommand.js +3 -9
- package/dist-es/commands/GetEnvironmentCommand.js +3 -9
- package/dist-es/commands/GetExtensionAssociationCommand.js +3 -9
- package/dist-es/commands/GetExtensionCommand.js +3 -9
- package/dist-es/commands/GetHostedConfigurationVersionCommand.js +3 -10
- package/dist-es/commands/ListApplicationsCommand.js +3 -9
- package/dist-es/commands/ListConfigurationProfilesCommand.js +3 -9
- package/dist-es/commands/ListDeploymentStrategiesCommand.js +3 -9
- package/dist-es/commands/ListDeploymentsCommand.js +3 -9
- package/dist-es/commands/ListEnvironmentsCommand.js +3 -9
- package/dist-es/commands/ListExtensionAssociationsCommand.js +3 -9
- package/dist-es/commands/ListExtensionsCommand.js +3 -9
- package/dist-es/commands/ListHostedConfigurationVersionsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartDeploymentCommand.js +3 -10
- package/dist-es/commands/StopDeploymentCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateAccountSettingsCommand.js +3 -9
- package/dist-es/commands/UpdateApplicationCommand.js +3 -9
- package/dist-es/commands/UpdateConfigurationProfileCommand.js +3 -10
- package/dist-es/commands/UpdateDeploymentStrategyCommand.js +3 -9
- package/dist-es/commands/UpdateEnvironmentCommand.js +3 -9
- package/dist-es/commands/UpdateExtensionAssociationCommand.js +3 -9
- package/dist-es/commands/UpdateExtensionCommand.js +3 -9
- package/dist-es/commands/ValidateConfigurationCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -33
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1632 -0
- package/dist-types/AppConfigClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -32
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/AppConfigClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -22
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +163 -0
- package/package.json +2 -2
- package/dist-es/protocols/Aws_restJson1.js +0 -1615
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -407
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -545
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
1
|
import { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
|
|
3
2
|
export const ActionPoint = {
|
|
4
3
|
AT_DEPLOYMENT_TICK: "AT_DEPLOYMENT_TICK",
|
|
@@ -168,35 +167,3 @@ export const DeploymentState = {
|
|
|
168
167
|
ROLLING_BACK: "ROLLING_BACK",
|
|
169
168
|
VALIDATING: "VALIDATING",
|
|
170
169
|
};
|
|
171
|
-
export const ValidatorFilterSensitiveLog = (obj) => ({
|
|
172
|
-
...obj,
|
|
173
|
-
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
174
|
-
});
|
|
175
|
-
export const ConfigurationProfileFilterSensitiveLog = (obj) => ({
|
|
176
|
-
...obj,
|
|
177
|
-
...(obj.Validators && { Validators: obj.Validators.map((item) => ValidatorFilterSensitiveLog(item)) }),
|
|
178
|
-
});
|
|
179
|
-
export const CreateConfigurationProfileRequestFilterSensitiveLog = (obj) => ({
|
|
180
|
-
...obj,
|
|
181
|
-
...(obj.Validators && { Validators: obj.Validators.map((item) => ValidatorFilterSensitiveLog(item)) }),
|
|
182
|
-
});
|
|
183
|
-
export const CreateHostedConfigurationVersionRequestFilterSensitiveLog = (obj) => ({
|
|
184
|
-
...obj,
|
|
185
|
-
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
186
|
-
});
|
|
187
|
-
export const HostedConfigurationVersionFilterSensitiveLog = (obj) => ({
|
|
188
|
-
...obj,
|
|
189
|
-
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
190
|
-
});
|
|
191
|
-
export const ConfigurationFilterSensitiveLog = (obj) => ({
|
|
192
|
-
...obj,
|
|
193
|
-
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
194
|
-
});
|
|
195
|
-
export const StartDeploymentRequestFilterSensitiveLog = (obj) => ({
|
|
196
|
-
...obj,
|
|
197
|
-
...(obj.DynamicExtensionParameters && { DynamicExtensionParameters: SENSITIVE_STRING }),
|
|
198
|
-
});
|
|
199
|
-
export const UpdateConfigurationProfileRequestFilterSensitiveLog = (obj) => ({
|
|
200
|
-
...obj,
|
|
201
|
-
...(obj.Validators && { Validators: obj.Validators.map((item) => ValidatorFilterSensitiveLog(item)) }),
|
|
202
|
-
});
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
3
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
4
5
|
import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
@@ -22,6 +23,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
22
23
|
},
|
|
23
24
|
],
|
|
24
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.appconfig" }),
|
|
25
27
|
serviceId: config?.serviceId ?? "AppConfig",
|
|
26
28
|
urlParser: config?.urlParser ?? parseUrl,
|
|
27
29
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|