@aws-sdk/client-cloudfront-keyvaluestore 3.687.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.
|
@@ -7,7 +7,7 @@ import { CloudFrontKeyValueStoreServiceException as __BaseException } from "./Cl
|
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
|
-
Message?: string;
|
|
10
|
+
Message?: string | undefined;
|
|
11
11
|
/**
|
|
12
12
|
* @internal
|
|
13
13
|
*/
|
|
@@ -20,7 +20,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
20
20
|
export declare class ConflictException extends __BaseException {
|
|
21
21
|
readonly name: "ConflictException";
|
|
22
22
|
readonly $fault: "client";
|
|
23
|
-
Message?: string;
|
|
23
|
+
Message?: string | undefined;
|
|
24
24
|
/**
|
|
25
25
|
* @internal
|
|
26
26
|
*/
|
|
@@ -74,7 +74,7 @@ export interface DeleteKeyResponse {
|
|
|
74
74
|
export declare class InternalServerException extends __BaseException {
|
|
75
75
|
readonly name: "InternalServerException";
|
|
76
76
|
readonly $fault: "server";
|
|
77
|
-
Message?: string;
|
|
77
|
+
Message?: string | undefined;
|
|
78
78
|
/**
|
|
79
79
|
* @internal
|
|
80
80
|
*/
|
|
@@ -87,7 +87,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
87
87
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
88
88
|
readonly name: "ResourceNotFoundException";
|
|
89
89
|
readonly $fault: "client";
|
|
90
|
-
Message?: string;
|
|
90
|
+
Message?: string | undefined;
|
|
91
91
|
/**
|
|
92
92
|
* @internal
|
|
93
93
|
*/
|
|
@@ -100,7 +100,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
100
100
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
101
101
|
readonly name: "ServiceQuotaExceededException";
|
|
102
102
|
readonly $fault: "client";
|
|
103
|
-
Message?: string;
|
|
103
|
+
Message?: string | undefined;
|
|
104
104
|
/**
|
|
105
105
|
* @internal
|
|
106
106
|
*/
|
|
@@ -113,7 +113,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
113
113
|
export declare class ValidationException extends __BaseException {
|
|
114
114
|
readonly name: "ValidationException";
|
|
115
115
|
readonly $fault: "client";
|
|
116
|
-
Message?: string;
|
|
116
|
+
Message?: string | undefined;
|
|
117
117
|
/**
|
|
118
118
|
* @internal
|
|
119
119
|
*/
|
|
@@ -163,17 +163,17 @@ export interface DescribeKeyValueStoreResponse {
|
|
|
163
163
|
* <p>Date and time when the key value pairs in the Key Value Store was last modified.</p>
|
|
164
164
|
* @public
|
|
165
165
|
*/
|
|
166
|
-
LastModified?: Date;
|
|
166
|
+
LastModified?: Date | undefined;
|
|
167
167
|
/**
|
|
168
168
|
* <p>The current status of the Key Value Store.</p>
|
|
169
169
|
* @public
|
|
170
170
|
*/
|
|
171
|
-
Status?: string;
|
|
171
|
+
Status?: string | undefined;
|
|
172
172
|
/**
|
|
173
173
|
* <p>The reason for Key Value Store creation failure.</p>
|
|
174
174
|
* @public
|
|
175
175
|
*/
|
|
176
|
-
FailureReason?: string;
|
|
176
|
+
FailureReason?: string | undefined;
|
|
177
177
|
}
|
|
178
178
|
/**
|
|
179
179
|
* @public
|
|
@@ -229,12 +229,12 @@ export interface ListKeysRequest {
|
|
|
229
229
|
* <p>If nextToken is returned in the response, there are more results available. Make the next call using the returned token to retrieve the next page.</p>
|
|
230
230
|
* @public
|
|
231
231
|
*/
|
|
232
|
-
NextToken?: string;
|
|
232
|
+
NextToken?: string | undefined;
|
|
233
233
|
/**
|
|
234
234
|
* <p>Maximum number of results that are returned per call. The default is 10 and maximum allowed page is 50.</p>
|
|
235
235
|
* @public
|
|
236
236
|
*/
|
|
237
|
-
MaxResults?: number;
|
|
237
|
+
MaxResults?: number | undefined;
|
|
238
238
|
}
|
|
239
239
|
/**
|
|
240
240
|
* <p>A key value pair.</p>
|
|
@@ -260,12 +260,12 @@ export interface ListKeysResponse {
|
|
|
260
260
|
* <p>If nextToken is returned in the response, there are more results available. Make the next call using the returned token to retrieve the next page.</p>
|
|
261
261
|
* @public
|
|
262
262
|
*/
|
|
263
|
-
NextToken?: string;
|
|
263
|
+
NextToken?: string | undefined;
|
|
264
264
|
/**
|
|
265
265
|
* <p>Key value pairs</p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
Items?: ListKeysResponseListItem[];
|
|
268
|
+
Items?: ListKeysResponseListItem[] | undefined;
|
|
269
269
|
}
|
|
270
270
|
/**
|
|
271
271
|
* <p>A key value pair.</p>
|
|
@@ -359,12 +359,12 @@ export interface UpdateKeysRequest {
|
|
|
359
359
|
* <p>List of key value pairs to put.</p>
|
|
360
360
|
* @public
|
|
361
361
|
*/
|
|
362
|
-
Puts?: PutKeyRequestListItem[];
|
|
362
|
+
Puts?: PutKeyRequestListItem[] | undefined;
|
|
363
363
|
/**
|
|
364
364
|
* <p>List of keys to delete.</p>
|
|
365
365
|
* @public
|
|
366
366
|
*/
|
|
367
|
-
Deletes?: DeleteKeyRequestListItem[];
|
|
367
|
+
Deletes?: DeleteKeyRequestListItem[] | undefined;
|
|
368
368
|
}
|
|
369
369
|
/**
|
|
370
370
|
* <p>Metadata information about a Key Value Store.</p>
|
|
@@ -3,7 +3,7 @@ import { CloudFrontKeyValueStoreServiceException as __BaseException } from "./Cl
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
Message?: string;
|
|
6
|
+
Message?: string | undefined;
|
|
7
7
|
constructor(
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
@@ -11,7 +11,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
11
11
|
export declare class ConflictException extends __BaseException {
|
|
12
12
|
readonly name: "ConflictException";
|
|
13
13
|
readonly $fault: "client";
|
|
14
|
-
Message?: string;
|
|
14
|
+
Message?: string | undefined;
|
|
15
15
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
16
16
|
}
|
|
17
17
|
export interface DeleteKeyRequest {
|
|
@@ -27,7 +27,7 @@ export interface DeleteKeyResponse {
|
|
|
27
27
|
export declare class InternalServerException extends __BaseException {
|
|
28
28
|
readonly name: "InternalServerException";
|
|
29
29
|
readonly $fault: "server";
|
|
30
|
-
Message?: string;
|
|
30
|
+
Message?: string | undefined;
|
|
31
31
|
constructor(
|
|
32
32
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
33
33
|
);
|
|
@@ -35,7 +35,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
35
35
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
36
36
|
readonly name: "ResourceNotFoundException";
|
|
37
37
|
readonly $fault: "client";
|
|
38
|
-
Message?: string;
|
|
38
|
+
Message?: string | undefined;
|
|
39
39
|
constructor(
|
|
40
40
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
41
41
|
);
|
|
@@ -43,7 +43,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
43
43
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
44
44
|
readonly name: "ServiceQuotaExceededException";
|
|
45
45
|
readonly $fault: "client";
|
|
46
|
-
Message?: string;
|
|
46
|
+
Message?: string | undefined;
|
|
47
47
|
constructor(
|
|
48
48
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
49
49
|
);
|
|
@@ -51,7 +51,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
51
51
|
export declare class ValidationException extends __BaseException {
|
|
52
52
|
readonly name: "ValidationException";
|
|
53
53
|
readonly $fault: "client";
|
|
54
|
-
Message?: string;
|
|
54
|
+
Message?: string | undefined;
|
|
55
55
|
constructor(
|
|
56
56
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
57
57
|
);
|
|
@@ -65,9 +65,9 @@ export interface DescribeKeyValueStoreResponse {
|
|
|
65
65
|
KvsARN: string | undefined;
|
|
66
66
|
Created: Date | undefined;
|
|
67
67
|
ETag: string | undefined;
|
|
68
|
-
LastModified?: Date;
|
|
69
|
-
Status?: string;
|
|
70
|
-
FailureReason?: string;
|
|
68
|
+
LastModified?: Date | undefined;
|
|
69
|
+
Status?: string | undefined;
|
|
70
|
+
FailureReason?: string | undefined;
|
|
71
71
|
}
|
|
72
72
|
export interface GetKeyRequest {
|
|
73
73
|
KvsARN: string | undefined;
|
|
@@ -81,16 +81,16 @@ export interface GetKeyResponse {
|
|
|
81
81
|
}
|
|
82
82
|
export interface ListKeysRequest {
|
|
83
83
|
KvsARN: string | undefined;
|
|
84
|
-
NextToken?: string;
|
|
85
|
-
MaxResults?: number;
|
|
84
|
+
NextToken?: string | undefined;
|
|
85
|
+
MaxResults?: number | undefined;
|
|
86
86
|
}
|
|
87
87
|
export interface ListKeysResponseListItem {
|
|
88
88
|
Key: string | undefined;
|
|
89
89
|
Value: string | undefined;
|
|
90
90
|
}
|
|
91
91
|
export interface ListKeysResponse {
|
|
92
|
-
NextToken?: string;
|
|
93
|
-
Items?: ListKeysResponseListItem[];
|
|
92
|
+
NextToken?: string | undefined;
|
|
93
|
+
Items?: ListKeysResponseListItem[] | undefined;
|
|
94
94
|
}
|
|
95
95
|
export interface PutKeyRequest {
|
|
96
96
|
Key: string | undefined;
|
|
@@ -113,8 +113,8 @@ export interface PutKeyRequestListItem {
|
|
|
113
113
|
export interface UpdateKeysRequest {
|
|
114
114
|
KvsARN: string | undefined;
|
|
115
115
|
IfMatch: string | undefined;
|
|
116
|
-
Puts?: PutKeyRequestListItem[];
|
|
117
|
-
Deletes?: DeleteKeyRequestListItem[];
|
|
116
|
+
Puts?: PutKeyRequestListItem[] | undefined;
|
|
117
|
+
Deletes?: DeleteKeyRequestListItem[] | undefined;
|
|
118
118
|
}
|
|
119
119
|
export interface UpdateKeysResponse {
|
|
120
120
|
ItemCount: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudfront-keyvaluestore",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudfront Keyvaluestore 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-cloudfront-keyvaluestore",
|
|
@@ -20,20 +20,20 @@
|
|
|
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
|
-
"@aws-sdk/signature-v4-multi-region": "3.
|
|
32
|
+
"@aws-sdk/signature-v4-multi-region": "3.691.0",
|
|
33
33
|
"@aws-sdk/types": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
37
37
|
"@smithy/config-resolver": "^3.0.10",
|
|
38
38
|
"@smithy/core": "^2.5.1",
|
|
39
39
|
"@smithy/fetch-http-handler": "^4.0.0",
|