@aws-sdk/client-appconfig 3.127.0 → 3.130.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 (82) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +24 -23
  3. package/dist-cjs/AppConfig.js +150 -0
  4. package/dist-cjs/commands/CreateExtensionAssociationCommand.js +36 -0
  5. package/dist-cjs/commands/CreateExtensionCommand.js +36 -0
  6. package/dist-cjs/commands/DeleteExtensionAssociationCommand.js +36 -0
  7. package/dist-cjs/commands/DeleteExtensionCommand.js +36 -0
  8. package/dist-cjs/commands/GetExtensionAssociationCommand.js +36 -0
  9. package/dist-cjs/commands/GetExtensionCommand.js +36 -0
  10. package/dist-cjs/commands/ListExtensionAssociationsCommand.js +36 -0
  11. package/dist-cjs/commands/ListExtensionsCommand.js +36 -0
  12. package/dist-cjs/commands/UpdateExtensionAssociationCommand.js +36 -0
  13. package/dist-cjs/commands/UpdateExtensionCommand.js +36 -0
  14. package/dist-cjs/commands/index.js +10 -0
  15. package/dist-cjs/endpoints.js +19 -2
  16. package/dist-cjs/models/models_0.js +146 -16
  17. package/dist-cjs/pagination/ListExtensionAssociationsPaginator.js +36 -0
  18. package/dist-cjs/pagination/ListExtensionsPaginator.js +36 -0
  19. package/dist-cjs/pagination/index.js +2 -0
  20. package/dist-cjs/protocols/Aws_restJson1.js +1107 -38
  21. package/dist-es/AppConfig.js +150 -0
  22. package/dist-es/commands/CreateExtensionAssociationCommand.js +39 -0
  23. package/dist-es/commands/CreateExtensionCommand.js +39 -0
  24. package/dist-es/commands/DeleteExtensionAssociationCommand.js +39 -0
  25. package/dist-es/commands/DeleteExtensionCommand.js +39 -0
  26. package/dist-es/commands/GetExtensionAssociationCommand.js +39 -0
  27. package/dist-es/commands/GetExtensionCommand.js +39 -0
  28. package/dist-es/commands/ListExtensionAssociationsCommand.js +39 -0
  29. package/dist-es/commands/ListExtensionsCommand.js +39 -0
  30. package/dist-es/commands/UpdateExtensionAssociationCommand.js +39 -0
  31. package/dist-es/commands/UpdateExtensionCommand.js +39 -0
  32. package/dist-es/commands/index.js +10 -0
  33. package/dist-es/endpoints.js +19 -2
  34. package/dist-es/models/models_0.js +103 -13
  35. package/dist-es/pagination/ListExtensionAssociationsPaginator.js +75 -0
  36. package/dist-es/pagination/ListExtensionsPaginator.js +75 -0
  37. package/dist-es/pagination/index.js +2 -0
  38. package/dist-es/protocols/Aws_restJson1.js +1504 -228
  39. package/dist-types/AppConfig.d.ts +159 -51
  40. package/dist-types/AppConfigClient.d.ts +36 -25
  41. package/dist-types/commands/CreateApplicationCommand.d.ts +5 -5
  42. package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +5 -6
  43. package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
  44. package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +47 -0
  45. package/dist-types/commands/CreateExtensionCommand.d.ts +43 -0
  46. package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +2 -1
  47. package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +36 -0
  48. package/dist-types/commands/DeleteExtensionCommand.d.ts +36 -0
  49. package/dist-types/commands/GetConfigurationCommand.d.ts +6 -5
  50. package/dist-types/commands/GetEnvironmentCommand.d.ts +6 -5
  51. package/dist-types/commands/GetExtensionAssociationCommand.d.ts +38 -0
  52. package/dist-types/commands/GetExtensionCommand.d.ts +35 -0
  53. package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +38 -0
  54. package/dist-types/commands/ListExtensionsCommand.d.ts +38 -0
  55. package/dist-types/commands/TagResourceCommand.d.ts +3 -5
  56. package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +38 -0
  57. package/dist-types/commands/UpdateExtensionCommand.d.ts +38 -0
  58. package/dist-types/commands/index.d.ts +10 -0
  59. package/dist-types/models/models_0.d.ts +678 -98
  60. package/dist-types/pagination/ListExtensionAssociationsPaginator.d.ts +4 -0
  61. package/dist-types/pagination/ListExtensionsPaginator.d.ts +4 -0
  62. package/dist-types/pagination/index.d.ts +2 -0
  63. package/dist-types/protocols/Aws_restJson1.d.ts +30 -0
  64. package/dist-types/ts3.4/AppConfig.d.ts +50 -0
  65. package/dist-types/ts3.4/AppConfigClient.d.ts +12 -2
  66. package/dist-types/ts3.4/commands/CreateExtensionAssociationCommand.d.ts +17 -0
  67. package/dist-types/ts3.4/commands/CreateExtensionCommand.d.ts +17 -0
  68. package/dist-types/ts3.4/commands/DeleteExtensionAssociationCommand.d.ts +17 -0
  69. package/dist-types/ts3.4/commands/DeleteExtensionCommand.d.ts +17 -0
  70. package/dist-types/ts3.4/commands/GetExtensionAssociationCommand.d.ts +17 -0
  71. package/dist-types/ts3.4/commands/GetExtensionCommand.d.ts +17 -0
  72. package/dist-types/ts3.4/commands/ListExtensionAssociationsCommand.d.ts +17 -0
  73. package/dist-types/ts3.4/commands/ListExtensionsCommand.d.ts +17 -0
  74. package/dist-types/ts3.4/commands/UpdateExtensionAssociationCommand.d.ts +17 -0
  75. package/dist-types/ts3.4/commands/UpdateExtensionCommand.d.ts +17 -0
  76. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  77. package/dist-types/ts3.4/models/models_0.d.ts +298 -9
  78. package/dist-types/ts3.4/pagination/ListExtensionAssociationsPaginator.d.ts +4 -0
  79. package/dist-types/ts3.4/pagination/ListExtensionsPaginator.d.ts +4 -0
  80. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  81. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +30 -0
  82. package/package.json +6 -6
@@ -0,0 +1,43 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { CreateExtensionRequest, Extension } from "../models/models_0";
5
+ export interface CreateExtensionCommandInput extends CreateExtensionRequest {
6
+ }
7
+ export interface CreateExtensionCommandOutput extends Extension, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Creates an AppConfig extension. An extension augments your ability to inject
11
+ * logic or behavior at different points during the AppConfig workflow of creating
12
+ * or deploying a configuration.</p>
13
+ * <p>You can create your own extensions or use the Amazon Web Services-authored extensions provided by
14
+ * AppConfig. For most use-cases, to create your own extension, you must create
15
+ * an Lambda function to perform any computation and processing defined in the
16
+ * extension. For more information about extensions, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
17
+ * AppConfig extensions</a> in the
18
+ * <i>AppConfig User Guide</i>.</p>
19
+ * @example
20
+ * Use a bare-bones client and the command you need to make an API call.
21
+ * ```javascript
22
+ * import { AppConfigClient, CreateExtensionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
23
+ * // const { AppConfigClient, CreateExtensionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
24
+ * const client = new AppConfigClient(config);
25
+ * const command = new CreateExtensionCommand(input);
26
+ * const response = await client.send(command);
27
+ * ```
28
+ *
29
+ * @see {@link CreateExtensionCommandInput} for command's `input` shape.
30
+ * @see {@link CreateExtensionCommandOutput} for command's `response` shape.
31
+ * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
32
+ *
33
+ */
34
+ export declare class CreateExtensionCommand extends $Command<CreateExtensionCommandInput, CreateExtensionCommandOutput, AppConfigClientResolvedConfig> {
35
+ readonly input: CreateExtensionCommandInput;
36
+ constructor(input: CreateExtensionCommandInput);
37
+ /**
38
+ * @internal
39
+ */
40
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateExtensionCommandInput, CreateExtensionCommandOutput>;
41
+ private serialize;
42
+ private deserialize;
43
+ }
@@ -7,7 +7,8 @@ export interface CreateHostedConfigurationVersionCommandInput extends CreateHost
7
7
  export interface CreateHostedConfigurationVersionCommandOutput extends HostedConfigurationVersion, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Creates a new configuration in the AppConfig hosted configuration store.</p>
10
+ * <p>Creates a new configuration in 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
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { DeleteExtensionAssociationRequest } from "../models/models_0";
5
+ export interface DeleteExtensionAssociationCommandInput extends DeleteExtensionAssociationRequest {
6
+ }
7
+ export interface DeleteExtensionAssociationCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Deletes an extension association. This action doesn't delete extensions defined in the
11
+ * association.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { AppConfigClient, DeleteExtensionAssociationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
16
+ * // const { AppConfigClient, DeleteExtensionAssociationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
17
+ * const client = new AppConfigClient(config);
18
+ * const command = new DeleteExtensionAssociationCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link DeleteExtensionAssociationCommandInput} for command's `input` shape.
23
+ * @see {@link DeleteExtensionAssociationCommandOutput} for command's `response` shape.
24
+ * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
25
+ *
26
+ */
27
+ export declare class DeleteExtensionAssociationCommand extends $Command<DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
28
+ readonly input: DeleteExtensionAssociationCommandInput;
29
+ constructor(input: DeleteExtensionAssociationCommandInput);
30
+ /**
31
+ * @internal
32
+ */
33
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { DeleteExtensionRequest } from "../models/models_0";
5
+ export interface DeleteExtensionCommandInput extends DeleteExtensionRequest {
6
+ }
7
+ export interface DeleteExtensionCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Deletes an AppConfig extension. You must delete all associations to an
11
+ * extension before you delete the extension.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { AppConfigClient, DeleteExtensionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
16
+ * // const { AppConfigClient, DeleteExtensionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
17
+ * const client = new AppConfigClient(config);
18
+ * const command = new DeleteExtensionCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link DeleteExtensionCommandInput} for command's `input` shape.
23
+ * @see {@link DeleteExtensionCommandOutput} for command's `response` shape.
24
+ * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
25
+ *
26
+ */
27
+ export declare class DeleteExtensionCommand extends $Command<DeleteExtensionCommandInput, DeleteExtensionCommandOutput, AppConfigClientResolvedConfig> {
28
+ readonly input: DeleteExtensionCommandInput;
29
+ constructor(input: DeleteExtensionCommandInput);
30
+ /**
31
+ * @internal
32
+ */
33
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteExtensionCommandInput, DeleteExtensionCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -24,11 +24,12 @@ export interface GetConfigurationCommandOutput extends Configuration, __Metadata
24
24
  * <a href="https://aws.amazon.com/systems-manager/pricing/">Pricing</a>.</p>
25
25
  * </li>
26
26
  * <li>
27
- * <p>AppConfig uses the value of the <code>ClientConfigurationVersion</code>
28
- * parameter to identify the configuration version on your clients. If you don’t send
29
- * <code>ClientConfigurationVersion</code> with each call to
30
- * <code>GetConfiguration</code>, your clients receive the current configuration.
31
- * You are charged each time your clients receive a configuration.</p>
27
+ * <p>AppConfig uses the value of the
28
+ * <code>ClientConfigurationVersion</code> parameter to identify the configuration
29
+ * version on your clients. If you don’t send <code>ClientConfigurationVersion</code>
30
+ * with each call to <code>GetConfiguration</code>, your clients receive the current
31
+ * configuration. You are charged each time your clients receive a
32
+ * configuration.</p>
32
33
  * <p>To avoid excess charges, we recommend you use the <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/StartConfigurationSession.html">StartConfigurationSession</a> and <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/GetLatestConfiguration.html">GetLatestConfiguration</a> APIs, which track the client configuration
33
34
  * version on your behalf. If you choose to continue using
34
35
  * <code>GetConfiguration</code>, we recommend that you include the
@@ -7,11 +7,12 @@ export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {
7
7
  export interface GetEnvironmentCommandOutput extends Environment, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Retrieves information about an environment. An environment is a logical deployment group
11
- * of AppConfig applications, such as applications in a <code>Production</code> environment or
12
- * in an <code>EU_Region</code> environment. Each configuration deployment targets an
13
- * environment. You can enable one or more Amazon CloudWatch alarms for an environment. If an alarm is
14
- * triggered during a deployment, AppConfig roles back the configuration.</p>
10
+ * <p>Retrieves information about an environment. An environment is a deployment group of
11
+ * AppConfig applications, such as applications in a <code>Production</code>
12
+ * environment or in an <code>EU_Region</code> environment. Each configuration deployment
13
+ * targets an environment. You can enable one or more Amazon CloudWatch alarms for an environment. If
14
+ * an alarm is triggered during a deployment, AppConfig roles back the
15
+ * configuration.</p>
15
16
  * @example
16
17
  * Use a bare-bones client and the command you need to make an API call.
17
18
  * ```javascript
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { ExtensionAssociation, GetExtensionAssociationRequest } from "../models/models_0";
5
+ export interface GetExtensionAssociationCommandInput extends GetExtensionAssociationRequest {
6
+ }
7
+ export interface GetExtensionAssociationCommandOutput extends ExtensionAssociation, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Returns information about an AppConfig extension association. For more
11
+ * information about extensions and associations, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
12
+ * AppConfig extensions</a> in the
13
+ * <i>AppConfig User Guide</i>.</p>
14
+ * @example
15
+ * Use a bare-bones client and the command you need to make an API call.
16
+ * ```javascript
17
+ * import { AppConfigClient, GetExtensionAssociationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
18
+ * // const { AppConfigClient, GetExtensionAssociationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
19
+ * const client = new AppConfigClient(config);
20
+ * const command = new GetExtensionAssociationCommand(input);
21
+ * const response = await client.send(command);
22
+ * ```
23
+ *
24
+ * @see {@link GetExtensionAssociationCommandInput} for command's `input` shape.
25
+ * @see {@link GetExtensionAssociationCommandOutput} for command's `response` shape.
26
+ * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
27
+ *
28
+ */
29
+ export declare class GetExtensionAssociationCommand extends $Command<GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
30
+ readonly input: GetExtensionAssociationCommandInput;
31
+ constructor(input: GetExtensionAssociationCommandInput);
32
+ /**
33
+ * @internal
34
+ */
35
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { Extension, GetExtensionRequest } from "../models/models_0";
5
+ export interface GetExtensionCommandInput extends GetExtensionRequest {
6
+ }
7
+ export interface GetExtensionCommandOutput extends Extension, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Returns information about an AppConfig extension.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { AppConfigClient, GetExtensionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
15
+ * // const { AppConfigClient, GetExtensionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
16
+ * const client = new AppConfigClient(config);
17
+ * const command = new GetExtensionCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetExtensionCommandInput} for command's `input` shape.
22
+ * @see {@link GetExtensionCommandOutput} for command's `response` shape.
23
+ * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetExtensionCommand extends $Command<GetExtensionCommandInput, GetExtensionCommandOutput, AppConfigClientResolvedConfig> {
27
+ readonly input: GetExtensionCommandInput;
28
+ constructor(input: GetExtensionCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExtensionCommandInput, GetExtensionCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { ExtensionAssociations, ListExtensionAssociationsRequest } from "../models/models_0";
5
+ export interface ListExtensionAssociationsCommandInput extends ListExtensionAssociationsRequest {
6
+ }
7
+ export interface ListExtensionAssociationsCommandOutput extends ExtensionAssociations, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Lists all AppConfig extension associations in the account. For more
11
+ * information about extensions and associations, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
12
+ * AppConfig extensions</a> in the
13
+ * <i>AppConfig User Guide</i>.</p>
14
+ * @example
15
+ * Use a bare-bones client and the command you need to make an API call.
16
+ * ```javascript
17
+ * import { AppConfigClient, ListExtensionAssociationsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
18
+ * // const { AppConfigClient, ListExtensionAssociationsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
19
+ * const client = new AppConfigClient(config);
20
+ * const command = new ListExtensionAssociationsCommand(input);
21
+ * const response = await client.send(command);
22
+ * ```
23
+ *
24
+ * @see {@link ListExtensionAssociationsCommandInput} for command's `input` shape.
25
+ * @see {@link ListExtensionAssociationsCommandOutput} for command's `response` shape.
26
+ * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
27
+ *
28
+ */
29
+ export declare class ListExtensionAssociationsCommand extends $Command<ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput, AppConfigClientResolvedConfig> {
30
+ readonly input: ListExtensionAssociationsCommandInput;
31
+ constructor(input: ListExtensionAssociationsCommandInput);
32
+ /**
33
+ * @internal
34
+ */
35
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { Extensions, ListExtensionsRequest } from "../models/models_0";
5
+ export interface ListExtensionsCommandInput extends ListExtensionsRequest {
6
+ }
7
+ export interface ListExtensionsCommandOutput extends Extensions, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Lists all custom and Amazon Web Services-authored AppConfig extensions in the
11
+ * account. For more information about extensions, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
12
+ * AppConfig extensions</a> in the
13
+ * <i>AppConfig User Guide</i>.</p>
14
+ * @example
15
+ * Use a bare-bones client and the command you need to make an API call.
16
+ * ```javascript
17
+ * import { AppConfigClient, ListExtensionsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
18
+ * // const { AppConfigClient, ListExtensionsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
19
+ * const client = new AppConfigClient(config);
20
+ * const command = new ListExtensionsCommand(input);
21
+ * const response = await client.send(command);
22
+ * ```
23
+ *
24
+ * @see {@link ListExtensionsCommandInput} for command's `input` shape.
25
+ * @see {@link ListExtensionsCommandOutput} for command's `response` shape.
26
+ * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
27
+ *
28
+ */
29
+ export declare class ListExtensionsCommand extends $Command<ListExtensionsCommandInput, ListExtensionsCommandOutput, AppConfigClientResolvedConfig> {
30
+ readonly input: ListExtensionsCommandInput;
31
+ constructor(input: ListExtensionsCommandInput);
32
+ /**
33
+ * @internal
34
+ */
35
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExtensionsCommandInput, ListExtensionsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -7,11 +7,9 @@ export interface TagResourceCommandInput extends TagResourceRequest {
7
7
  export interface TagResourceCommandOutput extends __MetadataBearer {
8
8
  }
9
9
  /**
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>
10
+ * <p>Assigns metadata to an AppConfig resource. Tags help organize and categorize
11
+ * your AppConfig resources. Each tag consists of a key and an optional value, both
12
+ * of which you define. You can specify a maximum of 50 tags for a resource.</p>
15
13
  * @example
16
14
  * Use a bare-bones client and the command you need to make an API call.
17
15
  * ```javascript
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { ExtensionAssociation, UpdateExtensionAssociationRequest } from "../models/models_0";
5
+ export interface UpdateExtensionAssociationCommandInput extends UpdateExtensionAssociationRequest {
6
+ }
7
+ export interface UpdateExtensionAssociationCommandOutput extends ExtensionAssociation, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Updates an association. For more information about extensions and associations, see
11
+ * <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
12
+ * AppConfig extensions</a> in the
13
+ * <i>AppConfig User Guide</i>.</p>
14
+ * @example
15
+ * Use a bare-bones client and the command you need to make an API call.
16
+ * ```javascript
17
+ * import { AppConfigClient, UpdateExtensionAssociationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
18
+ * // const { AppConfigClient, UpdateExtensionAssociationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
19
+ * const client = new AppConfigClient(config);
20
+ * const command = new UpdateExtensionAssociationCommand(input);
21
+ * const response = await client.send(command);
22
+ * ```
23
+ *
24
+ * @see {@link UpdateExtensionAssociationCommandInput} for command's `input` shape.
25
+ * @see {@link UpdateExtensionAssociationCommandOutput} for command's `response` shape.
26
+ * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
27
+ *
28
+ */
29
+ export declare class UpdateExtensionAssociationCommand extends $Command<UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
30
+ readonly input: UpdateExtensionAssociationCommandInput;
31
+ constructor(input: UpdateExtensionAssociationCommandInput);
32
+ /**
33
+ * @internal
34
+ */
35
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { Extension, UpdateExtensionRequest } from "../models/models_0";
5
+ export interface UpdateExtensionCommandInput extends UpdateExtensionRequest {
6
+ }
7
+ export interface UpdateExtensionCommandOutput extends Extension, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Updates an AppConfig extension. For more information about extensions, see
11
+ * <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
12
+ * AppConfig extensions</a> in the
13
+ * <i>AppConfig User Guide</i>.</p>
14
+ * @example
15
+ * Use a bare-bones client and the command you need to make an API call.
16
+ * ```javascript
17
+ * import { AppConfigClient, UpdateExtensionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
18
+ * // const { AppConfigClient, UpdateExtensionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
19
+ * const client = new AppConfigClient(config);
20
+ * const command = new UpdateExtensionCommand(input);
21
+ * const response = await client.send(command);
22
+ * ```
23
+ *
24
+ * @see {@link UpdateExtensionCommandInput} for command's `input` shape.
25
+ * @see {@link UpdateExtensionCommandOutput} for command's `response` shape.
26
+ * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
27
+ *
28
+ */
29
+ export declare class UpdateExtensionCommand extends $Command<UpdateExtensionCommandInput, UpdateExtensionCommandOutput, AppConfigClientResolvedConfig> {
30
+ readonly input: UpdateExtensionCommandInput;
31
+ constructor(input: UpdateExtensionCommandInput);
32
+ /**
33
+ * @internal
34
+ */
35
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateExtensionCommandInput, UpdateExtensionCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -2,11 +2,15 @@ export * from "./CreateApplicationCommand";
2
2
  export * from "./CreateConfigurationProfileCommand";
3
3
  export * from "./CreateDeploymentStrategyCommand";
4
4
  export * from "./CreateEnvironmentCommand";
5
+ export * from "./CreateExtensionAssociationCommand";
6
+ export * from "./CreateExtensionCommand";
5
7
  export * from "./CreateHostedConfigurationVersionCommand";
6
8
  export * from "./DeleteApplicationCommand";
7
9
  export * from "./DeleteConfigurationProfileCommand";
8
10
  export * from "./DeleteDeploymentStrategyCommand";
9
11
  export * from "./DeleteEnvironmentCommand";
12
+ export * from "./DeleteExtensionAssociationCommand";
13
+ export * from "./DeleteExtensionCommand";
10
14
  export * from "./DeleteHostedConfigurationVersionCommand";
11
15
  export * from "./GetApplicationCommand";
12
16
  export * from "./GetConfigurationCommand";
@@ -14,12 +18,16 @@ export * from "./GetConfigurationProfileCommand";
14
18
  export * from "./GetDeploymentCommand";
15
19
  export * from "./GetDeploymentStrategyCommand";
16
20
  export * from "./GetEnvironmentCommand";
21
+ export * from "./GetExtensionAssociationCommand";
22
+ export * from "./GetExtensionCommand";
17
23
  export * from "./GetHostedConfigurationVersionCommand";
18
24
  export * from "./ListApplicationsCommand";
19
25
  export * from "./ListConfigurationProfilesCommand";
20
26
  export * from "./ListDeploymentStrategiesCommand";
21
27
  export * from "./ListDeploymentsCommand";
22
28
  export * from "./ListEnvironmentsCommand";
29
+ export * from "./ListExtensionAssociationsCommand";
30
+ export * from "./ListExtensionsCommand";
23
31
  export * from "./ListHostedConfigurationVersionsCommand";
24
32
  export * from "./ListTagsForResourceCommand";
25
33
  export * from "./StartDeploymentCommand";
@@ -30,4 +38,6 @@ export * from "./UpdateApplicationCommand";
30
38
  export * from "./UpdateConfigurationProfileCommand";
31
39
  export * from "./UpdateDeploymentStrategyCommand";
32
40
  export * from "./UpdateEnvironmentCommand";
41
+ export * from "./UpdateExtensionAssociationCommand";
42
+ export * from "./UpdateExtensionCommand";
33
43
  export * from "./ValidateConfigurationCommand";