@aws-sdk/client-cloudfront-keyvaluestore 3.1086.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/CloudFrontKeyValueStore.d.ts +24 -54
- package/dist-types/ts3.4/CloudFrontKeyValueStoreClient.d.ts +10 -35
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +12 -18
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/DeleteKeyCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/DescribeKeyValueStoreCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetKeyCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/ListKeysCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/PutKeyCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/UpdateKeysCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListKeysPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +10 -22
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -5
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +40 -40
package/dist-cjs/index.js
CHANGED
|
@@ -4,115 +4,85 @@ import {
|
|
|
4
4
|
Paginator,
|
|
5
5
|
} from "@smithy/types";
|
|
6
6
|
import { CloudFrontKeyValueStoreClient } from "./CloudFrontKeyValueStoreClient";
|
|
7
|
-
import {
|
|
8
|
-
DeleteKeyCommandInput,
|
|
9
|
-
DeleteKeyCommandOutput,
|
|
10
|
-
} from "./commands/DeleteKeyCommand";
|
|
7
|
+
import { DeleteKeyCommandInput, DeleteKeyCommandOutput } from "./commands/DeleteKeyCommand";
|
|
11
8
|
import {
|
|
12
9
|
DescribeKeyValueStoreCommandInput,
|
|
13
10
|
DescribeKeyValueStoreCommandOutput,
|
|
14
11
|
} from "./commands/DescribeKeyValueStoreCommand";
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
} from "./commands/
|
|
19
|
-
import {
|
|
20
|
-
ListKeysCommandInput,
|
|
21
|
-
ListKeysCommandOutput,
|
|
22
|
-
} from "./commands/ListKeysCommand";
|
|
23
|
-
import {
|
|
24
|
-
PutKeyCommandInput,
|
|
25
|
-
PutKeyCommandOutput,
|
|
26
|
-
} from "./commands/PutKeyCommand";
|
|
27
|
-
import {
|
|
28
|
-
UpdateKeysCommandInput,
|
|
29
|
-
UpdateKeysCommandOutput,
|
|
30
|
-
} from "./commands/UpdateKeysCommand";
|
|
12
|
+
import { GetKeyCommandInput, GetKeyCommandOutput } from "./commands/GetKeyCommand";
|
|
13
|
+
import { ListKeysCommandInput, ListKeysCommandOutput } from "./commands/ListKeysCommand";
|
|
14
|
+
import { PutKeyCommandInput, PutKeyCommandOutput } from "./commands/PutKeyCommand";
|
|
15
|
+
import { UpdateKeysCommandInput, UpdateKeysCommandOutput } from "./commands/UpdateKeysCommand";
|
|
31
16
|
export interface CloudFrontKeyValueStore {
|
|
32
17
|
deleteKey(
|
|
33
18
|
args: DeleteKeyCommandInput,
|
|
34
|
-
options?: __HttpHandlerOptions
|
|
19
|
+
options?: __HttpHandlerOptions,
|
|
35
20
|
): Promise<DeleteKeyCommandOutput>;
|
|
36
21
|
deleteKey(
|
|
37
22
|
args: DeleteKeyCommandInput,
|
|
38
|
-
cb: (err: any, data?: DeleteKeyCommandOutput) => void
|
|
23
|
+
cb: (err: any, data?: DeleteKeyCommandOutput) => void,
|
|
39
24
|
): void;
|
|
40
25
|
deleteKey(
|
|
41
26
|
args: DeleteKeyCommandInput,
|
|
42
27
|
options: __HttpHandlerOptions,
|
|
43
|
-
cb: (err: any, data?: DeleteKeyCommandOutput) => void
|
|
28
|
+
cb: (err: any, data?: DeleteKeyCommandOutput) => void,
|
|
44
29
|
): void;
|
|
45
30
|
describeKeyValueStore(
|
|
46
31
|
args: DescribeKeyValueStoreCommandInput,
|
|
47
|
-
options?: __HttpHandlerOptions
|
|
32
|
+
options?: __HttpHandlerOptions,
|
|
48
33
|
): Promise<DescribeKeyValueStoreCommandOutput>;
|
|
49
34
|
describeKeyValueStore(
|
|
50
35
|
args: DescribeKeyValueStoreCommandInput,
|
|
51
|
-
cb: (err: any, data?: DescribeKeyValueStoreCommandOutput) => void
|
|
36
|
+
cb: (err: any, data?: DescribeKeyValueStoreCommandOutput) => void,
|
|
52
37
|
): void;
|
|
53
38
|
describeKeyValueStore(
|
|
54
39
|
args: DescribeKeyValueStoreCommandInput,
|
|
55
40
|
options: __HttpHandlerOptions,
|
|
56
|
-
cb: (err: any, data?: DescribeKeyValueStoreCommandOutput) => void
|
|
57
|
-
): void;
|
|
58
|
-
getKey(
|
|
59
|
-
args: GetKeyCommandInput,
|
|
60
|
-
options?: __HttpHandlerOptions
|
|
61
|
-
): Promise<GetKeyCommandOutput>;
|
|
62
|
-
getKey(
|
|
63
|
-
args: GetKeyCommandInput,
|
|
64
|
-
cb: (err: any, data?: GetKeyCommandOutput) => void
|
|
41
|
+
cb: (err: any, data?: DescribeKeyValueStoreCommandOutput) => void,
|
|
65
42
|
): void;
|
|
43
|
+
getKey(args: GetKeyCommandInput, options?: __HttpHandlerOptions): Promise<GetKeyCommandOutput>;
|
|
44
|
+
getKey(args: GetKeyCommandInput, cb: (err: any, data?: GetKeyCommandOutput) => void): void;
|
|
66
45
|
getKey(
|
|
67
46
|
args: GetKeyCommandInput,
|
|
68
47
|
options: __HttpHandlerOptions,
|
|
69
|
-
cb: (err: any, data?: GetKeyCommandOutput) => void
|
|
48
|
+
cb: (err: any, data?: GetKeyCommandOutput) => void,
|
|
70
49
|
): void;
|
|
71
50
|
listKeys(
|
|
72
51
|
args: ListKeysCommandInput,
|
|
73
|
-
options?: __HttpHandlerOptions
|
|
52
|
+
options?: __HttpHandlerOptions,
|
|
74
53
|
): Promise<ListKeysCommandOutput>;
|
|
75
|
-
listKeys(
|
|
76
|
-
args: ListKeysCommandInput,
|
|
77
|
-
cb: (err: any, data?: ListKeysCommandOutput) => void
|
|
78
|
-
): void;
|
|
54
|
+
listKeys(args: ListKeysCommandInput, cb: (err: any, data?: ListKeysCommandOutput) => void): void;
|
|
79
55
|
listKeys(
|
|
80
56
|
args: ListKeysCommandInput,
|
|
81
57
|
options: __HttpHandlerOptions,
|
|
82
|
-
cb: (err: any, data?: ListKeysCommandOutput) => void
|
|
83
|
-
): void;
|
|
84
|
-
putKey(
|
|
85
|
-
args: PutKeyCommandInput,
|
|
86
|
-
options?: __HttpHandlerOptions
|
|
87
|
-
): Promise<PutKeyCommandOutput>;
|
|
88
|
-
putKey(
|
|
89
|
-
args: PutKeyCommandInput,
|
|
90
|
-
cb: (err: any, data?: PutKeyCommandOutput) => void
|
|
58
|
+
cb: (err: any, data?: ListKeysCommandOutput) => void,
|
|
91
59
|
): void;
|
|
60
|
+
putKey(args: PutKeyCommandInput, options?: __HttpHandlerOptions): Promise<PutKeyCommandOutput>;
|
|
61
|
+
putKey(args: PutKeyCommandInput, cb: (err: any, data?: PutKeyCommandOutput) => void): void;
|
|
92
62
|
putKey(
|
|
93
63
|
args: PutKeyCommandInput,
|
|
94
64
|
options: __HttpHandlerOptions,
|
|
95
|
-
cb: (err: any, data?: PutKeyCommandOutput) => void
|
|
65
|
+
cb: (err: any, data?: PutKeyCommandOutput) => void,
|
|
96
66
|
): void;
|
|
97
67
|
updateKeys(
|
|
98
68
|
args: UpdateKeysCommandInput,
|
|
99
|
-
options?: __HttpHandlerOptions
|
|
69
|
+
options?: __HttpHandlerOptions,
|
|
100
70
|
): Promise<UpdateKeysCommandOutput>;
|
|
101
71
|
updateKeys(
|
|
102
72
|
args: UpdateKeysCommandInput,
|
|
103
|
-
cb: (err: any, data?: UpdateKeysCommandOutput) => void
|
|
73
|
+
cb: (err: any, data?: UpdateKeysCommandOutput) => void,
|
|
104
74
|
): void;
|
|
105
75
|
updateKeys(
|
|
106
76
|
args: UpdateKeysCommandInput,
|
|
107
77
|
options: __HttpHandlerOptions,
|
|
108
|
-
cb: (err: any, data?: UpdateKeysCommandOutput) => void
|
|
78
|
+
cb: (err: any, data?: UpdateKeysCommandOutput) => void,
|
|
109
79
|
): void;
|
|
110
80
|
paginateListKeys(
|
|
111
81
|
args: ListKeysCommandInput,
|
|
112
82
|
paginationConfig?: Pick<
|
|
113
83
|
PaginationConfiguration,
|
|
114
84
|
Exclude<keyof PaginationConfiguration, "client">
|
|
115
|
-
|
|
85
|
+
>,
|
|
116
86
|
): Paginator<ListKeysCommandOutput>;
|
|
117
87
|
}
|
|
118
88
|
export declare class CloudFrontKeyValueStore
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -36,30 +33,15 @@ import {
|
|
|
36
33
|
HttpAuthSchemeInputConfig,
|
|
37
34
|
HttpAuthSchemeResolvedConfig,
|
|
38
35
|
} from "./auth/httpAuthSchemeProvider";
|
|
39
|
-
import {
|
|
40
|
-
DeleteKeyCommandInput,
|
|
41
|
-
DeleteKeyCommandOutput,
|
|
42
|
-
} from "./commands/DeleteKeyCommand";
|
|
36
|
+
import { DeleteKeyCommandInput, DeleteKeyCommandOutput } from "./commands/DeleteKeyCommand";
|
|
43
37
|
import {
|
|
44
38
|
DescribeKeyValueStoreCommandInput,
|
|
45
39
|
DescribeKeyValueStoreCommandOutput,
|
|
46
40
|
} from "./commands/DescribeKeyValueStoreCommand";
|
|
47
|
-
import {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
} from "./commands/
|
|
51
|
-
import {
|
|
52
|
-
ListKeysCommandInput,
|
|
53
|
-
ListKeysCommandOutput,
|
|
54
|
-
} from "./commands/ListKeysCommand";
|
|
55
|
-
import {
|
|
56
|
-
PutKeyCommandInput,
|
|
57
|
-
PutKeyCommandOutput,
|
|
58
|
-
} from "./commands/PutKeyCommand";
|
|
59
|
-
import {
|
|
60
|
-
UpdateKeysCommandInput,
|
|
61
|
-
UpdateKeysCommandOutput,
|
|
62
|
-
} from "./commands/UpdateKeysCommand";
|
|
41
|
+
import { GetKeyCommandInput, GetKeyCommandOutput } from "./commands/GetKeyCommand";
|
|
42
|
+
import { ListKeysCommandInput, ListKeysCommandOutput } from "./commands/ListKeysCommand";
|
|
43
|
+
import { PutKeyCommandInput, PutKeyCommandOutput } from "./commands/PutKeyCommand";
|
|
44
|
+
import { UpdateKeysCommandInput, UpdateKeysCommandOutput } from "./commands/UpdateKeysCommand";
|
|
63
45
|
import {
|
|
64
46
|
ClientInputEndpointParameters,
|
|
65
47
|
ClientResolvedEndpointParameters,
|
|
@@ -81,8 +63,7 @@ export type ServiceOutputTypes =
|
|
|
81
63
|
| ListKeysCommandOutput
|
|
82
64
|
| PutKeyCommandOutput
|
|
83
65
|
| UpdateKeysCommandOutput;
|
|
84
|
-
export interface ClientDefaults
|
|
85
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
66
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
86
67
|
requestHandler?: __HttpHandlerUserInput;
|
|
87
68
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
88
69
|
urlParser?: __UrlParser;
|
|
@@ -118,8 +99,7 @@ export type CloudFrontKeyValueStoreClientConfigType = Partial<
|
|
|
118
99
|
EndpointInputConfig<EndpointParameters> &
|
|
119
100
|
HttpAuthSchemeInputConfig &
|
|
120
101
|
ClientInputEndpointParameters;
|
|
121
|
-
export interface CloudFrontKeyValueStoreClientConfig
|
|
122
|
-
extends CloudFrontKeyValueStoreClientConfigType {}
|
|
102
|
+
export interface CloudFrontKeyValueStoreClientConfig extends CloudFrontKeyValueStoreClientConfigType {}
|
|
123
103
|
export type CloudFrontKeyValueStoreClientResolvedConfigType =
|
|
124
104
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
125
105
|
Required<ClientDefaults> &
|
|
@@ -131,8 +111,7 @@ export type CloudFrontKeyValueStoreClientResolvedConfigType =
|
|
|
131
111
|
EndpointResolvedConfig<EndpointParameters> &
|
|
132
112
|
HttpAuthSchemeResolvedConfig &
|
|
133
113
|
ClientResolvedEndpointParameters;
|
|
134
|
-
export interface CloudFrontKeyValueStoreClientResolvedConfig
|
|
135
|
-
extends CloudFrontKeyValueStoreClientResolvedConfigType {}
|
|
114
|
+
export interface CloudFrontKeyValueStoreClientResolvedConfig extends CloudFrontKeyValueStoreClientResolvedConfigType {}
|
|
136
115
|
export declare class CloudFrontKeyValueStoreClient extends __Client<
|
|
137
116
|
__HttpHandlerOptions,
|
|
138
117
|
ServiceInputTypes,
|
|
@@ -140,10 +119,6 @@ export declare class CloudFrontKeyValueStoreClient extends __Client<
|
|
|
140
119
|
CloudFrontKeyValueStoreClientResolvedConfig
|
|
141
120
|
> {
|
|
142
121
|
readonly config: CloudFrontKeyValueStoreClientResolvedConfig;
|
|
143
|
-
constructor(
|
|
144
|
-
...[
|
|
145
|
-
configuration,
|
|
146
|
-
]: __CheckOptionalClientConfig<CloudFrontKeyValueStoreClientConfig>
|
|
147
|
-
);
|
|
122
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<CloudFrontKeyValueStoreClientConfig>);
|
|
148
123
|
destroy(): void;
|
|
149
124
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: CloudFrontKeyValueStoreHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: CloudFrontKeyValueStoreHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): CloudFrontKeyValueStoreHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|
|
@@ -16,36 +16,30 @@ import {
|
|
|
16
16
|
} from "@smithy/types";
|
|
17
17
|
import { CloudFrontKeyValueStoreClientResolvedConfig } from "../CloudFrontKeyValueStoreClient";
|
|
18
18
|
import { EndpointParameters } from "../endpoint/EndpointParameters";
|
|
19
|
-
interface _CloudFrontKeyValueStoreHttpAuthSchemeParameters
|
|
20
|
-
extends HttpAuthSchemeParameters {
|
|
19
|
+
interface _CloudFrontKeyValueStoreHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
21
20
|
region?: string;
|
|
22
21
|
}
|
|
23
22
|
export interface CloudFrontKeyValueStoreHttpAuthSchemeParameters
|
|
24
|
-
extends _CloudFrontKeyValueStoreHttpAuthSchemeParameters,
|
|
25
|
-
EndpointParameters {
|
|
23
|
+
extends _CloudFrontKeyValueStoreHttpAuthSchemeParameters, EndpointParameters {
|
|
26
24
|
region?: string;
|
|
27
25
|
}
|
|
28
|
-
export interface CloudFrontKeyValueStoreHttpAuthSchemeParametersProvider
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
> {}
|
|
26
|
+
export interface CloudFrontKeyValueStoreHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
27
|
+
CloudFrontKeyValueStoreClientResolvedConfig,
|
|
28
|
+
HandlerExecutionContext,
|
|
29
|
+
CloudFrontKeyValueStoreHttpAuthSchemeParameters,
|
|
30
|
+
object
|
|
31
|
+
> {}
|
|
35
32
|
export declare const defaultCloudFrontKeyValueStoreHttpAuthSchemeParametersProvider: CloudFrontKeyValueStoreHttpAuthSchemeParametersProvider;
|
|
36
|
-
export interface CloudFrontKeyValueStoreHttpAuthSchemeProvider
|
|
37
|
-
extends HttpAuthSchemeProvider<CloudFrontKeyValueStoreHttpAuthSchemeParameters> {}
|
|
33
|
+
export interface CloudFrontKeyValueStoreHttpAuthSchemeProvider extends HttpAuthSchemeProvider<CloudFrontKeyValueStoreHttpAuthSchemeParameters> {}
|
|
38
34
|
export declare const defaultCloudFrontKeyValueStoreHttpAuthSchemeProvider: CloudFrontKeyValueStoreHttpAuthSchemeProvider;
|
|
39
35
|
export interface HttpAuthSchemeInputConfig
|
|
40
|
-
extends AwsSdkSigV4AuthInputConfig,
|
|
41
|
-
AwsSdkSigV4AAuthInputConfig {
|
|
36
|
+
extends AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AAuthInputConfig {
|
|
42
37
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
43
38
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
44
39
|
httpAuthSchemeProvider?: CloudFrontKeyValueStoreHttpAuthSchemeProvider;
|
|
45
40
|
}
|
|
46
41
|
export interface HttpAuthSchemeResolvedConfig
|
|
47
|
-
extends AwsSdkSigV4AuthResolvedConfig,
|
|
48
|
-
AwsSdkSigV4AAuthResolvedConfig {
|
|
42
|
+
extends AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4AAuthResolvedConfig {
|
|
49
43
|
readonly authSchemePreference: Provider<string[]>;
|
|
50
44
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
51
45
|
readonly httpAuthSchemeProvider: CloudFrontKeyValueStoreHttpAuthSchemeProvider;
|
|
@@ -54,6 +48,6 @@ export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
|
54
48
|
config: T &
|
|
55
49
|
HttpAuthSchemeInputConfig &
|
|
56
50
|
AwsSdkSigV4PreviouslyResolved &
|
|
57
|
-
AwsSdkSigV4APreviouslyResolved
|
|
51
|
+
AwsSdkSigV4APreviouslyResolved,
|
|
58
52
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
59
53
|
export {};
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./CloudFrontKeyValueStoreClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
CloudFrontKeyValueStoreClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteKeyRequest, DeleteKeyResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteKeyCommandInput extends DeleteKeyRequest {}
|
|
5
|
-
export interface DeleteKeyCommandOutput
|
|
6
|
-
extends DeleteKeyResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteKeyCommandOutput extends DeleteKeyResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteKeyCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: DeleteKeyCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
DeleteKeyCommandInput,
|
|
11
11
|
DeleteKeyCommandOutput,
|
|
12
12
|
import("..").CloudFrontKeyValueStoreClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteKeyCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
DeleteKeyCommandInput,
|
|
18
20
|
DeleteKeyCommandOutput,
|
|
19
21
|
import("..").CloudFrontKeyValueStoreClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeKeyValueStoreRequest,
|
|
4
|
-
DescribeKeyValueStoreResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeKeyValueStoreRequest, DescribeKeyValueStoreResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeKeyValueStoreCommandInput
|
|
8
|
-
extends DescribeKeyValueStoreRequest {}
|
|
4
|
+
export interface DescribeKeyValueStoreCommandInput extends DescribeKeyValueStoreRequest {}
|
|
9
5
|
export interface DescribeKeyValueStoreCommandOutput
|
|
10
|
-
extends DescribeKeyValueStoreResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeKeyValueStoreResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeKeyValueStoreCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeKeyValueStoreCommandInput
|
|
9
|
+
input: DescribeKeyValueStoreCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeKeyValueStoreCommandInput,
|
|
17
12
|
DescribeKeyValueStoreCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeKeyValueStoreCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeKeyValueStoreCommandInput
|
|
18
|
+
input: DescribeKeyValueStoreCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeKeyValueStoreCommandInput,
|
|
26
21
|
DescribeKeyValueStoreCommandOutput,
|
|
@@ -4,14 +4,18 @@ export { __MetadataBearer };
|
|
|
4
4
|
export interface GetKeyCommandInput extends GetKeyRequest {}
|
|
5
5
|
export interface GetKeyCommandOutput extends GetKeyResponse, __MetadataBearer {}
|
|
6
6
|
declare const GetKeyCommand_base: {
|
|
7
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetKeyCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
8
10
|
GetKeyCommandInput,
|
|
9
11
|
GetKeyCommandOutput,
|
|
10
12
|
import("..").CloudFrontKeyValueStoreClientResolvedConfig,
|
|
11
13
|
import("..").ServiceInputTypes,
|
|
12
14
|
import("..").ServiceOutputTypes
|
|
13
15
|
>;
|
|
14
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetKeyCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
19
|
GetKeyCommandInput,
|
|
16
20
|
GetKeyCommandOutput,
|
|
17
21
|
import("..").CloudFrontKeyValueStoreClientResolvedConfig,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListKeysRequest, ListKeysResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListKeysCommandInput extends ListKeysRequest {}
|
|
5
|
-
export interface ListKeysCommandOutput
|
|
6
|
-
extends ListKeysResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListKeysCommandOutput extends ListKeysResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListKeysCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListKeysCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListKeysCommandInput,
|
|
11
11
|
ListKeysCommandOutput,
|
|
12
12
|
import("..").CloudFrontKeyValueStoreClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: ListKeysCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
ListKeysCommandInput,
|
|
18
20
|
ListKeysCommandOutput,
|
|
19
21
|
import("..").CloudFrontKeyValueStoreClientResolvedConfig,
|
|
@@ -4,14 +4,18 @@ export { __MetadataBearer };
|
|
|
4
4
|
export interface PutKeyCommandInput extends PutKeyRequest {}
|
|
5
5
|
export interface PutKeyCommandOutput extends PutKeyResponse, __MetadataBearer {}
|
|
6
6
|
declare const PutKeyCommand_base: {
|
|
7
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: PutKeyCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
8
10
|
PutKeyCommandInput,
|
|
9
11
|
PutKeyCommandOutput,
|
|
10
12
|
import("..").CloudFrontKeyValueStoreClientResolvedConfig,
|
|
11
13
|
import("..").ServiceInputTypes,
|
|
12
14
|
import("..").ServiceOutputTypes
|
|
13
15
|
>;
|
|
14
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: PutKeyCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
19
|
PutKeyCommandInput,
|
|
16
20
|
PutKeyCommandOutput,
|
|
17
21
|
import("..").CloudFrontKeyValueStoreClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateKeysRequest, UpdateKeysResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateKeysCommandInput extends UpdateKeysRequest {}
|
|
5
|
-
export interface UpdateKeysCommandOutput
|
|
6
|
-
extends UpdateKeysResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateKeysCommandOutput extends UpdateKeysResponse, __MetadataBearer {}
|
|
8
6
|
declare const UpdateKeysCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateKeysCommandInput
|
|
8
|
+
input: UpdateKeysCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateKeysCommandInput,
|
|
13
11
|
UpdateKeysCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateKeysCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateKeysCommandInput
|
|
17
|
+
input: UpdateKeysCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateKeysCommandInput,
|
|
22
20
|
UpdateKeysCommandOutput,
|
|
@@ -22,7 +22,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
22
22
|
defaultSigningName: string;
|
|
23
23
|
};
|
|
24
24
|
export declare const resolveClientEndpointParameters: <T>(
|
|
25
|
-
options: T & ClientInputEndpointParameters
|
|
25
|
+
options: T & ClientInputEndpointParameters,
|
|
26
26
|
) => T & ClientResolvedEndpointParameters;
|
|
27
27
|
export declare const commonParams: {
|
|
28
28
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface CloudFrontKeyValueStoreExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -4,9 +4,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class ConflictException extends __BaseException {
|
|
12
10
|
readonly name: "ConflictException";
|
|
@@ -18,31 +16,23 @@ export declare class InternalServerException extends __BaseException {
|
|
|
18
16
|
readonly name: "InternalServerException";
|
|
19
17
|
readonly $fault: "server";
|
|
20
18
|
Message?: string | undefined;
|
|
21
|
-
constructor(
|
|
22
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
23
|
-
);
|
|
19
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
24
20
|
}
|
|
25
21
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
26
22
|
readonly name: "ResourceNotFoundException";
|
|
27
23
|
readonly $fault: "client";
|
|
28
24
|
Message?: string | undefined;
|
|
29
|
-
constructor(
|
|
30
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
31
|
-
);
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
32
26
|
}
|
|
33
27
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
34
28
|
readonly name: "ServiceQuotaExceededException";
|
|
35
29
|
readonly $fault: "client";
|
|
36
30
|
Message?: string | undefined;
|
|
37
|
-
constructor(
|
|
38
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
39
|
-
);
|
|
31
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
40
32
|
}
|
|
41
33
|
export declare class ValidationException extends __BaseException {
|
|
42
34
|
readonly name: "ValidationException";
|
|
43
35
|
readonly $fault: "client";
|
|
44
36
|
Message?: string | undefined;
|
|
45
|
-
constructor(
|
|
46
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
47
|
-
);
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
48
38
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { CloudFrontKeyValueStoreClient } from "../CloudFrontKeyValueStoreClient";
|
|
3
|
-
export interface CloudFrontKeyValueStorePaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface CloudFrontKeyValueStorePaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: CloudFrontKeyValueStoreClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListKeysCommandInput,
|
|
4
|
-
ListKeysCommandOutput,
|
|
5
|
-
} from "../commands/ListKeysCommand";
|
|
2
|
+
import { ListKeysCommandInput, ListKeysCommandOutput } from "../commands/ListKeysCommand";
|
|
6
3
|
import { CloudFrontKeyValueStorePaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListKeys: (
|
|
8
5
|
config: CloudFrontKeyValueStorePaginationConfiguration,
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: CloudFrontKeyValueStoreClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: CloudFrontKeyValueStoreClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -10,24 +8,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider:
|
|
12
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
-
| ((
|
|
14
|
-
_: unknown
|
|
15
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
12
|
defaultUserAgentProvider: (
|
|
17
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
18
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
19
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
21
|
) => Promise<Uint8Array>;
|
|
32
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -55,13 +45,8 @@ export declare const getRuntimeConfig: (
|
|
|
55
45
|
logger: import("@smithy/types").Logger;
|
|
56
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
userAgentAppId?:
|
|
59
|
-
|
|
60
|
-
| undefined
|
|
61
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
65
50
|
endpoint?:
|
|
66
51
|
| ((
|
|
67
52
|
| string
|
|
@@ -83,7 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
83
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
84
69
|
context?: {
|
|
85
70
|
logger?: import("@smithy/types").Logger;
|
|
86
|
-
}
|
|
71
|
+
},
|
|
87
72
|
) => import("@smithy/types").EndpointV2;
|
|
88
73
|
tls?: boolean;
|
|
89
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -96,7 +81,7 @@ export declare const getRuntimeConfig: (
|
|
|
96
81
|
signer?:
|
|
97
82
|
| import("@smithy/types").RequestSigner
|
|
98
83
|
| ((
|
|
99
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
100
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
101
86
|
signingEscapePath?: boolean;
|
|
102
87
|
systemClockOffset?: number;
|
|
@@ -105,7 +90,7 @@ export declare const getRuntimeConfig: (
|
|
|
105
90
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion
|
|
106
91
|
| (new (
|
|
107
92
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
93
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
94
|
) => import("@smithy/types").RequestSigner);
|
|
110
95
|
sigv4aSigningRegionSet?:
|
|
111
96
|
| string[]
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: CloudFrontKeyValueStoreClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: CloudFrontKeyValueStoreClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -12,26 +10,18 @@ export declare const getRuntimeConfig: (
|
|
|
12
10
|
credentialDefaultProvider:
|
|
13
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
14
12
|
| ((
|
|
15
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
16
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
17
15
|
defaultUserAgentProvider: (
|
|
18
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
19
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
requestHandler:
|
|
23
|
-
| RequestHandler
|
|
24
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
25
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
|
-
sigv4aSigningRegionSet:
|
|
27
|
-
| string[]
|
|
28
|
-
| import("@smithy/types").Provider<string[] | undefined>;
|
|
22
|
+
sigv4aSigningRegionSet: string[] | import("@smithy/types").Provider<string[] | undefined>;
|
|
29
23
|
streamCollector: (
|
|
30
|
-
stream:
|
|
31
|
-
| import("stream").Readable
|
|
32
|
-
| import("stream/web").ReadableStream
|
|
33
|
-
| ReadableStream
|
|
34
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
35
25
|
) => Promise<Uint8Array>;
|
|
36
26
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
37
27
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -58,9 +48,7 @@ export declare const getRuntimeConfig: (
|
|
|
58
48
|
logger: import("@smithy/types").Logger;
|
|
59
49
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
60
50
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
61
|
-
retryStrategy?:
|
|
62
|
-
| import("@smithy/types").RetryStrategy
|
|
63
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
51
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
64
52
|
endpoint?:
|
|
65
53
|
| ((
|
|
66
54
|
| string
|
|
@@ -82,7 +70,7 @@ export declare const getRuntimeConfig: (
|
|
|
82
70
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
83
71
|
context?: {
|
|
84
72
|
logger?: import("@smithy/types").Logger;
|
|
85
|
-
}
|
|
73
|
+
},
|
|
86
74
|
) => import("@smithy/types").EndpointV2;
|
|
87
75
|
tls?: boolean;
|
|
88
76
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,7 +82,7 @@ export declare const getRuntimeConfig: (
|
|
|
94
82
|
signer?:
|
|
95
83
|
| import("@smithy/types").RequestSigner
|
|
96
84
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
85
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
86
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
87
|
signingEscapePath?: boolean;
|
|
100
88
|
systemClockOffset?: number;
|
|
@@ -103,6 +91,6 @@ export declare const getRuntimeConfig: (
|
|
|
103
91
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion
|
|
104
92
|
| (new (
|
|
105
93
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
106
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
94
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
107
95
|
) => import("@smithy/types").RequestSigner);
|
|
108
96
|
};
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient";
|
|
2
|
-
export declare const getRuntimeConfig: (
|
|
3
|
-
config: CloudFrontKeyValueStoreClientConfig
|
|
4
|
-
) => {
|
|
2
|
+
export declare const getRuntimeConfig: (config: CloudFrontKeyValueStoreClientConfig) => {
|
|
5
3
|
runtime: string;
|
|
6
4
|
requestHandler:
|
|
7
5
|
| import("@smithy/types").NodeHttpHandlerOptions
|
|
@@ -23,11 +21,7 @@ export declare const getRuntimeConfig: (
|
|
|
23
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
24
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
25
23
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
25
|
) => Promise<Uint8Array>;
|
|
32
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
33
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -42,30 +36,21 @@ export declare const getRuntimeConfig: (
|
|
|
42
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
43
37
|
profile?: string;
|
|
44
38
|
defaultUserAgentProvider: (
|
|
45
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
46
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
47
41
|
credentialDefaultProvider:
|
|
48
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
49
|
-
| ((
|
|
50
|
-
_: unknown
|
|
51
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
52
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
53
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
54
46
|
logger: import("@smithy/types").Logger;
|
|
55
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
56
48
|
defaultsMode:
|
|
57
49
|
| import("@smithy/core/client").DefaultsMode
|
|
58
|
-
| import("@smithy/types").Provider<
|
|
59
|
-
import("@smithy/core/client").DefaultsMode
|
|
60
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
61
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
62
|
-
userAgentAppId?:
|
|
63
|
-
|
|
64
|
-
| undefined
|
|
65
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
66
|
-
retryStrategy?:
|
|
67
|
-
| import("@smithy/types").RetryStrategy
|
|
68
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
69
54
|
endpoint?:
|
|
70
55
|
| ((
|
|
71
56
|
| string
|
|
@@ -87,7 +72,7 @@ export declare const getRuntimeConfig: (
|
|
|
87
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
88
73
|
context?: {
|
|
89
74
|
logger?: import("@smithy/types").Logger;
|
|
90
|
-
}
|
|
75
|
+
},
|
|
91
76
|
) => import("@smithy/types").EndpointV2;
|
|
92
77
|
tls?: boolean;
|
|
93
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -100,7 +85,7 @@ export declare const getRuntimeConfig: (
|
|
|
100
85
|
signer?:
|
|
101
86
|
| import("@smithy/types").RequestSigner
|
|
102
87
|
| ((
|
|
103
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
104
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
105
90
|
signingEscapePath?: boolean;
|
|
106
91
|
systemClockOffset?: number;
|
|
@@ -109,7 +94,7 @@ export declare const getRuntimeConfig: (
|
|
|
109
94
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion
|
|
110
95
|
| (new (
|
|
111
96
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
112
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
97
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
113
98
|
) => import("@smithy/types").RequestSigner);
|
|
114
99
|
sigv4aSigningRegionSet?:
|
|
115
100
|
| string[]
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
2
|
import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region";
|
|
3
3
|
import { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient";
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
config: CloudFrontKeyValueStoreClientConfig
|
|
6
|
-
) => {
|
|
4
|
+
export declare const getRuntimeConfig: (config: CloudFrontKeyValueStoreClientConfig) => {
|
|
7
5
|
apiVersion: string;
|
|
8
6
|
base64Decoder: import("@smithy/types").Decoder;
|
|
9
7
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -12,7 +10,7 @@ export declare const getRuntimeConfig: (
|
|
|
12
10
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
13
11
|
context?: {
|
|
14
12
|
logger?: import("@smithy/types").Logger;
|
|
15
|
-
}
|
|
13
|
+
},
|
|
16
14
|
) => import("@smithy/types").EndpointV2;
|
|
17
15
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
18
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CloudFrontKeyValueStoreHttpAuthSchemeProvider;
|
|
@@ -32,7 +30,7 @@ export declare const getRuntimeConfig: (
|
|
|
32
30
|
| typeof SignatureV4MultiRegion
|
|
33
31
|
| (new (
|
|
34
32
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
35
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
33
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
36
34
|
) => import("@smithy/types").RequestSigner);
|
|
37
35
|
urlParser: import("@smithy/types").UrlParser;
|
|
38
36
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { CloudFrontKeyValueStoreExtensionConfiguration } from "./extensionConfiguration";
|
|
2
2
|
export interface RuntimeExtension {
|
|
3
|
-
configure(
|
|
4
|
-
extensionConfiguration: CloudFrontKeyValueStoreExtensionConfiguration
|
|
5
|
-
): void;
|
|
3
|
+
configure(extensionConfiguration: CloudFrontKeyValueStoreExtensionConfiguration): void;
|
|
6
4
|
}
|
|
7
5
|
export interface RuntimeExtensionsConfig {
|
|
8
6
|
extensions: RuntimeExtension[];
|
|
9
7
|
}
|
|
10
8
|
export declare const resolveRuntimeExtensions: (
|
|
11
9
|
runtimeConfig: any,
|
|
12
|
-
extensions: RuntimeExtension[]
|
|
10
|
+
extensions: RuntimeExtension[],
|
|
13
11
|
) => any;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var CloudFrontKeyValueStoreServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
5
|
export declare var ConflictException$: StaticErrorSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudfront-keyvaluestore",
|
|
3
|
+
"version": "3.1088.0",
|
|
3
4
|
"description": "AWS SDK for JavaScript Cloudfront Keyvaluestore Client for Node.js, Browser and React Native",
|
|
4
|
-
"
|
|
5
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-cloudfront-keyvaluestore",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "AWS SDK for JavaScript Team",
|
|
9
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
14
|
+
"directory": "clients/client-cloudfront-keyvaluestore"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist-*/**"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"main": "./dist-cjs/index.js",
|
|
21
|
+
"module": "./dist-es/index.js",
|
|
22
|
+
"browser": {
|
|
23
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
24
|
+
},
|
|
25
|
+
"types": "./dist-types/index.d.ts",
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"<4.5": {
|
|
28
|
+
"dist-types/*": [
|
|
29
|
+
"dist-types/ts3.4/*"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"react-native": {
|
|
34
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
35
|
+
},
|
|
5
36
|
"scripts": {
|
|
6
37
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
38
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -14,19 +45,15 @@
|
|
|
14
45
|
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
47
|
},
|
|
17
|
-
"main": "./dist-cjs/index.js",
|
|
18
|
-
"types": "./dist-types/index.d.ts",
|
|
19
|
-
"module": "./dist-es/index.js",
|
|
20
|
-
"sideEffects": false,
|
|
21
48
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.975.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
25
|
-
"@aws-sdk/types": "^3.974.
|
|
26
|
-
"@smithy/core": "^3.29.
|
|
27
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
28
|
-
"@smithy/node-http-handler": "^4.9.
|
|
29
|
-
"@smithy/types": "^4.16.
|
|
49
|
+
"@aws-sdk/core": "^3.975.3",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.69",
|
|
51
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.41",
|
|
52
|
+
"@aws-sdk/types": "^3.974.2",
|
|
53
|
+
"@smithy/core": "^3.29.4",
|
|
54
|
+
"@smithy/fetch-http-handler": "^5.6.6",
|
|
55
|
+
"@smithy/node-http-handler": "^4.9.6",
|
|
56
|
+
"@smithy/types": "^4.16.1",
|
|
30
57
|
"tslib": "^2.6.2"
|
|
31
58
|
},
|
|
32
59
|
"devDependencies": {
|
|
@@ -39,32 +66,5 @@
|
|
|
39
66
|
},
|
|
40
67
|
"engines": {
|
|
41
68
|
"node": ">=20.0.0"
|
|
42
|
-
},
|
|
43
|
-
"typesVersions": {
|
|
44
|
-
"<4.5": {
|
|
45
|
-
"dist-types/*": [
|
|
46
|
-
"dist-types/ts3.4/*"
|
|
47
|
-
]
|
|
48
|
-
}
|
|
49
|
-
},
|
|
50
|
-
"files": [
|
|
51
|
-
"dist-*/**"
|
|
52
|
-
],
|
|
53
|
-
"author": {
|
|
54
|
-
"name": "AWS SDK for JavaScript Team",
|
|
55
|
-
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
56
|
-
},
|
|
57
|
-
"license": "Apache-2.0",
|
|
58
|
-
"browser": {
|
|
59
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
60
|
-
},
|
|
61
|
-
"react-native": {
|
|
62
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
63
|
-
},
|
|
64
|
-
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-cloudfront-keyvaluestore",
|
|
65
|
-
"repository": {
|
|
66
|
-
"type": "git",
|
|
67
|
-
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
68
|
-
"directory": "clients/client-cloudfront-keyvaluestore"
|
|
69
69
|
}
|
|
70
70
|
}
|