@aws-sdk/client-cloudfront-keyvaluestore 3.928.0 → 3.930.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.
Files changed (30) hide show
  1. package/dist-cjs/index.js +398 -393
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/CloudFrontKeyValueStoreClient.js +2 -0
  4. package/dist-es/commands/DeleteKeyCommand.js +3 -9
  5. package/dist-es/commands/DescribeKeyValueStoreCommand.js +3 -9
  6. package/dist-es/commands/GetKeyCommand.js +3 -10
  7. package/dist-es/commands/ListKeysCommand.js +3 -10
  8. package/dist-es/commands/PutKeyCommand.js +3 -10
  9. package/dist-es/commands/UpdateKeysCommand.js +3 -10
  10. package/dist-es/models/models_0.js +0 -25
  11. package/dist-es/runtimeConfig.shared.js +2 -0
  12. package/dist-es/schemas/schemas_0.js +370 -0
  13. package/dist-types/CloudFrontKeyValueStoreClient.d.ts +10 -1
  14. package/dist-types/models/models_0.d.ts +0 -24
  15. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  16. package/dist-types/runtimeConfig.d.ts +1 -0
  17. package/dist-types/runtimeConfig.native.d.ts +1 -0
  18. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  19. package/dist-types/schemas/schemas_0.d.ts +33 -0
  20. package/dist-types/ts3.4/CloudFrontKeyValueStoreClient.d.ts +4 -0
  21. package/dist-types/ts3.4/models/models_0.d.ts +0 -18
  22. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  23. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  24. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  25. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  26. package/dist-types/ts3.4/schemas/schemas_0.d.ts +39 -0
  27. package/package.json +34 -34
  28. package/dist-es/protocols/Aws_restJson1.js +0 -308
  29. package/dist-types/protocols/Aws_restJson1.d.ts +0 -56
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -77
@@ -1,77 +0,0 @@
1
- import {
2
- HttpRequest as __HttpRequest,
3
- HttpResponse as __HttpResponse,
4
- } from "@smithy/protocol-http";
5
- import { SerdeContext as __SerdeContext } from "@smithy/types";
6
- import {
7
- DeleteKeyCommandInput,
8
- DeleteKeyCommandOutput,
9
- } from "../commands/DeleteKeyCommand";
10
- import {
11
- DescribeKeyValueStoreCommandInput,
12
- DescribeKeyValueStoreCommandOutput,
13
- } from "../commands/DescribeKeyValueStoreCommand";
14
- import {
15
- GetKeyCommandInput,
16
- GetKeyCommandOutput,
17
- } from "../commands/GetKeyCommand";
18
- import {
19
- ListKeysCommandInput,
20
- ListKeysCommandOutput,
21
- } from "../commands/ListKeysCommand";
22
- import {
23
- PutKeyCommandInput,
24
- PutKeyCommandOutput,
25
- } from "../commands/PutKeyCommand";
26
- import {
27
- UpdateKeysCommandInput,
28
- UpdateKeysCommandOutput,
29
- } from "../commands/UpdateKeysCommand";
30
- export declare const se_DeleteKeyCommand: (
31
- input: DeleteKeyCommandInput,
32
- context: __SerdeContext
33
- ) => Promise<__HttpRequest>;
34
- export declare const se_DescribeKeyValueStoreCommand: (
35
- input: DescribeKeyValueStoreCommandInput,
36
- context: __SerdeContext
37
- ) => Promise<__HttpRequest>;
38
- export declare const se_GetKeyCommand: (
39
- input: GetKeyCommandInput,
40
- context: __SerdeContext
41
- ) => Promise<__HttpRequest>;
42
- export declare const se_ListKeysCommand: (
43
- input: ListKeysCommandInput,
44
- context: __SerdeContext
45
- ) => Promise<__HttpRequest>;
46
- export declare const se_PutKeyCommand: (
47
- input: PutKeyCommandInput,
48
- context: __SerdeContext
49
- ) => Promise<__HttpRequest>;
50
- export declare const se_UpdateKeysCommand: (
51
- input: UpdateKeysCommandInput,
52
- context: __SerdeContext
53
- ) => Promise<__HttpRequest>;
54
- export declare const de_DeleteKeyCommand: (
55
- output: __HttpResponse,
56
- context: __SerdeContext
57
- ) => Promise<DeleteKeyCommandOutput>;
58
- export declare const de_DescribeKeyValueStoreCommand: (
59
- output: __HttpResponse,
60
- context: __SerdeContext
61
- ) => Promise<DescribeKeyValueStoreCommandOutput>;
62
- export declare const de_GetKeyCommand: (
63
- output: __HttpResponse,
64
- context: __SerdeContext
65
- ) => Promise<GetKeyCommandOutput>;
66
- export declare const de_ListKeysCommand: (
67
- output: __HttpResponse,
68
- context: __SerdeContext
69
- ) => Promise<ListKeysCommandOutput>;
70
- export declare const de_PutKeyCommand: (
71
- output: __HttpResponse,
72
- context: __SerdeContext
73
- ) => Promise<PutKeyCommandOutput>;
74
- export declare const de_UpdateKeysCommand: (
75
- output: __HttpResponse,
76
- context: __SerdeContext
77
- ) => Promise<UpdateKeysCommandOutput>;