@aws-sdk/client-resource-explorer-2 3.490.0 → 3.496.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 (40) hide show
  1. package/dist-cjs/ResourceExplorer2.js +1 -53
  2. package/dist-cjs/ResourceExplorer2Client.js +1 -43
  3. package/dist-cjs/commands/AssociateDefaultViewCommand.js +1 -28
  4. package/dist-cjs/commands/BatchGetViewCommand.js +1 -29
  5. package/dist-cjs/commands/CreateIndexCommand.js +1 -29
  6. package/dist-cjs/commands/CreateViewCommand.js +1 -29
  7. package/dist-cjs/commands/DeleteIndexCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteViewCommand.js +1 -28
  9. package/dist-cjs/commands/DisassociateDefaultViewCommand.js +1 -28
  10. package/dist-cjs/commands/GetAccountLevelServiceConfigurationCommand.js +1 -28
  11. package/dist-cjs/commands/GetDefaultViewCommand.js +1 -28
  12. package/dist-cjs/commands/GetIndexCommand.js +1 -29
  13. package/dist-cjs/commands/GetViewCommand.js +1 -29
  14. package/dist-cjs/commands/ListIndexesCommand.js +1 -28
  15. package/dist-cjs/commands/ListIndexesForMembersCommand.js +1 -28
  16. package/dist-cjs/commands/ListSupportedResourceTypesCommand.js +1 -28
  17. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -29
  18. package/dist-cjs/commands/ListViewsCommand.js +1 -28
  19. package/dist-cjs/commands/SearchCommand.js +1 -29
  20. package/dist-cjs/commands/TagResourceCommand.js +1 -29
  21. package/dist-cjs/commands/UntagResourceCommand.js +1 -29
  22. package/dist-cjs/commands/UpdateIndexTypeCommand.js +1 -28
  23. package/dist-cjs/commands/UpdateViewCommand.js +1 -29
  24. package/dist-cjs/commands/index.js +1 -24
  25. package/dist-cjs/endpoint/EndpointParameters.js +1 -16
  26. package/dist-cjs/extensionConfiguration.js +1 -2
  27. package/dist-cjs/index.js +2395 -11
  28. package/dist-cjs/models/ResourceExplorer2ServiceException.js +1 -12
  29. package/dist-cjs/models/index.js +1 -4
  30. package/dist-cjs/models/models_0.js +1 -206
  31. package/dist-cjs/pagination/Interfaces.js +1 -2
  32. package/dist-cjs/pagination/ListIndexesForMembersPaginator.js +1 -7
  33. package/dist-cjs/pagination/ListIndexesPaginator.js +1 -7
  34. package/dist-cjs/pagination/ListSupportedResourceTypesPaginator.js +1 -7
  35. package/dist-cjs/pagination/ListViewsPaginator.js +1 -7
  36. package/dist-cjs/pagination/SearchPaginator.js +1 -7
  37. package/dist-cjs/pagination/index.js +1 -9
  38. package/dist-cjs/protocols/Aws_restJson1.js +1 -1523
  39. package/dist-cjs/runtimeExtensions.js +1 -22
  40. package/package.json +40 -40
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ResourceExplorer2ServiceException = 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 ResourceExplorer2ServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, ResourceExplorer2ServiceException.prototype);
10
- }
11
- }
12
- exports.ResourceExplorer2ServiceException = ResourceExplorer2ServiceException;
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,206 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagResourceInputFilterSensitiveLog = exports.TagResourceInputFilterSensitiveLog = exports.SearchInputFilterSensitiveLog = exports.ListTagsForResourceOutputFilterSensitiveLog = exports.GetIndexOutputFilterSensitiveLog = exports.UpdateViewOutputFilterSensitiveLog = exports.UpdateViewInputFilterSensitiveLog = exports.GetViewOutputFilterSensitiveLog = exports.CreateViewOutputFilterSensitiveLog = exports.CreateViewInputFilterSensitiveLog = exports.CreateIndexInputFilterSensitiveLog = exports.BatchGetViewOutputFilterSensitiveLog = exports.ViewFilterSensitiveLog = exports.SearchFilterFilterSensitiveLog = exports.ServiceQuotaExceededException = exports.IndexType = exports.IndexState = exports.ConflictException = exports.UnauthorizedException = exports.AWSServiceAccessStatus = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.AccessDeniedException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const ResourceExplorer2ServiceException_1 = require("./ResourceExplorer2ServiceException");
6
- class AccessDeniedException extends ResourceExplorer2ServiceException_1.ResourceExplorer2ServiceException {
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 InternalServerException extends ResourceExplorer2ServiceException_1.ResourceExplorer2ServiceException {
21
- constructor(opts) {
22
- super({
23
- name: "InternalServerException",
24
- $fault: "server",
25
- ...opts,
26
- });
27
- this.name = "InternalServerException";
28
- this.$fault = "server";
29
- Object.setPrototypeOf(this, InternalServerException.prototype);
30
- this.Message = opts.Message;
31
- }
32
- }
33
- exports.InternalServerException = InternalServerException;
34
- class ResourceNotFoundException extends ResourceExplorer2ServiceException_1.ResourceExplorer2ServiceException {
35
- constructor(opts) {
36
- super({
37
- name: "ResourceNotFoundException",
38
- $fault: "client",
39
- ...opts,
40
- });
41
- this.name = "ResourceNotFoundException";
42
- this.$fault = "client";
43
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
44
- this.Message = opts.Message;
45
- }
46
- }
47
- exports.ResourceNotFoundException = ResourceNotFoundException;
48
- class ThrottlingException extends ResourceExplorer2ServiceException_1.ResourceExplorer2ServiceException {
49
- constructor(opts) {
50
- super({
51
- name: "ThrottlingException",
52
- $fault: "client",
53
- ...opts,
54
- });
55
- this.name = "ThrottlingException";
56
- this.$fault = "client";
57
- Object.setPrototypeOf(this, ThrottlingException.prototype);
58
- this.Message = opts.Message;
59
- }
60
- }
61
- exports.ThrottlingException = ThrottlingException;
62
- class ValidationException extends ResourceExplorer2ServiceException_1.ResourceExplorer2ServiceException {
63
- constructor(opts) {
64
- super({
65
- name: "ValidationException",
66
- $fault: "client",
67
- ...opts,
68
- });
69
- this.name = "ValidationException";
70
- this.$fault = "client";
71
- Object.setPrototypeOf(this, ValidationException.prototype);
72
- this.Message = opts.Message;
73
- this.FieldList = opts.FieldList;
74
- }
75
- }
76
- exports.ValidationException = ValidationException;
77
- exports.AWSServiceAccessStatus = {
78
- DISABLED: "DISABLED",
79
- ENABLED: "ENABLED",
80
- };
81
- class UnauthorizedException extends ResourceExplorer2ServiceException_1.ResourceExplorer2ServiceException {
82
- constructor(opts) {
83
- super({
84
- name: "UnauthorizedException",
85
- $fault: "client",
86
- ...opts,
87
- });
88
- this.name = "UnauthorizedException";
89
- this.$fault = "client";
90
- Object.setPrototypeOf(this, UnauthorizedException.prototype);
91
- this.Message = opts.Message;
92
- }
93
- }
94
- exports.UnauthorizedException = UnauthorizedException;
95
- class ConflictException extends ResourceExplorer2ServiceException_1.ResourceExplorer2ServiceException {
96
- constructor(opts) {
97
- super({
98
- name: "ConflictException",
99
- $fault: "client",
100
- ...opts,
101
- });
102
- this.name = "ConflictException";
103
- this.$fault = "client";
104
- Object.setPrototypeOf(this, ConflictException.prototype);
105
- this.Message = opts.Message;
106
- }
107
- }
108
- exports.ConflictException = ConflictException;
109
- exports.IndexState = {
110
- ACTIVE: "ACTIVE",
111
- CREATING: "CREATING",
112
- DELETED: "DELETED",
113
- DELETING: "DELETING",
114
- UPDATING: "UPDATING",
115
- };
116
- exports.IndexType = {
117
- AGGREGATOR: "AGGREGATOR",
118
- LOCAL: "LOCAL",
119
- };
120
- class ServiceQuotaExceededException extends ResourceExplorer2ServiceException_1.ResourceExplorer2ServiceException {
121
- constructor(opts) {
122
- super({
123
- name: "ServiceQuotaExceededException",
124
- $fault: "client",
125
- ...opts,
126
- });
127
- this.name = "ServiceQuotaExceededException";
128
- this.$fault = "client";
129
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
130
- this.Message = opts.Message;
131
- this.Name = opts.Name;
132
- this.Value = opts.Value;
133
- }
134
- }
135
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
136
- const SearchFilterFilterSensitiveLog = (obj) => ({
137
- ...obj,
138
- });
139
- exports.SearchFilterFilterSensitiveLog = SearchFilterFilterSensitiveLog;
140
- const ViewFilterSensitiveLog = (obj) => ({
141
- ...obj,
142
- ...(obj.Filters && { Filters: smithy_client_1.SENSITIVE_STRING }),
143
- });
144
- exports.ViewFilterSensitiveLog = ViewFilterSensitiveLog;
145
- const BatchGetViewOutputFilterSensitiveLog = (obj) => ({
146
- ...obj,
147
- ...(obj.Views && { Views: obj.Views.map((item) => (0, exports.ViewFilterSensitiveLog)(item)) }),
148
- });
149
- exports.BatchGetViewOutputFilterSensitiveLog = BatchGetViewOutputFilterSensitiveLog;
150
- const CreateIndexInputFilterSensitiveLog = (obj) => ({
151
- ...obj,
152
- ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
153
- });
154
- exports.CreateIndexInputFilterSensitiveLog = CreateIndexInputFilterSensitiveLog;
155
- const CreateViewInputFilterSensitiveLog = (obj) => ({
156
- ...obj,
157
- ...(obj.Filters && { Filters: smithy_client_1.SENSITIVE_STRING }),
158
- ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
159
- });
160
- exports.CreateViewInputFilterSensitiveLog = CreateViewInputFilterSensitiveLog;
161
- const CreateViewOutputFilterSensitiveLog = (obj) => ({
162
- ...obj,
163
- ...(obj.View && { View: (0, exports.ViewFilterSensitiveLog)(obj.View) }),
164
- });
165
- exports.CreateViewOutputFilterSensitiveLog = CreateViewOutputFilterSensitiveLog;
166
- const GetViewOutputFilterSensitiveLog = (obj) => ({
167
- ...obj,
168
- ...(obj.View && { View: (0, exports.ViewFilterSensitiveLog)(obj.View) }),
169
- ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
170
- });
171
- exports.GetViewOutputFilterSensitiveLog = GetViewOutputFilterSensitiveLog;
172
- const UpdateViewInputFilterSensitiveLog = (obj) => ({
173
- ...obj,
174
- ...(obj.Filters && { Filters: smithy_client_1.SENSITIVE_STRING }),
175
- });
176
- exports.UpdateViewInputFilterSensitiveLog = UpdateViewInputFilterSensitiveLog;
177
- const UpdateViewOutputFilterSensitiveLog = (obj) => ({
178
- ...obj,
179
- ...(obj.View && { View: (0, exports.ViewFilterSensitiveLog)(obj.View) }),
180
- });
181
- exports.UpdateViewOutputFilterSensitiveLog = UpdateViewOutputFilterSensitiveLog;
182
- const GetIndexOutputFilterSensitiveLog = (obj) => ({
183
- ...obj,
184
- ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
185
- });
186
- exports.GetIndexOutputFilterSensitiveLog = GetIndexOutputFilterSensitiveLog;
187
- const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
188
- ...obj,
189
- ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
190
- });
191
- exports.ListTagsForResourceOutputFilterSensitiveLog = ListTagsForResourceOutputFilterSensitiveLog;
192
- const SearchInputFilterSensitiveLog = (obj) => ({
193
- ...obj,
194
- ...(obj.QueryString && { QueryString: smithy_client_1.SENSITIVE_STRING }),
195
- });
196
- exports.SearchInputFilterSensitiveLog = SearchInputFilterSensitiveLog;
197
- const TagResourceInputFilterSensitiveLog = (obj) => ({
198
- ...obj,
199
- ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
200
- });
201
- exports.TagResourceInputFilterSensitiveLog = TagResourceInputFilterSensitiveLog;
202
- const UntagResourceInputFilterSensitiveLog = (obj) => ({
203
- ...obj,
204
- ...(obj.tagKeys && { tagKeys: smithy_client_1.SENSITIVE_STRING }),
205
- });
206
- exports.UntagResourceInputFilterSensitiveLog = UntagResourceInputFilterSensitiveLog;
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.paginateListIndexesForMembers = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListIndexesForMembersCommand_1 = require("../commands/ListIndexesForMembersCommand");
6
- const ResourceExplorer2Client_1 = require("../ResourceExplorer2Client");
7
- exports.paginateListIndexesForMembers = (0, core_1.createPaginator)(ResourceExplorer2Client_1.ResourceExplorer2Client, ListIndexesForMembersCommand_1.ListIndexesForMembersCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListIndexes = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListIndexesCommand_1 = require("../commands/ListIndexesCommand");
6
- const ResourceExplorer2Client_1 = require("../ResourceExplorer2Client");
7
- exports.paginateListIndexes = (0, core_1.createPaginator)(ResourceExplorer2Client_1.ResourceExplorer2Client, ListIndexesCommand_1.ListIndexesCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListSupportedResourceTypes = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListSupportedResourceTypesCommand_1 = require("../commands/ListSupportedResourceTypesCommand");
6
- const ResourceExplorer2Client_1 = require("../ResourceExplorer2Client");
7
- exports.paginateListSupportedResourceTypes = (0, core_1.createPaginator)(ResourceExplorer2Client_1.ResourceExplorer2Client, ListSupportedResourceTypesCommand_1.ListSupportedResourceTypesCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListViews = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListViewsCommand_1 = require("../commands/ListViewsCommand");
6
- const ResourceExplorer2Client_1 = require("../ResourceExplorer2Client");
7
- exports.paginateListViews = (0, core_1.createPaginator)(ResourceExplorer2Client_1.ResourceExplorer2Client, ListViewsCommand_1.ListViewsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateSearch = void 0;
4
- const core_1 = require("@smithy/core");
5
- const SearchCommand_1 = require("../commands/SearchCommand");
6
- const ResourceExplorer2Client_1 = require("../ResourceExplorer2Client");
7
- exports.paginateSearch = (0, core_1.createPaginator)(ResourceExplorer2Client_1.ResourceExplorer2Client, SearchCommand_1.SearchCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,9 +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("./ListIndexesForMembersPaginator"), exports);
6
- tslib_1.__exportStar(require("./ListIndexesPaginator"), exports);
7
- tslib_1.__exportStar(require("./ListSupportedResourceTypesPaginator"), exports);
8
- tslib_1.__exportStar(require("./ListViewsPaginator"), exports);
9
- tslib_1.__exportStar(require("./SearchPaginator"), exports);
1
+ module.exports = require("../index.js");