@aws-sdk/client-appconfig 3.99.0 → 3.109.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
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-appconfig
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-appconfig
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-appconfig
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class AppConfigClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var AppConfigClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -113,9 +113,7 @@ export interface CreateApplicationRequest {
|
|
|
113
113
|
* resources. Each tag consists of a key and an optional value, both of which you
|
|
114
114
|
* define.</p>
|
|
115
115
|
*/
|
|
116
|
-
Tags?:
|
|
117
|
-
[key: string]: string;
|
|
118
|
-
};
|
|
116
|
+
Tags?: Record<string, string>;
|
|
119
117
|
}
|
|
120
118
|
export declare namespace CreateApplicationRequest {
|
|
121
119
|
/**
|
|
@@ -262,9 +260,7 @@ export interface CreateConfigurationProfileRequest {
|
|
|
262
260
|
* AppConfig resources. Each tag consists of a key and an optional value, both of which you
|
|
263
261
|
* define.</p>
|
|
264
262
|
*/
|
|
265
|
-
Tags?:
|
|
266
|
-
[key: string]: string;
|
|
267
|
-
};
|
|
263
|
+
Tags?: Record<string, string>;
|
|
268
264
|
/**
|
|
269
265
|
* <p>The type of configurations contained in the profile. AppConfig supports <code>feature
|
|
270
266
|
* flags</code> and <code>freeform</code> configurations. We recommend you create feature
|
|
@@ -372,9 +368,7 @@ export interface CreateDeploymentStrategyRequest {
|
|
|
372
368
|
* AppConfig resources. Each tag consists of a key and an optional value, both of which you
|
|
373
369
|
* define.</p>
|
|
374
370
|
*/
|
|
375
|
-
Tags?:
|
|
376
|
-
[key: string]: string;
|
|
377
|
-
};
|
|
371
|
+
Tags?: Record<string, string>;
|
|
378
372
|
}
|
|
379
373
|
export declare namespace CreateDeploymentStrategyRequest {
|
|
380
374
|
/**
|
|
@@ -465,9 +459,7 @@ export interface CreateEnvironmentRequest {
|
|
|
465
459
|
* resources. Each tag consists of a key and an optional value, both of which you
|
|
466
460
|
* define.</p>
|
|
467
461
|
*/
|
|
468
|
-
Tags?:
|
|
469
|
-
[key: string]: string;
|
|
470
|
-
};
|
|
462
|
+
Tags?: Record<string, string>;
|
|
471
463
|
}
|
|
472
464
|
export declare namespace CreateEnvironmentRequest {
|
|
473
465
|
/**
|
|
@@ -1408,9 +1400,7 @@ export interface ResourceTags {
|
|
|
1408
1400
|
* AppConfig resources. Each tag consists of a key and an optional value, both of which you
|
|
1409
1401
|
* define.</p>
|
|
1410
1402
|
*/
|
|
1411
|
-
Tags?:
|
|
1412
|
-
[key: string]: string;
|
|
1413
|
-
};
|
|
1403
|
+
Tags?: Record<string, string>;
|
|
1414
1404
|
}
|
|
1415
1405
|
export declare namespace ResourceTags {
|
|
1416
1406
|
/**
|
|
@@ -1448,9 +1438,7 @@ export interface StartDeploymentRequest {
|
|
|
1448
1438
|
* resources. Each tag consists of a key and an optional value, both of which you
|
|
1449
1439
|
* define.</p>
|
|
1450
1440
|
*/
|
|
1451
|
-
Tags?:
|
|
1452
|
-
[key: string]: string;
|
|
1453
|
-
};
|
|
1441
|
+
Tags?: Record<string, string>;
|
|
1454
1442
|
}
|
|
1455
1443
|
export declare namespace StartDeploymentRequest {
|
|
1456
1444
|
/**
|
|
@@ -1488,9 +1476,7 @@ export interface TagResourceRequest {
|
|
|
1488
1476
|
* up to 128 characters and must not start with <code>aws:</code>. The tag value can be up to
|
|
1489
1477
|
* 256 characters.</p>
|
|
1490
1478
|
*/
|
|
1491
|
-
Tags:
|
|
1492
|
-
[key: string]: string;
|
|
1493
|
-
} | undefined;
|
|
1479
|
+
Tags: Record<string, string> | undefined;
|
|
1494
1480
|
}
|
|
1495
1481
|
export declare namespace TagResourceRequest {
|
|
1496
1482
|
/**
|
|
@@ -70,9 +70,7 @@ export interface CreateApplicationRequest {
|
|
|
70
70
|
|
|
71
71
|
Description?: string;
|
|
72
72
|
|
|
73
|
-
Tags?:
|
|
74
|
-
[key: string]: string;
|
|
75
|
-
};
|
|
73
|
+
Tags?: Record<string, string>;
|
|
76
74
|
}
|
|
77
75
|
export declare namespace CreateApplicationRequest {
|
|
78
76
|
|
|
@@ -137,9 +135,7 @@ export interface CreateConfigurationProfileRequest {
|
|
|
137
135
|
|
|
138
136
|
Validators?: Validator[];
|
|
139
137
|
|
|
140
|
-
Tags?:
|
|
141
|
-
[key: string]: string;
|
|
142
|
-
};
|
|
138
|
+
Tags?: Record<string, string>;
|
|
143
139
|
|
|
144
140
|
Type?: string;
|
|
145
141
|
}
|
|
@@ -180,9 +176,7 @@ export interface CreateDeploymentStrategyRequest {
|
|
|
180
176
|
|
|
181
177
|
ReplicateTo: ReplicateTo | string | undefined;
|
|
182
178
|
|
|
183
|
-
Tags?:
|
|
184
|
-
[key: string]: string;
|
|
185
|
-
};
|
|
179
|
+
Tags?: Record<string, string>;
|
|
186
180
|
}
|
|
187
181
|
export declare namespace CreateDeploymentStrategyRequest {
|
|
188
182
|
|
|
@@ -231,9 +225,7 @@ export interface CreateEnvironmentRequest {
|
|
|
231
225
|
|
|
232
226
|
Monitors?: Monitor[];
|
|
233
227
|
|
|
234
|
-
Tags?:
|
|
235
|
-
[key: string]: string;
|
|
236
|
-
};
|
|
228
|
+
Tags?: Record<string, string>;
|
|
237
229
|
}
|
|
238
230
|
export declare namespace CreateEnvironmentRequest {
|
|
239
231
|
|
|
@@ -753,9 +745,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
753
745
|
}
|
|
754
746
|
export interface ResourceTags {
|
|
755
747
|
|
|
756
|
-
Tags?:
|
|
757
|
-
[key: string]: string;
|
|
758
|
-
};
|
|
748
|
+
Tags?: Record<string, string>;
|
|
759
749
|
}
|
|
760
750
|
export declare namespace ResourceTags {
|
|
761
751
|
|
|
@@ -775,9 +765,7 @@ export interface StartDeploymentRequest {
|
|
|
775
765
|
|
|
776
766
|
Description?: string;
|
|
777
767
|
|
|
778
|
-
Tags?:
|
|
779
|
-
[key: string]: string;
|
|
780
|
-
};
|
|
768
|
+
Tags?: Record<string, string>;
|
|
781
769
|
}
|
|
782
770
|
export declare namespace StartDeploymentRequest {
|
|
783
771
|
|
|
@@ -799,9 +787,7 @@ export interface TagResourceRequest {
|
|
|
799
787
|
|
|
800
788
|
ResourceArn: string | undefined;
|
|
801
789
|
|
|
802
|
-
Tags:
|
|
803
|
-
[key: string]: string;
|
|
804
|
-
} | undefined;
|
|
790
|
+
Tags: Record<string, string> | undefined;
|
|
805
791
|
}
|
|
806
792
|
export declare namespace TagResourceRequest {
|
|
807
793
|
|
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.109.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,36 +18,37 @@
|
|
|
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-
|
|
31
|
-
"@aws-sdk/middleware-
|
|
32
|
-
"@aws-sdk/middleware-
|
|
33
|
-
"@aws-sdk/middleware-
|
|
34
|
-
"@aws-sdk/middleware-
|
|
35
|
-
"@aws-sdk/
|
|
36
|
-
"@aws-sdk/node-
|
|
37
|
-
"@aws-sdk/
|
|
38
|
-
"@aws-sdk/
|
|
39
|
-
"@aws-sdk/
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@aws-sdk/
|
|
21
|
+
"@aws-sdk/client-sts": "3.109.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.109.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.109.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.109.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.109.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.109.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.109.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.109.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.109.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.109.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.109.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.109.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.109.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.109.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.109.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.109.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.109.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.109.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.109.0",
|
|
40
|
+
"@aws-sdk/types": "3.109.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.109.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
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.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.109.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.109.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.109.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.109.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
51
52
|
"tslib": "^2.3.1"
|
|
52
53
|
},
|
|
53
54
|
"devDependencies": {
|