@aws-sdk/client-appconfig 3.39.0 → 3.43.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 +74 -5
- package/dist-cjs/models/models_0.js +29 -2
- package/dist-cjs/protocols/Aws_restJson1.js +49 -0
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-es/endpoints.js +74 -5
- package/dist-es/models/models_0.js +28 -1
- package/dist-es/protocols/Aws_restJson1.js +51 -4
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-types/AppConfig.d.ts +75 -70
- package/dist-types/AppConfigClient.d.ts +27 -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/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/AppConfigClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +53 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +23 -23
|
@@ -7,10 +7,11 @@ export interface CreateApplicationCommandInput extends CreateApplicationRequest
|
|
|
7
7
|
export interface CreateApplicationCommandOutput extends Application, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>An application in AppConfig is a logical unit of code that
|
|
11
|
-
* customers. For example, an application can be a microservice
|
|
12
|
-
* a mobile application installed by your users, a serverless
|
|
13
|
-
* Gateway and
|
|
10
|
+
* <p>Creates an application. An application in AppConfig is a logical unit of code that
|
|
11
|
+
* provides capabilities for your customers. For example, an application can be a microservice
|
|
12
|
+
* that runs on Amazon EC2 instances, a mobile application installed by your users, a serverless
|
|
13
|
+
* application using Amazon API Gateway and Lambda, or any system you run on behalf of
|
|
14
|
+
* others.</p>
|
|
14
15
|
* @example
|
|
15
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
17
|
* ```javascript
|
|
@@ -23,7 +24,7 @@ export interface CreateApplicationCommandOutput extends Application, __MetadataB
|
|
|
23
24
|
*
|
|
24
25
|
* @see {@link CreateApplicationCommandInput} for command's `input` shape.
|
|
25
26
|
* @see {@link CreateApplicationCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
27
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
27
28
|
*
|
|
28
29
|
*/
|
|
29
30
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,24 +7,28 @@ export interface CreateConfigurationProfileCommandInput extends CreateConfigurat
|
|
|
7
7
|
export interface CreateConfigurationProfileCommandOutput extends ConfigurationProfile, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
11
|
-
* configuration
|
|
12
|
-
* Amazon
|
|
10
|
+
* <p>Creates a configuration profile, which is information that enables AppConfig to access
|
|
11
|
+
* the configuration source. Valid configuration sources include the AppConfig hosted
|
|
12
|
+
* configuration store, Amazon Web Services Systems Manager (SSM) documents, SSM Parameter Store parameters, Amazon S3
|
|
13
|
+
* objects, or any <a href="http://docs.aws.amazon.com/codepipeline/latest/userguide/integrations-action-type.html#integrations-source">integration source
|
|
14
|
+
* action</a> supported by CodePipeline. A configuration profile includes the following
|
|
15
|
+
* information:</p>
|
|
16
|
+
*
|
|
13
17
|
* <ul>
|
|
14
18
|
* <li>
|
|
15
|
-
* <p>The
|
|
19
|
+
* <p>The URI location of the configuration data.</p>
|
|
16
20
|
* </li>
|
|
17
21
|
* <li>
|
|
18
|
-
* <p>The
|
|
22
|
+
* <p>The Identity and Access Management (IAM) role that provides access to the configuration data.</p>
|
|
19
23
|
* </li>
|
|
20
24
|
* <li>
|
|
21
25
|
* <p>A validator for the configuration data. Available validators include either a JSON
|
|
22
|
-
* Schema or an
|
|
26
|
+
* Schema or an Lambda function.</p>
|
|
23
27
|
* </li>
|
|
24
28
|
* </ul>
|
|
25
|
-
* <p>For more information, see <a href="http://docs.aws.amazon.com/
|
|
26
|
-
* Configuration and a Configuration Profile</a> in the
|
|
27
|
-
*
|
|
29
|
+
* <p>For more information, see <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-creating-configuration-and-profile.html">Create a
|
|
30
|
+
* Configuration and a Configuration Profile</a> in the <i>AppConfig User
|
|
31
|
+
* Guide</i>.</p>
|
|
28
32
|
* @example
|
|
29
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
34
|
* ```javascript
|
|
@@ -37,7 +41,7 @@ export interface CreateConfigurationProfileCommandOutput extends ConfigurationPr
|
|
|
37
41
|
*
|
|
38
42
|
* @see {@link CreateConfigurationProfileCommandInput} for command's `input` shape.
|
|
39
43
|
* @see {@link CreateConfigurationProfileCommandOutput} for command's `response` shape.
|
|
40
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
44
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
41
45
|
*
|
|
42
46
|
*/
|
|
43
47
|
export declare class CreateConfigurationProfileCommand extends $Command<CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,10 +7,10 @@ export interface CreateDeploymentStrategyCommandInput extends CreateDeploymentSt
|
|
|
7
7
|
export interface CreateDeploymentStrategyCommandOutput extends DeploymentStrategy, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
11
|
-
* the designated targets. A deployment strategy includes
|
|
12
|
-
* percentage of targets to receive the deployment during each interval,
|
|
13
|
-
* defines how percentage grows, and bake time.</p>
|
|
10
|
+
* <p>Creates a deployment strategy that defines important criteria for rolling out your
|
|
11
|
+
* configuration to the designated targets. A deployment strategy includes the overall
|
|
12
|
+
* duration required, a percentage of targets to receive the deployment during each interval,
|
|
13
|
+
* an algorithm that defines how percentage grows, and bake time.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -23,7 +23,7 @@ export interface CreateDeploymentStrategyCommandOutput extends DeploymentStrateg
|
|
|
23
23
|
*
|
|
24
24
|
* @see {@link CreateDeploymentStrategyCommandInput} for command's `input` shape.
|
|
25
25
|
* @see {@link CreateDeploymentStrategyCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
26
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
27
27
|
*
|
|
28
28
|
*/
|
|
29
29
|
export declare class CreateDeploymentStrategyCommand extends $Command<CreateDeploymentStrategyCommandInput, CreateDeploymentStrategyCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,13 +7,14 @@ export interface CreateEnvironmentCommandInput extends CreateEnvironmentRequest
|
|
|
7
7
|
export interface CreateEnvironmentCommandOutput extends Environment, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>For each application, you define one or more environments. An
|
|
11
|
-
* deployment group of AppConfig targets, such as applications in a
|
|
12
|
-
* <code>Production</code> environment. You can also define
|
|
13
|
-
* subcomponents such as the <code>Web</code>,
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
* system rolls back the
|
|
10
|
+
* <p>Creates an environment. For each application, you define one or more environments. An
|
|
11
|
+
* environment is a logical deployment group of AppConfig targets, such as applications in a
|
|
12
|
+
* <code>Beta</code> or <code>Production</code> environment. You can also define
|
|
13
|
+
* environments for application subcomponents such as the <code>Web</code>,
|
|
14
|
+
* <code>Mobile</code> and <code>Back-end</code> components for your application. You can
|
|
15
|
+
* configure Amazon CloudWatch alarms for each environment. The system monitors alarms during a
|
|
16
|
+
* configuration deployment. If an alarm is triggered, the system rolls back the
|
|
17
|
+
* configuration.</p>
|
|
17
18
|
* @example
|
|
18
19
|
* Use a bare-bones client and the command you need to make an API call.
|
|
19
20
|
* ```javascript
|
|
@@ -26,7 +27,7 @@ export interface CreateEnvironmentCommandOutput extends Environment, __MetadataB
|
|
|
26
27
|
*
|
|
27
28
|
* @see {@link CreateEnvironmentCommandInput} for command's `input` shape.
|
|
28
29
|
* @see {@link CreateEnvironmentCommandOutput} for command's `response` shape.
|
|
29
|
-
* @see {@link AppConfigClientResolvedConfig | config} for
|
|
30
|
+
* @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
|
|
30
31
|
*
|
|
31
32
|
*/
|
|
32
33
|
export declare class CreateEnvironmentCommand extends $Command<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface CreateHostedConfigurationVersionCommandInput extends CreateHost
|
|
|
7
7
|
export interface CreateHostedConfigurationVersionCommandOutput extends HostedConfigurationVersion, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Creates a new configuration in the AppConfig hosted configuration store.</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 CreateHostedConfigurationVersionCommandOutput extends HostedCon
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateHostedConfigurationVersionCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateHostedConfigurationVersionCommandOutput} 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 CreateHostedConfigurationVersionCommand extends $Command<CreateHostedConfigurationVersionCommandInput, CreateHostedConfigurationVersionCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface DeleteApplicationCommandInput extends DeleteApplicationRequest
|
|
|
7
7
|
export interface DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Deletes an application. Deleting an application does not delete a configuration from a
|
|
11
11
|
* host.</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 DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link DeleteApplicationCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link DeleteApplicationCommandOutput} 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 DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface DeleteConfigurationProfileCommandInput extends DeleteConfigurat
|
|
|
7
7
|
export interface DeleteConfigurationProfileCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Deletes a configuration profile. Deleting a configuration profile does not delete a
|
|
11
11
|
* configuration from a host.</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 DeleteConfigurationProfileCommandOutput extends __MetadataBeare
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link DeleteConfigurationProfileCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link DeleteConfigurationProfileCommandOutput} 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 DeleteConfigurationProfileCommand extends $Command<DeleteConfigurationProfileCommandInput, DeleteConfigurationProfileCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface DeleteDeploymentStrategyCommandInput extends DeleteDeploymentSt
|
|
|
7
7
|
export interface DeleteDeploymentStrategyCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Deletes a deployment strategy. Deleting a deployment strategy does not delete a
|
|
11
11
|
* configuration from a host.</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 DeleteDeploymentStrategyCommandOutput extends __MetadataBearer
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link DeleteDeploymentStrategyCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link DeleteDeploymentStrategyCommandOutput} 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 DeleteDeploymentStrategyCommand extends $Command<DeleteDeploymentStrategyCommandInput, DeleteDeploymentStrategyCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface DeleteEnvironmentCommandInput extends DeleteEnvironmentRequest
|
|
|
7
7
|
export interface DeleteEnvironmentCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Deletes an environment. Deleting an environment does not delete a configuration from a
|
|
11
11
|
* host.</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 DeleteEnvironmentCommandOutput extends __MetadataBearer {
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link DeleteEnvironmentCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link DeleteEnvironmentCommandOutput} 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 DeleteEnvironmentCommand extends $Command<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, AppConfigClientResolvedConfig> {
|
|
@@ -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> {
|