@aws-sdk/client-cloudfront-keyvaluestore 3.490.0 → 3.495.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 (31) hide show
  1. package/dist-cjs/CloudFrontKeyValueStore.js +1 -23
  2. package/dist-cjs/CloudFrontKeyValueStoreClient.js +1 -43
  3. package/dist-cjs/commands/DeleteKeyCommand.js +1 -29
  4. package/dist-cjs/commands/DescribeKeyValueStoreCommand.js +1 -29
  5. package/dist-cjs/commands/GetKeyCommand.js +1 -30
  6. package/dist-cjs/commands/ListKeysCommand.js +1 -30
  7. package/dist-cjs/commands/PutKeyCommand.js +1 -30
  8. package/dist-cjs/commands/UpdateKeysCommand.js +1 -30
  9. package/dist-cjs/commands/index.js +1 -9
  10. package/dist-cjs/endpoint/EndpointParameters.js +1 -16
  11. package/dist-cjs/extensionConfiguration.js +1 -2
  12. package/dist-cjs/index.js +947 -11
  13. package/dist-cjs/models/CloudFrontKeyValueStoreServiceException.js +1 -12
  14. package/dist-cjs/models/index.js +1 -4
  15. package/dist-cjs/models/models_0.js +1 -119
  16. package/dist-cjs/pagination/Interfaces.js +1 -2
  17. package/dist-cjs/pagination/ListKeysPaginator.js +1 -7
  18. package/dist-cjs/pagination/index.js +1 -5
  19. package/dist-cjs/protocols/Aws_restJson1.js +1 -520
  20. package/dist-cjs/runtimeConfig.shared.js +2 -0
  21. package/dist-cjs/runtimeExtensions.js +1 -22
  22. package/dist-es/runtimeConfig.shared.js +2 -0
  23. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  24. package/dist-types/runtimeConfig.d.ts +1 -1
  25. package/dist-types/runtimeConfig.native.d.ts +1 -1
  26. package/dist-types/runtimeConfig.shared.d.ts +2 -0
  27. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  28. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  29. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  30. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +7 -0
  31. package/package.json +41 -40
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CloudFrontKeyValueStoreServiceException = exports.__ServiceException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
- class CloudFrontKeyValueStoreServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, CloudFrontKeyValueStoreServiceException.prototype);
10
- }
11
- }
12
- exports.CloudFrontKeyValueStoreServiceException = CloudFrontKeyValueStoreServiceException;
1
+ module.exports = require("../index.js");
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
1
+ module.exports = require("../index.js");
@@ -1,119 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateKeysRequestFilterSensitiveLog = exports.PutKeyRequestListItemFilterSensitiveLog = exports.PutKeyRequestFilterSensitiveLog = exports.ListKeysResponseFilterSensitiveLog = exports.ListKeysResponseListItemFilterSensitiveLog = exports.GetKeyResponseFilterSensitiveLog = exports.ValidationException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const CloudFrontKeyValueStoreServiceException_1 = require("./CloudFrontKeyValueStoreServiceException");
6
- class AccessDeniedException extends CloudFrontKeyValueStoreServiceException_1.CloudFrontKeyValueStoreServiceException {
7
- constructor(opts) {
8
- super({
9
- name: "AccessDeniedException",
10
- $fault: "client",
11
- ...opts,
12
- });
13
- this.name = "AccessDeniedException";
14
- this.$fault = "client";
15
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
16
- this.Message = opts.Message;
17
- }
18
- }
19
- exports.AccessDeniedException = AccessDeniedException;
20
- class ConflictException extends CloudFrontKeyValueStoreServiceException_1.CloudFrontKeyValueStoreServiceException {
21
- constructor(opts) {
22
- super({
23
- name: "ConflictException",
24
- $fault: "client",
25
- ...opts,
26
- });
27
- this.name = "ConflictException";
28
- this.$fault = "client";
29
- Object.setPrototypeOf(this, ConflictException.prototype);
30
- this.Message = opts.Message;
31
- }
32
- }
33
- exports.ConflictException = ConflictException;
34
- class InternalServerException extends CloudFrontKeyValueStoreServiceException_1.CloudFrontKeyValueStoreServiceException {
35
- constructor(opts) {
36
- super({
37
- name: "InternalServerException",
38
- $fault: "server",
39
- ...opts,
40
- });
41
- this.name = "InternalServerException";
42
- this.$fault = "server";
43
- Object.setPrototypeOf(this, InternalServerException.prototype);
44
- this.Message = opts.Message;
45
- }
46
- }
47
- exports.InternalServerException = InternalServerException;
48
- class ResourceNotFoundException extends CloudFrontKeyValueStoreServiceException_1.CloudFrontKeyValueStoreServiceException {
49
- constructor(opts) {
50
- super({
51
- name: "ResourceNotFoundException",
52
- $fault: "client",
53
- ...opts,
54
- });
55
- this.name = "ResourceNotFoundException";
56
- this.$fault = "client";
57
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
58
- this.Message = opts.Message;
59
- }
60
- }
61
- exports.ResourceNotFoundException = ResourceNotFoundException;
62
- class ServiceQuotaExceededException extends CloudFrontKeyValueStoreServiceException_1.CloudFrontKeyValueStoreServiceException {
63
- constructor(opts) {
64
- super({
65
- name: "ServiceQuotaExceededException",
66
- $fault: "client",
67
- ...opts,
68
- });
69
- this.name = "ServiceQuotaExceededException";
70
- this.$fault = "client";
71
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
72
- this.Message = opts.Message;
73
- }
74
- }
75
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
76
- class ValidationException extends CloudFrontKeyValueStoreServiceException_1.CloudFrontKeyValueStoreServiceException {
77
- constructor(opts) {
78
- super({
79
- name: "ValidationException",
80
- $fault: "client",
81
- ...opts,
82
- });
83
- this.name = "ValidationException";
84
- this.$fault = "client";
85
- Object.setPrototypeOf(this, ValidationException.prototype);
86
- this.Message = opts.Message;
87
- }
88
- }
89
- exports.ValidationException = ValidationException;
90
- const GetKeyResponseFilterSensitiveLog = (obj) => ({
91
- ...obj,
92
- ...(obj.Value && { Value: smithy_client_1.SENSITIVE_STRING }),
93
- });
94
- exports.GetKeyResponseFilterSensitiveLog = GetKeyResponseFilterSensitiveLog;
95
- const ListKeysResponseListItemFilterSensitiveLog = (obj) => ({
96
- ...obj,
97
- ...(obj.Value && { Value: smithy_client_1.SENSITIVE_STRING }),
98
- });
99
- exports.ListKeysResponseListItemFilterSensitiveLog = ListKeysResponseListItemFilterSensitiveLog;
100
- const ListKeysResponseFilterSensitiveLog = (obj) => ({
101
- ...obj,
102
- ...(obj.Items && { Items: obj.Items.map((item) => (0, exports.ListKeysResponseListItemFilterSensitiveLog)(item)) }),
103
- });
104
- exports.ListKeysResponseFilterSensitiveLog = ListKeysResponseFilterSensitiveLog;
105
- const PutKeyRequestFilterSensitiveLog = (obj) => ({
106
- ...obj,
107
- ...(obj.Value && { Value: smithy_client_1.SENSITIVE_STRING }),
108
- });
109
- exports.PutKeyRequestFilterSensitiveLog = PutKeyRequestFilterSensitiveLog;
110
- const PutKeyRequestListItemFilterSensitiveLog = (obj) => ({
111
- ...obj,
112
- ...(obj.Value && { Value: smithy_client_1.SENSITIVE_STRING }),
113
- });
114
- exports.PutKeyRequestListItemFilterSensitiveLog = PutKeyRequestListItemFilterSensitiveLog;
115
- const UpdateKeysRequestFilterSensitiveLog = (obj) => ({
116
- ...obj,
117
- ...(obj.Puts && { Puts: obj.Puts.map((item) => (0, exports.PutKeyRequestListItemFilterSensitiveLog)(item)) }),
118
- });
119
- exports.UpdateKeysRequestFilterSensitiveLog = UpdateKeysRequestFilterSensitiveLog;
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListKeys = void 0;
4
- const core_1 = require("@smithy/core");
5
- const CloudFrontKeyValueStoreClient_1 = require("../CloudFrontKeyValueStoreClient");
6
- const ListKeysCommand_1 = require("../commands/ListKeysCommand");
7
- exports.paginateListKeys = (0, core_1.createPaginator)(CloudFrontKeyValueStoreClient_1.CloudFrontKeyValueStoreClient, ListKeysCommand_1.ListKeysCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,5 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./Interfaces"), exports);
5
- tslib_1.__exportStar(require("./ListKeysPaginator"), exports);
1
+ module.exports = require("../index.js");