@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
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateIndexInput, CreateIndexOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateIndexCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateIndexCommandInput extends CreateIndexInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateIndexCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateIndexCommandOutput extends CreateIndexOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Turns on Amazon Web Services Resource Explorer in the Amazon Web Services Region in which you called this operation by creating
|
|
18
23
|
* an index. Resource Explorer begins discovering the resources in this Region and stores the details
|
|
19
24
|
* 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>
|
|
@@ -75,6 +80,8 @@ export interface CreateIndexCommandOutput extends CreateIndexOutput, __MetadataB
|
|
|
75
80
|
* const response = await client.send(command);
|
|
76
81
|
* ```
|
|
77
82
|
*
|
|
83
|
+
* @param CreateIndexCommandInput - {@link CreateIndexCommandInput}
|
|
84
|
+
* @returns {@link CreateIndexCommandOutput}
|
|
78
85
|
* @see {@link CreateIndexCommandInput} for command's `input` shape.
|
|
79
86
|
* @see {@link CreateIndexCommandOutput} for command's `response` shape.
|
|
80
87
|
* @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
|
|
@@ -106,11 +113,20 @@ export interface CreateIndexCommandOutput extends CreateIndexOutput, __MetadataB
|
|
|
106
113
|
export declare class CreateIndexCommand extends $Command<CreateIndexCommandInput, CreateIndexCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
107
114
|
readonly input: CreateIndexCommandInput;
|
|
108
115
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
109
119
|
constructor(input: CreateIndexCommandInput);
|
|
110
120
|
/**
|
|
111
121
|
* @internal
|
|
112
122
|
*/
|
|
113
123
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateIndexCommandInput, CreateIndexCommandOutput>;
|
|
124
|
+
/**
|
|
125
|
+
* @internal
|
|
126
|
+
*/
|
|
114
127
|
private serialize;
|
|
128
|
+
/**
|
|
129
|
+
* @internal
|
|
130
|
+
*/
|
|
115
131
|
private deserialize;
|
|
116
132
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateViewInput, CreateViewOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateViewCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateViewCommandInput extends CreateViewInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateViewCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateViewCommandOutput extends CreateViewOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a view that users can query by using the <a>Search</a> operation.
|
|
18
23
|
* Results from queries that you make using this view include only resources that match the
|
|
19
24
|
* 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>
|
|
@@ -32,6 +37,8 @@ export interface CreateViewCommandOutput extends CreateViewOutput, __MetadataBea
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param CreateViewCommandInput - {@link CreateViewCommandInput}
|
|
41
|
+
* @returns {@link CreateViewCommandOutput}
|
|
35
42
|
* @see {@link CreateViewCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link CreateViewCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface CreateViewCommandOutput extends CreateViewOutput, __MetadataBea
|
|
|
69
76
|
export declare class CreateViewCommand extends $Command<CreateViewCommandInput, CreateViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
70
77
|
readonly input: CreateViewCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: CreateViewCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateViewCommandInput, CreateViewCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteIndexInput, DeleteIndexOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteIndexCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteIndexCommandInput extends DeleteIndexInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteIndexCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteIndexCommandOutput extends DeleteIndexOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified index and turns off Amazon Web Services Resource Explorer in the specified Amazon Web Services Region.
|
|
18
23
|
* When you delete an index, Resource Explorer stops discovering and indexing resources in that
|
|
19
24
|
* Region. Resource Explorer also deletes all views in that Region. These actions occur as
|
|
@@ -36,6 +41,8 @@ export interface DeleteIndexCommandOutput extends DeleteIndexOutput, __MetadataB
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param DeleteIndexCommandInput - {@link DeleteIndexCommandInput}
|
|
45
|
+
* @returns {@link DeleteIndexCommandOutput}
|
|
39
46
|
* @see {@link DeleteIndexCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link DeleteIndexCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface DeleteIndexCommandOutput extends DeleteIndexOutput, __MetadataB
|
|
|
66
73
|
export declare class DeleteIndexCommand extends $Command<DeleteIndexCommandInput, DeleteIndexCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
67
74
|
readonly input: DeleteIndexCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: DeleteIndexCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteIndexCommandInput, DeleteIndexCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteViewInput, DeleteViewOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteViewCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteViewCommandInput extends DeleteViewInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteViewCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteViewCommandOutput extends DeleteViewOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified view.</p>
|
|
18
23
|
* <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
|
|
19
24
|
* until you configure a new default by calling the <a>AssociateDefaultView</a>
|
|
@@ -28,6 +33,8 @@ export interface DeleteViewCommandOutput extends DeleteViewOutput, __MetadataBea
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteViewCommandInput - {@link DeleteViewCommandInput}
|
|
37
|
+
* @returns {@link DeleteViewCommandOutput}
|
|
31
38
|
* @see {@link DeleteViewCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteViewCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface DeleteViewCommandOutput extends DeleteViewOutput, __MetadataBea
|
|
|
61
68
|
export declare class DeleteViewCommand extends $Command<DeleteViewCommandInput, DeleteViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
62
69
|
readonly input: DeleteViewCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: DeleteViewCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteViewCommandInput, DeleteViewCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -3,16 +3,21 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
|
|
5
5
|
/**
|
|
6
|
+
* @public
|
|
7
|
+
*
|
|
6
8
|
* The input for {@link DisassociateDefaultViewCommand}.
|
|
7
9
|
*/
|
|
8
10
|
export interface DisassociateDefaultViewCommandInput {
|
|
9
11
|
}
|
|
10
12
|
/**
|
|
13
|
+
* @public
|
|
14
|
+
*
|
|
11
15
|
* The output of {@link DisassociateDefaultViewCommand}.
|
|
12
16
|
*/
|
|
13
17
|
export interface DisassociateDefaultViewCommandOutput extends __MetadataBearer {
|
|
14
18
|
}
|
|
15
19
|
/**
|
|
20
|
+
* @public
|
|
16
21
|
* <p>After you call this operation, the affected Amazon Web Services Region no longer has a default view.
|
|
17
22
|
* All <a>Search</a> operations in that Region must explicitly specify a view or
|
|
18
23
|
* the operation fails. You can configure a new default by calling the <a>AssociateDefaultView</a> operation.</p>
|
|
@@ -29,6 +34,8 @@ export interface DisassociateDefaultViewCommandOutput extends __MetadataBearer {
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DisassociateDefaultViewCommandInput - {@link DisassociateDefaultViewCommandInput}
|
|
38
|
+
* @returns {@link DisassociateDefaultViewCommandOutput}
|
|
32
39
|
* @see {@link DisassociateDefaultViewCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DisassociateDefaultViewCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface DisassociateDefaultViewCommandOutput extends __MetadataBearer {
|
|
|
55
62
|
export declare class DisassociateDefaultViewCommand extends $Command<DisassociateDefaultViewCommandInput, DisassociateDefaultViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
56
63
|
readonly input: DisassociateDefaultViewCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: DisassociateDefaultViewCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateDefaultViewCommandInput, DisassociateDefaultViewCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetDefaultViewOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDefaultViewCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDefaultViewCommandInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDefaultViewCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDefaultViewCommandOutput extends GetDefaultViewOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the Amazon Resource Name (ARN) of the view that is the default for the
|
|
18
23
|
* 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>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetDefaultViewCommandOutput extends GetDefaultViewOutput, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetDefaultViewCommandInput - {@link GetDefaultViewCommandInput}
|
|
35
|
+
* @returns {@link GetDefaultViewCommandOutput}
|
|
29
36
|
* @see {@link GetDefaultViewCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetDefaultViewCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface GetDefaultViewCommandOutput extends GetDefaultViewOutput, __Met
|
|
|
56
63
|
export declare class GetDefaultViewCommand extends $Command<GetDefaultViewCommandInput, GetDefaultViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
57
64
|
readonly input: GetDefaultViewCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: GetDefaultViewCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDefaultViewCommandInput, GetDefaultViewCommandOutput>;
|
|
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 { 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
|
}
|