@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.
- package/dist-cjs/commands/AssociateDefaultViewCommand.js +2 -3
- package/dist-cjs/commands/BatchGetViewCommand.js +1 -1
- package/dist-cjs/commands/CreateIndexCommand.js +2 -3
- package/dist-cjs/commands/DeleteIndexCommand.js +2 -3
- package/dist-cjs/commands/DeleteViewCommand.js +2 -3
- package/dist-cjs/commands/DisassociateDefaultViewCommand.js +2 -2
- package/dist-cjs/commands/GetDefaultViewCommand.js +2 -3
- package/dist-cjs/commands/GetIndexCommand.js +2 -3
- package/dist-cjs/commands/GetViewCommand.js +1 -1
- package/dist-cjs/commands/ListIndexesCommand.js +2 -3
- package/dist-cjs/commands/ListSupportedResourceTypesCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/ListViewsCommand.js +2 -3
- package/dist-cjs/commands/SearchCommand.js +1 -1
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateIndexTypeCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -142
- package/dist-es/commands/AssociateDefaultViewCommand.js +2 -3
- package/dist-es/commands/BatchGetViewCommand.js +2 -2
- package/dist-es/commands/CreateIndexCommand.js +2 -3
- package/dist-es/commands/DeleteIndexCommand.js +2 -3
- package/dist-es/commands/DeleteViewCommand.js +2 -3
- package/dist-es/commands/DisassociateDefaultViewCommand.js +2 -2
- package/dist-es/commands/GetDefaultViewCommand.js +2 -3
- package/dist-es/commands/GetIndexCommand.js +2 -3
- package/dist-es/commands/GetViewCommand.js +2 -2
- package/dist-es/commands/ListIndexesCommand.js +2 -3
- package/dist-es/commands/ListSupportedResourceTypesCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/ListViewsCommand.js +2 -3
- package/dist-es/commands/SearchCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateIndexTypeCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -105
- package/dist-types/ResourceExplorer2.d.ts +20 -0
- package/dist-types/ResourceExplorer2Client.d.ts +24 -4
- package/dist-types/commands/AssociateDefaultViewCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetViewCommand.d.ts +16 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +16 -0
- package/dist-types/commands/CreateViewCommand.d.ts +16 -0
- package/dist-types/commands/DeleteIndexCommand.d.ts +16 -0
- package/dist-types/commands/DeleteViewCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateDefaultViewCommand.d.ts +16 -0
- package/dist-types/commands/GetDefaultViewCommand.d.ts +16 -0
- package/dist-types/commands/GetIndexCommand.d.ts +16 -0
- package/dist-types/commands/GetViewCommand.d.ts +16 -0
- package/dist-types/commands/ListIndexesCommand.d.ts +16 -0
- package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListViewsCommand.d.ts +16 -0
- package/dist-types/commands/SearchCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateIndexTypeCommand.d.ts +16 -0
- package/dist-types/commands/UpdateViewCommand.d.ts +16 -0
- package/dist-types/models/ResourceExplorer2ServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +126 -140
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListIndexesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSupportedResourceTypesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListViewsPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -97
- package/package.json +4 -3
|
@@ -2,6 +2,7 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { DocumentType as __DocumentType } from "@aws-sdk/types";
|
|
3
3
|
import { ResourceExplorer2ServiceException as __BaseException } from "./ResourceExplorer2ServiceException";
|
|
4
4
|
/**
|
|
5
|
+
* @public
|
|
5
6
|
* <p>The credentials that you used to call this operation don't have the minimum required
|
|
6
7
|
* permissions.</p>
|
|
7
8
|
*/
|
|
@@ -14,6 +15,9 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
14
15
|
*/
|
|
15
16
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
16
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
17
21
|
export interface AssociateDefaultViewInput {
|
|
18
22
|
/**
|
|
19
23
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view to set as the default for the Amazon Web Services Region and
|
|
@@ -22,6 +26,9 @@ export interface AssociateDefaultViewInput {
|
|
|
22
26
|
*/
|
|
23
27
|
ViewArn: string | undefined;
|
|
24
28
|
}
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
25
32
|
export interface AssociateDefaultViewOutput {
|
|
26
33
|
/**
|
|
27
34
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view that the operation set as the default for queries made
|
|
@@ -30,6 +37,7 @@ export interface AssociateDefaultViewOutput {
|
|
|
30
37
|
ViewArn?: string;
|
|
31
38
|
}
|
|
32
39
|
/**
|
|
40
|
+
* @public
|
|
33
41
|
* <p>The request failed because of internal service error. Try your request again
|
|
34
42
|
* later.</p>
|
|
35
43
|
*/
|
|
@@ -43,6 +51,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
43
51
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
44
52
|
}
|
|
45
53
|
/**
|
|
54
|
+
* @public
|
|
46
55
|
* <p>You specified a resource that doesn't exist. Check the ID or ARN that you used to
|
|
47
56
|
* identity the resource, and try again.</p>
|
|
48
57
|
*/
|
|
@@ -56,6 +65,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
56
65
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
57
66
|
}
|
|
58
67
|
/**
|
|
68
|
+
* @public
|
|
59
69
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
60
70
|
* information, see <a href="https://docs.aws.amazon.com/arexug/mainline/quotas.html">Quotas
|
|
61
71
|
* for Resource Explorer</a>.</p>
|
|
@@ -70,6 +80,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
70
80
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
71
81
|
}
|
|
72
82
|
/**
|
|
83
|
+
* @public
|
|
73
84
|
* <p>A structure that describes a request field with a validation error.</p>
|
|
74
85
|
*/
|
|
75
86
|
export interface ValidationExceptionField {
|
|
@@ -83,6 +94,7 @@ export interface ValidationExceptionField {
|
|
|
83
94
|
ValidationIssue: string | undefined;
|
|
84
95
|
}
|
|
85
96
|
/**
|
|
97
|
+
* @public
|
|
86
98
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
87
99
|
* for the operation, and try again.</p>
|
|
88
100
|
*/
|
|
@@ -99,6 +111,9 @@ export declare class ValidationException extends __BaseException {
|
|
|
99
111
|
*/
|
|
100
112
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
101
113
|
}
|
|
114
|
+
/**
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
102
117
|
export interface BatchGetViewInput {
|
|
103
118
|
/**
|
|
104
119
|
* <p>A list of <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource names (ARNs)</a> that identify the views you want details for.</p>
|
|
@@ -106,6 +121,7 @@ export interface BatchGetViewInput {
|
|
|
106
121
|
ViewArns?: string[];
|
|
107
122
|
}
|
|
108
123
|
/**
|
|
124
|
+
* @public
|
|
109
125
|
* <p>A collection of error messages for any views that Amazon Web Services Resource Explorer couldn't retrieve
|
|
110
126
|
* details.</p>
|
|
111
127
|
*/
|
|
@@ -120,6 +136,7 @@ export interface BatchGetViewError {
|
|
|
120
136
|
ErrorMessage: string | undefined;
|
|
121
137
|
}
|
|
122
138
|
/**
|
|
139
|
+
* @public
|
|
123
140
|
* <p>A search filter defines which resources can be part of a search query result
|
|
124
141
|
* set.</p>
|
|
125
142
|
*/
|
|
@@ -133,6 +150,7 @@ export interface SearchFilter {
|
|
|
133
150
|
FilterString: string | undefined;
|
|
134
151
|
}
|
|
135
152
|
/**
|
|
153
|
+
* @public
|
|
136
154
|
* <p>Information about an additional property that describes a resource, that you can
|
|
137
155
|
* optionally include in the view. This lets you view that property in search results, and
|
|
138
156
|
* filter your search results based on the value of the property.</p>
|
|
@@ -152,6 +170,7 @@ export interface IncludedProperty {
|
|
|
152
170
|
Name: string | undefined;
|
|
153
171
|
}
|
|
154
172
|
/**
|
|
173
|
+
* @public
|
|
155
174
|
* <p>A view is a structure that defines a set of filters that provide a view into the
|
|
156
175
|
* information in the Amazon Web Services Resource Explorer index. The filters specify which information from the
|
|
157
176
|
* index is visible to the users of the view. For example, you can specify filters that
|
|
@@ -191,6 +210,9 @@ export interface View {
|
|
|
191
210
|
*/
|
|
192
211
|
Filters?: SearchFilter;
|
|
193
212
|
}
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
194
216
|
export interface BatchGetViewOutput {
|
|
195
217
|
/**
|
|
196
218
|
* <p>A structure with a list of objects with details for each of the specified
|
|
@@ -204,6 +226,7 @@ export interface BatchGetViewOutput {
|
|
|
204
226
|
Errors?: BatchGetViewError[];
|
|
205
227
|
}
|
|
206
228
|
/**
|
|
229
|
+
* @public
|
|
207
230
|
* <p>The principal making the request isn't permitted to perform the operation.</p>
|
|
208
231
|
*/
|
|
209
232
|
export declare class UnauthorizedException extends __BaseException {
|
|
@@ -216,6 +239,7 @@ export declare class UnauthorizedException extends __BaseException {
|
|
|
216
239
|
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
217
240
|
}
|
|
218
241
|
/**
|
|
242
|
+
* @public
|
|
219
243
|
* <p>The request failed because either you specified parameters that didn’t match the
|
|
220
244
|
* original request, or you attempted to create a view with a name that already exists in
|
|
221
245
|
* this Amazon Web Services Region.</p>
|
|
@@ -229,6 +253,9 @@ export declare class ConflictException extends __BaseException {
|
|
|
229
253
|
*/
|
|
230
254
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
231
255
|
}
|
|
256
|
+
/**
|
|
257
|
+
* @public
|
|
258
|
+
*/
|
|
232
259
|
export interface CreateIndexInput {
|
|
233
260
|
/**
|
|
234
261
|
* <p>This value helps ensure idempotency. Resource Explorer uses this value to prevent the
|
|
@@ -242,6 +269,9 @@ export interface CreateIndexInput {
|
|
|
242
269
|
*/
|
|
243
270
|
Tags?: Record<string, string>;
|
|
244
271
|
}
|
|
272
|
+
/**
|
|
273
|
+
* @public
|
|
274
|
+
*/
|
|
245
275
|
export declare enum IndexState {
|
|
246
276
|
/**
|
|
247
277
|
* Index is active.
|
|
@@ -264,6 +294,9 @@ export declare enum IndexState {
|
|
|
264
294
|
*/
|
|
265
295
|
UPDATING = "UPDATING"
|
|
266
296
|
}
|
|
297
|
+
/**
|
|
298
|
+
* @public
|
|
299
|
+
*/
|
|
267
300
|
export interface CreateIndexOutput {
|
|
268
301
|
/**
|
|
269
302
|
* <p>The ARN of the new local index for the Region. You can reference this ARN in IAM
|
|
@@ -287,12 +320,18 @@ export interface CreateIndexOutput {
|
|
|
287
320
|
*/
|
|
288
321
|
CreatedAt?: Date;
|
|
289
322
|
}
|
|
323
|
+
/**
|
|
324
|
+
* @public
|
|
325
|
+
*/
|
|
290
326
|
export interface DeleteIndexInput {
|
|
291
327
|
/**
|
|
292
328
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the index that you want to delete.</p>
|
|
293
329
|
*/
|
|
294
330
|
Arn: string | undefined;
|
|
295
331
|
}
|
|
332
|
+
/**
|
|
333
|
+
* @public
|
|
334
|
+
*/
|
|
296
335
|
export interface DeleteIndexOutput {
|
|
297
336
|
/**
|
|
298
337
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the index that you successfully started the deletion
|
|
@@ -311,6 +350,9 @@ export interface DeleteIndexOutput {
|
|
|
311
350
|
*/
|
|
312
351
|
LastUpdatedAt?: Date;
|
|
313
352
|
}
|
|
353
|
+
/**
|
|
354
|
+
* @public
|
|
355
|
+
*/
|
|
314
356
|
export declare enum IndexType {
|
|
315
357
|
/**
|
|
316
358
|
* aggregator index
|
|
@@ -321,6 +363,9 @@ export declare enum IndexType {
|
|
|
321
363
|
*/
|
|
322
364
|
LOCAL = "LOCAL"
|
|
323
365
|
}
|
|
366
|
+
/**
|
|
367
|
+
* @public
|
|
368
|
+
*/
|
|
324
369
|
export interface ListIndexesInput {
|
|
325
370
|
/**
|
|
326
371
|
* <p>If specified, limits the output to only indexes of the specified Type, either
|
|
@@ -357,6 +402,7 @@ export interface ListIndexesInput {
|
|
|
357
402
|
NextToken?: string;
|
|
358
403
|
}
|
|
359
404
|
/**
|
|
405
|
+
* @public
|
|
360
406
|
* <p>An index is the data store used by Amazon Web Services Resource Explorer to hold information about your Amazon Web Services
|
|
361
407
|
* resources that the service discovers. Creating an index in an Amazon Web Services Region turns on
|
|
362
408
|
* Resource Explorer and lets it discover your resources.</p>
|
|
@@ -397,6 +443,9 @@ export interface Index {
|
|
|
397
443
|
*/
|
|
398
444
|
Type?: IndexType | string;
|
|
399
445
|
}
|
|
446
|
+
/**
|
|
447
|
+
* @public
|
|
448
|
+
*/
|
|
400
449
|
export interface ListIndexesOutput {
|
|
401
450
|
/**
|
|
402
451
|
* <p>A structure that contains the details and status of each index.</p>
|
|
@@ -411,6 +460,7 @@ export interface ListIndexesOutput {
|
|
|
411
460
|
NextToken?: string;
|
|
412
461
|
}
|
|
413
462
|
/**
|
|
463
|
+
* @public
|
|
414
464
|
* <p>The request failed because it exceeds a service quota.</p>
|
|
415
465
|
*/
|
|
416
466
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -430,6 +480,9 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
430
480
|
*/
|
|
431
481
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
432
482
|
}
|
|
483
|
+
/**
|
|
484
|
+
* @public
|
|
485
|
+
*/
|
|
433
486
|
export interface UpdateIndexTypeInput {
|
|
434
487
|
/**
|
|
435
488
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the index that you want to update.</p>
|
|
@@ -442,6 +495,9 @@ export interface UpdateIndexTypeInput {
|
|
|
442
495
|
*/
|
|
443
496
|
Type: IndexType | string | undefined;
|
|
444
497
|
}
|
|
498
|
+
/**
|
|
499
|
+
* @public
|
|
500
|
+
*/
|
|
445
501
|
export interface UpdateIndexTypeOutput {
|
|
446
502
|
/**
|
|
447
503
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the index that you updated.</p>
|
|
@@ -461,6 +517,9 @@ export interface UpdateIndexTypeOutput {
|
|
|
461
517
|
*/
|
|
462
518
|
LastUpdatedAt?: Date;
|
|
463
519
|
}
|
|
520
|
+
/**
|
|
521
|
+
* @public
|
|
522
|
+
*/
|
|
464
523
|
export interface CreateViewInput {
|
|
465
524
|
/**
|
|
466
525
|
* <p>This value helps ensure idempotency. Resource Explorer uses this value to prevent the
|
|
@@ -502,30 +561,45 @@ export interface CreateViewInput {
|
|
|
502
561
|
*/
|
|
503
562
|
Tags?: Record<string, string>;
|
|
504
563
|
}
|
|
564
|
+
/**
|
|
565
|
+
* @public
|
|
566
|
+
*/
|
|
505
567
|
export interface CreateViewOutput {
|
|
506
568
|
/**
|
|
507
569
|
* <p>A structure that contains the details about the new view.</p>
|
|
508
570
|
*/
|
|
509
571
|
View?: View;
|
|
510
572
|
}
|
|
573
|
+
/**
|
|
574
|
+
* @public
|
|
575
|
+
*/
|
|
511
576
|
export interface DeleteViewInput {
|
|
512
577
|
/**
|
|
513
578
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view that you want to delete.</p>
|
|
514
579
|
*/
|
|
515
580
|
ViewArn: string | undefined;
|
|
516
581
|
}
|
|
582
|
+
/**
|
|
583
|
+
* @public
|
|
584
|
+
*/
|
|
517
585
|
export interface DeleteViewOutput {
|
|
518
586
|
/**
|
|
519
587
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view that you successfully deleted.</p>
|
|
520
588
|
*/
|
|
521
589
|
ViewArn?: string;
|
|
522
590
|
}
|
|
591
|
+
/**
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
523
594
|
export interface GetViewInput {
|
|
524
595
|
/**
|
|
525
596
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view that you want information about.</p>
|
|
526
597
|
*/
|
|
527
598
|
ViewArn: string | undefined;
|
|
528
599
|
}
|
|
600
|
+
/**
|
|
601
|
+
* @public
|
|
602
|
+
*/
|
|
529
603
|
export interface GetViewOutput {
|
|
530
604
|
/**
|
|
531
605
|
* <p>A structure that contains the details for the requested view.</p>
|
|
@@ -536,6 +610,9 @@ export interface GetViewOutput {
|
|
|
536
610
|
*/
|
|
537
611
|
Tags?: Record<string, string>;
|
|
538
612
|
}
|
|
613
|
+
/**
|
|
614
|
+
* @public
|
|
615
|
+
*/
|
|
539
616
|
export interface ListViewsInput {
|
|
540
617
|
/**
|
|
541
618
|
* <p>The parameter for receiving additional results if you receive a
|
|
@@ -560,6 +637,9 @@ export interface ListViewsInput {
|
|
|
560
637
|
*/
|
|
561
638
|
MaxResults?: number;
|
|
562
639
|
}
|
|
640
|
+
/**
|
|
641
|
+
* @public
|
|
642
|
+
*/
|
|
563
643
|
export interface ListViewsOutput {
|
|
564
644
|
/**
|
|
565
645
|
* <p>The list of views available in the Amazon Web Services Region in which you called this
|
|
@@ -574,6 +654,9 @@ export interface ListViewsOutput {
|
|
|
574
654
|
*/
|
|
575
655
|
NextToken?: string;
|
|
576
656
|
}
|
|
657
|
+
/**
|
|
658
|
+
* @public
|
|
659
|
+
*/
|
|
577
660
|
export interface UpdateViewInput {
|
|
578
661
|
/**
|
|
579
662
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view that you want to modify.</p>
|
|
@@ -603,12 +686,18 @@ export interface UpdateViewInput {
|
|
|
603
686
|
*/
|
|
604
687
|
Filters?: SearchFilter;
|
|
605
688
|
}
|
|
689
|
+
/**
|
|
690
|
+
* @public
|
|
691
|
+
*/
|
|
606
692
|
export interface UpdateViewOutput {
|
|
607
693
|
/**
|
|
608
694
|
* <p>Details about the view that you changed with this operation.</p>
|
|
609
695
|
*/
|
|
610
696
|
View?: View;
|
|
611
697
|
}
|
|
698
|
+
/**
|
|
699
|
+
* @public
|
|
700
|
+
*/
|
|
612
701
|
export interface GetDefaultViewOutput {
|
|
613
702
|
/**
|
|
614
703
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view that is the current default for the Amazon Web Services Region in
|
|
@@ -616,6 +705,9 @@ export interface GetDefaultViewOutput {
|
|
|
616
705
|
*/
|
|
617
706
|
ViewArn?: string;
|
|
618
707
|
}
|
|
708
|
+
/**
|
|
709
|
+
* @public
|
|
710
|
+
*/
|
|
619
711
|
export interface GetIndexOutput {
|
|
620
712
|
/**
|
|
621
713
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the index.</p>
|
|
@@ -658,6 +750,9 @@ export interface GetIndexOutput {
|
|
|
658
750
|
*/
|
|
659
751
|
Tags?: Record<string, string>;
|
|
660
752
|
}
|
|
753
|
+
/**
|
|
754
|
+
* @public
|
|
755
|
+
*/
|
|
661
756
|
export interface ListSupportedResourceTypesInput {
|
|
662
757
|
/**
|
|
663
758
|
* <p>The parameter for receiving additional results if you receive a
|
|
@@ -683,6 +778,7 @@ export interface ListSupportedResourceTypesInput {
|
|
|
683
778
|
MaxResults?: number;
|
|
684
779
|
}
|
|
685
780
|
/**
|
|
781
|
+
* @public
|
|
686
782
|
* <p>A structure that describes a resource type supported by Amazon Web Services Resource Explorer.</p>
|
|
687
783
|
*/
|
|
688
784
|
export interface SupportedResourceType {
|
|
@@ -696,6 +792,9 @@ export interface SupportedResourceType {
|
|
|
696
792
|
*/
|
|
697
793
|
ResourceType?: string;
|
|
698
794
|
}
|
|
795
|
+
/**
|
|
796
|
+
* @public
|
|
797
|
+
*/
|
|
699
798
|
export interface ListSupportedResourceTypesOutput {
|
|
700
799
|
/**
|
|
701
800
|
* <p>The list of resource types supported by Resource Explorer.</p>
|
|
@@ -709,12 +808,18 @@ export interface ListSupportedResourceTypesOutput {
|
|
|
709
808
|
*/
|
|
710
809
|
NextToken?: string;
|
|
711
810
|
}
|
|
811
|
+
/**
|
|
812
|
+
* @public
|
|
813
|
+
*/
|
|
712
814
|
export interface ListTagsForResourceInput {
|
|
713
815
|
/**
|
|
714
816
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view or index that you want to attach tags to.</p>
|
|
715
817
|
*/
|
|
716
818
|
resourceArn: string | undefined;
|
|
717
819
|
}
|
|
820
|
+
/**
|
|
821
|
+
* @public
|
|
822
|
+
*/
|
|
718
823
|
export interface ListTagsForResourceOutput {
|
|
719
824
|
/**
|
|
720
825
|
* <p>The tag key and value pairs that you want to attach to the specified view or
|
|
@@ -723,6 +828,7 @@ export interface ListTagsForResourceOutput {
|
|
|
723
828
|
Tags?: Record<string, string>;
|
|
724
829
|
}
|
|
725
830
|
/**
|
|
831
|
+
* @public
|
|
726
832
|
* <p>A structure that describes a property of a resource.</p>
|
|
727
833
|
*/
|
|
728
834
|
export interface ResourceProperty {
|
|
@@ -742,6 +848,7 @@ export interface ResourceProperty {
|
|
|
742
848
|
Data?: __DocumentType;
|
|
743
849
|
}
|
|
744
850
|
/**
|
|
851
|
+
* @public
|
|
745
852
|
* <p>A resource in Amazon Web Services that Amazon Web Services Resource Explorer has discovered, and for which it has stored
|
|
746
853
|
* information in the index of the Amazon Web Services Region that contains the resource.</p>
|
|
747
854
|
*/
|
|
@@ -779,6 +886,7 @@ export interface Resource {
|
|
|
779
886
|
Properties?: ResourceProperty[];
|
|
780
887
|
}
|
|
781
888
|
/**
|
|
889
|
+
* @public
|
|
782
890
|
* <p>Information about the number of results that match the query. At this time, Amazon Web Services Resource Explorer
|
|
783
891
|
* doesn't count more than 1,000 matches for any query. This structure
|
|
784
892
|
* provides information about whether the query exceeded this limit.</p>
|
|
@@ -809,6 +917,9 @@ export interface ResourceCount {
|
|
|
809
917
|
*/
|
|
810
918
|
Complete?: boolean;
|
|
811
919
|
}
|
|
920
|
+
/**
|
|
921
|
+
* @public
|
|
922
|
+
*/
|
|
812
923
|
export interface SearchInput {
|
|
813
924
|
/**
|
|
814
925
|
* <p>A string that includes keywords and filters that specify the resources that you want
|
|
@@ -855,6 +966,9 @@ export interface SearchInput {
|
|
|
855
966
|
*/
|
|
856
967
|
NextToken?: string;
|
|
857
968
|
}
|
|
969
|
+
/**
|
|
970
|
+
* @public
|
|
971
|
+
*/
|
|
858
972
|
export interface SearchOutput {
|
|
859
973
|
/**
|
|
860
974
|
* <p>The list of structures that describe the resources that match the query.</p>
|
|
@@ -876,6 +990,9 @@ export interface SearchOutput {
|
|
|
876
990
|
*/
|
|
877
991
|
Count?: ResourceCount;
|
|
878
992
|
}
|
|
993
|
+
/**
|
|
994
|
+
* @public
|
|
995
|
+
*/
|
|
879
996
|
export interface TagResourceInput {
|
|
880
997
|
/**
|
|
881
998
|
* <p>The Amazon Resource Name (ARN) of the view or index that you want to attach tags
|
|
@@ -888,8 +1005,14 @@ export interface TagResourceInput {
|
|
|
888
1005
|
*/
|
|
889
1006
|
Tags?: Record<string, string>;
|
|
890
1007
|
}
|
|
1008
|
+
/**
|
|
1009
|
+
* @public
|
|
1010
|
+
*/
|
|
891
1011
|
export interface TagResourceOutput {
|
|
892
1012
|
}
|
|
1013
|
+
/**
|
|
1014
|
+
* @public
|
|
1015
|
+
*/
|
|
893
1016
|
export interface UntagResourceInput {
|
|
894
1017
|
/**
|
|
895
1018
|
* <p>The Amazon Resource Name (ARN) of the view or index that you want to remove tags
|
|
@@ -902,36 +1025,15 @@ export interface UntagResourceInput {
|
|
|
902
1025
|
*/
|
|
903
1026
|
tagKeys: string[] | undefined;
|
|
904
1027
|
}
|
|
905
|
-
export interface UntagResourceOutput {
|
|
906
|
-
}
|
|
907
|
-
/**
|
|
908
|
-
* @internal
|
|
909
|
-
*/
|
|
910
|
-
export declare const AssociateDefaultViewInputFilterSensitiveLog: (obj: AssociateDefaultViewInput) => any;
|
|
911
|
-
/**
|
|
912
|
-
* @internal
|
|
913
|
-
*/
|
|
914
|
-
export declare const AssociateDefaultViewOutputFilterSensitiveLog: (obj: AssociateDefaultViewOutput) => any;
|
|
915
1028
|
/**
|
|
916
|
-
* @
|
|
917
|
-
*/
|
|
918
|
-
export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
919
|
-
/**
|
|
920
|
-
* @internal
|
|
1029
|
+
* @public
|
|
921
1030
|
*/
|
|
922
|
-
export
|
|
923
|
-
|
|
924
|
-
* @internal
|
|
925
|
-
*/
|
|
926
|
-
export declare const BatchGetViewErrorFilterSensitiveLog: (obj: BatchGetViewError) => any;
|
|
1031
|
+
export interface UntagResourceOutput {
|
|
1032
|
+
}
|
|
927
1033
|
/**
|
|
928
1034
|
* @internal
|
|
929
1035
|
*/
|
|
930
1036
|
export declare const SearchFilterFilterSensitiveLog: (obj: SearchFilter) => any;
|
|
931
|
-
/**
|
|
932
|
-
* @internal
|
|
933
|
-
*/
|
|
934
|
-
export declare const IncludedPropertyFilterSensitiveLog: (obj: IncludedProperty) => any;
|
|
935
1037
|
/**
|
|
936
1038
|
* @internal
|
|
937
1039
|
*/
|
|
@@ -940,42 +1042,6 @@ export declare const ViewFilterSensitiveLog: (obj: View) => any;
|
|
|
940
1042
|
* @internal
|
|
941
1043
|
*/
|
|
942
1044
|
export declare const BatchGetViewOutputFilterSensitiveLog: (obj: BatchGetViewOutput) => any;
|
|
943
|
-
/**
|
|
944
|
-
* @internal
|
|
945
|
-
*/
|
|
946
|
-
export declare const CreateIndexInputFilterSensitiveLog: (obj: CreateIndexInput) => any;
|
|
947
|
-
/**
|
|
948
|
-
* @internal
|
|
949
|
-
*/
|
|
950
|
-
export declare const CreateIndexOutputFilterSensitiveLog: (obj: CreateIndexOutput) => any;
|
|
951
|
-
/**
|
|
952
|
-
* @internal
|
|
953
|
-
*/
|
|
954
|
-
export declare const DeleteIndexInputFilterSensitiveLog: (obj: DeleteIndexInput) => any;
|
|
955
|
-
/**
|
|
956
|
-
* @internal
|
|
957
|
-
*/
|
|
958
|
-
export declare const DeleteIndexOutputFilterSensitiveLog: (obj: DeleteIndexOutput) => any;
|
|
959
|
-
/**
|
|
960
|
-
* @internal
|
|
961
|
-
*/
|
|
962
|
-
export declare const ListIndexesInputFilterSensitiveLog: (obj: ListIndexesInput) => any;
|
|
963
|
-
/**
|
|
964
|
-
* @internal
|
|
965
|
-
*/
|
|
966
|
-
export declare const IndexFilterSensitiveLog: (obj: Index) => any;
|
|
967
|
-
/**
|
|
968
|
-
* @internal
|
|
969
|
-
*/
|
|
970
|
-
export declare const ListIndexesOutputFilterSensitiveLog: (obj: ListIndexesOutput) => any;
|
|
971
|
-
/**
|
|
972
|
-
* @internal
|
|
973
|
-
*/
|
|
974
|
-
export declare const UpdateIndexTypeInputFilterSensitiveLog: (obj: UpdateIndexTypeInput) => any;
|
|
975
|
-
/**
|
|
976
|
-
* @internal
|
|
977
|
-
*/
|
|
978
|
-
export declare const UpdateIndexTypeOutputFilterSensitiveLog: (obj: UpdateIndexTypeOutput) => any;
|
|
979
1045
|
/**
|
|
980
1046
|
* @internal
|
|
981
1047
|
*/
|
|
@@ -984,30 +1050,10 @@ export declare const CreateViewInputFilterSensitiveLog: (obj: CreateViewInput) =
|
|
|
984
1050
|
* @internal
|
|
985
1051
|
*/
|
|
986
1052
|
export declare const CreateViewOutputFilterSensitiveLog: (obj: CreateViewOutput) => any;
|
|
987
|
-
/**
|
|
988
|
-
* @internal
|
|
989
|
-
*/
|
|
990
|
-
export declare const DeleteViewInputFilterSensitiveLog: (obj: DeleteViewInput) => any;
|
|
991
|
-
/**
|
|
992
|
-
* @internal
|
|
993
|
-
*/
|
|
994
|
-
export declare const DeleteViewOutputFilterSensitiveLog: (obj: DeleteViewOutput) => any;
|
|
995
|
-
/**
|
|
996
|
-
* @internal
|
|
997
|
-
*/
|
|
998
|
-
export declare const GetViewInputFilterSensitiveLog: (obj: GetViewInput) => any;
|
|
999
1053
|
/**
|
|
1000
1054
|
* @internal
|
|
1001
1055
|
*/
|
|
1002
1056
|
export declare const GetViewOutputFilterSensitiveLog: (obj: GetViewOutput) => any;
|
|
1003
|
-
/**
|
|
1004
|
-
* @internal
|
|
1005
|
-
*/
|
|
1006
|
-
export declare const ListViewsInputFilterSensitiveLog: (obj: ListViewsInput) => any;
|
|
1007
|
-
/**
|
|
1008
|
-
* @internal
|
|
1009
|
-
*/
|
|
1010
|
-
export declare const ListViewsOutputFilterSensitiveLog: (obj: ListViewsOutput) => any;
|
|
1011
1057
|
/**
|
|
1012
1058
|
* @internal
|
|
1013
1059
|
*/
|
|
@@ -1016,67 +1062,7 @@ export declare const UpdateViewInputFilterSensitiveLog: (obj: UpdateViewInput) =
|
|
|
1016
1062
|
* @internal
|
|
1017
1063
|
*/
|
|
1018
1064
|
export declare const UpdateViewOutputFilterSensitiveLog: (obj: UpdateViewOutput) => any;
|
|
1019
|
-
/**
|
|
1020
|
-
* @internal
|
|
1021
|
-
*/
|
|
1022
|
-
export declare const GetDefaultViewOutputFilterSensitiveLog: (obj: GetDefaultViewOutput) => any;
|
|
1023
|
-
/**
|
|
1024
|
-
* @internal
|
|
1025
|
-
*/
|
|
1026
|
-
export declare const GetIndexOutputFilterSensitiveLog: (obj: GetIndexOutput) => any;
|
|
1027
|
-
/**
|
|
1028
|
-
* @internal
|
|
1029
|
-
*/
|
|
1030
|
-
export declare const ListSupportedResourceTypesInputFilterSensitiveLog: (obj: ListSupportedResourceTypesInput) => any;
|
|
1031
|
-
/**
|
|
1032
|
-
* @internal
|
|
1033
|
-
*/
|
|
1034
|
-
export declare const SupportedResourceTypeFilterSensitiveLog: (obj: SupportedResourceType) => any;
|
|
1035
|
-
/**
|
|
1036
|
-
* @internal
|
|
1037
|
-
*/
|
|
1038
|
-
export declare const ListSupportedResourceTypesOutputFilterSensitiveLog: (obj: ListSupportedResourceTypesOutput) => any;
|
|
1039
|
-
/**
|
|
1040
|
-
* @internal
|
|
1041
|
-
*/
|
|
1042
|
-
export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
|
|
1043
|
-
/**
|
|
1044
|
-
* @internal
|
|
1045
|
-
*/
|
|
1046
|
-
export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
1047
|
-
/**
|
|
1048
|
-
* @internal
|
|
1049
|
-
*/
|
|
1050
|
-
export declare const ResourcePropertyFilterSensitiveLog: (obj: ResourceProperty) => any;
|
|
1051
|
-
/**
|
|
1052
|
-
* @internal
|
|
1053
|
-
*/
|
|
1054
|
-
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
1055
|
-
/**
|
|
1056
|
-
* @internal
|
|
1057
|
-
*/
|
|
1058
|
-
export declare const ResourceCountFilterSensitiveLog: (obj: ResourceCount) => any;
|
|
1059
1065
|
/**
|
|
1060
1066
|
* @internal
|
|
1061
1067
|
*/
|
|
1062
1068
|
export declare const SearchInputFilterSensitiveLog: (obj: SearchInput) => any;
|
|
1063
|
-
/**
|
|
1064
|
-
* @internal
|
|
1065
|
-
*/
|
|
1066
|
-
export declare const SearchOutputFilterSensitiveLog: (obj: SearchOutput) => any;
|
|
1067
|
-
/**
|
|
1068
|
-
* @internal
|
|
1069
|
-
*/
|
|
1070
|
-
export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
|
|
1071
|
-
/**
|
|
1072
|
-
* @internal
|
|
1073
|
-
*/
|
|
1074
|
-
export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
|
|
1075
|
-
/**
|
|
1076
|
-
* @internal
|
|
1077
|
-
*/
|
|
1078
|
-
export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
|
|
1079
|
-
/**
|
|
1080
|
-
* @internal
|
|
1081
|
-
*/
|
|
1082
|
-
export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { ResourceExplorer2Client } from "../ResourceExplorer2Client";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface ResourceExplorer2PaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: ResourceExplorer2Client;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListIndexesCommandInput, ListIndexesCommandOutput } from "../commands/ListIndexesCommand";
|
|
3
3
|
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListIndexes(config: ResourceExplorer2PaginationConfiguration, input: ListIndexesCommandInput, ...additionalArguments: any): Paginator<ListIndexesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListSupportedResourceTypesCommandInput, ListSupportedResourceTypesCommandOutput } from "../commands/ListSupportedResourceTypesCommand";
|
|
3
3
|
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListSupportedResourceTypes(config: ResourceExplorer2PaginationConfiguration, input: ListSupportedResourceTypesCommandInput, ...additionalArguments: any): Paginator<ListSupportedResourceTypesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListViewsCommandInput, ListViewsCommandOutput } from "../commands/ListViewsCommand";
|
|
3
3
|
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListViews(config: ResourceExplorer2PaginationConfiguration, input: ListViewsCommandInput, ...additionalArguments: any): Paginator<ListViewsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { SearchCommandInput, SearchCommandOutput } from "../commands/SearchCommand";
|
|
3
3
|
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateSearch(config: ResourceExplorer2PaginationConfiguration, input: SearchCommandInput, ...additionalArguments: any): Paginator<SearchCommandOutput>;
|