@aws-sdk/client-resource-explorer-2 3.295.0 → 3.297.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 (29) hide show
  1. package/dist-types/ResourceExplorer2.d.ts +20 -0
  2. package/dist-types/ResourceExplorer2Client.d.ts +24 -4
  3. package/dist-types/commands/AssociateDefaultViewCommand.d.ts +16 -0
  4. package/dist-types/commands/BatchGetViewCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateIndexCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateViewCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteIndexCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteViewCommand.d.ts +16 -0
  9. package/dist-types/commands/DisassociateDefaultViewCommand.d.ts +16 -0
  10. package/dist-types/commands/GetDefaultViewCommand.d.ts +16 -0
  11. package/dist-types/commands/GetIndexCommand.d.ts +16 -0
  12. package/dist-types/commands/GetViewCommand.d.ts +16 -0
  13. package/dist-types/commands/ListIndexesCommand.d.ts +16 -0
  14. package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +16 -0
  15. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  16. package/dist-types/commands/ListViewsCommand.d.ts +16 -0
  17. package/dist-types/commands/SearchCommand.d.ts +16 -0
  18. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  19. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  20. package/dist-types/commands/UpdateIndexTypeCommand.d.ts +16 -0
  21. package/dist-types/commands/UpdateViewCommand.d.ts +16 -0
  22. package/dist-types/models/ResourceExplorer2ServiceException.d.ts +2 -0
  23. package/dist-types/models/models_0.d.ts +126 -0
  24. package/dist-types/pagination/Interfaces.d.ts +3 -0
  25. package/dist-types/pagination/ListIndexesPaginator.d.ts +3 -0
  26. package/dist-types/pagination/ListSupportedResourceTypesPaginator.d.ts +3 -0
  27. package/dist-types/pagination/ListViewsPaginator.d.ts +3 -0
  28. package/dist-types/pagination/SearchPaginator.d.ts +3 -0
  29. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetIndexOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetIndexCommand}.
8
10
  */
9
11
  export interface GetIndexCommandInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetIndexCommand}.
13
17
  */
14
18
  export interface GetIndexCommandOutput extends GetIndexOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves details about the Amazon Web Services Resource Explorer index in the Amazon Web Services Region in which you invoked
18
23
  * the operation.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface GetIndexCommandOutput extends GetIndexOutput, __MetadataBearer
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetIndexCommandInput - {@link GetIndexCommandInput}
35
+ * @returns {@link GetIndexCommandOutput}
29
36
  * @see {@link GetIndexCommandInput} for command's `input` shape.
30
37
  * @see {@link GetIndexCommandOutput} for command's `response` shape.
31
38
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -56,11 +63,20 @@ export interface GetIndexCommandOutput extends GetIndexOutput, __MetadataBearer
56
63
  export declare class GetIndexCommand extends $Command<GetIndexCommandInput, GetIndexCommandOutput, ResourceExplorer2ClientResolvedConfig> {
57
64
  readonly input: GetIndexCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: GetIndexCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetIndexCommandInput, GetIndexCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetViewInput, GetViewOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetViewCommand}.
8
10
  */
9
11
  export interface GetViewCommandInput extends GetViewInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetViewCommand}.
13
17
  */
14
18
  export interface GetViewCommandOutput extends GetViewOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves details of the specified view.</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 GetViewCommandOutput extends GetViewOutput, __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetViewCommandInput - {@link GetViewCommandInput}
34
+ * @returns {@link GetViewCommandOutput}
28
35
  * @see {@link GetViewCommandInput} for command's `input` shape.
29
36
  * @see {@link GetViewCommandOutput} for command's `response` shape.
30
37
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -58,11 +65,20 @@ export interface GetViewCommandOutput extends GetViewOutput, __MetadataBearer {
58
65
  export declare class GetViewCommand extends $Command<GetViewCommandInput, GetViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
59
66
  readonly input: GetViewCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: GetViewCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetViewCommandInput, GetViewCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListIndexesInput, ListIndexesOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListIndexesCommand}.
8
10
  */
9
11
  export interface ListIndexesCommandInput extends ListIndexesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListIndexesCommand}.
13
17
  */
14
18
  export interface ListIndexesCommandOutput extends ListIndexesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves a list of all of the indexes in Amazon Web Services Regions that are currently collecting
18
23
  * resource information for Amazon Web Services Resource Explorer.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListIndexesCommandOutput extends ListIndexesOutput, __MetadataB
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListIndexesCommandInput - {@link ListIndexesCommandInput}
35
+ * @returns {@link ListIndexesCommandOutput}
29
36
  * @see {@link ListIndexesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListIndexesCommandOutput} for command's `response` shape.
31
38
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -52,11 +59,20 @@ export interface ListIndexesCommandOutput extends ListIndexesOutput, __MetadataB
52
59
  export declare class ListIndexesCommand extends $Command<ListIndexesCommandInput, ListIndexesCommandOutput, ResourceExplorer2ClientResolvedConfig> {
53
60
  readonly input: ListIndexesCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: ListIndexesCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListIndexesCommandInput, ListIndexesCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListSupportedResourceTypesInput, ListSupportedResourceTypesOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListSupportedResourceTypesCommand}.
8
10
  */
9
11
  export interface ListSupportedResourceTypesCommandInput extends ListSupportedResourceTypesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListSupportedResourceTypesCommand}.
13
17
  */
14
18
  export interface ListSupportedResourceTypesCommandOutput extends ListSupportedResourceTypesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves a list of all resource types currently supported by Amazon Web Services Resource Explorer.</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 ListSupportedResourceTypesCommandOutput extends ListSupportedRe
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListSupportedResourceTypesCommandInput - {@link ListSupportedResourceTypesCommandInput}
34
+ * @returns {@link ListSupportedResourceTypesCommandOutput}
28
35
  * @see {@link ListSupportedResourceTypesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListSupportedResourceTypesCommandOutput} for command's `response` shape.
30
37
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -51,11 +58,20 @@ export interface ListSupportedResourceTypesCommandOutput extends ListSupportedRe
51
58
  export declare class ListSupportedResourceTypesCommand extends $Command<ListSupportedResourceTypesCommandInput, ListSupportedResourceTypesCommandOutput, ResourceExplorer2ClientResolvedConfig> {
52
59
  readonly input: ListSupportedResourceTypesCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: ListSupportedResourceTypesCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSupportedResourceTypesCommandInput, ListSupportedResourceTypesCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the tags that are attached to the specified resource.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceOut
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -58,11 +65,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
58
65
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ResourceExplorer2ClientResolvedConfig> {
59
66
  readonly input: ListTagsForResourceCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: ListTagsForResourceCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListViewsInput, ListViewsOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListViewsCommand}.
8
10
  */
9
11
  export interface ListViewsCommandInput extends ListViewsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListViewsCommand}.
13
17
  */
14
18
  export interface ListViewsCommandOutput extends ListViewsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <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
18
23
  * call this operation.</p>
19
24
  * <note>
@@ -34,6 +39,8 @@ export interface ListViewsCommandOutput extends ListViewsOutput, __MetadataBeare
34
39
  * const response = await client.send(command);
35
40
  * ```
36
41
  *
42
+ * @param ListViewsCommandInput - {@link ListViewsCommandInput}
43
+ * @returns {@link ListViewsCommandOutput}
37
44
  * @see {@link ListViewsCommandInput} for command's `input` shape.
38
45
  * @see {@link ListViewsCommandOutput} for command's `response` shape.
39
46
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -60,11 +67,20 @@ export interface ListViewsCommandOutput extends ListViewsOutput, __MetadataBeare
60
67
  export declare class ListViewsCommand extends $Command<ListViewsCommandInput, ListViewsCommandOutput, ResourceExplorer2ClientResolvedConfig> {
61
68
  readonly input: ListViewsCommandInput;
62
69
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
+ /**
71
+ * @public
72
+ */
63
73
  constructor(input: ListViewsCommandInput);
64
74
  /**
65
75
  * @internal
66
76
  */
67
77
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListViewsCommandInput, ListViewsCommandOutput>;
78
+ /**
79
+ * @internal
80
+ */
68
81
  private serialize;
82
+ /**
83
+ * @internal
84
+ */
69
85
  private deserialize;
70
86
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { SearchInput, SearchOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchCommand}.
8
10
  */
9
11
  export interface SearchCommandInput extends SearchInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchCommand}.
13
17
  */
14
18
  export interface SearchCommandOutput extends SearchOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Searches for resources and displays details about all resources that match the
18
23
  * specified criteria. You must specify a query string.</p>
19
24
  * <p>All search queries must use a view. If you don't explicitly specify a view, then
@@ -37,6 +42,8 @@ export interface SearchCommandOutput extends SearchOutput, __MetadataBearer {
37
42
  * const response = await client.send(command);
38
43
  * ```
39
44
  *
45
+ * @param SearchCommandInput - {@link SearchCommandInput}
46
+ * @returns {@link SearchCommandOutput}
40
47
  * @see {@link SearchCommandInput} for command's `input` shape.
41
48
  * @see {@link SearchCommandOutput} for command's `response` shape.
42
49
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -70,11 +77,20 @@ export interface SearchCommandOutput extends SearchOutput, __MetadataBearer {
70
77
  export declare class SearchCommand extends $Command<SearchCommandInput, SearchCommandOutput, ResourceExplorer2ClientResolvedConfig> {
71
78
  readonly input: SearchCommandInput;
72
79
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
80
+ /**
81
+ * @public
82
+ */
73
83
  constructor(input: SearchCommandInput);
74
84
  /**
75
85
  * @internal
76
86
  */
77
87
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchCommandInput, SearchCommandOutput>;
88
+ /**
89
+ * @internal
90
+ */
78
91
  private serialize;
92
+ /**
93
+ * @internal
94
+ */
79
95
  private deserialize;
80
96
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { TagResourceInput, TagResourceOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds one or more tag key and value pairs to an Amazon Web Services Resource Explorer view or index.</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 TagResourceCommandOutput extends TagResourceOutput, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -59,11 +66,20 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
59
66
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ResourceExplorer2ClientResolvedConfig> {
60
67
  readonly input: TagResourceCommandInput;
61
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
62
72
  constructor(input: TagResourceCommandInput);
63
73
  /**
64
74
  * @internal
65
75
  */
66
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
67
80
  private serialize;
81
+ /**
82
+ * @internal
83
+ */
68
84
  private deserialize;
69
85
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes one or more tag key and value pairs from an Amazon Web Services Resource Explorer view or index.</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 UntagResourceCommandOutput extends UntagResourceOutput, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -58,11 +65,20 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
58
65
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ResourceExplorer2ClientResolvedConfig> {
59
66
  readonly input: UntagResourceCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: UntagResourceCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateIndexTypeInput, UpdateIndexTypeOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateIndexTypeCommand}.
8
10
  */
9
11
  export interface UpdateIndexTypeCommandInput extends UpdateIndexTypeInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateIndexTypeCommand}.
13
17
  */
14
18
  export interface UpdateIndexTypeCommandOutput extends UpdateIndexTypeOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Changes the type of the index from one of the following types to the other. For more
18
23
  * 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
19
24
  * cross-Region search by creating an aggregator index</a> in the
@@ -81,6 +86,8 @@ export interface UpdateIndexTypeCommandOutput extends UpdateIndexTypeOutput, __M
81
86
  * const response = await client.send(command);
82
87
  * ```
83
88
  *
89
+ * @param UpdateIndexTypeCommandInput - {@link UpdateIndexTypeCommandInput}
90
+ * @returns {@link UpdateIndexTypeCommandOutput}
84
91
  * @see {@link UpdateIndexTypeCommandInput} for command's `input` shape.
85
92
  * @see {@link UpdateIndexTypeCommandOutput} for command's `response` shape.
86
93
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -119,11 +126,20 @@ export interface UpdateIndexTypeCommandOutput extends UpdateIndexTypeOutput, __M
119
126
  export declare class UpdateIndexTypeCommand extends $Command<UpdateIndexTypeCommandInput, UpdateIndexTypeCommandOutput, ResourceExplorer2ClientResolvedConfig> {
120
127
  readonly input: UpdateIndexTypeCommandInput;
121
128
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
129
+ /**
130
+ * @public
131
+ */
122
132
  constructor(input: UpdateIndexTypeCommandInput);
123
133
  /**
124
134
  * @internal
125
135
  */
126
136
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateIndexTypeCommandInput, UpdateIndexTypeCommandOutput>;
137
+ /**
138
+ * @internal
139
+ */
127
140
  private serialize;
141
+ /**
142
+ * @internal
143
+ */
128
144
  private deserialize;
129
145
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateViewInput, UpdateViewOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateViewCommand}.
8
10
  */
9
11
  export interface UpdateViewCommandInput extends UpdateViewInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateViewCommand}.
13
17
  */
14
18
  export interface UpdateViewCommandOutput extends UpdateViewOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Modifies some of the details of a view. You can change the filter string and the list
18
23
  * of included properties. You can't change the name of the view.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UpdateViewCommandOutput extends UpdateViewOutput, __MetadataBea
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UpdateViewCommandInput - {@link UpdateViewCommandInput}
35
+ * @returns {@link UpdateViewCommandOutput}
29
36
  * @see {@link UpdateViewCommandInput} for command's `input` shape.
30
37
  * @see {@link UpdateViewCommandOutput} for command's `response` shape.
31
38
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -58,11 +65,20 @@ export interface UpdateViewCommandOutput extends UpdateViewOutput, __MetadataBea
58
65
  export declare class UpdateViewCommand extends $Command<UpdateViewCommandInput, UpdateViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
59
66
  readonly input: UpdateViewCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: UpdateViewCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateViewCommandInput, UpdateViewCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from ResourceExplorer2 service.
4
6
  */
5
7
  export declare class ResourceExplorer2ServiceException extends __ServiceException {