@aws-sdk/client-appconfig 3.1019.0 → 3.1021.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.
Files changed (26) hide show
  1. package/dist-es/AppConfig.js +1 -1
  2. package/dist-es/waiters/waitForDeploymentComplete.js +1 -1
  3. package/dist-es/waiters/waitForEnvironmentReadyForDeployment.js +1 -1
  4. package/dist-types/AppConfig.d.ts +45 -45
  5. package/dist-types/AppConfigClient.d.ts +48 -48
  6. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  7. package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +1 -1
  8. package/dist-types/commands/GetConfigurationCommand.d.ts +1 -1
  9. package/dist-types/commands/GetHostedConfigurationVersionCommand.d.ts +1 -1
  10. package/dist-types/index.d.ts +1 -1
  11. package/dist-types/models/errors.d.ts +1 -1
  12. package/dist-types/models/models_0.d.ts +1 -1
  13. package/dist-types/pagination/ListApplicationsPaginator.d.ts +1 -1
  14. package/dist-types/pagination/ListConfigurationProfilesPaginator.d.ts +1 -1
  15. package/dist-types/pagination/ListDeploymentStrategiesPaginator.d.ts +1 -1
  16. package/dist-types/pagination/ListDeploymentsPaginator.d.ts +1 -1
  17. package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +1 -1
  18. package/dist-types/pagination/ListExtensionAssociationsPaginator.d.ts +1 -1
  19. package/dist-types/pagination/ListExtensionsPaginator.d.ts +1 -1
  20. package/dist-types/pagination/ListHostedConfigurationVersionsPaginator.d.ts +1 -1
  21. package/dist-types/ts3.4/AppConfigClient.d.ts +2 -3
  22. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  23. package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +1 -1
  24. package/dist-types/waiters/waitForDeploymentComplete.d.ts +3 -3
  25. package/dist-types/waiters/waitForEnvironmentReadyForDeployment.d.ts +3 -3
  26. package/package.json +16 -16
@@ -35,7 +35,7 @@ import { ListHostedConfigurationVersionsCommand, } from "./commands/ListHostedCo
35
35
  import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
36
36
  import { StartDeploymentCommand, } from "./commands/StartDeploymentCommand";
37
37
  import { StopDeploymentCommand, } from "./commands/StopDeploymentCommand";
38
- import { TagResourceCommand } from "./commands/TagResourceCommand";
38
+ import { TagResourceCommand, } from "./commands/TagResourceCommand";
39
39
  import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
40
40
  import { UpdateAccountSettingsCommand, } from "./commands/UpdateAccountSettingsCommand";
41
41
  import { UpdateApplicationCommand, } from "./commands/UpdateApplicationCommand";
@@ -1,4 +1,4 @@
1
- import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
1
+ import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
2
  import { GetDeploymentCommand } from "../commands/GetDeploymentCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
@@ -1,4 +1,4 @@
1
- import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
1
+ import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
2
  import { GetEnvironmentCommand } from "../commands/GetEnvironmentCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
@@ -1,51 +1,51 @@
1
1
  import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
2
2
  import type { WaiterResult } from "@smithy/util-waiter";
3
3
  import { AppConfigClient } from "./AppConfigClient";
4
- import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
5
- import { CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput } from "./commands/CreateConfigurationProfileCommand";
6
- import { CreateDeploymentStrategyCommandInput, CreateDeploymentStrategyCommandOutput } from "./commands/CreateDeploymentStrategyCommand";
7
- import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
8
- import { CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput } from "./commands/CreateExtensionAssociationCommand";
9
- import { CreateExtensionCommandInput, CreateExtensionCommandOutput } from "./commands/CreateExtensionCommand";
10
- import { CreateHostedConfigurationVersionCommandInput, CreateHostedConfigurationVersionCommandOutput } from "./commands/CreateHostedConfigurationVersionCommand";
11
- import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
12
- import { DeleteConfigurationProfileCommandInput, DeleteConfigurationProfileCommandOutput } from "./commands/DeleteConfigurationProfileCommand";
13
- import { DeleteDeploymentStrategyCommandInput, DeleteDeploymentStrategyCommandOutput } from "./commands/DeleteDeploymentStrategyCommand";
14
- import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
15
- import { DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput } from "./commands/DeleteExtensionAssociationCommand";
16
- import { DeleteExtensionCommandInput, DeleteExtensionCommandOutput } from "./commands/DeleteExtensionCommand";
17
- import { DeleteHostedConfigurationVersionCommandInput, DeleteHostedConfigurationVersionCommandOutput } from "./commands/DeleteHostedConfigurationVersionCommand";
18
- import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
19
- import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
20
- import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "./commands/GetConfigurationCommand";
21
- import { GetConfigurationProfileCommandInput, GetConfigurationProfileCommandOutput } from "./commands/GetConfigurationProfileCommand";
22
- import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand";
23
- import { GetDeploymentStrategyCommandInput, GetDeploymentStrategyCommandOutput } from "./commands/GetDeploymentStrategyCommand";
24
- import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
25
- import { GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput } from "./commands/GetExtensionAssociationCommand";
26
- import { GetExtensionCommandInput, GetExtensionCommandOutput } from "./commands/GetExtensionCommand";
27
- import { GetHostedConfigurationVersionCommandInput, GetHostedConfigurationVersionCommandOutput } from "./commands/GetHostedConfigurationVersionCommand";
28
- import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
29
- import { ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput } from "./commands/ListConfigurationProfilesCommand";
30
- import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "./commands/ListDeploymentsCommand";
31
- import { ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput } from "./commands/ListDeploymentStrategiesCommand";
32
- import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
33
- import { ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput } from "./commands/ListExtensionAssociationsCommand";
34
- import { ListExtensionsCommandInput, ListExtensionsCommandOutput } from "./commands/ListExtensionsCommand";
35
- import { ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput } from "./commands/ListHostedConfigurationVersionsCommand";
36
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
37
- import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
38
- import { StopDeploymentCommandInput, StopDeploymentCommandOutput } from "./commands/StopDeploymentCommand";
39
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
40
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
41
- import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput } from "./commands/UpdateAccountSettingsCommand";
42
- import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
43
- import { UpdateConfigurationProfileCommandInput, UpdateConfigurationProfileCommandOutput } from "./commands/UpdateConfigurationProfileCommand";
44
- import { UpdateDeploymentStrategyCommandInput, UpdateDeploymentStrategyCommandOutput } from "./commands/UpdateDeploymentStrategyCommand";
45
- import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
46
- import { UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput } from "./commands/UpdateExtensionAssociationCommand";
47
- import { UpdateExtensionCommandInput, UpdateExtensionCommandOutput } from "./commands/UpdateExtensionCommand";
48
- import { ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput } from "./commands/ValidateConfigurationCommand";
4
+ import { type CreateApplicationCommandInput, type CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
5
+ import { type CreateConfigurationProfileCommandInput, type CreateConfigurationProfileCommandOutput } from "./commands/CreateConfigurationProfileCommand";
6
+ import { type CreateDeploymentStrategyCommandInput, type CreateDeploymentStrategyCommandOutput } from "./commands/CreateDeploymentStrategyCommand";
7
+ import { type CreateEnvironmentCommandInput, type CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
8
+ import { type CreateExtensionAssociationCommandInput, type CreateExtensionAssociationCommandOutput } from "./commands/CreateExtensionAssociationCommand";
9
+ import { type CreateExtensionCommandInput, type CreateExtensionCommandOutput } from "./commands/CreateExtensionCommand";
10
+ import { type CreateHostedConfigurationVersionCommandInput, type CreateHostedConfigurationVersionCommandOutput } from "./commands/CreateHostedConfigurationVersionCommand";
11
+ import { type DeleteApplicationCommandInput, type DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
12
+ import { type DeleteConfigurationProfileCommandInput, type DeleteConfigurationProfileCommandOutput } from "./commands/DeleteConfigurationProfileCommand";
13
+ import { type DeleteDeploymentStrategyCommandInput, type DeleteDeploymentStrategyCommandOutput } from "./commands/DeleteDeploymentStrategyCommand";
14
+ import { type DeleteEnvironmentCommandInput, type DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
15
+ import { type DeleteExtensionAssociationCommandInput, type DeleteExtensionAssociationCommandOutput } from "./commands/DeleteExtensionAssociationCommand";
16
+ import { type DeleteExtensionCommandInput, type DeleteExtensionCommandOutput } from "./commands/DeleteExtensionCommand";
17
+ import { type DeleteHostedConfigurationVersionCommandInput, type DeleteHostedConfigurationVersionCommandOutput } from "./commands/DeleteHostedConfigurationVersionCommand";
18
+ import { type GetAccountSettingsCommandInput, type GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
19
+ import { type GetApplicationCommandInput, type GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
20
+ import { type GetConfigurationCommandInput, type GetConfigurationCommandOutput } from "./commands/GetConfigurationCommand";
21
+ import { type GetConfigurationProfileCommandInput, type GetConfigurationProfileCommandOutput } from "./commands/GetConfigurationProfileCommand";
22
+ import { type GetDeploymentCommandInput, type GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand";
23
+ import { type GetDeploymentStrategyCommandInput, type GetDeploymentStrategyCommandOutput } from "./commands/GetDeploymentStrategyCommand";
24
+ import { type GetEnvironmentCommandInput, type GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
25
+ import { type GetExtensionAssociationCommandInput, type GetExtensionAssociationCommandOutput } from "./commands/GetExtensionAssociationCommand";
26
+ import { type GetExtensionCommandInput, type GetExtensionCommandOutput } from "./commands/GetExtensionCommand";
27
+ import { type GetHostedConfigurationVersionCommandInput, type GetHostedConfigurationVersionCommandOutput } from "./commands/GetHostedConfigurationVersionCommand";
28
+ import { type ListApplicationsCommandInput, type ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
29
+ import { type ListConfigurationProfilesCommandInput, type ListConfigurationProfilesCommandOutput } from "./commands/ListConfigurationProfilesCommand";
30
+ import { type ListDeploymentsCommandInput, type ListDeploymentsCommandOutput } from "./commands/ListDeploymentsCommand";
31
+ import { type ListDeploymentStrategiesCommandInput, type ListDeploymentStrategiesCommandOutput } from "./commands/ListDeploymentStrategiesCommand";
32
+ import { type ListEnvironmentsCommandInput, type ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
33
+ import { type ListExtensionAssociationsCommandInput, type ListExtensionAssociationsCommandOutput } from "./commands/ListExtensionAssociationsCommand";
34
+ import { type ListExtensionsCommandInput, type ListExtensionsCommandOutput } from "./commands/ListExtensionsCommand";
35
+ import { type ListHostedConfigurationVersionsCommandInput, type ListHostedConfigurationVersionsCommandOutput } from "./commands/ListHostedConfigurationVersionsCommand";
36
+ import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
37
+ import { type StartDeploymentCommandInput, type StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
38
+ import { type StopDeploymentCommandInput, type StopDeploymentCommandOutput } from "./commands/StopDeploymentCommand";
39
+ import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
40
+ import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
41
+ import { type UpdateAccountSettingsCommandInput, type UpdateAccountSettingsCommandOutput } from "./commands/UpdateAccountSettingsCommand";
42
+ import { type UpdateApplicationCommandInput, type UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
43
+ import { type UpdateConfigurationProfileCommandInput, type UpdateConfigurationProfileCommandOutput } from "./commands/UpdateConfigurationProfileCommand";
44
+ import { type UpdateDeploymentStrategyCommandInput, type UpdateDeploymentStrategyCommandOutput } from "./commands/UpdateDeploymentStrategyCommand";
45
+ import { type UpdateEnvironmentCommandInput, type UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
46
+ import { type UpdateExtensionAssociationCommandInput, type UpdateExtensionAssociationCommandOutput } from "./commands/UpdateExtensionAssociationCommand";
47
+ import { type UpdateExtensionCommandInput, type UpdateExtensionCommandOutput } from "./commands/UpdateExtensionCommand";
48
+ import { type ValidateConfigurationCommandInput, type ValidateConfigurationCommandOutput } from "./commands/ValidateConfigurationCommand";
49
49
  export interface AppConfig {
50
50
  /**
51
51
  * @see {@link CreateApplicationCommand}
@@ -5,54 +5,54 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
5
5
  import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
8
- import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
8
+ import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
- import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
11
- import { CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput } from "./commands/CreateConfigurationProfileCommand";
12
- import { CreateDeploymentStrategyCommandInput, CreateDeploymentStrategyCommandOutput } from "./commands/CreateDeploymentStrategyCommand";
13
- import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
14
- import { CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput } from "./commands/CreateExtensionAssociationCommand";
15
- import { CreateExtensionCommandInput, CreateExtensionCommandOutput } from "./commands/CreateExtensionCommand";
16
- import { CreateHostedConfigurationVersionCommandInput, CreateHostedConfigurationVersionCommandOutput } from "./commands/CreateHostedConfigurationVersionCommand";
17
- import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
18
- import { DeleteConfigurationProfileCommandInput, DeleteConfigurationProfileCommandOutput } from "./commands/DeleteConfigurationProfileCommand";
19
- import { DeleteDeploymentStrategyCommandInput, DeleteDeploymentStrategyCommandOutput } from "./commands/DeleteDeploymentStrategyCommand";
20
- import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
21
- import { DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput } from "./commands/DeleteExtensionAssociationCommand";
22
- import { DeleteExtensionCommandInput, DeleteExtensionCommandOutput } from "./commands/DeleteExtensionCommand";
23
- import { DeleteHostedConfigurationVersionCommandInput, DeleteHostedConfigurationVersionCommandOutput } from "./commands/DeleteHostedConfigurationVersionCommand";
24
- import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
25
- import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
26
- import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "./commands/GetConfigurationCommand";
27
- import { GetConfigurationProfileCommandInput, GetConfigurationProfileCommandOutput } from "./commands/GetConfigurationProfileCommand";
28
- import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand";
29
- import { GetDeploymentStrategyCommandInput, GetDeploymentStrategyCommandOutput } from "./commands/GetDeploymentStrategyCommand";
30
- import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
31
- import { GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput } from "./commands/GetExtensionAssociationCommand";
32
- import { GetExtensionCommandInput, GetExtensionCommandOutput } from "./commands/GetExtensionCommand";
33
- import { GetHostedConfigurationVersionCommandInput, GetHostedConfigurationVersionCommandOutput } from "./commands/GetHostedConfigurationVersionCommand";
34
- import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
35
- import { ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput } from "./commands/ListConfigurationProfilesCommand";
36
- import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "./commands/ListDeploymentsCommand";
37
- import { ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput } from "./commands/ListDeploymentStrategiesCommand";
38
- import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
39
- import { ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput } from "./commands/ListExtensionAssociationsCommand";
40
- import { ListExtensionsCommandInput, ListExtensionsCommandOutput } from "./commands/ListExtensionsCommand";
41
- import { ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput } from "./commands/ListHostedConfigurationVersionsCommand";
42
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
43
- import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
44
- import { StopDeploymentCommandInput, StopDeploymentCommandOutput } from "./commands/StopDeploymentCommand";
45
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
46
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
47
- import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput } from "./commands/UpdateAccountSettingsCommand";
48
- import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
49
- import { UpdateConfigurationProfileCommandInput, UpdateConfigurationProfileCommandOutput } from "./commands/UpdateConfigurationProfileCommand";
50
- import { UpdateDeploymentStrategyCommandInput, UpdateDeploymentStrategyCommandOutput } from "./commands/UpdateDeploymentStrategyCommand";
51
- import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
52
- import { UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput } from "./commands/UpdateExtensionAssociationCommand";
53
- import { UpdateExtensionCommandInput, UpdateExtensionCommandOutput } from "./commands/UpdateExtensionCommand";
54
- import { ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput } from "./commands/ValidateConfigurationCommand";
55
- import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
10
+ import type { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
11
+ import type { CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput } from "./commands/CreateConfigurationProfileCommand";
12
+ import type { CreateDeploymentStrategyCommandInput, CreateDeploymentStrategyCommandOutput } from "./commands/CreateDeploymentStrategyCommand";
13
+ import type { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
14
+ import type { CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput } from "./commands/CreateExtensionAssociationCommand";
15
+ import type { CreateExtensionCommandInput, CreateExtensionCommandOutput } from "./commands/CreateExtensionCommand";
16
+ import type { CreateHostedConfigurationVersionCommandInput, CreateHostedConfigurationVersionCommandOutput } from "./commands/CreateHostedConfigurationVersionCommand";
17
+ import type { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
18
+ import type { DeleteConfigurationProfileCommandInput, DeleteConfigurationProfileCommandOutput } from "./commands/DeleteConfigurationProfileCommand";
19
+ import type { DeleteDeploymentStrategyCommandInput, DeleteDeploymentStrategyCommandOutput } from "./commands/DeleteDeploymentStrategyCommand";
20
+ import type { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
21
+ import type { DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput } from "./commands/DeleteExtensionAssociationCommand";
22
+ import type { DeleteExtensionCommandInput, DeleteExtensionCommandOutput } from "./commands/DeleteExtensionCommand";
23
+ import type { DeleteHostedConfigurationVersionCommandInput, DeleteHostedConfigurationVersionCommandOutput } from "./commands/DeleteHostedConfigurationVersionCommand";
24
+ import type { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
25
+ import type { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
26
+ import type { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "./commands/GetConfigurationCommand";
27
+ import type { GetConfigurationProfileCommandInput, GetConfigurationProfileCommandOutput } from "./commands/GetConfigurationProfileCommand";
28
+ import type { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand";
29
+ import type { GetDeploymentStrategyCommandInput, GetDeploymentStrategyCommandOutput } from "./commands/GetDeploymentStrategyCommand";
30
+ import type { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
31
+ import type { GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput } from "./commands/GetExtensionAssociationCommand";
32
+ import type { GetExtensionCommandInput, GetExtensionCommandOutput } from "./commands/GetExtensionCommand";
33
+ import type { GetHostedConfigurationVersionCommandInput, GetHostedConfigurationVersionCommandOutput } from "./commands/GetHostedConfigurationVersionCommand";
34
+ import type { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
35
+ import type { ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput } from "./commands/ListConfigurationProfilesCommand";
36
+ import type { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "./commands/ListDeploymentsCommand";
37
+ import type { ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput } from "./commands/ListDeploymentStrategiesCommand";
38
+ import type { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
39
+ import type { ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput } from "./commands/ListExtensionAssociationsCommand";
40
+ import type { ListExtensionsCommandInput, ListExtensionsCommandOutput } from "./commands/ListExtensionsCommand";
41
+ import type { ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput } from "./commands/ListHostedConfigurationVersionsCommand";
42
+ import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
43
+ import type { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
44
+ import type { StopDeploymentCommandInput, StopDeploymentCommandOutput } from "./commands/StopDeploymentCommand";
45
+ import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
46
+ import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
47
+ import type { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput } from "./commands/UpdateAccountSettingsCommand";
48
+ import type { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
49
+ import type { UpdateConfigurationProfileCommandInput, UpdateConfigurationProfileCommandOutput } from "./commands/UpdateConfigurationProfileCommand";
50
+ import type { UpdateDeploymentStrategyCommandInput, UpdateDeploymentStrategyCommandOutput } from "./commands/UpdateDeploymentStrategyCommand";
51
+ import type { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
52
+ import type { UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput } from "./commands/UpdateExtensionAssociationCommand";
53
+ import type { UpdateExtensionCommandInput, UpdateExtensionCommandOutput } from "./commands/UpdateExtensionCommand";
54
+ import type { ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput } from "./commands/ValidateConfigurationCommand";
55
+ import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
56
56
  import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
57
57
  export { __Client };
58
58
  /**
@@ -161,7 +161,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
161
161
  * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
162
162
  * @internal
163
163
  */
164
- defaultUserAgentProvider?: Provider<__UserAgent>;
164
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
165
165
  /**
166
166
  * Default credentials provider; Not available in browser runtime.
167
167
  * @deprecated
@@ -1,4 +1,4 @@
1
- import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types";
1
+ import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
2
2
  import type { AppConfigHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
3
  /**
4
4
  * @internal
@@ -2,7 +2,7 @@ import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
4
4
  import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
5
- import { CreateHostedConfigurationVersionRequest, HostedConfigurationVersion } from "../models/models_0";
5
+ import type { CreateHostedConfigurationVersionRequest, HostedConfigurationVersion } from "../models/models_0";
6
6
  /**
7
7
  * @public
8
8
  */
@@ -2,7 +2,7 @@ import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
4
4
  import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
5
- import { type GetConfigurationRequest, Configuration } from "../models/models_0";
5
+ import type { Configuration, GetConfigurationRequest } from "../models/models_0";
6
6
  /**
7
7
  * @public
8
8
  */
@@ -2,7 +2,7 @@ import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
4
4
  import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
5
- import { type GetHostedConfigurationVersionRequest, HostedConfigurationVersion } from "../models/models_0";
5
+ import type { GetHostedConfigurationVersionRequest, HostedConfigurationVersion } from "../models/models_0";
6
6
  /**
7
7
  * @public
8
8
  */
@@ -154,7 +154,7 @@
154
154
  */
155
155
  export * from "./AppConfigClient";
156
156
  export * from "./AppConfig";
157
- export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
157
+ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
158
158
  export type { RuntimeExtension } from "./runtimeExtensions";
159
159
  export type { AppConfigExtensionConfiguration } from "./extensionConfiguration";
160
160
  export * from "./commands";
@@ -1,6 +1,6 @@
1
1
  import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
3
- import { BadRequestReason, BytesMeasure } from "./enums";
3
+ import type { BadRequestReason, BytesMeasure } from "./enums";
4
4
  import type { BadRequestDetails } from "./models_0";
5
5
  /**
6
6
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
@@ -1,4 +1,4 @@
1
- import { ActionPoint, DeletionProtectionCheck, DeploymentEventType, DeploymentState, EnvironmentState, GrowthType, ReplicateTo, TriggeredBy, ValidatorType } from "./enums";
1
+ import type { ActionPoint, DeletionProtectionCheck, DeploymentEventType, DeploymentState, EnvironmentState, GrowthType, ReplicateTo, TriggeredBy, ValidatorType } from "./enums";
2
2
  /**
3
3
  * <p>A parameter to configure deletion protection. Deletion protection prevents a user from
4
4
  * deleting a configuration profile or an environment if AppConfig has called either
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
3
- import { AppConfigPaginationConfiguration } from "./Interfaces";
3
+ import type { AppConfigPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput } from "../commands/ListConfigurationProfilesCommand";
3
- import { AppConfigPaginationConfiguration } from "./Interfaces";
3
+ import type { AppConfigPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput } from "../commands/ListDeploymentStrategiesCommand";
3
- import { AppConfigPaginationConfiguration } from "./Interfaces";
3
+ import type { AppConfigPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "../commands/ListDeploymentsCommand";
3
- import { AppConfigPaginationConfiguration } from "./Interfaces";
3
+ import type { AppConfigPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
3
- import { AppConfigPaginationConfiguration } from "./Interfaces";
3
+ import type { AppConfigPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput } from "../commands/ListExtensionAssociationsCommand";
3
- import { AppConfigPaginationConfiguration } from "./Interfaces";
3
+ import type { AppConfigPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListExtensionsCommandInput, ListExtensionsCommandOutput } from "../commands/ListExtensionsCommand";
3
- import { AppConfigPaginationConfiguration } from "./Interfaces";
3
+ import type { AppConfigPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput } from "../commands/ListHostedConfigurationVersionsCommand";
3
- import { AppConfigPaginationConfiguration } from "./Interfaces";
3
+ import type { AppConfigPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -26,6 +26,7 @@ import {
26
26
  Client as __Client,
27
27
  } from "@smithy/smithy-client";
28
28
  import {
29
+ AwsCredentialIdentityProvider,
29
30
  BodyLengthCalculator as __BodyLengthCalculator,
30
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
31
32
  ChecksumConstructor as __ChecksumConstructor,
@@ -37,8 +38,6 @@ import {
37
38
  Provider as __Provider,
38
39
  StreamCollector as __StreamCollector,
39
40
  UrlParser as __UrlParser,
40
- AwsCredentialIdentityProvider,
41
- Provider,
42
41
  UserAgent as __UserAgent,
43
42
  } from "@smithy/types";
44
43
  import {
@@ -342,7 +341,7 @@ export interface ClientDefaults
342
341
  useFipsEndpoint?: boolean | __Provider<boolean>;
343
342
  region?: string | __Provider<string>;
344
343
  profile?: string;
345
- defaultUserAgentProvider?: Provider<__UserAgent>;
344
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
346
345
  credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
347
346
  maxAttempts?: number | __Provider<number>;
348
347
  retryMode?: string | __Provider<string>;
@@ -1,7 +1,7 @@
1
1
  import {
2
- HttpAuthScheme,
3
2
  AwsCredentialIdentity,
4
3
  AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
5
  } from "@smithy/types";
6
6
  import { AppConfigHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
@@ -6,7 +6,7 @@ import {
6
6
  ServiceInputTypes,
7
7
  ServiceOutputTypes,
8
8
  } from "../AppConfigClient";
9
- import { GetConfigurationRequest, Configuration } from "../models/models_0";
9
+ import { Configuration, GetConfigurationRequest } from "../models/models_0";
10
10
  export { __MetadataBearer };
11
11
  export { $Command };
12
12
  export interface GetConfigurationCommandInput extends GetConfigurationRequest {}
@@ -1,6 +1,6 @@
1
- import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { AppConfigClient } from "../AppConfigClient";
3
- import { GetDeploymentCommandInput } from "../commands/GetDeploymentCommand";
1
+ import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
+ import type { AppConfigClient } from "../AppConfigClient";
3
+ import { type GetDeploymentCommandInput } from "../commands/GetDeploymentCommand";
4
4
  /**
5
5
  *
6
6
  * @deprecated Use waitUntilDeploymentComplete instead. waitForDeploymentComplete does not throw error in non-success cases.
@@ -1,6 +1,6 @@
1
- import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { AppConfigClient } from "../AppConfigClient";
3
- import { GetEnvironmentCommandInput } from "../commands/GetEnvironmentCommand";
1
+ import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
+ import type { AppConfigClient } from "../AppConfigClient";
3
+ import { type GetEnvironmentCommandInput } from "../commands/GetEnvironmentCommand";
4
4
  /**
5
5
  *
6
6
  * @deprecated Use waitUntilEnvironmentReadyForDeployment instead. waitForEnvironmentReadyForDeployment does not throw error in non-success cases.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appconfig",
3
3
  "description": "AWS SDK for JavaScript Appconfig Client for Node.js, Browser and React Native",
4
- "version": "3.1019.0",
4
+ "version": "3.1021.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-appconfig",
@@ -21,44 +21,44 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.973.25",
25
- "@aws-sdk/credential-provider-node": "^3.972.27",
24
+ "@aws-sdk/core": "^3.973.26",
25
+ "@aws-sdk/credential-provider-node": "^3.972.29",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.8",
27
27
  "@aws-sdk/middleware-logger": "^3.972.8",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.9",
29
- "@aws-sdk/middleware-user-agent": "^3.972.26",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.28",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.10",
31
31
  "@aws-sdk/types": "^3.973.6",
32
32
  "@aws-sdk/util-endpoints": "^3.996.5",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.8",
34
- "@aws-sdk/util-user-agent-node": "^3.973.12",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.14",
35
35
  "@smithy/config-resolver": "^4.4.13",
36
- "@smithy/core": "^3.23.12",
36
+ "@smithy/core": "^3.23.13",
37
37
  "@smithy/fetch-http-handler": "^5.3.15",
38
38
  "@smithy/hash-node": "^4.2.12",
39
39
  "@smithy/invalid-dependency": "^4.2.12",
40
40
  "@smithy/middleware-content-length": "^4.2.12",
41
- "@smithy/middleware-endpoint": "^4.4.27",
42
- "@smithy/middleware-retry": "^4.4.44",
43
- "@smithy/middleware-serde": "^4.2.15",
41
+ "@smithy/middleware-endpoint": "^4.4.28",
42
+ "@smithy/middleware-retry": "^4.4.46",
43
+ "@smithy/middleware-serde": "^4.2.16",
44
44
  "@smithy/middleware-stack": "^4.2.12",
45
45
  "@smithy/node-config-provider": "^4.3.12",
46
- "@smithy/node-http-handler": "^4.5.0",
46
+ "@smithy/node-http-handler": "^4.5.1",
47
47
  "@smithy/protocol-http": "^5.3.12",
48
- "@smithy/smithy-client": "^4.12.7",
48
+ "@smithy/smithy-client": "^4.12.8",
49
49
  "@smithy/types": "^4.13.1",
50
50
  "@smithy/url-parser": "^4.2.12",
51
51
  "@smithy/util-base64": "^4.3.2",
52
52
  "@smithy/util-body-length-browser": "^4.2.2",
53
53
  "@smithy/util-body-length-node": "^4.2.3",
54
- "@smithy/util-defaults-mode-browser": "^4.3.43",
55
- "@smithy/util-defaults-mode-node": "^4.2.47",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.44",
55
+ "@smithy/util-defaults-mode-node": "^4.2.48",
56
56
  "@smithy/util-endpoints": "^3.3.3",
57
57
  "@smithy/util-middleware": "^4.2.12",
58
- "@smithy/util-retry": "^4.2.12",
59
- "@smithy/util-stream": "^4.5.20",
58
+ "@smithy/util-retry": "^4.2.13",
59
+ "@smithy/util-stream": "^4.5.21",
60
60
  "@smithy/util-utf8": "^4.2.2",
61
- "@smithy/util-waiter": "^4.2.13",
61
+ "@smithy/util-waiter": "^4.2.14",
62
62
  "tslib": "^2.6.2"
63
63
  },
64
64
  "devDependencies": {