@aws-sdk/client-appconfig 3.775.0 → 3.782.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 (46) hide show
  1. package/dist-types/commands/CreateApplicationCommand.d.ts +8 -8
  2. package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +12 -12
  3. package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +14 -14
  4. package/dist-types/commands/CreateEnvironmentCommand.d.ts +9 -9
  5. package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +1 -0
  6. package/dist-types/commands/CreateExtensionCommand.d.ts +1 -0
  7. package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +12 -12
  8. package/dist-types/commands/DeleteApplicationCommand.d.ts +8 -5
  9. package/dist-types/commands/DeleteConfigurationProfileCommand.d.ts +8 -5
  10. package/dist-types/commands/DeleteDeploymentStrategyCommand.d.ts +7 -4
  11. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +8 -5
  12. package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +1 -0
  13. package/dist-types/commands/DeleteExtensionCommand.d.ts +1 -0
  14. package/dist-types/commands/DeleteHostedConfigurationVersionCommand.d.ts +9 -6
  15. package/dist-types/commands/GetAccountSettingsCommand.d.ts +1 -0
  16. package/dist-types/commands/GetApplicationCommand.d.ts +6 -6
  17. package/dist-types/commands/GetConfigurationCommand.d.ts +9 -9
  18. package/dist-types/commands/GetConfigurationProfileCommand.d.ts +10 -10
  19. package/dist-types/commands/GetDeploymentCommand.d.ts +1 -77
  20. package/dist-types/commands/GetDeploymentStrategyCommand.d.ts +11 -11
  21. package/dist-types/commands/GetEnvironmentCommand.d.ts +9 -9
  22. package/dist-types/commands/GetExtensionAssociationCommand.d.ts +1 -0
  23. package/dist-types/commands/GetExtensionCommand.d.ts +1 -0
  24. package/dist-types/commands/GetHostedConfigurationVersionCommand.d.ts +10 -10
  25. package/dist-types/commands/ListApplicationsCommand.d.ts +10 -10
  26. package/dist-types/commands/ListConfigurationProfilesCommand.d.ts +9 -9
  27. package/dist-types/commands/ListDeploymentStrategiesCommand.d.ts +12 -12
  28. package/dist-types/commands/ListDeploymentsCommand.d.ts +1 -31
  29. package/dist-types/commands/ListEnvironmentsCommand.d.ts +9 -9
  30. package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +1 -0
  31. package/dist-types/commands/ListExtensionsCommand.d.ts +1 -0
  32. package/dist-types/commands/ListHostedConfigurationVersionsCommand.d.ts +10 -10
  33. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -6
  34. package/dist-types/commands/StartDeploymentCommand.d.ts +1 -44
  35. package/dist-types/commands/StopDeploymentCommand.d.ts +11 -11
  36. package/dist-types/commands/TagResourceCommand.d.ts +9 -6
  37. package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
  38. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +1 -0
  39. package/dist-types/commands/UpdateApplicationCommand.d.ts +9 -9
  40. package/dist-types/commands/UpdateConfigurationProfileCommand.d.ts +12 -12
  41. package/dist-types/commands/UpdateDeploymentStrategyCommand.d.ts +13 -13
  42. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +11 -11
  43. package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +1 -0
  44. package/dist-types/commands/UpdateExtensionCommand.d.ts +1 -0
  45. package/dist-types/commands/ValidateConfigurationCommand.d.ts +9 -6
  46. package/package.json +5 -5
@@ -79,27 +79,27 @@ declare const GetEnvironmentCommand_base: {
79
79
  * @throws {@link AppConfigServiceException}
80
80
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
81
81
  *
82
- * @public
82
+ *
83
83
  * @example To retrieve environment details
84
84
  * ```javascript
85
85
  * // The following get-environment example returns the details and state of the specified environment.
86
86
  * const input = {
87
- * "ApplicationId": "339ohji",
88
- * "EnvironmentId": "54j1r29"
87
+ * ApplicationId: "339ohji",
88
+ * EnvironmentId: "54j1r29"
89
89
  * };
90
90
  * const command = new GetEnvironmentCommand(input);
91
91
  * const response = await client.send(command);
92
- * /* response ==
92
+ * /* response is
93
93
  * {
94
- * "ApplicationId": "339ohji",
95
- * "Id": "54j1r29",
96
- * "Name": "Example-Environment",
97
- * "State": "READY_FOR_DEPLOYMENT"
94
+ * ApplicationId: "339ohji",
95
+ * Id: "54j1r29",
96
+ * Name: "Example-Environment",
97
+ * State: "READY_FOR_DEPLOYMENT"
98
98
  * }
99
99
  * *\/
100
- * // example id: to-retrieve-environment-details-1632266924806
101
100
  * ```
102
101
  *
102
+ * @public
103
103
  */
104
104
  export declare class GetEnvironmentCommand extends GetEnvironmentCommand_base {
105
105
  /** @internal type navigation helper, not in runtime. */
@@ -72,6 +72,7 @@ declare const GetExtensionAssociationCommand_base: {
72
72
  * @throws {@link AppConfigServiceException}
73
73
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
74
74
  *
75
+ *
75
76
  * @public
76
77
  */
77
78
  export declare class GetExtensionAssociationCommand extends GetExtensionAssociationCommand_base {
@@ -85,6 +85,7 @@ declare const GetExtensionCommand_base: {
85
85
  * @throws {@link AppConfigServiceException}
86
86
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
87
87
  *
88
+ *
88
89
  * @public
89
90
  */
90
91
  export declare class GetExtensionCommand extends GetExtensionCommand_base {
@@ -79,28 +79,28 @@ declare const GetHostedConfigurationVersionCommand_base: {
79
79
  * @throws {@link AppConfigServiceException}
80
80
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
81
81
  *
82
- * @public
82
+ *
83
83
  * @example To retrieve hosted configuration details
84
84
  * ```javascript
85
85
  * // The following get-hosted-configuration-version example retrieves the configuration details of the AWS AppConfig hosted configuration.
86
86
  * const input = {
87
- * "ApplicationId": "339ohji",
88
- * "ConfigurationProfileId": "ur8hx2f",
89
- * "VersionNumber": 1
87
+ * ApplicationId: "339ohji",
88
+ * ConfigurationProfileId: "ur8hx2f",
89
+ * VersionNumber: 1
90
90
  * };
91
91
  * const command = new GetHostedConfigurationVersionCommand(input);
92
92
  * const response = await client.send(command);
93
- * /* response ==
93
+ * /* response is
94
94
  * {
95
- * "ApplicationId": "339ohji",
96
- * "ConfigurationProfileId": "ur8hx2f",
97
- * "ContentType": "application/json",
98
- * "VersionNumber": 1
95
+ * ApplicationId: "339ohji",
96
+ * ConfigurationProfileId: "ur8hx2f",
97
+ * ContentType: "application/json",
98
+ * VersionNumber: 1
99
99
  * }
100
100
  * *\/
101
- * // example id: to-retrieve-hosted-configuration-details-1632267003527
102
101
  * ```
103
102
  *
103
+ * @public
104
104
  */
105
105
  export declare class GetHostedConfigurationVersionCommand extends GetHostedConfigurationVersionCommand_base {
106
106
  /** @internal type navigation helper, not in runtime. */
@@ -68,31 +68,31 @@ declare const ListApplicationsCommand_base: {
68
68
  * @throws {@link AppConfigServiceException}
69
69
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
70
70
  *
71
- * @public
71
+ *
72
72
  * @example To list the available applications
73
73
  * ```javascript
74
74
  * // The following list-applications example lists the available applications in your AWS account.
75
- * const input = {};
75
+ * const input = { /* empty *\/ };
76
76
  * const command = new ListApplicationsCommand(input);
77
77
  * const response = await client.send(command);
78
- * /* response ==
78
+ * /* response is
79
79
  * {
80
- * "Items": [
80
+ * Items: [
81
81
  * {
82
- * "Description": "An application used for creating an example.",
83
- * "Id": "339ohji",
84
- * "Name": "test-application"
82
+ * Description: "An application used for creating an example.",
83
+ * Id: "339ohji",
84
+ * Name: "test-application"
85
85
  * },
86
86
  * {
87
- * "Id": "rwalwu7",
88
- * "Name": "Test-Application"
87
+ * Id: "rwalwu7",
88
+ * Name: "Test-Application"
89
89
  * }
90
90
  * ]
91
91
  * }
92
92
  * *\/
93
- * // example id: to-list-the-available-applications-1632267111131
94
93
  * ```
95
94
  *
95
+ * @public
96
96
  */
97
97
  export declare class ListApplicationsCommand extends ListApplicationsCommand_base {
98
98
  /** @internal type navigation helper, not in runtime. */
@@ -78,30 +78,30 @@ declare const ListConfigurationProfilesCommand_base: {
78
78
  * @throws {@link AppConfigServiceException}
79
79
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
80
80
  *
81
- * @public
81
+ *
82
82
  * @example To list the available configuration profiles
83
83
  * ```javascript
84
84
  * // The following list-configuration-profiles example lists the available configuration profiles for the specified application.
85
85
  * const input = {
86
- * "ApplicationId": "339ohji"
86
+ * ApplicationId: "339ohji"
87
87
  * };
88
88
  * const command = new ListConfigurationProfilesCommand(input);
89
89
  * const response = await client.send(command);
90
- * /* response ==
90
+ * /* response is
91
91
  * {
92
- * "Items": [
92
+ * Items: [
93
93
  * {
94
- * "ApplicationId": "339ohji",
95
- * "Id": "ur8hx2f",
96
- * "LocationUri": "ssm-parameter://Example-Parameter",
97
- * "Name": "Example-Configuration-Profile"
94
+ * ApplicationId: "339ohji",
95
+ * Id: "ur8hx2f",
96
+ * LocationUri: "ssm-parameter://Example-Parameter",
97
+ * Name: "Example-Configuration-Profile"
98
98
  * }
99
99
  * ]
100
100
  * }
101
101
  * *\/
102
- * // example id: to-list-the-available-configuration-profiles-1632267193265
103
102
  * ```
104
103
  *
104
+ * @public
105
105
  */
106
106
  export declare class ListConfigurationProfilesCommand extends ListConfigurationProfilesCommand_base {
107
107
  /** @internal type navigation helper, not in runtime. */
@@ -73,31 +73,31 @@ declare const ListDeploymentStrategiesCommand_base: {
73
73
  * @throws {@link AppConfigServiceException}
74
74
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
75
75
  *
76
- * @public
76
+ *
77
77
  * @example To list the available deployment strategies
78
78
  * ```javascript
79
79
  * // The following list-deployment-strategies example lists the available deployment strategies in your AWS account.
80
- * const input = {};
80
+ * const input = { /* empty *\/ };
81
81
  * const command = new ListDeploymentStrategiesCommand(input);
82
82
  * const response = await client.send(command);
83
- * /* response ==
83
+ * /* response is
84
84
  * {
85
- * "Items": [
85
+ * Items: [
86
86
  * {
87
- * "DeploymentDurationInMinutes": 15,
88
- * "FinalBakeTimeInMinutes": 0,
89
- * "GrowthFactor": 25,
90
- * "GrowthType": "LINEAR",
91
- * "Id": "1225qzk",
92
- * "Name": "Example-Deployment",
93
- * "ReplicateTo": "SSM_DOCUMENT"
87
+ * DeploymentDurationInMinutes: 15,
88
+ * FinalBakeTimeInMinutes: 0,
89
+ * GrowthFactor: 25,
90
+ * GrowthType: "LINEAR",
91
+ * Id: "1225qzk",
92
+ * Name: "Example-Deployment",
93
+ * ReplicateTo: "SSM_DOCUMENT"
94
94
  * }
95
95
  * ]
96
96
  * }
97
97
  * *\/
98
- * // example id: to-list-the-available-deployment-strategies-1632267364180
99
98
  * ```
100
99
  *
100
+ * @public
101
101
  */
102
102
  export declare class ListDeploymentStrategiesCommand extends ListDeploymentStrategiesCommand_base {
103
103
  /** @internal type navigation helper, not in runtime. */
@@ -82,38 +82,8 @@ declare const ListDeploymentsCommand_base: {
82
82
  * @throws {@link AppConfigServiceException}
83
83
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
84
84
  *
85
- * @public
86
- * @example To list the available deployments
87
- * ```javascript
88
- * // The following list-deployments example lists the available deployments in your AWS account for the specified application and environment.
89
- * const input = {
90
- * "ApplicationId": "339ohji",
91
- * "EnvironmentId": "54j1r29"
92
- * };
93
- * const command = new ListDeploymentsCommand(input);
94
- * const response = await client.send(command);
95
- * /* response ==
96
- * {
97
- * "Items": [
98
- * {
99
- * "CompletedAt": "2021-09-17T21:59:03.888000+00:00",
100
- * "ConfigurationName": "Example-Configuration-Profile",
101
- * "ConfigurationVersion": "1",
102
- * "DeploymentDurationInMinutes": 15,
103
- * "DeploymentNumber": 1,
104
- * "FinalBakeTimeInMinutes": 0,
105
- * "GrowthFactor": 25,
106
- * "GrowthType": "LINEAR",
107
- * "PercentageComplete": 100,
108
- * "StartedAt": "2021-09-17T21:43:54.205000+00:00",
109
- * "State": "COMPLETE"
110
- * }
111
- * ]
112
- * }
113
- * *\/
114
- * // example id: to-list-the-available-deployments-1632267282025
115
- * ```
116
85
  *
86
+ * @public
117
87
  */
118
88
  export declare class ListDeploymentsCommand extends ListDeploymentsCommand_base {
119
89
  /** @internal type navigation helper, not in runtime. */
@@ -80,30 +80,30 @@ declare const ListEnvironmentsCommand_base: {
80
80
  * @throws {@link AppConfigServiceException}
81
81
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
82
82
  *
83
- * @public
83
+ *
84
84
  * @example To list the available environments
85
85
  * ```javascript
86
86
  * // The following list-environments example lists the available environments in your AWS account for the specified application.
87
87
  * const input = {
88
- * "ApplicationId": "339ohji"
88
+ * ApplicationId: "339ohji"
89
89
  * };
90
90
  * const command = new ListEnvironmentsCommand(input);
91
91
  * const response = await client.send(command);
92
- * /* response ==
92
+ * /* response is
93
93
  * {
94
- * "Items": [
94
+ * Items: [
95
95
  * {
96
- * "ApplicationId": "339ohji",
97
- * "Id": "54j1r29",
98
- * "Name": "Example-Environment",
99
- * "State": "READY_FOR_DEPLOYMENT"
96
+ * ApplicationId: "339ohji",
97
+ * Id: "54j1r29",
98
+ * Name: "Example-Environment",
99
+ * State: "READY_FOR_DEPLOYMENT"
100
100
  * }
101
101
  * ]
102
102
  * }
103
103
  * *\/
104
- * // example id: to-list-the-available-environments-1632267474389
105
104
  * ```
106
105
  *
106
+ * @public
107
107
  */
108
108
  export declare class ListEnvironmentsCommand extends ListEnvironmentsCommand_base {
109
109
  /** @internal type navigation helper, not in runtime. */
@@ -73,6 +73,7 @@ declare const ListExtensionAssociationsCommand_base: {
73
73
  * @throws {@link AppConfigServiceException}
74
74
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
75
75
  *
76
+ *
76
77
  * @public
77
78
  */
78
79
  export declare class ListExtensionAssociationsCommand extends ListExtensionAssociationsCommand_base {
@@ -73,6 +73,7 @@ declare const ListExtensionsCommand_base: {
73
73
  * @throws {@link AppConfigServiceException}
74
74
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
75
75
  *
76
+ *
76
77
  * @public
77
78
  */
78
79
  export declare class ListExtensionsCommand extends ListExtensionsCommand_base {
@@ -79,31 +79,31 @@ declare const ListHostedConfigurationVersionsCommand_base: {
79
79
  * @throws {@link AppConfigServiceException}
80
80
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
81
81
  *
82
- * @public
82
+ *
83
83
  * @example To list the available hosted configuration versions
84
84
  * ```javascript
85
85
  * // The following list-hosted-configuration-versions example lists the configurations versions hosted in the AWS AppConfig hosted configuration store for the specified application and configuration profile.
86
86
  * const input = {
87
- * "ApplicationId": "339ohji",
88
- * "ConfigurationProfileId": "ur8hx2f"
87
+ * ApplicationId: "339ohji",
88
+ * ConfigurationProfileId: "ur8hx2f"
89
89
  * };
90
90
  * const command = new ListHostedConfigurationVersionsCommand(input);
91
91
  * const response = await client.send(command);
92
- * /* response ==
92
+ * /* response is
93
93
  * {
94
- * "Items": [
94
+ * Items: [
95
95
  * {
96
- * "ApplicationId": "339ohji",
97
- * "ConfigurationProfileId": "ur8hx2f",
98
- * "ContentType": "application/json",
99
- * "VersionNumber": 1
96
+ * ApplicationId: "339ohji",
97
+ * ConfigurationProfileId: "ur8hx2f",
98
+ * ContentType: "application/json",
99
+ * VersionNumber: 1
100
100
  * }
101
101
  * ]
102
102
  * }
103
103
  * *\/
104
- * // example id: to-list-the-available-hosted-configuration-versions-1632267647667
105
104
  * ```
106
105
  *
106
+ * @public
107
107
  */
108
108
  export declare class ListHostedConfigurationVersionsCommand extends ListHostedConfigurationVersionsCommand_base {
109
109
  /** @internal type navigation helper, not in runtime. */
@@ -65,25 +65,25 @@ declare const ListTagsForResourceCommand_base: {
65
65
  * @throws {@link AppConfigServiceException}
66
66
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
67
67
  *
68
- * @public
68
+ *
69
69
  * @example To list the tags of an application
70
70
  * ```javascript
71
71
  * // The following list-tags-for-resource example lists the tags of a specified application.
72
72
  * const input = {
73
- * "ResourceArn": "arn:aws:appconfig:us-east-1:111122223333:application/339ohji"
73
+ * ResourceArn: "arn:aws:appconfig:us-east-1:111122223333:application/339ohji"
74
74
  * };
75
75
  * const command = new ListTagsForResourceCommand(input);
76
76
  * const response = await client.send(command);
77
- * /* response ==
77
+ * /* response is
78
78
  * {
79
- * "Tags": {
80
- * "group1": "1"
79
+ * Tags: {
80
+ * group1: "1"
81
81
  * }
82
82
  * }
83
83
  * *\/
84
- * // example id: to-list-the-tags-of-an-application-1632328796560
85
84
  * ```
86
85
  *
86
+ * @public
87
87
  */
88
88
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
89
89
  /** @internal type navigation helper, not in runtime. */
@@ -127,51 +127,8 @@ declare const StartDeploymentCommand_base: {
127
127
  * @throws {@link AppConfigServiceException}
128
128
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
129
129
  *
130
- * @public
131
- * @example To start a configuration deployment
132
- * ```javascript
133
- * // The following start-deployment example starts a deployment to the application using the specified environment, deployment strategy, and configuration profile.
134
- * const input = {
135
- * "ApplicationId": "339ohji",
136
- * "ConfigurationProfileId": "ur8hx2f",
137
- * "ConfigurationVersion": "1",
138
- * "DeploymentStrategyId": "1225qzk",
139
- * "Description": "",
140
- * "EnvironmentId": "54j1r29",
141
- * "Tags": {}
142
- * };
143
- * const command = new StartDeploymentCommand(input);
144
- * const response = await client.send(command);
145
- * /* response ==
146
- * {
147
- * "ApplicationId": "339ohji",
148
- * "ConfigurationLocationUri": "ssm-parameter://Example-Parameter",
149
- * "ConfigurationName": "Example-Configuration-Profile",
150
- * "ConfigurationProfileId": "ur8hx2f",
151
- * "ConfigurationVersion": "1",
152
- * "DeploymentDurationInMinutes": 15,
153
- * "DeploymentNumber": 1,
154
- * "DeploymentStrategyId": "1225qzk",
155
- * "EnvironmentId": "54j1r29",
156
- * "EventLog": [
157
- * {
158
- * "Description": "Deployment started",
159
- * "EventType": "DEPLOYMENT_STARTED",
160
- * "OccurredAt": "2021-09-17T21:43:54.205000+00:00",
161
- * "TriggeredBy": "USER"
162
- * }
163
- * ],
164
- * "FinalBakeTimeInMinutes": 0,
165
- * "GrowthFactor": 25,
166
- * "GrowthType": "LINEAR",
167
- * "PercentageComplete": 1,
168
- * "StartedAt": "2021-09-17T21:43:54.205000+00:00",
169
- * "State": "DEPLOYING"
170
- * }
171
- * *\/
172
- * // example id: to-start-a-configuration-deployment-1632328956790
173
- * ```
174
130
  *
131
+ * @public
175
132
  */
176
133
  export declare class StartDeploymentCommand extends StartDeploymentCommand_base {
177
134
  /** @internal type navigation helper, not in runtime. */
@@ -119,29 +119,29 @@ declare const StopDeploymentCommand_base: {
119
119
  * @throws {@link AppConfigServiceException}
120
120
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
121
121
  *
122
- * @public
122
+ *
123
123
  * @example To stop configuration deployment
124
124
  * ```javascript
125
125
  * // The following stop-deployment example stops the deployment of an application configuration to the specified environment.
126
126
  * const input = {
127
- * "ApplicationId": "339ohji",
128
- * "DeploymentNumber": 2,
129
- * "EnvironmentId": "54j1r29"
127
+ * ApplicationId: "339ohji",
128
+ * DeploymentNumber: 2,
129
+ * EnvironmentId: "54j1r29"
130
130
  * };
131
131
  * const command = new StopDeploymentCommand(input);
132
132
  * const response = await client.send(command);
133
- * /* response ==
133
+ * /* response is
134
134
  * {
135
- * "DeploymentDurationInMinutes": 15,
136
- * "DeploymentNumber": 2,
137
- * "FinalBakeTimeInMinutes": 0,
138
- * "GrowthFactor": 25,
139
- * "PercentageComplete": 1
135
+ * DeploymentDurationInMinutes: 15,
136
+ * DeploymentNumber: 2,
137
+ * FinalBakeTimeInMinutes: 0,
138
+ * GrowthFactor: 25.0,
139
+ * PercentageComplete: 1.0
140
140
  * }
141
141
  * *\/
142
- * // example id: to-stop-configuration-deployment-1632329139126
143
142
  * ```
144
143
  *
144
+ * @public
145
145
  */
146
146
  export declare class StopDeploymentCommand extends StopDeploymentCommand_base {
147
147
  /** @internal type navigation helper, not in runtime. */
@@ -66,21 +66,24 @@ declare const TagResourceCommand_base: {
66
66
  * @throws {@link AppConfigServiceException}
67
67
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
68
68
  *
69
- * @public
69
+ *
70
70
  * @example To tag an application
71
71
  * ```javascript
72
72
  * // The following tag-resource example tags an application resource.
73
73
  * const input = {
74
- * "ResourceArn": "arn:aws:appconfig:us-east-1:111122223333:application/339ohji",
75
- * "Tags": {
76
- * "group1": "1"
74
+ * ResourceArn: "arn:aws:appconfig:us-east-1:111122223333:application/339ohji",
75
+ * Tags: {
76
+ * group1: "1"
77
77
  * }
78
78
  * };
79
79
  * const command = new TagResourceCommand(input);
80
- * await client.send(command);
81
- * // example id: to-tag-an-application-1632330350645
80
+ * const response = await client.send(command);
81
+ * /* response is
82
+ * { /* metadata only *\/ }
83
+ * *\/
82
84
  * ```
83
85
  *
86
+ * @public
84
87
  */
85
88
  export declare class TagResourceCommand extends TagResourceCommand_base {
86
89
  /** @internal type navigation helper, not in runtime. */
@@ -64,21 +64,24 @@ declare const UntagResourceCommand_base: {
64
64
  * @throws {@link AppConfigServiceException}
65
65
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
66
66
  *
67
- * @public
67
+ *
68
68
  * @example To remove a tag from an application
69
69
  * ```javascript
70
70
  * // The following untag-resource example removes the group1 tag from the specified application.
71
71
  * const input = {
72
- * "ResourceArn": "arn:aws:appconfig:us-east-1:111122223333:application/339ohji",
73
- * "TagKeys": [
72
+ * ResourceArn: "arn:aws:appconfig:us-east-1:111122223333:application/339ohji",
73
+ * TagKeys: [
74
74
  * "group1"
75
75
  * ]
76
76
  * };
77
77
  * const command = new UntagResourceCommand(input);
78
- * await client.send(command);
79
- * // example id: to-remove-a-tag-from-an-application-1632330429881
78
+ * const response = await client.send(command);
79
+ * /* response is
80
+ * { /* metadata only *\/ }
81
+ * *\/
80
82
  * ```
81
83
  *
84
+ * @public
82
85
  */
83
86
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
84
87
  /** @internal type navigation helper, not in runtime. */
@@ -66,6 +66,7 @@ declare const UpdateAccountSettingsCommand_base: {
66
66
  * @throws {@link AppConfigServiceException}
67
67
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
68
68
  *
69
+ *
69
70
  * @public
70
71
  */
71
72
  export declare class UpdateAccountSettingsCommand extends UpdateAccountSettingsCommand_base {
@@ -67,27 +67,27 @@ declare const UpdateApplicationCommand_base: {
67
67
  * @throws {@link AppConfigServiceException}
68
68
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
69
69
  *
70
- * @public
70
+ *
71
71
  * @example To update an application
72
72
  * ```javascript
73
73
  * // The following update-application example updates the name of the specified application.
74
74
  * const input = {
75
- * "ApplicationId": "339ohji",
76
- * "Description": "",
77
- * "Name": "Example-Application"
75
+ * ApplicationId: "339ohji",
76
+ * Description: "",
77
+ * Name: "Example-Application"
78
78
  * };
79
79
  * const command = new UpdateApplicationCommand(input);
80
80
  * const response = await client.send(command);
81
- * /* response ==
81
+ * /* response is
82
82
  * {
83
- * "Description": "An application used for creating an example.",
84
- * "Id": "339ohji",
85
- * "Name": "Example-Application"
83
+ * Description: "An application used for creating an example.",
84
+ * Id: "339ohji",
85
+ * Name: "Example-Application"
86
86
  * }
87
87
  * *\/
88
- * // example id: to-update-an-application-1632330585893
89
88
  * ```
90
89
  *
90
+ * @public
91
91
  */
92
92
  export declare class UpdateApplicationCommand extends UpdateApplicationCommand_base {
93
93
  /** @internal type navigation helper, not in runtime. */
@@ -88,30 +88,30 @@ declare const UpdateConfigurationProfileCommand_base: {
88
88
  * @throws {@link AppConfigServiceException}
89
89
  * <p>Base exception class for all service exceptions from AppConfig service.</p>
90
90
  *
91
- * @public
91
+ *
92
92
  * @example To update a configuration profile
93
93
  * ```javascript
94
94
  * // The following update-configuration-profile example updates the description of the specified configuration profile.
95
95
  * const input = {
96
- * "ApplicationId": "339ohji",
97
- * "ConfigurationProfileId": "ur8hx2f",
98
- * "Description": "Configuration profile used for examples."
96
+ * ApplicationId: "339ohji",
97
+ * ConfigurationProfileId: "ur8hx2f",
98
+ * Description: "Configuration profile used for examples."
99
99
  * };
100
100
  * const command = new UpdateConfigurationProfileCommand(input);
101
101
  * const response = await client.send(command);
102
- * /* response ==
102
+ * /* response is
103
103
  * {
104
- * "ApplicationId": "339ohji",
105
- * "Description": "Configuration profile used for examples.",
106
- * "Id": "ur8hx2f",
107
- * "LocationUri": "ssm-parameter://Example-Parameter",
108
- * "Name": "Example-Configuration-Profile",
109
- * "RetrievalRoleArn": "arn:aws:iam::111122223333:role/Example-App-Config-Role"
104
+ * ApplicationId: "339ohji",
105
+ * Description: "Configuration profile used for examples.",
106
+ * Id: "ur8hx2f",
107
+ * LocationUri: "ssm-parameter://Example-Parameter",
108
+ * Name: "Example-Configuration-Profile",
109
+ * RetrievalRoleArn: "arn:aws:iam::111122223333:role/Example-App-Config-Role"
110
110
  * }
111
111
  * *\/
112
- * // example id: to-update-a-configuration-profile-1632330721974
113
112
  * ```
114
113
  *
114
+ * @public
115
115
  */
116
116
  export declare class UpdateConfigurationProfileCommand extends UpdateConfigurationProfileCommand_base {
117
117
  /** @internal type navigation helper, not in runtime. */