@aws-sdk/client-appconfig 3.321.1 → 3.326.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 (44) hide show
  1. package/dist-types/commands/CreateApplicationCommand.d.ts +8 -0
  2. package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +18 -0
  3. package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +13 -0
  4. package/dist-types/commands/CreateEnvironmentCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +13 -0
  6. package/dist-types/commands/CreateExtensionCommand.d.ts +26 -0
  7. package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +12 -0
  8. package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
  9. package/dist-types/commands/DeleteConfigurationProfileCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteDeploymentStrategyCommand.d.ts +4 -0
  11. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteExtensionCommand.d.ts +4 -0
  14. package/dist-types/commands/DeleteHostedConfigurationVersionCommand.d.ts +4 -0
  15. package/dist-types/commands/GetApplicationCommand.d.ts +8 -0
  16. package/dist-types/commands/GetConfigurationCommand.d.ts +8 -0
  17. package/dist-types/commands/GetConfigurationProfileCommand.d.ts +18 -0
  18. package/dist-types/commands/GetDeploymentCommand.d.ts +53 -0
  19. package/dist-types/commands/GetDeploymentStrategyCommand.d.ts +13 -0
  20. package/dist-types/commands/GetEnvironmentCommand.d.ts +16 -0
  21. package/dist-types/commands/GetExtensionAssociationCommand.d.ts +13 -0
  22. package/dist-types/commands/GetExtensionCommand.d.ts +26 -0
  23. package/dist-types/commands/GetHostedConfigurationVersionCommand.d.ts +12 -0
  24. package/dist-types/commands/ListApplicationsCommand.d.ts +13 -0
  25. package/dist-types/commands/ListConfigurationProfilesCommand.d.ts +18 -0
  26. package/dist-types/commands/ListDeploymentStrategiesCommand.d.ts +18 -0
  27. package/dist-types/commands/ListDeploymentsCommand.d.ts +21 -0
  28. package/dist-types/commands/ListEnvironmentsCommand.d.ts +21 -0
  29. package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +13 -0
  30. package/dist-types/commands/ListExtensionsCommand.d.ts +15 -0
  31. package/dist-types/commands/ListHostedConfigurationVersionsCommand.d.ts +16 -0
  32. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  33. package/dist-types/commands/StartDeploymentCommand.d.ts +53 -0
  34. package/dist-types/commands/StopDeploymentCommand.d.ts +53 -0
  35. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  36. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  37. package/dist-types/commands/UpdateApplicationCommand.d.ts +8 -0
  38. package/dist-types/commands/UpdateConfigurationProfileCommand.d.ts +18 -0
  39. package/dist-types/commands/UpdateDeploymentStrategyCommand.d.ts +13 -0
  40. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +13 -0
  42. package/dist-types/commands/UpdateExtensionCommand.d.ts +26 -0
  43. package/dist-types/commands/ValidateConfigurationCommand.d.ts +4 -0
  44. package/package.json +16 -16
@@ -34,6 +34,22 @@ export interface ListConfigurationProfilesCommandOutput extends ConfigurationPro
34
34
  * };
35
35
  * const command = new ListConfigurationProfilesCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ConfigurationProfiles
38
+ * // Items: [ // ConfigurationProfileSummaryList
39
+ * // { // ConfigurationProfileSummary
40
+ * // ApplicationId: "STRING_VALUE",
41
+ * // Id: "STRING_VALUE",
42
+ * // Name: "STRING_VALUE",
43
+ * // LocationUri: "STRING_VALUE",
44
+ * // ValidatorTypes: [ // ValidatorTypeList
45
+ * // "JSON_SCHEMA" || "LAMBDA",
46
+ * // ],
47
+ * // Type: "STRING_VALUE",
48
+ * // },
49
+ * // ],
50
+ * // NextToken: "STRING_VALUE",
51
+ * // };
52
+ *
37
53
  * ```
38
54
  *
39
55
  * @param ListConfigurationProfilesCommandInput - {@link ListConfigurationProfilesCommandInput}
@@ -51,6 +67,8 @@ export interface ListConfigurationProfilesCommandOutput extends ConfigurationPro
51
67
  * @throws {@link ResourceNotFoundException} (client fault)
52
68
  * <p>The requested resource could not be found.</p>
53
69
  *
70
+ * @throws {@link AppConfigServiceException}
71
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
54
72
  *
55
73
  * @example To list the available configuration profiles
56
74
  * ```javascript
@@ -32,6 +32,22 @@ export interface ListDeploymentStrategiesCommandOutput extends DeploymentStrateg
32
32
  * };
33
33
  * const command = new ListDeploymentStrategiesCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeploymentStrategies
36
+ * // Items: [ // DeploymentStrategyList
37
+ * // { // DeploymentStrategy
38
+ * // Id: "STRING_VALUE",
39
+ * // Name: "STRING_VALUE",
40
+ * // Description: "STRING_VALUE",
41
+ * // DeploymentDurationInMinutes: Number("int"),
42
+ * // GrowthType: "LINEAR" || "EXPONENTIAL",
43
+ * // GrowthFactor: Number("float"),
44
+ * // FinalBakeTimeInMinutes: Number("int"),
45
+ * // ReplicateTo: "NONE" || "SSM_DOCUMENT",
46
+ * // },
47
+ * // ],
48
+ * // NextToken: "STRING_VALUE",
49
+ * // };
50
+ *
35
51
  * ```
36
52
  *
37
53
  * @param ListDeploymentStrategiesCommandInput - {@link ListDeploymentStrategiesCommandInput}
@@ -46,6 +62,8 @@ export interface ListDeploymentStrategiesCommandOutput extends DeploymentStrateg
46
62
  * @throws {@link InternalServerException} (server fault)
47
63
  * <p>There was an internal failure in the AppConfig service.</p>
48
64
  *
65
+ * @throws {@link AppConfigServiceException}
66
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
49
67
  *
50
68
  * @example To list the available deployment strategies
51
69
  * ```javascript
@@ -34,6 +34,25 @@ export interface ListDeploymentsCommandOutput extends Deployments, __MetadataBea
34
34
  * };
35
35
  * const command = new ListDeploymentsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // Deployments
38
+ * // Items: [ // DeploymentList
39
+ * // { // DeploymentSummary
40
+ * // DeploymentNumber: Number("int"),
41
+ * // ConfigurationName: "STRING_VALUE",
42
+ * // ConfigurationVersion: "STRING_VALUE",
43
+ * // DeploymentDurationInMinutes: Number("int"),
44
+ * // GrowthType: "LINEAR" || "EXPONENTIAL",
45
+ * // GrowthFactor: Number("float"),
46
+ * // FinalBakeTimeInMinutes: Number("int"),
47
+ * // State: "BAKING" || "VALIDATING" || "DEPLOYING" || "COMPLETE" || "ROLLING_BACK" || "ROLLED_BACK",
48
+ * // PercentageComplete: Number("float"),
49
+ * // StartedAt: new Date("TIMESTAMP"),
50
+ * // CompletedAt: new Date("TIMESTAMP"),
51
+ * // },
52
+ * // ],
53
+ * // NextToken: "STRING_VALUE",
54
+ * // };
55
+ *
37
56
  * ```
38
57
  *
39
58
  * @param ListDeploymentsCommandInput - {@link ListDeploymentsCommandInput}
@@ -51,6 +70,8 @@ export interface ListDeploymentsCommandOutput extends Deployments, __MetadataBea
51
70
  * @throws {@link ResourceNotFoundException} (client fault)
52
71
  * <p>The requested resource could not be found.</p>
53
72
  *
73
+ * @throws {@link AppConfigServiceException}
74
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
54
75
  *
55
76
  * @example To list the available deployments
56
77
  * ```javascript
@@ -33,6 +33,25 @@ export interface ListEnvironmentsCommandOutput extends Environments, __MetadataB
33
33
  * };
34
34
  * const command = new ListEnvironmentsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // Environments
37
+ * // Items: [ // EnvironmentList
38
+ * // { // Environment
39
+ * // ApplicationId: "STRING_VALUE",
40
+ * // Id: "STRING_VALUE",
41
+ * // Name: "STRING_VALUE",
42
+ * // Description: "STRING_VALUE",
43
+ * // State: "READY_FOR_DEPLOYMENT" || "DEPLOYING" || "ROLLING_BACK" || "ROLLED_BACK",
44
+ * // Monitors: [ // MonitorList
45
+ * // { // Monitor
46
+ * // AlarmArn: "STRING_VALUE", // required
47
+ * // AlarmRoleArn: "STRING_VALUE",
48
+ * // },
49
+ * // ],
50
+ * // },
51
+ * // ],
52
+ * // NextToken: "STRING_VALUE",
53
+ * // };
54
+ *
36
55
  * ```
37
56
  *
38
57
  * @param ListEnvironmentsCommandInput - {@link ListEnvironmentsCommandInput}
@@ -50,6 +69,8 @@ export interface ListEnvironmentsCommandOutput extends Environments, __MetadataB
50
69
  * @throws {@link ResourceNotFoundException} (client fault)
51
70
  * <p>The requested resource could not be found.</p>
52
71
  *
72
+ * @throws {@link AppConfigServiceException}
73
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
53
74
  *
54
75
  * @example To list the available environments
55
76
  * ```javascript
@@ -38,6 +38,17 @@ export interface ListExtensionAssociationsCommandOutput extends ExtensionAssocia
38
38
  * };
39
39
  * const command = new ListExtensionAssociationsCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // ExtensionAssociations
42
+ * // Items: [ // ExtensionAssociationSummaries
43
+ * // { // ExtensionAssociationSummary
44
+ * // Id: "STRING_VALUE",
45
+ * // ExtensionArn: "STRING_VALUE",
46
+ * // ResourceArn: "STRING_VALUE",
47
+ * // },
48
+ * // ],
49
+ * // NextToken: "STRING_VALUE",
50
+ * // };
51
+ *
41
52
  * ```
42
53
  *
43
54
  * @param ListExtensionAssociationsCommandInput - {@link ListExtensionAssociationsCommandInput}
@@ -52,6 +63,8 @@ export interface ListExtensionAssociationsCommandOutput extends ExtensionAssocia
52
63
  * @throws {@link InternalServerException} (server fault)
53
64
  * <p>There was an internal failure in the AppConfig service.</p>
54
65
  *
66
+ * @throws {@link AppConfigServiceException}
67
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
55
68
  *
56
69
  */
57
70
  export declare class ListExtensionAssociationsCommand extends $Command<ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput, AppConfigClientResolvedConfig> {
@@ -36,6 +36,19 @@ export interface ListExtensionsCommandOutput extends Extensions, __MetadataBeare
36
36
  * };
37
37
  * const command = new ListExtensionsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // Extensions
40
+ * // Items: [ // ExtensionSummaries
41
+ * // { // ExtensionSummary
42
+ * // Id: "STRING_VALUE",
43
+ * // Name: "STRING_VALUE",
44
+ * // VersionNumber: Number("int"),
45
+ * // Arn: "STRING_VALUE",
46
+ * // Description: "STRING_VALUE",
47
+ * // },
48
+ * // ],
49
+ * // NextToken: "STRING_VALUE",
50
+ * // };
51
+ *
39
52
  * ```
40
53
  *
41
54
  * @param ListExtensionsCommandInput - {@link ListExtensionsCommandInput}
@@ -50,6 +63,8 @@ export interface ListExtensionsCommandOutput extends Extensions, __MetadataBeare
50
63
  * @throws {@link InternalServerException} (server fault)
51
64
  * <p>There was an internal failure in the AppConfig service.</p>
52
65
  *
66
+ * @throws {@link AppConfigServiceException}
67
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
53
68
  *
54
69
  */
55
70
  export declare class ListExtensionsCommand extends $Command<ListExtensionsCommandInput, ListExtensionsCommandOutput, AppConfigClientResolvedConfig> {
@@ -36,6 +36,20 @@ export interface ListHostedConfigurationVersionsCommandOutput extends HostedConf
36
36
  * };
37
37
  * const command = new ListHostedConfigurationVersionsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // HostedConfigurationVersions
40
+ * // Items: [ // HostedConfigurationVersionSummaryList
41
+ * // { // HostedConfigurationVersionSummary
42
+ * // ApplicationId: "STRING_VALUE",
43
+ * // ConfigurationProfileId: "STRING_VALUE",
44
+ * // VersionNumber: Number("int"),
45
+ * // Description: "STRING_VALUE",
46
+ * // ContentType: "STRING_VALUE",
47
+ * // VersionLabel: "STRING_VALUE",
48
+ * // },
49
+ * // ],
50
+ * // NextToken: "STRING_VALUE",
51
+ * // };
52
+ *
39
53
  * ```
40
54
  *
41
55
  * @param ListHostedConfigurationVersionsCommandInput - {@link ListHostedConfigurationVersionsCommandInput}
@@ -53,6 +67,8 @@ export interface ListHostedConfigurationVersionsCommandOutput extends HostedConf
53
67
  * @throws {@link ResourceNotFoundException} (client fault)
54
68
  * <p>The requested resource could not be found.</p>
55
69
  *
70
+ * @throws {@link AppConfigServiceException}
71
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
56
72
  *
57
73
  * @example To list the available hosted configuration versions
58
74
  * ```javascript
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ResourceTags, __Metada
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ResourceTags
35
+ * // Tags: { // TagMap
36
+ * // "<keys>": "STRING_VALUE",
37
+ * // },
38
+ * // };
39
+ *
34
40
  * ```
35
41
  *
36
42
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ResourceTags, __Metada
48
54
  * @throws {@link ResourceNotFoundException} (client fault)
49
55
  * <p>The requested resource could not be found.</p>
50
56
  *
57
+ * @throws {@link AppConfigServiceException}
58
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
51
59
  *
52
60
  * @example To list the tags of an application
53
61
  * ```javascript
@@ -40,6 +40,57 @@ export interface StartDeploymentCommandOutput extends Deployment, __MetadataBear
40
40
  * };
41
41
  * const command = new StartDeploymentCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // Deployment
44
+ * // ApplicationId: "STRING_VALUE",
45
+ * // EnvironmentId: "STRING_VALUE",
46
+ * // DeploymentStrategyId: "STRING_VALUE",
47
+ * // ConfigurationProfileId: "STRING_VALUE",
48
+ * // DeploymentNumber: Number("int"),
49
+ * // ConfigurationName: "STRING_VALUE",
50
+ * // ConfigurationLocationUri: "STRING_VALUE",
51
+ * // ConfigurationVersion: "STRING_VALUE",
52
+ * // Description: "STRING_VALUE",
53
+ * // DeploymentDurationInMinutes: Number("int"),
54
+ * // GrowthType: "LINEAR" || "EXPONENTIAL",
55
+ * // GrowthFactor: Number("float"),
56
+ * // FinalBakeTimeInMinutes: Number("int"),
57
+ * // State: "BAKING" || "VALIDATING" || "DEPLOYING" || "COMPLETE" || "ROLLING_BACK" || "ROLLED_BACK",
58
+ * // EventLog: [ // DeploymentEvents
59
+ * // { // DeploymentEvent
60
+ * // EventType: "PERCENTAGE_UPDATED" || "ROLLBACK_STARTED" || "ROLLBACK_COMPLETED" || "BAKE_TIME_STARTED" || "DEPLOYMENT_STARTED" || "DEPLOYMENT_COMPLETED",
61
+ * // TriggeredBy: "USER" || "APPCONFIG" || "CLOUDWATCH_ALARM" || "INTERNAL_ERROR",
62
+ * // Description: "STRING_VALUE",
63
+ * // ActionInvocations: [ // ActionInvocations
64
+ * // { // ActionInvocation
65
+ * // ExtensionIdentifier: "STRING_VALUE",
66
+ * // ActionName: "STRING_VALUE",
67
+ * // Uri: "STRING_VALUE",
68
+ * // RoleArn: "STRING_VALUE",
69
+ * // ErrorMessage: "STRING_VALUE",
70
+ * // ErrorCode: "STRING_VALUE",
71
+ * // InvocationId: "STRING_VALUE",
72
+ * // },
73
+ * // ],
74
+ * // OccurredAt: new Date("TIMESTAMP"),
75
+ * // },
76
+ * // ],
77
+ * // PercentageComplete: Number("float"),
78
+ * // StartedAt: new Date("TIMESTAMP"),
79
+ * // CompletedAt: new Date("TIMESTAMP"),
80
+ * // AppliedExtensions: [ // AppliedExtensions
81
+ * // { // AppliedExtension
82
+ * // ExtensionId: "STRING_VALUE",
83
+ * // ExtensionAssociationId: "STRING_VALUE",
84
+ * // VersionNumber: Number("int"),
85
+ * // Parameters: { // ParameterValueMap
86
+ * // "<keys>": "STRING_VALUE",
87
+ * // },
88
+ * // },
89
+ * // ],
90
+ * // KmsKeyArn: "STRING_VALUE",
91
+ * // KmsKeyIdentifier: "STRING_VALUE",
92
+ * // };
93
+ *
43
94
  * ```
44
95
  *
45
96
  * @param StartDeploymentCommandInput - {@link StartDeploymentCommandInput}
@@ -61,6 +112,8 @@ export interface StartDeploymentCommandOutput extends Deployment, __MetadataBear
61
112
  * @throws {@link ResourceNotFoundException} (client fault)
62
113
  * <p>The requested resource could not be found.</p>
63
114
  *
115
+ * @throws {@link AppConfigServiceException}
116
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
64
117
  *
65
118
  * @example To start a configuration deployment
66
119
  * ```javascript
@@ -35,6 +35,57 @@ export interface StopDeploymentCommandOutput extends Deployment, __MetadataBeare
35
35
  * };
36
36
  * const command = new StopDeploymentCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // Deployment
39
+ * // ApplicationId: "STRING_VALUE",
40
+ * // EnvironmentId: "STRING_VALUE",
41
+ * // DeploymentStrategyId: "STRING_VALUE",
42
+ * // ConfigurationProfileId: "STRING_VALUE",
43
+ * // DeploymentNumber: Number("int"),
44
+ * // ConfigurationName: "STRING_VALUE",
45
+ * // ConfigurationLocationUri: "STRING_VALUE",
46
+ * // ConfigurationVersion: "STRING_VALUE",
47
+ * // Description: "STRING_VALUE",
48
+ * // DeploymentDurationInMinutes: Number("int"),
49
+ * // GrowthType: "LINEAR" || "EXPONENTIAL",
50
+ * // GrowthFactor: Number("float"),
51
+ * // FinalBakeTimeInMinutes: Number("int"),
52
+ * // State: "BAKING" || "VALIDATING" || "DEPLOYING" || "COMPLETE" || "ROLLING_BACK" || "ROLLED_BACK",
53
+ * // EventLog: [ // DeploymentEvents
54
+ * // { // DeploymentEvent
55
+ * // EventType: "PERCENTAGE_UPDATED" || "ROLLBACK_STARTED" || "ROLLBACK_COMPLETED" || "BAKE_TIME_STARTED" || "DEPLOYMENT_STARTED" || "DEPLOYMENT_COMPLETED",
56
+ * // TriggeredBy: "USER" || "APPCONFIG" || "CLOUDWATCH_ALARM" || "INTERNAL_ERROR",
57
+ * // Description: "STRING_VALUE",
58
+ * // ActionInvocations: [ // ActionInvocations
59
+ * // { // ActionInvocation
60
+ * // ExtensionIdentifier: "STRING_VALUE",
61
+ * // ActionName: "STRING_VALUE",
62
+ * // Uri: "STRING_VALUE",
63
+ * // RoleArn: "STRING_VALUE",
64
+ * // ErrorMessage: "STRING_VALUE",
65
+ * // ErrorCode: "STRING_VALUE",
66
+ * // InvocationId: "STRING_VALUE",
67
+ * // },
68
+ * // ],
69
+ * // OccurredAt: new Date("TIMESTAMP"),
70
+ * // },
71
+ * // ],
72
+ * // PercentageComplete: Number("float"),
73
+ * // StartedAt: new Date("TIMESTAMP"),
74
+ * // CompletedAt: new Date("TIMESTAMP"),
75
+ * // AppliedExtensions: [ // AppliedExtensions
76
+ * // { // AppliedExtension
77
+ * // ExtensionId: "STRING_VALUE",
78
+ * // ExtensionAssociationId: "STRING_VALUE",
79
+ * // VersionNumber: Number("int"),
80
+ * // Parameters: { // ParameterValueMap
81
+ * // "<keys>": "STRING_VALUE",
82
+ * // },
83
+ * // },
84
+ * // ],
85
+ * // KmsKeyArn: "STRING_VALUE",
86
+ * // KmsKeyIdentifier: "STRING_VALUE",
87
+ * // };
88
+ *
38
89
  * ```
39
90
  *
40
91
  * @param StopDeploymentCommandInput - {@link StopDeploymentCommandInput}
@@ -52,6 +103,8 @@ export interface StopDeploymentCommandOutput extends Deployment, __MetadataBeare
52
103
  * @throws {@link ResourceNotFoundException} (client fault)
53
104
  * <p>The requested resource could not be found.</p>
54
105
  *
106
+ * @throws {@link AppConfigServiceException}
107
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
55
108
  *
56
109
  * @example To stop configuration deployment
57
110
  * ```javascript
@@ -36,6 +36,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
36
36
  * };
37
37
  * const command = new TagResourceCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // {};
40
+ *
39
41
  * ```
40
42
  *
41
43
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -53,6 +55,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
53
55
  * @throws {@link ResourceNotFoundException} (client fault)
54
56
  * <p>The requested resource could not be found.</p>
55
57
  *
58
+ * @throws {@link AppConfigServiceException}
59
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
56
60
  *
57
61
  * @example To tag an application
58
62
  * ```javascript
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
34
34
  * };
35
35
  * const command = new UntagResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
51
53
  * @throws {@link ResourceNotFoundException} (client fault)
52
54
  * <p>The requested resource could not be found.</p>
53
55
  *
56
+ * @throws {@link AppConfigServiceException}
57
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
54
58
  *
55
59
  * @example To remove a tag from an application
56
60
  * ```javascript
@@ -33,6 +33,12 @@ export interface UpdateApplicationCommandOutput extends Application, __MetadataB
33
33
  * };
34
34
  * const command = new UpdateApplicationCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // Application
37
+ * // Id: "STRING_VALUE",
38
+ * // Name: "STRING_VALUE",
39
+ * // Description: "STRING_VALUE",
40
+ * // };
41
+ *
36
42
  * ```
37
43
  *
38
44
  * @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
@@ -50,6 +56,8 @@ export interface UpdateApplicationCommandOutput extends Application, __MetadataB
50
56
  * @throws {@link ResourceNotFoundException} (client fault)
51
57
  * <p>The requested resource could not be found.</p>
52
58
  *
59
+ * @throws {@link AppConfigServiceException}
60
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
53
61
  *
54
62
  * @example To update an application
55
63
  * ```javascript
@@ -41,6 +41,22 @@ export interface UpdateConfigurationProfileCommandOutput extends ConfigurationPr
41
41
  * };
42
42
  * const command = new UpdateConfigurationProfileCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // ConfigurationProfile
45
+ * // ApplicationId: "STRING_VALUE",
46
+ * // Id: "STRING_VALUE",
47
+ * // Name: "STRING_VALUE",
48
+ * // Description: "STRING_VALUE",
49
+ * // LocationUri: "STRING_VALUE",
50
+ * // RetrievalRoleArn: "STRING_VALUE",
51
+ * // Validators: [ // ValidatorList
52
+ * // { // Validator
53
+ * // Type: "JSON_SCHEMA" || "LAMBDA", // required
54
+ * // Content: "STRING_VALUE", // required
55
+ * // },
56
+ * // ],
57
+ * // Type: "STRING_VALUE",
58
+ * // };
59
+ *
44
60
  * ```
45
61
  *
46
62
  * @param UpdateConfigurationProfileCommandInput - {@link UpdateConfigurationProfileCommandInput}
@@ -58,6 +74,8 @@ export interface UpdateConfigurationProfileCommandOutput extends ConfigurationPr
58
74
  * @throws {@link ResourceNotFoundException} (client fault)
59
75
  * <p>The requested resource could not be found.</p>
60
76
  *
77
+ * @throws {@link AppConfigServiceException}
78
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
61
79
  *
62
80
  * @example To update a configuration profile
63
81
  * ```javascript
@@ -36,6 +36,17 @@ export interface UpdateDeploymentStrategyCommandOutput extends DeploymentStrateg
36
36
  * };
37
37
  * const command = new UpdateDeploymentStrategyCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // DeploymentStrategy
40
+ * // Id: "STRING_VALUE",
41
+ * // Name: "STRING_VALUE",
42
+ * // Description: "STRING_VALUE",
43
+ * // DeploymentDurationInMinutes: Number("int"),
44
+ * // GrowthType: "LINEAR" || "EXPONENTIAL",
45
+ * // GrowthFactor: Number("float"),
46
+ * // FinalBakeTimeInMinutes: Number("int"),
47
+ * // ReplicateTo: "NONE" || "SSM_DOCUMENT",
48
+ * // };
49
+ *
39
50
  * ```
40
51
  *
41
52
  * @param UpdateDeploymentStrategyCommandInput - {@link UpdateDeploymentStrategyCommandInput}
@@ -53,6 +64,8 @@ export interface UpdateDeploymentStrategyCommandOutput extends DeploymentStrateg
53
64
  * @throws {@link ResourceNotFoundException} (client fault)
54
65
  * <p>The requested resource could not be found.</p>
55
66
  *
67
+ * @throws {@link AppConfigServiceException}
68
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
56
69
  *
57
70
  * @example To update a deployment strategy
58
71
  * ```javascript
@@ -40,6 +40,20 @@ export interface UpdateEnvironmentCommandOutput extends Environment, __MetadataB
40
40
  * };
41
41
  * const command = new UpdateEnvironmentCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // Environment
44
+ * // ApplicationId: "STRING_VALUE",
45
+ * // Id: "STRING_VALUE",
46
+ * // Name: "STRING_VALUE",
47
+ * // Description: "STRING_VALUE",
48
+ * // State: "READY_FOR_DEPLOYMENT" || "DEPLOYING" || "ROLLING_BACK" || "ROLLED_BACK",
49
+ * // Monitors: [ // MonitorList
50
+ * // { // Monitor
51
+ * // AlarmArn: "STRING_VALUE", // required
52
+ * // AlarmRoleArn: "STRING_VALUE",
53
+ * // },
54
+ * // ],
55
+ * // };
56
+ *
43
57
  * ```
44
58
  *
45
59
  * @param UpdateEnvironmentCommandInput - {@link UpdateEnvironmentCommandInput}
@@ -57,6 +71,8 @@ export interface UpdateEnvironmentCommandOutput extends Environment, __MetadataB
57
71
  * @throws {@link ResourceNotFoundException} (client fault)
58
72
  * <p>The requested resource could not be found.</p>
59
73
  *
74
+ * @throws {@link AppConfigServiceException}
75
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
60
76
  *
61
77
  * @example To update an environment
62
78
  * ```javascript
@@ -37,6 +37,17 @@ export interface UpdateExtensionAssociationCommandOutput extends ExtensionAssoci
37
37
  * };
38
38
  * const command = new UpdateExtensionAssociationCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ExtensionAssociation
41
+ * // Id: "STRING_VALUE",
42
+ * // ExtensionArn: "STRING_VALUE",
43
+ * // ResourceArn: "STRING_VALUE",
44
+ * // Arn: "STRING_VALUE",
45
+ * // Parameters: { // ParameterValueMap
46
+ * // "<keys>": "STRING_VALUE",
47
+ * // },
48
+ * // ExtensionVersionNumber: Number("int"),
49
+ * // };
50
+ *
40
51
  * ```
41
52
  *
42
53
  * @param UpdateExtensionAssociationCommandInput - {@link UpdateExtensionAssociationCommandInput}
@@ -54,6 +65,8 @@ export interface UpdateExtensionAssociationCommandOutput extends ExtensionAssoci
54
65
  * @throws {@link ResourceNotFoundException} (client fault)
55
66
  * <p>The requested resource could not be found.</p>
56
67
  *
68
+ * @throws {@link AppConfigServiceException}
69
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
57
70
  *
58
71
  */
59
72
  export declare class UpdateExtensionAssociationCommand extends $Command<UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
@@ -52,6 +52,30 @@ export interface UpdateExtensionCommandOutput extends Extension, __MetadataBeare
52
52
  * };
53
53
  * const command = new UpdateExtensionCommand(input);
54
54
  * const response = await client.send(command);
55
+ * // { // Extension
56
+ * // Id: "STRING_VALUE",
57
+ * // Name: "STRING_VALUE",
58
+ * // VersionNumber: Number("int"),
59
+ * // Arn: "STRING_VALUE",
60
+ * // Description: "STRING_VALUE",
61
+ * // Actions: { // ActionsMap
62
+ * // "<keys>": [ // ActionList
63
+ * // { // Action
64
+ * // Name: "STRING_VALUE",
65
+ * // Description: "STRING_VALUE",
66
+ * // Uri: "STRING_VALUE",
67
+ * // RoleArn: "STRING_VALUE",
68
+ * // },
69
+ * // ],
70
+ * // },
71
+ * // Parameters: { // ParameterMap
72
+ * // "<keys>": { // Parameter
73
+ * // Description: "STRING_VALUE",
74
+ * // Required: true || false,
75
+ * // },
76
+ * // },
77
+ * // };
78
+ *
55
79
  * ```
56
80
  *
57
81
  * @param UpdateExtensionCommandInput - {@link UpdateExtensionCommandInput}
@@ -73,6 +97,8 @@ export interface UpdateExtensionCommandOutput extends Extension, __MetadataBeare
73
97
  * @throws {@link ResourceNotFoundException} (client fault)
74
98
  * <p>The requested resource could not be found.</p>
75
99
  *
100
+ * @throws {@link AppConfigServiceException}
101
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
76
102
  *
77
103
  */
78
104
  export declare class UpdateExtensionCommand extends $Command<UpdateExtensionCommandInput, UpdateExtensionCommandOutput, AppConfigClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface ValidateConfigurationCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new ValidateConfigurationCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param ValidateConfigurationCommandInput - {@link ValidateConfigurationCommandInput}
@@ -50,6 +52,8 @@ export interface ValidateConfigurationCommandOutput extends __MetadataBearer {
50
52
  * @throws {@link ResourceNotFoundException} (client fault)
51
53
  * <p>The requested resource could not be found.</p>
52
54
  *
55
+ * @throws {@link AppConfigServiceException}
56
+ * <p>Base exception class for all service exceptions from AppConfig service.</p>
53
57
  *
54
58
  * @example To validate a configuration
55
59
  * ```javascript