@aws-sdk/client-resource-explorer-2 3.296.0 → 3.298.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 (66) hide show
  1. package/dist-cjs/commands/AssociateDefaultViewCommand.js +2 -3
  2. package/dist-cjs/commands/BatchGetViewCommand.js +1 -1
  3. package/dist-cjs/commands/CreateIndexCommand.js +2 -3
  4. package/dist-cjs/commands/DeleteIndexCommand.js +2 -3
  5. package/dist-cjs/commands/DeleteViewCommand.js +2 -3
  6. package/dist-cjs/commands/DisassociateDefaultViewCommand.js +2 -2
  7. package/dist-cjs/commands/GetDefaultViewCommand.js +2 -3
  8. package/dist-cjs/commands/GetIndexCommand.js +2 -3
  9. package/dist-cjs/commands/GetViewCommand.js +1 -1
  10. package/dist-cjs/commands/ListIndexesCommand.js +2 -3
  11. package/dist-cjs/commands/ListSupportedResourceTypesCommand.js +2 -3
  12. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  13. package/dist-cjs/commands/ListViewsCommand.js +2 -3
  14. package/dist-cjs/commands/SearchCommand.js +1 -1
  15. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  16. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  17. package/dist-cjs/commands/UpdateIndexTypeCommand.js +2 -3
  18. package/dist-cjs/models/models_0.js +1 -142
  19. package/dist-es/commands/AssociateDefaultViewCommand.js +2 -3
  20. package/dist-es/commands/BatchGetViewCommand.js +2 -2
  21. package/dist-es/commands/CreateIndexCommand.js +2 -3
  22. package/dist-es/commands/DeleteIndexCommand.js +2 -3
  23. package/dist-es/commands/DeleteViewCommand.js +2 -3
  24. package/dist-es/commands/DisassociateDefaultViewCommand.js +2 -2
  25. package/dist-es/commands/GetDefaultViewCommand.js +2 -3
  26. package/dist-es/commands/GetIndexCommand.js +2 -3
  27. package/dist-es/commands/GetViewCommand.js +2 -2
  28. package/dist-es/commands/ListIndexesCommand.js +2 -3
  29. package/dist-es/commands/ListSupportedResourceTypesCommand.js +2 -3
  30. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  31. package/dist-es/commands/ListViewsCommand.js +2 -3
  32. package/dist-es/commands/SearchCommand.js +2 -2
  33. package/dist-es/commands/TagResourceCommand.js +2 -3
  34. package/dist-es/commands/UntagResourceCommand.js +2 -3
  35. package/dist-es/commands/UpdateIndexTypeCommand.js +2 -3
  36. package/dist-es/models/models_0.js +0 -105
  37. package/dist-types/ResourceExplorer2.d.ts +20 -0
  38. package/dist-types/ResourceExplorer2Client.d.ts +24 -4
  39. package/dist-types/commands/AssociateDefaultViewCommand.d.ts +16 -0
  40. package/dist-types/commands/BatchGetViewCommand.d.ts +16 -0
  41. package/dist-types/commands/CreateIndexCommand.d.ts +16 -0
  42. package/dist-types/commands/CreateViewCommand.d.ts +16 -0
  43. package/dist-types/commands/DeleteIndexCommand.d.ts +16 -0
  44. package/dist-types/commands/DeleteViewCommand.d.ts +16 -0
  45. package/dist-types/commands/DisassociateDefaultViewCommand.d.ts +16 -0
  46. package/dist-types/commands/GetDefaultViewCommand.d.ts +16 -0
  47. package/dist-types/commands/GetIndexCommand.d.ts +16 -0
  48. package/dist-types/commands/GetViewCommand.d.ts +16 -0
  49. package/dist-types/commands/ListIndexesCommand.d.ts +16 -0
  50. package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +16 -0
  51. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  52. package/dist-types/commands/ListViewsCommand.d.ts +16 -0
  53. package/dist-types/commands/SearchCommand.d.ts +16 -0
  54. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  55. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  56. package/dist-types/commands/UpdateIndexTypeCommand.d.ts +16 -0
  57. package/dist-types/commands/UpdateViewCommand.d.ts +16 -0
  58. package/dist-types/models/ResourceExplorer2ServiceException.d.ts +2 -0
  59. package/dist-types/models/models_0.d.ts +126 -140
  60. package/dist-types/pagination/Interfaces.d.ts +3 -0
  61. package/dist-types/pagination/ListIndexesPaginator.d.ts +3 -0
  62. package/dist-types/pagination/ListSupportedResourceTypesPaginator.d.ts +3 -0
  63. package/dist-types/pagination/ListViewsPaginator.d.ts +3 -0
  64. package/dist-types/pagination/SearchPaginator.d.ts +3 -0
  65. package/dist-types/ts3.4/models/models_0.d.ts +0 -97
  66. package/package.json +4 -3
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { GetViewInputFilterSensitiveLog, GetViewOutputFilterSensitiveLog, } from "../models/models_0";
4
+ import { GetViewOutputFilterSensitiveLog } from "../models/models_0";
5
5
  import { deserializeAws_restJson1GetViewCommand, serializeAws_restJson1GetViewCommand, } from "../protocols/Aws_restJson1";
6
6
  export class GetViewCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
@@ -26,7 +26,7 @@ export class GetViewCommand extends $Command {
26
26
  logger,
27
27
  clientName,
28
28
  commandName,
29
- inputFilterSensitiveLog: GetViewInputFilterSensitiveLog,
29
+ inputFilterSensitiveLog: (_) => _,
30
30
  outputFilterSensitiveLog: GetViewOutputFilterSensitiveLog,
31
31
  };
32
32
  const { requestHandler } = configuration;
@@ -1,7 +1,6 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListIndexesInputFilterSensitiveLog, ListIndexesOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1ListIndexesCommand, serializeAws_restJson1ListIndexesCommand, } from "../protocols/Aws_restJson1";
6
5
  export class ListIndexesCommand extends $Command {
7
6
  static getEndpointParameterInstructions() {
@@ -26,8 +25,8 @@ export class ListIndexesCommand extends $Command {
26
25
  logger,
27
26
  clientName,
28
27
  commandName,
29
- inputFilterSensitiveLog: ListIndexesInputFilterSensitiveLog,
30
- outputFilterSensitiveLog: ListIndexesOutputFilterSensitiveLog,
28
+ inputFilterSensitiveLog: (_) => _,
29
+ outputFilterSensitiveLog: (_) => _,
31
30
  };
32
31
  const { requestHandler } = configuration;
33
32
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,7 +1,6 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListSupportedResourceTypesInputFilterSensitiveLog, ListSupportedResourceTypesOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1ListSupportedResourceTypesCommand, serializeAws_restJson1ListSupportedResourceTypesCommand, } from "../protocols/Aws_restJson1";
6
5
  export class ListSupportedResourceTypesCommand extends $Command {
7
6
  static getEndpointParameterInstructions() {
@@ -26,8 +25,8 @@ export class ListSupportedResourceTypesCommand extends $Command {
26
25
  logger,
27
26
  clientName,
28
27
  commandName,
29
- inputFilterSensitiveLog: ListSupportedResourceTypesInputFilterSensitiveLog,
30
- outputFilterSensitiveLog: ListSupportedResourceTypesOutputFilterSensitiveLog,
28
+ inputFilterSensitiveLog: (_) => _,
29
+ outputFilterSensitiveLog: (_) => _,
31
30
  };
32
31
  const { requestHandler } = configuration;
33
32
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,7 +1,6 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListTagsForResourceInputFilterSensitiveLog, ListTagsForResourceOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
6
5
  export class ListTagsForResourceCommand extends $Command {
7
6
  static getEndpointParameterInstructions() {
@@ -26,8 +25,8 @@ export class ListTagsForResourceCommand extends $Command {
26
25
  logger,
27
26
  clientName,
28
27
  commandName,
29
- inputFilterSensitiveLog: ListTagsForResourceInputFilterSensitiveLog,
30
- outputFilterSensitiveLog: ListTagsForResourceOutputFilterSensitiveLog,
28
+ inputFilterSensitiveLog: (_) => _,
29
+ outputFilterSensitiveLog: (_) => _,
31
30
  };
32
31
  const { requestHandler } = configuration;
33
32
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,7 +1,6 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListViewsInputFilterSensitiveLog, ListViewsOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1ListViewsCommand, serializeAws_restJson1ListViewsCommand, } from "../protocols/Aws_restJson1";
6
5
  export class ListViewsCommand extends $Command {
7
6
  static getEndpointParameterInstructions() {
@@ -26,8 +25,8 @@ export class ListViewsCommand extends $Command {
26
25
  logger,
27
26
  clientName,
28
27
  commandName,
29
- inputFilterSensitiveLog: ListViewsInputFilterSensitiveLog,
30
- outputFilterSensitiveLog: ListViewsOutputFilterSensitiveLog,
28
+ inputFilterSensitiveLog: (_) => _,
29
+ outputFilterSensitiveLog: (_) => _,
31
30
  };
32
31
  const { requestHandler } = configuration;
33
32
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { SearchInputFilterSensitiveLog, SearchOutputFilterSensitiveLog, } from "../models/models_0";
4
+ import { SearchInputFilterSensitiveLog } from "../models/models_0";
5
5
  import { deserializeAws_restJson1SearchCommand, serializeAws_restJson1SearchCommand } from "../protocols/Aws_restJson1";
6
6
  export class SearchCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
@@ -27,7 +27,7 @@ export class SearchCommand extends $Command {
27
27
  clientName,
28
28
  commandName,
29
29
  inputFilterSensitiveLog: SearchInputFilterSensitiveLog,
30
- outputFilterSensitiveLog: SearchOutputFilterSensitiveLog,
30
+ outputFilterSensitiveLog: (_) => _,
31
31
  };
32
32
  const { requestHandler } = configuration;
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,7 +1,6 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { TagResourceInputFilterSensitiveLog, TagResourceOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
6
5
  export class TagResourceCommand extends $Command {
7
6
  static getEndpointParameterInstructions() {
@@ -26,8 +25,8 @@ export class TagResourceCommand extends $Command {
26
25
  logger,
27
26
  clientName,
28
27
  commandName,
29
- inputFilterSensitiveLog: TagResourceInputFilterSensitiveLog,
30
- outputFilterSensitiveLog: TagResourceOutputFilterSensitiveLog,
28
+ inputFilterSensitiveLog: (_) => _,
29
+ outputFilterSensitiveLog: (_) => _,
31
30
  };
32
31
  const { requestHandler } = configuration;
33
32
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,7 +1,6 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { UntagResourceInputFilterSensitiveLog, UntagResourceOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
6
5
  export class UntagResourceCommand extends $Command {
7
6
  static getEndpointParameterInstructions() {
@@ -26,8 +25,8 @@ export class UntagResourceCommand extends $Command {
26
25
  logger,
27
26
  clientName,
28
27
  commandName,
29
- inputFilterSensitiveLog: UntagResourceInputFilterSensitiveLog,
30
- outputFilterSensitiveLog: UntagResourceOutputFilterSensitiveLog,
28
+ inputFilterSensitiveLog: (_) => _,
29
+ outputFilterSensitiveLog: (_) => _,
31
30
  };
32
31
  const { requestHandler } = configuration;
33
32
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,7 +1,6 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { UpdateIndexTypeInputFilterSensitiveLog, UpdateIndexTypeOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1UpdateIndexTypeCommand, serializeAws_restJson1UpdateIndexTypeCommand, } from "../protocols/Aws_restJson1";
6
5
  export class UpdateIndexTypeCommand extends $Command {
7
6
  static getEndpointParameterInstructions() {
@@ -26,8 +25,8 @@ export class UpdateIndexTypeCommand extends $Command {
26
25
  logger,
27
26
  clientName,
28
27
  commandName,
29
- inputFilterSensitiveLog: UpdateIndexTypeInputFilterSensitiveLog,
30
- outputFilterSensitiveLog: UpdateIndexTypeOutputFilterSensitiveLog,
28
+ inputFilterSensitiveLog: (_) => _,
29
+ outputFilterSensitiveLog: (_) => _,
31
30
  };
32
31
  const { requestHandler } = configuration;
33
32
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -120,27 +120,9 @@ export class ServiceQuotaExceededException extends __BaseException {
120
120
  this.Value = opts.Value;
121
121
  }
122
122
  }
123
- export const AssociateDefaultViewInputFilterSensitiveLog = (obj) => ({
124
- ...obj,
125
- });
126
- export const AssociateDefaultViewOutputFilterSensitiveLog = (obj) => ({
127
- ...obj,
128
- });
129
- export const ValidationExceptionFieldFilterSensitiveLog = (obj) => ({
130
- ...obj,
131
- });
132
- export const BatchGetViewInputFilterSensitiveLog = (obj) => ({
133
- ...obj,
134
- });
135
- export const BatchGetViewErrorFilterSensitiveLog = (obj) => ({
136
- ...obj,
137
- });
138
123
  export const SearchFilterFilterSensitiveLog = (obj) => ({
139
124
  ...obj,
140
125
  });
141
- export const IncludedPropertyFilterSensitiveLog = (obj) => ({
142
- ...obj,
143
- });
144
126
  export const ViewFilterSensitiveLog = (obj) => ({
145
127
  ...obj,
146
128
  ...(obj.Filters && { Filters: SENSITIVE_STRING }),
@@ -149,33 +131,6 @@ export const BatchGetViewOutputFilterSensitiveLog = (obj) => ({
149
131
  ...obj,
150
132
  ...(obj.Views && { Views: obj.Views.map((item) => ViewFilterSensitiveLog(item)) }),
151
133
  });
152
- export const CreateIndexInputFilterSensitiveLog = (obj) => ({
153
- ...obj,
154
- });
155
- export const CreateIndexOutputFilterSensitiveLog = (obj) => ({
156
- ...obj,
157
- });
158
- export const DeleteIndexInputFilterSensitiveLog = (obj) => ({
159
- ...obj,
160
- });
161
- export const DeleteIndexOutputFilterSensitiveLog = (obj) => ({
162
- ...obj,
163
- });
164
- export const ListIndexesInputFilterSensitiveLog = (obj) => ({
165
- ...obj,
166
- });
167
- export const IndexFilterSensitiveLog = (obj) => ({
168
- ...obj,
169
- });
170
- export const ListIndexesOutputFilterSensitiveLog = (obj) => ({
171
- ...obj,
172
- });
173
- export const UpdateIndexTypeInputFilterSensitiveLog = (obj) => ({
174
- ...obj,
175
- });
176
- export const UpdateIndexTypeOutputFilterSensitiveLog = (obj) => ({
177
- ...obj,
178
- });
179
134
  export const CreateViewInputFilterSensitiveLog = (obj) => ({
180
135
  ...obj,
181
136
  ...(obj.Filters && { Filters: SENSITIVE_STRING }),
@@ -184,25 +139,10 @@ export const CreateViewOutputFilterSensitiveLog = (obj) => ({
184
139
  ...obj,
185
140
  ...(obj.View && { View: ViewFilterSensitiveLog(obj.View) }),
186
141
  });
187
- export const DeleteViewInputFilterSensitiveLog = (obj) => ({
188
- ...obj,
189
- });
190
- export const DeleteViewOutputFilterSensitiveLog = (obj) => ({
191
- ...obj,
192
- });
193
- export const GetViewInputFilterSensitiveLog = (obj) => ({
194
- ...obj,
195
- });
196
142
  export const GetViewOutputFilterSensitiveLog = (obj) => ({
197
143
  ...obj,
198
144
  ...(obj.View && { View: ViewFilterSensitiveLog(obj.View) }),
199
145
  });
200
- export const ListViewsInputFilterSensitiveLog = (obj) => ({
201
- ...obj,
202
- });
203
- export const ListViewsOutputFilterSensitiveLog = (obj) => ({
204
- ...obj,
205
- });
206
146
  export const UpdateViewInputFilterSensitiveLog = (obj) => ({
207
147
  ...obj,
208
148
  ...(obj.Filters && { Filters: SENSITIVE_STRING }),
@@ -211,52 +151,7 @@ export const UpdateViewOutputFilterSensitiveLog = (obj) => ({
211
151
  ...obj,
212
152
  ...(obj.View && { View: ViewFilterSensitiveLog(obj.View) }),
213
153
  });
214
- export const GetDefaultViewOutputFilterSensitiveLog = (obj) => ({
215
- ...obj,
216
- });
217
- export const GetIndexOutputFilterSensitiveLog = (obj) => ({
218
- ...obj,
219
- });
220
- export const ListSupportedResourceTypesInputFilterSensitiveLog = (obj) => ({
221
- ...obj,
222
- });
223
- export const SupportedResourceTypeFilterSensitiveLog = (obj) => ({
224
- ...obj,
225
- });
226
- export const ListSupportedResourceTypesOutputFilterSensitiveLog = (obj) => ({
227
- ...obj,
228
- });
229
- export const ListTagsForResourceInputFilterSensitiveLog = (obj) => ({
230
- ...obj,
231
- });
232
- export const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
233
- ...obj,
234
- });
235
- export const ResourcePropertyFilterSensitiveLog = (obj) => ({
236
- ...obj,
237
- });
238
- export const ResourceFilterSensitiveLog = (obj) => ({
239
- ...obj,
240
- });
241
- export const ResourceCountFilterSensitiveLog = (obj) => ({
242
- ...obj,
243
- });
244
154
  export const SearchInputFilterSensitiveLog = (obj) => ({
245
155
  ...obj,
246
156
  ...(obj.QueryString && { QueryString: SENSITIVE_STRING }),
247
157
  });
248
- export const SearchOutputFilterSensitiveLog = (obj) => ({
249
- ...obj,
250
- });
251
- export const TagResourceInputFilterSensitiveLog = (obj) => ({
252
- ...obj,
253
- });
254
- export const TagResourceOutputFilterSensitiveLog = (obj) => ({
255
- ...obj,
256
- });
257
- export const UntagResourceInputFilterSensitiveLog = (obj) => ({
258
- ...obj,
259
- });
260
- export const UntagResourceOutputFilterSensitiveLog = (obj) => ({
261
- ...obj,
262
- });
@@ -20,6 +20,7 @@ import { UpdateIndexTypeCommandInput, UpdateIndexTypeCommandOutput } from "./com
20
20
  import { UpdateViewCommandInput, UpdateViewCommandOutput } from "./commands/UpdateViewCommand";
21
21
  import { ResourceExplorer2Client } from "./ResourceExplorer2Client";
22
22
  /**
23
+ * @public
23
24
  * <p>Amazon Web Services Resource Explorer is a resource search and discovery service. By using Resource Explorer, you can
24
25
  * explore your resources using an internet search engine-like experience. Examples of
25
26
  * resources include Amazon Relational Database Service (Amazon RDS) instances, Amazon Simple Storage Service (Amazon S3) buckets, or Amazon DynamoDB
@@ -44,6 +45,7 @@ import { ResourceExplorer2Client } from "./ResourceExplorer2Client";
44
45
  */
45
46
  export declare class ResourceExplorer2 extends ResourceExplorer2Client {
46
47
  /**
48
+ * @public
47
49
  * <p>Sets the specified view as the default for the Amazon Web Services Region in which you call this
48
50
  * operation. When a user performs a <a>Search</a> that doesn't explicitly
49
51
  * specify which view to use, then Amazon Web Services Resource Explorer automatically chooses this default view for
@@ -56,12 +58,14 @@ export declare class ResourceExplorer2 extends ResourceExplorer2Client {
56
58
  associateDefaultView(args: AssociateDefaultViewCommandInput, cb: (err: any, data?: AssociateDefaultViewCommandOutput) => void): void;
57
59
  associateDefaultView(args: AssociateDefaultViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateDefaultViewCommandOutput) => void): void;
58
60
  /**
61
+ * @public
59
62
  * <p>Retrieves details about a list of views.</p>
60
63
  */
61
64
  batchGetView(args: BatchGetViewCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetViewCommandOutput>;
62
65
  batchGetView(args: BatchGetViewCommandInput, cb: (err: any, data?: BatchGetViewCommandOutput) => void): void;
63
66
  batchGetView(args: BatchGetViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetViewCommandOutput) => void): void;
64
67
  /**
68
+ * @public
65
69
  * <p>Turns on Amazon Web Services Resource Explorer in the Amazon Web Services Region in which you called this operation by creating
66
70
  * an index. Resource Explorer begins discovering the resources in this Region and stores the details
67
71
  * about the resources in the index so that they can be queried by using the <a>Search</a> operation. You can create only one index in a Region.</p>
@@ -118,6 +122,7 @@ export declare class ResourceExplorer2 extends ResourceExplorer2Client {
118
122
  createIndex(args: CreateIndexCommandInput, cb: (err: any, data?: CreateIndexCommandOutput) => void): void;
119
123
  createIndex(args: CreateIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIndexCommandOutput) => void): void;
120
124
  /**
125
+ * @public
121
126
  * <p>Creates a view that users can query by using the <a>Search</a> operation.
122
127
  * Results from queries that you make using this view include only resources that match the
123
128
  * view's <code>Filters</code>. For more information about Amazon Web Services Resource Explorer views, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-views.html">Managing views</a>
@@ -131,6 +136,7 @@ export declare class ResourceExplorer2 extends ResourceExplorer2Client {
131
136
  createView(args: CreateViewCommandInput, cb: (err: any, data?: CreateViewCommandOutput) => void): void;
132
137
  createView(args: CreateViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateViewCommandOutput) => void): void;
133
138
  /**
139
+ * @public
134
140
  * <p>Deletes the specified index and turns off Amazon Web Services Resource Explorer in the specified Amazon Web Services Region.
135
141
  * When you delete an index, Resource Explorer stops discovering and indexing resources in that
136
142
  * Region. Resource Explorer also deletes all views in that Region. These actions occur as
@@ -148,6 +154,7 @@ export declare class ResourceExplorer2 extends ResourceExplorer2Client {
148
154
  deleteIndex(args: DeleteIndexCommandInput, cb: (err: any, data?: DeleteIndexCommandOutput) => void): void;
149
155
  deleteIndex(args: DeleteIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIndexCommandOutput) => void): void;
150
156
  /**
157
+ * @public
151
158
  * <p>Deletes the specified view.</p>
152
159
  * <p>If the specified view is the default view for its Amazon Web Services Region, then all <a>Search</a> operations in that Region must explicitly specify the view to use
153
160
  * until you configure a new default by calling the <a>AssociateDefaultView</a>
@@ -157,6 +164,7 @@ export declare class ResourceExplorer2 extends ResourceExplorer2Client {
157
164
  deleteView(args: DeleteViewCommandInput, cb: (err: any, data?: DeleteViewCommandOutput) => void): void;
158
165
  deleteView(args: DeleteViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteViewCommandOutput) => void): void;
159
166
  /**
167
+ * @public
160
168
  * <p>After you call this operation, the affected Amazon Web Services Region no longer has a default view.
161
169
  * All <a>Search</a> operations in that Region must explicitly specify a view or
162
170
  * the operation fails. You can configure a new default by calling the <a>AssociateDefaultView</a> operation.</p>
@@ -168,6 +176,7 @@ export declare class ResourceExplorer2 extends ResourceExplorer2Client {
168
176
  disassociateDefaultView(args: DisassociateDefaultViewCommandInput, cb: (err: any, data?: DisassociateDefaultViewCommandOutput) => void): void;
169
177
  disassociateDefaultView(args: DisassociateDefaultViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateDefaultViewCommandOutput) => void): void;
170
178
  /**
179
+ * @public
171
180
  * <p>Retrieves the Amazon Resource Name (ARN) of the view that is the default for the
172
181
  * Amazon Web Services Region in which you call this operation. You can then call <a>GetView</a> to retrieve the details of that view.</p>
173
182
  */
@@ -175,6 +184,7 @@ export declare class ResourceExplorer2 extends ResourceExplorer2Client {
175
184
  getDefaultView(args: GetDefaultViewCommandInput, cb: (err: any, data?: GetDefaultViewCommandOutput) => void): void;
176
185
  getDefaultView(args: GetDefaultViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDefaultViewCommandOutput) => void): void;
177
186
  /**
187
+ * @public
178
188
  * <p>Retrieves details about the Amazon Web Services Resource Explorer index in the Amazon Web Services Region in which you invoked
179
189
  * the operation.</p>
180
190
  */
@@ -182,12 +192,14 @@ export declare class ResourceExplorer2 extends ResourceExplorer2Client {
182
192
  getIndex(args: GetIndexCommandInput, cb: (err: any, data?: GetIndexCommandOutput) => void): void;
183
193
  getIndex(args: GetIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIndexCommandOutput) => void): void;
184
194
  /**
195
+ * @public
185
196
  * <p>Retrieves details of the specified view.</p>
186
197
  */
187
198
  getView(args: GetViewCommandInput, options?: __HttpHandlerOptions): Promise<GetViewCommandOutput>;
188
199
  getView(args: GetViewCommandInput, cb: (err: any, data?: GetViewCommandOutput) => void): void;
189
200
  getView(args: GetViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetViewCommandOutput) => void): void;
190
201
  /**
202
+ * @public
191
203
  * <p>Retrieves a list of all of the indexes in Amazon Web Services Regions that are currently collecting
192
204
  * resource information for Amazon Web Services Resource Explorer.</p>
193
205
  */
@@ -195,18 +207,21 @@ export declare class ResourceExplorer2 extends ResourceExplorer2Client {
195
207
  listIndexes(args: ListIndexesCommandInput, cb: (err: any, data?: ListIndexesCommandOutput) => void): void;
196
208
  listIndexes(args: ListIndexesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIndexesCommandOutput) => void): void;
197
209
  /**
210
+ * @public
198
211
  * <p>Retrieves a list of all resource types currently supported by Amazon Web Services Resource Explorer.</p>
199
212
  */
200
213
  listSupportedResourceTypes(args: ListSupportedResourceTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListSupportedResourceTypesCommandOutput>;
201
214
  listSupportedResourceTypes(args: ListSupportedResourceTypesCommandInput, cb: (err: any, data?: ListSupportedResourceTypesCommandOutput) => void): void;
202
215
  listSupportedResourceTypes(args: ListSupportedResourceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSupportedResourceTypesCommandOutput) => void): void;
203
216
  /**
217
+ * @public
204
218
  * <p>Lists the tags that are attached to the specified resource.</p>
205
219
  */
206
220
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
207
221
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
208
222
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
209
223
  /**
224
+ * @public
210
225
  * <p>Lists the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource names (ARNs)</a> of the views available in the Amazon Web Services Region in which you
211
226
  * call this operation.</p>
212
227
  * <note>
@@ -222,6 +237,7 @@ export declare class ResourceExplorer2 extends ResourceExplorer2Client {
222
237
  listViews(args: ListViewsCommandInput, cb: (err: any, data?: ListViewsCommandOutput) => void): void;
223
238
  listViews(args: ListViewsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListViewsCommandOutput) => void): void;
224
239
  /**
240
+ * @public
225
241
  * <p>Searches for resources and displays details about all resources that match the
226
242
  * specified criteria. You must specify a query string.</p>
227
243
  * <p>All search queries must use a view. If you don't explicitly specify a view, then
@@ -240,18 +256,21 @@ export declare class ResourceExplorer2 extends ResourceExplorer2Client {
240
256
  search(args: SearchCommandInput, cb: (err: any, data?: SearchCommandOutput) => void): void;
241
257
  search(args: SearchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchCommandOutput) => void): void;
242
258
  /**
259
+ * @public
243
260
  * <p>Adds one or more tag key and value pairs to an Amazon Web Services Resource Explorer view or index.</p>
244
261
  */
245
262
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
246
263
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
247
264
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
248
265
  /**
266
+ * @public
249
267
  * <p>Removes one or more tag key and value pairs from an Amazon Web Services Resource Explorer view or index.</p>
250
268
  */
251
269
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
252
270
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
253
271
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
254
272
  /**
273
+ * @public
255
274
  * <p>Changes the type of the index from one of the following types to the other. For more
256
275
  * information about indexes and the role they perform in Amazon Web Services Resource Explorer, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-aggregator-region.html">Turning on
257
276
  * cross-Region search by creating an aggregator index</a> in the
@@ -314,6 +333,7 @@ export declare class ResourceExplorer2 extends ResourceExplorer2Client {
314
333
  updateIndexType(args: UpdateIndexTypeCommandInput, cb: (err: any, data?: UpdateIndexTypeCommandOutput) => void): void;
315
334
  updateIndexType(args: UpdateIndexTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIndexTypeCommandOutput) => void): void;
316
335
  /**
336
+ * @public
317
337
  * <p>Modifies some of the details of a view. You can change the filter string and the list
318
338
  * of included properties. You can't change the name of the view.</p>
319
339
  */
@@ -27,15 +27,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
27
27
  import { UpdateIndexTypeCommandInput, UpdateIndexTypeCommandOutput } from "./commands/UpdateIndexTypeCommand";
28
28
  import { UpdateViewCommandInput, UpdateViewCommandOutput } from "./commands/UpdateViewCommand";
29
29
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
30
+ /**
31
+ * @public
32
+ */
30
33
  export type ServiceInputTypes = AssociateDefaultViewCommandInput | BatchGetViewCommandInput | CreateIndexCommandInput | CreateViewCommandInput | DeleteIndexCommandInput | DeleteViewCommandInput | DisassociateDefaultViewCommandInput | GetDefaultViewCommandInput | GetIndexCommandInput | GetViewCommandInput | ListIndexesCommandInput | ListSupportedResourceTypesCommandInput | ListTagsForResourceCommandInput | ListViewsCommandInput | SearchCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateIndexTypeCommandInput | UpdateViewCommandInput;
34
+ /**
35
+ * @public
36
+ */
31
37
  export type ServiceOutputTypes = AssociateDefaultViewCommandOutput | BatchGetViewCommandOutput | CreateIndexCommandOutput | CreateViewCommandOutput | DeleteIndexCommandOutput | DeleteViewCommandOutput | DisassociateDefaultViewCommandOutput | GetDefaultViewCommandOutput | GetIndexCommandOutput | GetViewCommandOutput | ListIndexesCommandOutput | ListSupportedResourceTypesCommandOutput | ListTagsForResourceCommandOutput | ListViewsCommandOutput | SearchCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateIndexTypeCommandOutput | UpdateViewCommandOutput;
38
+ /**
39
+ * @public
40
+ */
32
41
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
33
42
  /**
34
43
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
35
44
  */
36
45
  requestHandler?: __HttpHandler;
37
46
  /**
38
- * A constructor for a class implementing the {@link __Checksum} interface
47
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
39
48
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
40
49
  * @internal
41
50
  */
@@ -125,23 +134,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
125
134
  */
126
135
  logger?: __Logger;
127
136
  /**
128
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
137
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
129
138
  */
130
139
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
131
140
  }
141
+ /**
142
+ * @public
143
+ */
132
144
  type ResourceExplorer2ClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
133
145
  /**
134
- * The configuration interface of ResourceExplorer2Client class constructor that set the region, credentials and other options.
146
+ * @public
147
+ *
148
+ * The configuration interface of ResourceExplorer2Client class constructor that set the region, credentials and other options.
135
149
  */
136
150
  export interface ResourceExplorer2ClientConfig extends ResourceExplorer2ClientConfigType {
137
151
  }
152
+ /**
153
+ * @public
154
+ */
138
155
  type ResourceExplorer2ClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
139
156
  /**
140
- * The resolved configuration interface of ResourceExplorer2Client class. This is resolved and normalized from the {@link ResourceExplorer2ClientConfig | constructor configuration interface}.
157
+ * @public
158
+ *
159
+ * The resolved configuration interface of ResourceExplorer2Client class. This is resolved and normalized from the {@link ResourceExplorer2ClientConfig | constructor configuration interface}.
141
160
  */
142
161
  export interface ResourceExplorer2ClientResolvedConfig extends ResourceExplorer2ClientResolvedConfigType {
143
162
  }
144
163
  /**
164
+ * @public
145
165
  * <p>Amazon Web Services Resource Explorer is a resource search and discovery service. By using Resource Explorer, you can
146
166
  * explore your resources using an internet search engine-like experience. Examples of
147
167
  * resources include Amazon Relational Database Service (Amazon RDS) instances, Amazon Simple Storage Service (Amazon S3) buckets, or Amazon DynamoDB
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AssociateDefaultViewInput, AssociateDefaultViewOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AssociateDefaultViewCommand}.
8
10
  */
9
11
  export interface AssociateDefaultViewCommandInput extends AssociateDefaultViewInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AssociateDefaultViewCommand}.
13
17
  */
14
18
  export interface AssociateDefaultViewCommandOutput extends AssociateDefaultViewOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Sets the specified view as the default for the Amazon Web Services Region in which you call this
18
23
  * operation. When a user performs a <a>Search</a> that doesn't explicitly
19
24
  * specify which view to use, then Amazon Web Services Resource Explorer automatically chooses this default view for
@@ -31,6 +36,8 @@ export interface AssociateDefaultViewCommandOutput extends AssociateDefaultViewO
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param AssociateDefaultViewCommandInput - {@link AssociateDefaultViewCommandInput}
40
+ * @returns {@link AssociateDefaultViewCommandOutput}
34
41
  * @see {@link AssociateDefaultViewCommandInput} for command's `input` shape.
35
42
  * @see {@link AssociateDefaultViewCommandOutput} for command's `response` shape.
36
43
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -61,11 +68,20 @@ export interface AssociateDefaultViewCommandOutput extends AssociateDefaultViewO
61
68
  export declare class AssociateDefaultViewCommand extends $Command<AssociateDefaultViewCommandInput, AssociateDefaultViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
62
69
  readonly input: AssociateDefaultViewCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: AssociateDefaultViewCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateDefaultViewCommandInput, AssociateDefaultViewCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { BatchGetViewInput, BatchGetViewOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link BatchGetViewCommand}.
8
10
  */
9
11
  export interface BatchGetViewCommandInput extends BatchGetViewInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link BatchGetViewCommand}.
13
17
  */
14
18
  export interface BatchGetViewCommandOutput extends BatchGetViewOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves details about a list of views.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface BatchGetViewCommandOutput extends BatchGetViewOutput, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param BatchGetViewCommandInput - {@link BatchGetViewCommandInput}
34
+ * @returns {@link BatchGetViewCommandOutput}
28
35
  * @see {@link BatchGetViewCommandInput} for command's `input` shape.
29
36
  * @see {@link BatchGetViewCommandOutput} for command's `response` shape.
30
37
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -54,11 +61,20 @@ export interface BatchGetViewCommandOutput extends BatchGetViewOutput, __Metadat
54
61
  export declare class BatchGetViewCommand extends $Command<BatchGetViewCommandInput, BatchGetViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
55
62
  readonly input: BatchGetViewCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: BatchGetViewCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetViewCommandInput, BatchGetViewCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }