@aws-sdk/client-appconfig 3.40.0 → 3.45.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/CHANGELOG.md +41 -0
- package/README.md +19 -24
- package/dist-cjs/endpoints.js +9 -0
- package/dist-cjs/models/models_0.js +29 -2
- package/dist-cjs/protocols/Aws_restJson1.js +49 -0
- package/dist-es/endpoints.js +9 -0
- package/dist-es/models/models_0.js +28 -1
- package/dist-es/protocols/Aws_restJson1.js +51 -4
- package/dist-types/AppConfig.d.ts +75 -70
- package/dist-types/AppConfigClient.d.ts +19 -23
- package/dist-types/commands/CreateApplicationCommand.d.ts +6 -5
- package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +14 -10
- package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +5 -5
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +9 -8
- package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +2 -2
- package/dist-types/commands/DeleteApplicationCommand.d.ts +2 -2
- package/dist-types/commands/DeleteConfigurationProfileCommand.d.ts +2 -2
- package/dist-types/commands/DeleteDeploymentStrategyCommand.d.ts +2 -2
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +2 -2
- package/dist-types/commands/DeleteHostedConfigurationVersionCommand.d.ts +3 -2
- package/dist-types/commands/GetApplicationCommand.d.ts +2 -2
- package/dist-types/commands/GetConfigurationCommand.d.ts +4 -4
- package/dist-types/commands/GetConfigurationProfileCommand.d.ts +2 -2
- package/dist-types/commands/GetDeploymentCommand.d.ts +2 -2
- package/dist-types/commands/GetDeploymentStrategyCommand.d.ts +3 -3
- package/dist-types/commands/GetEnvironmentCommand.d.ts +2 -2
- package/dist-types/commands/GetHostedConfigurationVersionCommand.d.ts +2 -2
- package/dist-types/commands/ListApplicationsCommand.d.ts +2 -2
- package/dist-types/commands/ListConfigurationProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListDeploymentStrategiesCommand.d.ts +2 -2
- package/dist-types/commands/ListDeploymentsCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +2 -2
- package/dist-types/commands/ListHostedConfigurationVersionsCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartDeploymentCommand.d.ts +1 -1
- package/dist-types/commands/StopDeploymentCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConfigurationProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDeploymentStrategyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/ValidateConfigurationCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +152 -46
- package/dist-types/ts3.4/models/models_0.d.ts +53 -1
- package/package.json +6 -6
|
@@ -7,7 +7,8 @@ export interface DeleteHostedConfigurationVersionCommandInput extends DeleteHost
|
|
|
7
7
|
export interface DeleteHostedConfigurationVersionCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Deletes a version of a configuration from the AppConfig hosted configuration
|
|
11
|
+
* store.</p>
|
|
11
12
|
* @example
|
|
12
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
14
|
* ```javascript
|
|
@@ -20,7 +21,7 @@ export interface DeleteHostedConfigurationVersionCommandOutput extends __Metadat
|
|
|
20
21
|
*
|
|
21
22
|
* @see {@link DeleteHostedConfigurationVersionCommandInput} for command's `input` shape.
|
|
22
23
|
* @see {@link DeleteHostedConfigurationVersionCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
25
|
*
|
|
25
26
|
*/
|
|
26
27
|
export declare class DeleteHostedConfigurationVersionCommand extends $Command<DeleteHostedConfigurationVersionCommandInput, DeleteHostedConfigurationVersionCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface GetApplicationCommandInput extends GetApplicationRequest {
|
|
|
7
7
|
export interface GetApplicationCommandOutput extends Application, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about an application.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -20,7 +20,7 @@ export interface GetApplicationCommandOutput extends Application, __MetadataBear
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetApplicationCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetApplicationCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,10 +7,10 @@ export interface GetConfigurationCommandInput extends GetConfigurationRequest {
|
|
|
7
7
|
export interface GetConfigurationCommandOutput extends Configuration, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about a configuration.</p>
|
|
11
11
|
* <important>
|
|
12
|
-
* <p>
|
|
13
|
-
*
|
|
12
|
+
* <p>AppConfig uses the value of the <code>ClientConfigurationVersion</code> parameter to
|
|
13
|
+
* identify the configuration version on your clients. If you don’t send
|
|
14
14
|
* <code>ClientConfigurationVersion</code> with each call to
|
|
15
15
|
* <code>GetConfiguration</code>, your clients receive the current configuration. You
|
|
16
16
|
* are charged each time your clients receive a configuration.</p>
|
|
@@ -32,7 +32,7 @@ export interface GetConfigurationCommandOutput extends Configuration, __Metadata
|
|
|
32
32
|
*
|
|
33
33
|
* @see {@link GetConfigurationCommandInput} for command's `input` shape.
|
|
34
34
|
* @see {@link GetConfigurationCommandOutput} for command's `response` shape.
|
|
35
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
35
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
36
36
|
*
|
|
37
37
|
*/
|
|
38
38
|
export declare class GetConfigurationCommand extends $Command<GetConfigurationCommandInput, GetConfigurationCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface GetConfigurationProfileCommandInput extends GetConfigurationPro
|
|
|
7
7
|
export interface GetConfigurationProfileCommandOutput extends ConfigurationProfile, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about a configuration profile.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -20,7 +20,7 @@ export interface GetConfigurationProfileCommandOutput extends ConfigurationProfi
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetConfigurationProfileCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetConfigurationProfileCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetConfigurationProfileCommand extends $Command<GetConfigurationProfileCommandInput, GetConfigurationProfileCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface GetDeploymentCommandInput extends GetDeploymentRequest {
|
|
|
7
7
|
export interface GetDeploymentCommandOutput extends Deployment, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about a configuration deployment.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -20,7 +20,7 @@ export interface GetDeploymentCommandOutput extends Deployment, __MetadataBearer
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetDeploymentCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetDeploymentCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetDeploymentCommand extends $Command<GetDeploymentCommandInput, GetDeploymentCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,9 +7,9 @@ export interface GetDeploymentStrategyCommandInput extends GetDeploymentStrategy
|
|
|
7
7
|
export interface GetDeploymentStrategyCommandOutput extends DeploymentStrategy, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about a deployment strategy. A deployment strategy defines
|
|
11
11
|
* important criteria for rolling out your configuration to the designated targets. A
|
|
12
|
-
* deployment strategy includes
|
|
12
|
+
* deployment strategy includes the overall duration required, a percentage of targets to
|
|
13
13
|
* receive the deployment during each interval, an algorithm that defines how percentage
|
|
14
14
|
* grows, and bake time.</p>
|
|
15
15
|
* @example
|
|
@@ -24,7 +24,7 @@ export interface GetDeploymentStrategyCommandOutput extends DeploymentStrategy,
|
|
|
24
24
|
*
|
|
25
25
|
* @see {@link GetDeploymentStrategyCommandInput} for command's `input` shape.
|
|
26
26
|
* @see {@link GetDeploymentStrategyCommandOutput} for command's `response` shape.
|
|
27
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
27
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
28
28
|
*
|
|
29
29
|
*/
|
|
30
30
|
export declare class GetDeploymentStrategyCommand extends $Command<GetDeploymentStrategyCommandInput, GetDeploymentStrategyCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {
|
|
|
7
7
|
export interface GetEnvironmentCommandOutput extends Environment, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about an environment. An environment is a logical deployment group
|
|
11
11
|
* of AppConfig applications, such as applications in a <code>Production</code> environment or
|
|
12
12
|
* in an <code>EU_Region</code> environment. Each configuration deployment targets an
|
|
13
13
|
* environment. You can enable one or more Amazon CloudWatch alarms for an environment. If an alarm is
|
|
@@ -24,7 +24,7 @@ export interface GetEnvironmentCommandOutput extends Environment, __MetadataBear
|
|
|
24
24
|
*
|
|
25
25
|
* @see {@link GetEnvironmentCommandInput} for command's `input` shape.
|
|
26
26
|
* @see {@link GetEnvironmentCommandOutput} for command's `response` shape.
|
|
27
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
27
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
28
28
|
*
|
|
29
29
|
*/
|
|
30
30
|
export declare class GetEnvironmentCommand extends $Command<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface GetHostedConfigurationVersionCommandInput extends GetHostedConf
|
|
|
7
7
|
export interface GetHostedConfigurationVersionCommandOutput extends HostedConfigurationVersion, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about a specific configuration version.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -20,7 +20,7 @@ export interface GetHostedConfigurationVersionCommandOutput extends HostedConfig
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetHostedConfigurationVersionCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetHostedConfigurationVersionCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetHostedConfigurationVersionCommand extends $Command<GetHostedConfigurationVersionCommandInput, GetHostedConfigurationVersionCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface ListApplicationsCommandInput extends ListApplicationsRequest {
|
|
|
7
7
|
export interface ListApplicationsCommandOutput extends Applications, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Lists all applications in your Amazon Web Services account.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -20,7 +20,7 @@ export interface ListApplicationsCommandOutput extends Applications, __MetadataB
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListApplicationsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListApplicationsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListConfigurationProfilesCommandOutput extends ConfigurationPro
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListConfigurationProfilesCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListConfigurationProfilesCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListConfigurationProfilesCommand extends $Command<ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface ListDeploymentStrategiesCommandInput extends ListDeploymentStra
|
|
|
7
7
|
export interface ListDeploymentStrategiesCommandOutput extends DeploymentStrategies, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Lists deployment strategies.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -20,7 +20,7 @@ export interface ListDeploymentStrategiesCommandOutput extends DeploymentStrateg
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListDeploymentStrategiesCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListDeploymentStrategiesCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListDeploymentStrategiesCommand extends $Command<ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListDeploymentsCommandOutput extends Deployments, __MetadataBea
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListDeploymentsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListDeploymentsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListDeploymentsCommand extends $Command<ListDeploymentsCommandInput, ListDeploymentsCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface ListEnvironmentsCommandInput extends ListEnvironmentsRequest {
|
|
|
7
7
|
export interface ListEnvironmentsCommandOutput extends Environments, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Lists the environments for an application.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -20,7 +20,7 @@ export interface ListEnvironmentsCommandOutput extends Environments, __MetadataB
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListEnvironmentsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListEnvironmentsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListEnvironmentsCommand extends $Command<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface ListHostedConfigurationVersionsCommandInput extends ListHostedC
|
|
|
7
7
|
export interface ListHostedConfigurationVersionsCommandOutput extends HostedConfigurationVersions, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Lists configurations stored in the AppConfig hosted configuration store by
|
|
11
11
|
* version.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -21,7 +21,7 @@ export interface ListHostedConfigurationVersionsCommandOutput extends HostedConf
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link ListHostedConfigurationVersionsCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link ListHostedConfigurationVersionsCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class ListHostedConfigurationVersionsCommand extends $Command<ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListTagsForResourceCommandOutput extends ResourceTags, __Metada
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StartDeploymentCommandOutput extends Deployment, __MetadataBear
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StartDeploymentCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StartDeploymentCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StartDeploymentCommand extends $Command<StartDeploymentCommandInput, StartDeploymentCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface StopDeploymentCommandOutput extends Deployment, __MetadataBeare
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link StopDeploymentCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link StopDeploymentCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class StopDeploymentCommand extends $Command<StopDeploymentCommandInput, StopDeploymentCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,9 +7,11 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
7
7
|
export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
11
|
-
*
|
|
12
|
-
*
|
|
10
|
+
* <p>Assigns
|
|
11
|
+
* metadata
|
|
12
|
+
* to an AppConfig resource. Tags help organize and categorize your AppConfig resources. Each
|
|
13
|
+
* tag consists of a key and an optional value, both of which you define. You can specify a
|
|
14
|
+
* maximum of 50 tags for a resource.</p>
|
|
13
15
|
* @example
|
|
14
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
17
|
* ```javascript
|
|
@@ -22,7 +24,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
22
24
|
*
|
|
23
25
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
24
26
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
27
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
26
28
|
*
|
|
27
29
|
*/
|
|
28
30
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateApplicationCommandOutput extends Application, __MetadataB
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateApplicationCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateConfigurationProfileCommandOutput extends ConfigurationPr
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateConfigurationProfileCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateConfigurationProfileCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateConfigurationProfileCommand extends $Command<UpdateConfigurationProfileCommandInput, UpdateConfigurationProfileCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateDeploymentStrategyCommandOutput extends DeploymentStrateg
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateDeploymentStrategyCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateDeploymentStrategyCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateDeploymentStrategyCommand extends $Command<UpdateDeploymentStrategyCommandInput, UpdateDeploymentStrategyCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateEnvironmentCommandOutput extends Environment, __MetadataB
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateEnvironmentCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateEnvironmentCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateEnvironmentCommand extends $Command<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ValidateConfigurationCommandOutput extends __MetadataBearer {
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ValidateConfigurationCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ValidateConfigurationCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ValidateConfigurationCommand extends $Command<ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput, AppConfigClientResolvedConfig> {
|