@aws-sdk/client-appconfig 3.47.2 → 3.51.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 +35 -0
- package/README.md +8 -8
- package/dist-types/AppConfig.d.ts +42 -21
- package/dist-types/AppConfigClient.d.ts +8 -8
- package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +1 -1
- package/dist-types/commands/GetConfigurationCommand.d.ts +32 -11
- package/dist-types/commands/ListDeploymentsCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +58 -26
- package/package.json +39 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-appconfig
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-appconfig
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** update clients as of 01/28/2022 ([#3263](https://github.com/aws/aws-sdk-js-v3/issues/3263)) ([c207cf4](https://github.com/aws/aws-sdk-js-v3/commit/c207cf4a70ba9ef14dc5b94da7883b0889d64918))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# [3.48.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.2...v3.48.0) (2022-01-22)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @aws-sdk/client-appconfig
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
## [3.47.2](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.1...v3.47.2) (2022-01-21)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @aws-sdk/client-appconfig
|
package/README.md
CHANGED
|
@@ -16,8 +16,8 @@ devices.</p>
|
|
|
16
16
|
systems where a simple typo could cause an unexpected outage, AppConfig includes
|
|
17
17
|
validators. A validator provides a syntactic or semantic check to ensure that the
|
|
18
18
|
configuration you want to deploy works as intended. To validate your application
|
|
19
|
-
configuration data, you provide a schema or
|
|
20
|
-
configuration. The configuration deployment or update can only proceed when the
|
|
19
|
+
configuration data, you provide a schema or an Amazon Web Services Lambda function that runs against
|
|
20
|
+
the configuration. The configuration deployment or update can only proceed when the
|
|
21
21
|
configuration data is valid.</p>
|
|
22
22
|
<p>During a configuration deployment, AppConfig monitors the application to ensure that the
|
|
23
23
|
deployment is successful. If the system encounters an error, AppConfig rolls back the
|
|
@@ -29,15 +29,15 @@ triggers an alarm, AppConfig automatically rolls back to the previous version. <
|
|
|
29
29
|
<ul>
|
|
30
30
|
<li>
|
|
31
31
|
<p>
|
|
32
|
-
<b>
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
<b>Feature flags</b>: Use AppConfig to turn on new
|
|
33
|
+
features that require a timely deployment, such as a product launch or announcement.
|
|
34
|
+
</p>
|
|
35
35
|
</li>
|
|
36
36
|
<li>
|
|
37
37
|
<p>
|
|
38
|
-
<b>
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
<b>Application tuning</b>: Use AppConfig to carefully
|
|
39
|
+
introduce changes to your application that can only be tested with production
|
|
40
|
+
traffic.</p>
|
|
41
41
|
</li>
|
|
42
42
|
<li>
|
|
43
43
|
<p>
|
|
@@ -43,8 +43,8 @@ import { ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput }
|
|
|
43
43
|
* systems where a simple typo could cause an unexpected outage, AppConfig includes
|
|
44
44
|
* validators. A validator provides a syntactic or semantic check to ensure that the
|
|
45
45
|
* configuration you want to deploy works as intended. To validate your application
|
|
46
|
-
* configuration data, you provide a schema or
|
|
47
|
-
* configuration. The configuration deployment or update can only proceed when the
|
|
46
|
+
* configuration data, you provide a schema or an Amazon Web Services Lambda function that runs against
|
|
47
|
+
* the configuration. The configuration deployment or update can only proceed when the
|
|
48
48
|
* configuration data is valid.</p>
|
|
49
49
|
* <p>During a configuration deployment, AppConfig monitors the application to ensure that the
|
|
50
50
|
* deployment is successful. If the system encounters an error, AppConfig rolls back the
|
|
@@ -56,15 +56,15 @@ import { ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput }
|
|
|
56
56
|
* <ul>
|
|
57
57
|
* <li>
|
|
58
58
|
* <p>
|
|
59
|
-
* <b>
|
|
60
|
-
*
|
|
61
|
-
*
|
|
59
|
+
* <b>Feature flags</b>: Use AppConfig to turn on new
|
|
60
|
+
* features that require a timely deployment, such as a product launch or announcement.
|
|
61
|
+
* </p>
|
|
62
62
|
* </li>
|
|
63
63
|
* <li>
|
|
64
64
|
* <p>
|
|
65
|
-
* <b>
|
|
66
|
-
*
|
|
67
|
-
*
|
|
65
|
+
* <b>Application tuning</b>: Use AppConfig to carefully
|
|
66
|
+
* introduce changes to your application that can only be tested with production
|
|
67
|
+
* traffic.</p>
|
|
68
68
|
* </li>
|
|
69
69
|
* <li>
|
|
70
70
|
* <p>
|
|
@@ -108,7 +108,7 @@ export declare class AppConfig extends AppConfigClient {
|
|
|
108
108
|
* </li>
|
|
109
109
|
* <li>
|
|
110
110
|
* <p>A validator for the configuration data. Available validators include either a JSON
|
|
111
|
-
* Schema or an Lambda function.</p>
|
|
111
|
+
* Schema or an Amazon Web Services Lambda function.</p>
|
|
112
112
|
* </li>
|
|
113
113
|
* </ul>
|
|
114
114
|
* <p>For more information, see <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-creating-configuration-and-profile.html">Create a
|
|
@@ -188,18 +188,39 @@ export declare class AppConfig extends AppConfigClient {
|
|
|
188
188
|
getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
189
189
|
getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
190
190
|
/**
|
|
191
|
-
*
|
|
191
|
+
* @deprecated
|
|
192
|
+
*
|
|
193
|
+
* <p>Retrieves the latest deployed configuration.</p>
|
|
194
|
+
*
|
|
192
195
|
* <important>
|
|
193
|
-
* <p>
|
|
194
|
-
*
|
|
195
|
-
* <
|
|
196
|
-
*
|
|
197
|
-
*
|
|
198
|
-
*
|
|
199
|
-
* <
|
|
200
|
-
*
|
|
201
|
-
*
|
|
202
|
-
*
|
|
196
|
+
* <p>Note the following important information.</p>
|
|
197
|
+
* <ul>
|
|
198
|
+
* <li>
|
|
199
|
+
* <p>This API action has been deprecated. Calls to receive configuration data should
|
|
200
|
+
* use the <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_StartConfigurationSession.html">StartConfigurationSession</a> and <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_GetLatestConfiguration.html">GetLatestConfiguration</a> APIs instead. </p>
|
|
201
|
+
* </li>
|
|
202
|
+
* <li>
|
|
203
|
+
* <p>
|
|
204
|
+
* <code>GetConfiguration</code> is a priced call. For more information, see
|
|
205
|
+
* <a href="https://aws.amazon.com/systems-manager/pricing/">Pricing</a>.</p>
|
|
206
|
+
* </li>
|
|
207
|
+
* <li>
|
|
208
|
+
* <p>AppConfig uses the value of the <code>ClientConfigurationVersion</code>
|
|
209
|
+
* parameter to identify the configuration version on your clients. If you don’t send
|
|
210
|
+
* <code>ClientConfigurationVersion</code> with each call to
|
|
211
|
+
* <code>GetConfiguration</code>, your clients receive the current configuration.
|
|
212
|
+
* You are charged each time your clients receive a configuration.</p>
|
|
213
|
+
* <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
|
|
214
|
+
* version on your behalf. If you choose to continue using
|
|
215
|
+
* <code>GetConfiguration</code>, we recommend that you include the
|
|
216
|
+
* <code>ClientConfigurationVersion</code> value with every call to
|
|
217
|
+
* <code>GetConfiguration</code>. The value to use for
|
|
218
|
+
* <code>ClientConfigurationVersion</code> comes from the
|
|
219
|
+
* <code>ConfigurationVersion</code> attribute returned by
|
|
220
|
+
* <code>GetConfiguration</code> when there is new or updated data, and should be
|
|
221
|
+
* saved for subsequent calls to <code>GetConfiguration</code>.</p>
|
|
222
|
+
* </li>
|
|
223
|
+
* </ul>
|
|
203
224
|
* </important>
|
|
204
225
|
*/
|
|
205
226
|
getConfiguration(args: GetConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetConfigurationCommandOutput>;
|
|
@@ -256,7 +277,7 @@ export declare class AppConfig extends AppConfigClient {
|
|
|
256
277
|
listConfigurationProfiles(args: ListConfigurationProfilesCommandInput, cb: (err: any, data?: ListConfigurationProfilesCommandOutput) => void): void;
|
|
257
278
|
listConfigurationProfiles(args: ListConfigurationProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationProfilesCommandOutput) => void): void;
|
|
258
279
|
/**
|
|
259
|
-
* <p>Lists the deployments for an environment.</p>
|
|
280
|
+
* <p>Lists the deployments for an environment in descending deployment number order.</p>
|
|
260
281
|
*/
|
|
261
282
|
listDeployments(args: ListDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeploymentsCommandOutput>;
|
|
262
283
|
listDeployments(args: ListDeploymentsCommandInput, cb: (err: any, data?: ListDeploymentsCommandOutput) => void): void;
|
|
@@ -168,8 +168,8 @@ export interface AppConfigClientResolvedConfig extends AppConfigClientResolvedCo
|
|
|
168
168
|
* systems where a simple typo could cause an unexpected outage, AppConfig includes
|
|
169
169
|
* validators. A validator provides a syntactic or semantic check to ensure that the
|
|
170
170
|
* configuration you want to deploy works as intended. To validate your application
|
|
171
|
-
* configuration data, you provide a schema or
|
|
172
|
-
* configuration. The configuration deployment or update can only proceed when the
|
|
171
|
+
* configuration data, you provide a schema or an Amazon Web Services Lambda function that runs against
|
|
172
|
+
* the configuration. The configuration deployment or update can only proceed when the
|
|
173
173
|
* configuration data is valid.</p>
|
|
174
174
|
* <p>During a configuration deployment, AppConfig monitors the application to ensure that the
|
|
175
175
|
* deployment is successful. If the system encounters an error, AppConfig rolls back the
|
|
@@ -181,15 +181,15 @@ export interface AppConfigClientResolvedConfig extends AppConfigClientResolvedCo
|
|
|
181
181
|
* <ul>
|
|
182
182
|
* <li>
|
|
183
183
|
* <p>
|
|
184
|
-
* <b>
|
|
185
|
-
*
|
|
186
|
-
*
|
|
184
|
+
* <b>Feature flags</b>: Use AppConfig to turn on new
|
|
185
|
+
* features that require a timely deployment, such as a product launch or announcement.
|
|
186
|
+
* </p>
|
|
187
187
|
* </li>
|
|
188
188
|
* <li>
|
|
189
189
|
* <p>
|
|
190
|
-
* <b>
|
|
191
|
-
*
|
|
192
|
-
*
|
|
190
|
+
* <b>Application tuning</b>: Use AppConfig to carefully
|
|
191
|
+
* introduce changes to your application that can only be tested with production
|
|
192
|
+
* traffic.</p>
|
|
193
193
|
* </li>
|
|
194
194
|
* <li>
|
|
195
195
|
* <p>
|
|
@@ -23,7 +23,7 @@ export interface CreateConfigurationProfileCommandOutput extends ConfigurationPr
|
|
|
23
23
|
* </li>
|
|
24
24
|
* <li>
|
|
25
25
|
* <p>A validator for the configuration data. Available validators include either a JSON
|
|
26
|
-
* Schema or an Lambda function.</p>
|
|
26
|
+
* Schema or an Amazon Web Services Lambda function.</p>
|
|
27
27
|
* </li>
|
|
28
28
|
* </ul>
|
|
29
29
|
* <p>For more information, see <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-creating-configuration-and-profile.html">Create a
|
|
@@ -7,18 +7,39 @@ export interface GetConfigurationCommandInput extends GetConfigurationRequest {
|
|
|
7
7
|
export interface GetConfigurationCommandOutput extends Configuration, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
12
|
+
* <p>Retrieves the latest deployed configuration.</p>
|
|
13
|
+
*
|
|
11
14
|
* <important>
|
|
12
|
-
* <p>
|
|
13
|
-
*
|
|
14
|
-
* <
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
* <
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
15
|
+
* <p>Note the following important information.</p>
|
|
16
|
+
* <ul>
|
|
17
|
+
* <li>
|
|
18
|
+
* <p>This API action has been deprecated. Calls to receive configuration data should
|
|
19
|
+
* use the <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_StartConfigurationSession.html">StartConfigurationSession</a> and <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_GetLatestConfiguration.html">GetLatestConfiguration</a> APIs instead. </p>
|
|
20
|
+
* </li>
|
|
21
|
+
* <li>
|
|
22
|
+
* <p>
|
|
23
|
+
* <code>GetConfiguration</code> is a priced call. For more information, see
|
|
24
|
+
* <a href="https://aws.amazon.com/systems-manager/pricing/">Pricing</a>.</p>
|
|
25
|
+
* </li>
|
|
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>
|
|
32
|
+
* <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
|
+
* version on your behalf. If you choose to continue using
|
|
34
|
+
* <code>GetConfiguration</code>, we recommend that you include the
|
|
35
|
+
* <code>ClientConfigurationVersion</code> value with every call to
|
|
36
|
+
* <code>GetConfiguration</code>. The value to use for
|
|
37
|
+
* <code>ClientConfigurationVersion</code> comes from the
|
|
38
|
+
* <code>ConfigurationVersion</code> attribute returned by
|
|
39
|
+
* <code>GetConfiguration</code> when there is new or updated data, and should be
|
|
40
|
+
* saved for subsequent calls to <code>GetConfiguration</code>.</p>
|
|
41
|
+
* </li>
|
|
42
|
+
* </ul>
|
|
22
43
|
* </important>
|
|
23
44
|
* @example
|
|
24
45
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,7 +7,7 @@ export interface ListDeploymentsCommandInput extends ListDeploymentsRequest {
|
|
|
7
7
|
export interface ListDeploymentsCommandOutput extends Deployments, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Lists the deployments for an environment.</p>
|
|
10
|
+
* <p>Lists the deployments for an environment in descending deployment number order.</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,15 +20,18 @@ export declare namespace Application {
|
|
|
20
20
|
const filterSensitiveLog: (obj: Application) => any;
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
|
-
* <p>Detailed information about the bad request exception error when creating a hosted
|
|
23
|
+
* <p>Detailed information about the bad request exception error when creating a hosted
|
|
24
|
+
* configuration version.</p>
|
|
24
25
|
*/
|
|
25
26
|
export interface InvalidConfigurationDetail {
|
|
26
27
|
/**
|
|
27
|
-
* <p>The invalid or out-of-range validation constraint in your JSON schema that failed
|
|
28
|
+
* <p>The invalid or out-of-range validation constraint in your JSON schema that failed
|
|
29
|
+
* validation.</p>
|
|
28
30
|
*/
|
|
29
31
|
Constraint?: string;
|
|
30
32
|
/**
|
|
31
|
-
* <p>Location of the validation constraint in the configuration JSON schema that failed
|
|
33
|
+
* <p>Location of the validation constraint in the configuration JSON schema that failed
|
|
34
|
+
* validation.</p>
|
|
32
35
|
*/
|
|
33
36
|
Location?: string;
|
|
34
37
|
/**
|
|
@@ -47,12 +50,14 @@ export declare namespace InvalidConfigurationDetail {
|
|
|
47
50
|
const filterSensitiveLog: (obj: InvalidConfigurationDetail) => any;
|
|
48
51
|
}
|
|
49
52
|
/**
|
|
50
|
-
* <p>Detailed information about the input that failed to satisfy the constraints specified by
|
|
53
|
+
* <p>Detailed information about the input that failed to satisfy the constraints specified by
|
|
54
|
+
* a call.</p>
|
|
51
55
|
*/
|
|
52
56
|
export declare type BadRequestDetails = BadRequestDetails.InvalidConfigurationMember | BadRequestDetails.$UnknownMember;
|
|
53
57
|
export declare namespace BadRequestDetails {
|
|
54
58
|
/**
|
|
55
|
-
* <p>Detailed information about the bad request exception error when creating a hosted
|
|
59
|
+
* <p>Detailed information about the bad request exception error when creating a hosted
|
|
60
|
+
* configuration version.</p>
|
|
56
61
|
*/
|
|
57
62
|
interface InvalidConfigurationMember {
|
|
58
63
|
InvalidConfiguration: InvalidConfigurationDetail[];
|
|
@@ -84,7 +89,8 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
|
|
|
84
89
|
Message?: string;
|
|
85
90
|
Reason?: BadRequestReason | string;
|
|
86
91
|
/**
|
|
87
|
-
* <p>Detailed information about the input that failed to satisfy the constraints specified by
|
|
92
|
+
* <p>Detailed information about the input that failed to satisfy the constraints specified by
|
|
93
|
+
* a call.</p>
|
|
88
94
|
*/
|
|
89
95
|
Details?: BadRequestDetails;
|
|
90
96
|
}
|
|
@@ -127,7 +133,7 @@ export declare enum ValidatorType {
|
|
|
127
133
|
/**
|
|
128
134
|
* <p>A validator provides a syntactic or semantic check to ensure the configuration that you
|
|
129
135
|
* want to deploy functions as intended. To validate your application configuration data, you
|
|
130
|
-
* provide a schema or
|
|
136
|
+
* provide a schema or an Amazon Web Services Lambda function that runs against the configuration. The
|
|
131
137
|
* configuration deployment or update can only proceed when the configuration data is
|
|
132
138
|
* valid.</p>
|
|
133
139
|
*/
|
|
@@ -181,9 +187,17 @@ export interface ConfigurationProfile {
|
|
|
181
187
|
*/
|
|
182
188
|
Validators?: Validator[];
|
|
183
189
|
/**
|
|
184
|
-
* <p>The type of configurations
|
|
185
|
-
*
|
|
186
|
-
*
|
|
190
|
+
* <p>The type of configurations contained in the profile. AppConfig supports <code>feature
|
|
191
|
+
* flags</code> and <code>freeform</code> configurations. We recommend you create feature
|
|
192
|
+
* flag configurations to enable or disable new features and freeform configurations to
|
|
193
|
+
* distribute configurations to an application. When calling this API, enter one of the
|
|
194
|
+
* following values for <code>Type</code>:</p>
|
|
195
|
+
* <p>
|
|
196
|
+
* <code>AWS.AppConfig.FeatureFlags</code>
|
|
197
|
+
* </p>
|
|
198
|
+
* <p>
|
|
199
|
+
* <code>AWS.Freeform</code>
|
|
200
|
+
* </p>
|
|
187
201
|
*/
|
|
188
202
|
Type?: string;
|
|
189
203
|
}
|
|
@@ -243,9 +257,17 @@ export interface CreateConfigurationProfileRequest {
|
|
|
243
257
|
[key: string]: string;
|
|
244
258
|
};
|
|
245
259
|
/**
|
|
246
|
-
* <p>The type of configurations
|
|
247
|
-
*
|
|
248
|
-
*
|
|
260
|
+
* <p>The type of configurations contained in the profile. AppConfig supports <code>feature
|
|
261
|
+
* flags</code> and <code>freeform</code> configurations. We recommend you create feature
|
|
262
|
+
* flag configurations to enable or disable new features and freeform configurations to
|
|
263
|
+
* distribute configurations to an application. When calling this API, enter one of the
|
|
264
|
+
* following values for <code>Type</code>:</p>
|
|
265
|
+
* <p>
|
|
266
|
+
* <code>AWS.AppConfig.FeatureFlags</code>
|
|
267
|
+
* </p>
|
|
268
|
+
* <p>
|
|
269
|
+
* <code>AWS.Freeform</code>
|
|
270
|
+
* </p>
|
|
249
271
|
*/
|
|
250
272
|
Type?: string;
|
|
251
273
|
}
|
|
@@ -674,12 +696,11 @@ export interface Configuration {
|
|
|
674
696
|
/**
|
|
675
697
|
* <p>The content of the configuration or the configuration data.</p>
|
|
676
698
|
* <important>
|
|
677
|
-
* <p>
|
|
678
|
-
*
|
|
679
|
-
*
|
|
680
|
-
*
|
|
681
|
-
*
|
|
682
|
-
* returned.</p>
|
|
699
|
+
* <p>The <code>Content</code> attribute only contains data if the system finds new or
|
|
700
|
+
* updated configuration data. If there is no new or updated data and
|
|
701
|
+
* <code>ClientConfigurationVersion</code> matches the version of the current
|
|
702
|
+
* configuration, AppConfig returns a <code>204 No Content</code> HTTP response code and
|
|
703
|
+
* the <code>Content</code> value will be empty.</p>
|
|
683
704
|
* </important>
|
|
684
705
|
*/
|
|
685
706
|
Content?: Uint8Array;
|
|
@@ -1033,9 +1054,17 @@ export interface ConfigurationProfileSummary {
|
|
|
1033
1054
|
*/
|
|
1034
1055
|
ValidatorTypes?: (ValidatorType | string)[];
|
|
1035
1056
|
/**
|
|
1036
|
-
* <p>The type of configurations
|
|
1037
|
-
*
|
|
1038
|
-
*
|
|
1057
|
+
* <p>The type of configurations contained in the profile. AppConfig supports <code>feature
|
|
1058
|
+
* flags</code> and <code>freeform</code> configurations. We recommend you create feature
|
|
1059
|
+
* flag configurations to enable or disable new features and freeform configurations to
|
|
1060
|
+
* distribute configurations to an application. When calling this API, enter one of the
|
|
1061
|
+
* following values for <code>Type</code>:</p>
|
|
1062
|
+
* <p>
|
|
1063
|
+
* <code>AWS.AppConfig.FeatureFlags</code>
|
|
1064
|
+
* </p>
|
|
1065
|
+
* <p>
|
|
1066
|
+
* <code>AWS.Freeform</code>
|
|
1067
|
+
* </p>
|
|
1039
1068
|
*/
|
|
1040
1069
|
Type?: string;
|
|
1041
1070
|
}
|
|
@@ -1078,7 +1107,7 @@ export interface ListConfigurationProfilesRequest {
|
|
|
1078
1107
|
NextToken?: string;
|
|
1079
1108
|
/**
|
|
1080
1109
|
* <p>A filter based on the type of configurations that the configuration profile contains. A
|
|
1081
|
-
* configuration can be a feature flag or a
|
|
1110
|
+
* configuration can be a feature flag or a freeform configuration.</p>
|
|
1082
1111
|
*/
|
|
1083
1112
|
Type?: string;
|
|
1084
1113
|
}
|
|
@@ -1172,12 +1201,15 @@ export interface ListDeploymentsRequest {
|
|
|
1172
1201
|
*/
|
|
1173
1202
|
EnvironmentId: string | undefined;
|
|
1174
1203
|
/**
|
|
1175
|
-
* <p>The maximum number of items
|
|
1176
|
-
*
|
|
1204
|
+
* <p>The maximum number of items that may be returned for this call. If there are items that
|
|
1205
|
+
* have not yet been returned, the response will include a non-null <code>NextToken</code>
|
|
1206
|
+
* that you can provide in a subsequent call to get the next set of results.</p>
|
|
1177
1207
|
*/
|
|
1178
1208
|
MaxResults?: number;
|
|
1179
1209
|
/**
|
|
1180
|
-
* <p>
|
|
1210
|
+
* <p>The token returned by a prior call to this operation indicating the next set of results
|
|
1211
|
+
* to be returned. If not specified, the operation will return the first set of
|
|
1212
|
+
* results.</p>
|
|
1181
1213
|
*/
|
|
1182
1214
|
NextToken?: string;
|
|
1183
1215
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appconfig",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appconfig Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.51.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,41 +18,47 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.51.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.51.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.51.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.50.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.51.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.51.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.50.0",
|
|
39
|
+
"@aws-sdk/types": "3.50.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.50.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.49.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.49.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.51.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.51.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
-
"@
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.49.0",
|
|
55
|
+
"@tsconfig/recommended": "1.0.1",
|
|
56
|
+
"@types/node": "^12.7.5",
|
|
57
|
+
"concurrently": "7.0.0",
|
|
58
|
+
"downlevel-dts": "0.7.0",
|
|
59
|
+
"rimraf": "3.0.2",
|
|
60
|
+
"typedoc": "0.19.2",
|
|
61
|
+
"typescript": "~4.3.5"
|
|
56
62
|
},
|
|
57
63
|
"engines": {
|
|
58
64
|
"node": ">=12.0.0"
|