@aws-sdk/client-appconfig 3.693.0 → 3.696.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/dist-cjs/index.js
CHANGED
|
@@ -273,6 +273,7 @@ var AppConfigServiceException = _AppConfigServiceException;
|
|
|
273
273
|
// src/models/models_0.ts
|
|
274
274
|
|
|
275
275
|
var ActionPoint = {
|
|
276
|
+
AT_DEPLOYMENT_TICK: "AT_DEPLOYMENT_TICK",
|
|
276
277
|
ON_DEPLOYMENT_BAKING: "ON_DEPLOYMENT_BAKING",
|
|
277
278
|
ON_DEPLOYMENT_COMPLETE: "ON_DEPLOYMENT_COMPLETE",
|
|
278
279
|
ON_DEPLOYMENT_ROLLED_BACK: "ON_DEPLOYMENT_ROLLED_BACK",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
|
|
3
3
|
export const ActionPoint = {
|
|
4
|
+
AT_DEPLOYMENT_TICK: "AT_DEPLOYMENT_TICK",
|
|
4
5
|
ON_DEPLOYMENT_BAKING: "ON_DEPLOYMENT_BAKING",
|
|
5
6
|
ON_DEPLOYMENT_COMPLETE: "ON_DEPLOYMENT_COMPLETE",
|
|
6
7
|
ON_DEPLOYMENT_ROLLED_BACK: "ON_DEPLOYMENT_ROLLED_BACK",
|
|
@@ -28,7 +28,7 @@ declare const ListHostedConfigurationVersionsCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Lists configurations stored in the AppConfig hosted configuration store by
|
|
31
|
-
* version
|
|
31
|
+
* version. </p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -56,11 +56,7 @@ export interface AccountSettings {
|
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
58
|
* <p>An action defines the tasks that the extension performs during the AppConfig
|
|
59
|
-
* workflow. Each action includes an action point
|
|
60
|
-
* <code>ON_CREATE_HOSTED_CONFIGURATION</code>, <code>PRE_DEPLOYMENT</code>, or
|
|
61
|
-
* <code>ON_DEPLOYMENT</code>. Each action also includes a name, a URI to an Lambda function, and an Amazon Resource Name (ARN) for an Identity and Access Management
|
|
62
|
-
* assume role. You specify the name, URI, and ARN for each <i>action point</i>
|
|
63
|
-
* defined in the extension. You can specify the following actions for an extension:</p>
|
|
59
|
+
* workflow. Each action includes an action point, as shown in the following list: </p>
|
|
64
60
|
* <ul>
|
|
65
61
|
* <li>
|
|
66
62
|
* <p>
|
|
@@ -74,6 +70,11 @@ export interface AccountSettings {
|
|
|
74
70
|
* </li>
|
|
75
71
|
* <li>
|
|
76
72
|
* <p>
|
|
73
|
+
* <code>AT_DEPLOYMENT_TICK</code>
|
|
74
|
+
* </p>
|
|
75
|
+
* </li>
|
|
76
|
+
* <li>
|
|
77
|
+
* <p>
|
|
77
78
|
* <code>ON_DEPLOYMENT_START</code>
|
|
78
79
|
* </p>
|
|
79
80
|
* </li>
|
|
@@ -98,6 +99,9 @@ export interface AccountSettings {
|
|
|
98
99
|
* </p>
|
|
99
100
|
* </li>
|
|
100
101
|
* </ul>
|
|
102
|
+
* <p>Each action also includes a name, a URI to an Lambda function, and an
|
|
103
|
+
* Amazon Resource Name (ARN) for an Identity and Access Management assume role. You specify the name,
|
|
104
|
+
* URI, and ARN for each <i>action point</i> defined in the extension.</p>
|
|
101
105
|
* @public
|
|
102
106
|
*/
|
|
103
107
|
export interface Action {
|
|
@@ -172,6 +176,7 @@ export interface ActionInvocation {
|
|
|
172
176
|
* @enum
|
|
173
177
|
*/
|
|
174
178
|
export declare const ActionPoint: {
|
|
179
|
+
readonly AT_DEPLOYMENT_TICK: "AT_DEPLOYMENT_TICK";
|
|
175
180
|
readonly ON_DEPLOYMENT_BAKING: "ON_DEPLOYMENT_BAKING";
|
|
176
181
|
readonly ON_DEPLOYMENT_COMPLETE: "ON_DEPLOYMENT_COMPLETE";
|
|
177
182
|
readonly ON_DEPLOYMENT_ROLLED_BACK: "ON_DEPLOYMENT_ROLLED_BACK";
|
|
@@ -505,7 +510,7 @@ export interface CreateConfigurationProfileRequest {
|
|
|
505
510
|
* <li>
|
|
506
511
|
* <p>For an Amazon S3 object, specify the URI in the following format:
|
|
507
512
|
* <code>s3://<bucket>/<objectKey> </code>. Here is an example:
|
|
508
|
-
*
|
|
513
|
+
* <code>s3://amzn-s3-demo-bucket/my-app/us-east-1/my-config.json</code>
|
|
509
514
|
* </p>
|
|
510
515
|
* </li>
|
|
511
516
|
* <li>
|
|
@@ -2287,8 +2292,9 @@ export interface ListHostedConfigurationVersionsRequest {
|
|
|
2287
2292
|
*/
|
|
2288
2293
|
ConfigurationProfileId: string | undefined;
|
|
2289
2294
|
/**
|
|
2290
|
-
* <p>The maximum number of items to return for this call.
|
|
2291
|
-
*
|
|
2295
|
+
* <p>The maximum number of items to return for this call. If <code>MaxResults</code> is not
|
|
2296
|
+
* provided in the call, AppConfig returns the maximum of 50. The call also returns
|
|
2297
|
+
* a token that you can specify in a subsequent call to get the next set of results.</p>
|
|
2292
2298
|
* @public
|
|
2293
2299
|
*/
|
|
2294
2300
|
MaxResults?: number | undefined;
|
|
@@ -23,6 +23,7 @@ export interface ActionInvocation {
|
|
|
23
23
|
InvocationId?: string | undefined;
|
|
24
24
|
}
|
|
25
25
|
export declare const ActionPoint: {
|
|
26
|
+
readonly AT_DEPLOYMENT_TICK: "AT_DEPLOYMENT_TICK";
|
|
26
27
|
readonly ON_DEPLOYMENT_BAKING: "ON_DEPLOYMENT_BAKING";
|
|
27
28
|
readonly ON_DEPLOYMENT_COMPLETE: "ON_DEPLOYMENT_COMPLETE";
|
|
28
29
|
readonly ON_DEPLOYMENT_ROLLED_BACK: "ON_DEPLOYMENT_ROLLED_BACK";
|
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.696.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-appconfig",
|
|
@@ -20,44 +20,44 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.1.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.7.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.696.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.696.0",
|
|
25
|
+
"@aws-sdk/core": "3.696.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.696.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.696.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.696.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.696.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.696.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.696.0",
|
|
32
|
+
"@aws-sdk/types": "3.696.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.696.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.696.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.696.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.12",
|
|
37
|
+
"@smithy/core": "^2.5.3",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.1",
|
|
39
|
+
"@smithy/hash-node": "^3.0.10",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.10",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.12",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.3",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.27",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.10",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.10",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.11",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.1",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.7",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.4",
|
|
50
|
+
"@smithy/types": "^3.7.1",
|
|
51
|
+
"@smithy/url-parser": "^3.0.10",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
60
|
-
"@smithy/util-stream": "^3.3.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.27",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.27",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.6",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.10",
|
|
59
|
+
"@smithy/util-retry": "^3.0.10",
|
|
60
|
+
"@smithy/util-stream": "^3.3.1",
|
|
61
61
|
"@smithy/util-utf8": "^3.0.0",
|
|
62
62
|
"tslib": "^2.6.2"
|
|
63
63
|
},
|