@aws-sdk/client-appconfigdata 3.686.0 → 3.691.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.
|
@@ -31,7 +31,7 @@ export interface InvalidParameterDetail {
|
|
|
31
31
|
* <p>The reason the parameter is invalid.</p>
|
|
32
32
|
* @public
|
|
33
33
|
*/
|
|
34
|
-
Problem?: InvalidParameterProblem;
|
|
34
|
+
Problem?: InvalidParameterProblem | undefined;
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
37
|
* <p>Detailed information about the input that failed to satisfy the constraints specified by
|
|
@@ -86,17 +86,17 @@ export type BadRequestReason = (typeof BadRequestReason)[keyof typeof BadRequest
|
|
|
86
86
|
export declare class BadRequestException extends __BaseException {
|
|
87
87
|
readonly name: "BadRequestException";
|
|
88
88
|
readonly $fault: "client";
|
|
89
|
-
Message?: string;
|
|
89
|
+
Message?: string | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* <p>Code indicating the reason the request was invalid.</p>
|
|
92
92
|
* @public
|
|
93
93
|
*/
|
|
94
|
-
Reason?: BadRequestReason;
|
|
94
|
+
Reason?: BadRequestReason | undefined;
|
|
95
95
|
/**
|
|
96
96
|
* <p>Details describing why the request was invalid.</p>
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
|
-
Details?: BadRequestDetails;
|
|
99
|
+
Details?: BadRequestDetails | undefined;
|
|
100
100
|
/**
|
|
101
101
|
* @internal
|
|
102
102
|
*/
|
|
@@ -109,7 +109,7 @@ export declare class BadRequestException extends __BaseException {
|
|
|
109
109
|
export declare class InternalServerException extends __BaseException {
|
|
110
110
|
readonly name: "InternalServerException";
|
|
111
111
|
readonly $fault: "server";
|
|
112
|
-
Message?: string;
|
|
112
|
+
Message?: string | undefined;
|
|
113
113
|
/**
|
|
114
114
|
* @internal
|
|
115
115
|
*/
|
|
@@ -152,18 +152,18 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
|
152
152
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
153
153
|
readonly name: "ResourceNotFoundException";
|
|
154
154
|
readonly $fault: "client";
|
|
155
|
-
Message?: string;
|
|
155
|
+
Message?: string | undefined;
|
|
156
156
|
/**
|
|
157
157
|
* <p>The type of resource that was not found.</p>
|
|
158
158
|
* @public
|
|
159
159
|
*/
|
|
160
|
-
ResourceType?: ResourceType;
|
|
160
|
+
ResourceType?: ResourceType | undefined;
|
|
161
161
|
/**
|
|
162
162
|
* <p>A map indicating which parameters in the request reference the resource that was not
|
|
163
163
|
* found.</p>
|
|
164
164
|
* @public
|
|
165
165
|
*/
|
|
166
|
-
ReferencedBy?: Record<string, string
|
|
166
|
+
ReferencedBy?: Record<string, string> | undefined;
|
|
167
167
|
/**
|
|
168
168
|
* @internal
|
|
169
169
|
*/
|
|
@@ -194,7 +194,7 @@ export interface StartConfigurationSessionRequest {
|
|
|
194
194
|
* more frequently than every 60 seconds.</p>
|
|
195
195
|
* @public
|
|
196
196
|
*/
|
|
197
|
-
RequiredMinimumPollIntervalInSeconds?: number;
|
|
197
|
+
RequiredMinimumPollIntervalInSeconds?: number | undefined;
|
|
198
198
|
}
|
|
199
199
|
/**
|
|
200
200
|
* @public
|
|
@@ -217,7 +217,7 @@ export interface StartConfigurationSessionResponse {
|
|
|
217
217
|
* </important>
|
|
218
218
|
* @public
|
|
219
219
|
*/
|
|
220
|
-
InitialConfigurationToken?: string;
|
|
220
|
+
InitialConfigurationToken?: string | undefined;
|
|
221
221
|
}
|
|
222
222
|
/**
|
|
223
223
|
* <p>The request was denied due to request throttling.</p>
|
|
@@ -226,7 +226,7 @@ export interface StartConfigurationSessionResponse {
|
|
|
226
226
|
export declare class ThrottlingException extends __BaseException {
|
|
227
227
|
readonly name: "ThrottlingException";
|
|
228
228
|
readonly $fault: "client";
|
|
229
|
-
Message?: string;
|
|
229
|
+
Message?: string | undefined;
|
|
230
230
|
/**
|
|
231
231
|
* @internal
|
|
232
232
|
*/
|
|
@@ -269,30 +269,30 @@ export interface GetLatestConfigurationResponse {
|
|
|
269
269
|
* </important>
|
|
270
270
|
* @public
|
|
271
271
|
*/
|
|
272
|
-
NextPollConfigurationToken?: string;
|
|
272
|
+
NextPollConfigurationToken?: string | undefined;
|
|
273
273
|
/**
|
|
274
274
|
* <p>The amount of time the client should wait before polling for configuration updates
|
|
275
275
|
* again. Use <code>RequiredMinimumPollIntervalInSeconds</code> to set the desired poll
|
|
276
276
|
* interval.</p>
|
|
277
277
|
* @public
|
|
278
278
|
*/
|
|
279
|
-
NextPollIntervalInSeconds?: number;
|
|
279
|
+
NextPollIntervalInSeconds?: number | undefined;
|
|
280
280
|
/**
|
|
281
281
|
* <p>A standard MIME type describing the format of the configuration content.</p>
|
|
282
282
|
* @public
|
|
283
283
|
*/
|
|
284
|
-
ContentType?: string;
|
|
284
|
+
ContentType?: string | undefined;
|
|
285
285
|
/**
|
|
286
286
|
* <p>The data of the configuration. This may be empty if the client already has the latest
|
|
287
287
|
* version of configuration.</p>
|
|
288
288
|
* @public
|
|
289
289
|
*/
|
|
290
|
-
Configuration?: Uint8Array;
|
|
290
|
+
Configuration?: Uint8Array | undefined;
|
|
291
291
|
/**
|
|
292
292
|
* <p>The user-defined label for the AppConfig hosted configuration version. This attribute doesn't apply if the configuration is not from an AppConfig hosted configuration version. If the client already has the latest version of the configuration data, this value is empty.</p>
|
|
293
293
|
* @public
|
|
294
294
|
*/
|
|
295
|
-
VersionLabel?: string;
|
|
295
|
+
VersionLabel?: string | undefined;
|
|
296
296
|
}
|
|
297
297
|
/**
|
|
298
298
|
* @internal
|
|
@@ -8,7 +8,7 @@ export declare const InvalidParameterProblem: {
|
|
|
8
8
|
export type InvalidParameterProblem =
|
|
9
9
|
(typeof InvalidParameterProblem)[keyof typeof InvalidParameterProblem];
|
|
10
10
|
export interface InvalidParameterDetail {
|
|
11
|
-
Problem?: InvalidParameterProblem;
|
|
11
|
+
Problem?: InvalidParameterProblem | undefined;
|
|
12
12
|
}
|
|
13
13
|
export type BadRequestDetails =
|
|
14
14
|
| BadRequestDetails.InvalidParametersMember
|
|
@@ -36,9 +36,9 @@ export type BadRequestReason =
|
|
|
36
36
|
export declare class BadRequestException extends __BaseException {
|
|
37
37
|
readonly name: "BadRequestException";
|
|
38
38
|
readonly $fault: "client";
|
|
39
|
-
Message?: string;
|
|
40
|
-
Reason?: BadRequestReason;
|
|
41
|
-
Details?: BadRequestDetails;
|
|
39
|
+
Message?: string | undefined;
|
|
40
|
+
Reason?: BadRequestReason | undefined;
|
|
41
|
+
Details?: BadRequestDetails | undefined;
|
|
42
42
|
constructor(
|
|
43
43
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
44
44
|
);
|
|
@@ -46,7 +46,7 @@ export declare class BadRequestException extends __BaseException {
|
|
|
46
46
|
export declare class InternalServerException extends __BaseException {
|
|
47
47
|
readonly name: "InternalServerException";
|
|
48
48
|
readonly $fault: "server";
|
|
49
|
-
Message?: string;
|
|
49
|
+
Message?: string | undefined;
|
|
50
50
|
constructor(
|
|
51
51
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
52
52
|
);
|
|
@@ -62,9 +62,9 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
|
62
62
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
63
63
|
readonly name: "ResourceNotFoundException";
|
|
64
64
|
readonly $fault: "client";
|
|
65
|
-
Message?: string;
|
|
66
|
-
ResourceType?: ResourceType;
|
|
67
|
-
ReferencedBy?: Record<string, string
|
|
65
|
+
Message?: string | undefined;
|
|
66
|
+
ResourceType?: ResourceType | undefined;
|
|
67
|
+
ReferencedBy?: Record<string, string> | undefined;
|
|
68
68
|
constructor(
|
|
69
69
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
70
70
|
);
|
|
@@ -73,15 +73,15 @@ export interface StartConfigurationSessionRequest {
|
|
|
73
73
|
ApplicationIdentifier: string | undefined;
|
|
74
74
|
EnvironmentIdentifier: string | undefined;
|
|
75
75
|
ConfigurationProfileIdentifier: string | undefined;
|
|
76
|
-
RequiredMinimumPollIntervalInSeconds?: number;
|
|
76
|
+
RequiredMinimumPollIntervalInSeconds?: number | undefined;
|
|
77
77
|
}
|
|
78
78
|
export interface StartConfigurationSessionResponse {
|
|
79
|
-
InitialConfigurationToken?: string;
|
|
79
|
+
InitialConfigurationToken?: string | undefined;
|
|
80
80
|
}
|
|
81
81
|
export declare class ThrottlingException extends __BaseException {
|
|
82
82
|
readonly name: "ThrottlingException";
|
|
83
83
|
readonly $fault: "client";
|
|
84
|
-
Message?: string;
|
|
84
|
+
Message?: string | undefined;
|
|
85
85
|
constructor(
|
|
86
86
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
87
87
|
);
|
|
@@ -90,11 +90,11 @@ export interface GetLatestConfigurationRequest {
|
|
|
90
90
|
ConfigurationToken: string | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface GetLatestConfigurationResponse {
|
|
93
|
-
NextPollConfigurationToken?: string;
|
|
94
|
-
NextPollIntervalInSeconds?: number;
|
|
95
|
-
ContentType?: string;
|
|
96
|
-
Configuration?: Uint8Array;
|
|
97
|
-
VersionLabel?: string;
|
|
93
|
+
NextPollConfigurationToken?: string | undefined;
|
|
94
|
+
NextPollIntervalInSeconds?: number | undefined;
|
|
95
|
+
ContentType?: string | undefined;
|
|
96
|
+
Configuration?: Uint8Array | undefined;
|
|
97
|
+
VersionLabel?: string | undefined;
|
|
98
98
|
}
|
|
99
99
|
export declare const GetLatestConfigurationResponseFilterSensitiveLog: (
|
|
100
100
|
obj: GetLatestConfigurationResponse
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appconfigdata",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appconfigdata Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.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-appconfigdata",
|
|
@@ -20,19 +20,19 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|