@aws-sdk/client-resource-explorer-2 3.206.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/LICENSE +201 -0
- package/README.md +241 -0
- package/dist-cjs/ResourceExplorer2.js +292 -0
- package/dist-cjs/ResourceExplorer2Client.js +40 -0
- package/dist-cjs/commands/AssociateDefaultViewCommand.js +45 -0
- package/dist-cjs/commands/BatchGetViewCommand.js +45 -0
- package/dist-cjs/commands/CreateIndexCommand.js +45 -0
- package/dist-cjs/commands/CreateViewCommand.js +45 -0
- package/dist-cjs/commands/DeleteIndexCommand.js +45 -0
- package/dist-cjs/commands/DeleteViewCommand.js +45 -0
- package/dist-cjs/commands/DisassociateDefaultViewCommand.js +44 -0
- package/dist-cjs/commands/GetDefaultViewCommand.js +45 -0
- package/dist-cjs/commands/GetIndexCommand.js +45 -0
- package/dist-cjs/commands/GetViewCommand.js +45 -0
- package/dist-cjs/commands/ListIndexesCommand.js +45 -0
- package/dist-cjs/commands/ListSupportedResourceTypesCommand.js +45 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +45 -0
- package/dist-cjs/commands/ListViewsCommand.js +45 -0
- package/dist-cjs/commands/SearchCommand.js +45 -0
- package/dist-cjs/commands/TagResourceCommand.js +45 -0
- package/dist-cjs/commands/UntagResourceCommand.js +45 -0
- package/dist-cjs/commands/UpdateIndexTypeCommand.js +45 -0
- package/dist-cjs/commands/UpdateViewCommand.js +45 -0
- package/dist-cjs/commands/index.js +22 -0
- package/dist-cjs/endpoint/EndpointParameters.js +11 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +251 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/ResourceExplorer2ServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +318 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListIndexesPaginator.js +36 -0
- package/dist-cjs/pagination/ListSupportedResourceTypesPaginator.js +36 -0
- package/dist-cjs/pagination/ListViewsPaginator.js +36 -0
- package/dist-cjs/pagination/SearchPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +8 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1771 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +17 -0
- package/dist-es/ResourceExplorer2.js +288 -0
- package/dist-es/ResourceExplorer2Client.js +36 -0
- package/dist-es/commands/AssociateDefaultViewCommand.js +41 -0
- package/dist-es/commands/BatchGetViewCommand.js +41 -0
- package/dist-es/commands/CreateIndexCommand.js +41 -0
- package/dist-es/commands/CreateViewCommand.js +41 -0
- package/dist-es/commands/DeleteIndexCommand.js +41 -0
- package/dist-es/commands/DeleteViewCommand.js +41 -0
- package/dist-es/commands/DisassociateDefaultViewCommand.js +40 -0
- package/dist-es/commands/GetDefaultViewCommand.js +41 -0
- package/dist-es/commands/GetIndexCommand.js +41 -0
- package/dist-es/commands/GetViewCommand.js +41 -0
- package/dist-es/commands/ListIndexesCommand.js +41 -0
- package/dist-es/commands/ListSupportedResourceTypesCommand.js +41 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +41 -0
- package/dist-es/commands/ListViewsCommand.js +41 -0
- package/dist-es/commands/SearchCommand.js +41 -0
- package/dist-es/commands/TagResourceCommand.js +41 -0
- package/dist-es/commands/UntagResourceCommand.js +41 -0
- package/dist-es/commands/UpdateIndexTypeCommand.js +41 -0
- package/dist-es/commands/UpdateViewCommand.js +41 -0
- package/dist-es/commands/index.js +19 -0
- package/dist-es/endpoint/EndpointParameters.js +7 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +248 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/ResourceExplorer2ServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +262 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListIndexesPaginator.js +32 -0
- package/dist-es/pagination/ListSupportedResourceTypesPaginator.js +32 -0
- package/dist-es/pagination/ListViewsPaginator.js +32 -0
- package/dist-es/pagination/SearchPaginator.js +32 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +1730 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-types/ResourceExplorer2.d.ts +336 -0
- package/dist-types/ResourceExplorer2Client.d.ts +196 -0
- package/dist-types/commands/AssociateDefaultViewCommand.d.ts +43 -0
- package/dist-types/commands/BatchGetViewCommand.d.ts +37 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +90 -0
- package/dist-types/commands/CreateViewCommand.d.ts +44 -0
- package/dist-types/commands/DeleteIndexCommand.d.ts +42 -0
- package/dist-types/commands/DeleteViewCommand.d.ts +40 -0
- package/dist-types/commands/DisassociateDefaultViewCommand.d.ts +41 -0
- package/dist-types/commands/GetDefaultViewCommand.d.ts +38 -0
- package/dist-types/commands/GetIndexCommand.d.ts +38 -0
- package/dist-types/commands/GetViewCommand.d.ts +37 -0
- package/dist-types/commands/ListIndexesCommand.d.ts +38 -0
- package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/ListViewsCommand.d.ts +46 -0
- package/dist-types/commands/SearchCommand.d.ts +49 -0
- package/dist-types/commands/TagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UpdateIndexTypeCommand.d.ts +93 -0
- package/dist-types/commands/UpdateViewCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +19 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +17 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/ResourceExplorer2ServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1080 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListIndexesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSupportedResourceTypesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListViewsPaginator.d.ts +4 -0
- package/dist-types/pagination/SearchPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +59 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +17 -0
- package/dist-types/ts3.4/ResourceExplorer2.d.ts +327 -0
- package/dist-types/ts3.4/ResourceExplorer2Client.d.ts +226 -0
- package/dist-types/ts3.4/commands/AssociateDefaultViewCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/BatchGetViewCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/CreateIndexCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/CreateViewCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteIndexCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteViewCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DisassociateDefaultViewCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetDefaultViewCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetIndexCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetViewCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/ListIndexesCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListSupportedResourceTypesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListViewsCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/SearchCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateIndexTypeCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateViewCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +19 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/ResourceExplorer2ServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +384 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListIndexesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSupportedResourceTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListViewsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +233 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/package.json +105 -0
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
import {
|
|
2
|
+
RegionInputConfig,
|
|
3
|
+
RegionResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
9
|
+
import {
|
|
10
|
+
HostHeaderInputConfig,
|
|
11
|
+
HostHeaderResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-host-header";
|
|
13
|
+
import {
|
|
14
|
+
RetryInputConfig,
|
|
15
|
+
RetryResolvedConfig,
|
|
16
|
+
} from "@aws-sdk/middleware-retry";
|
|
17
|
+
import {
|
|
18
|
+
AwsAuthInputConfig,
|
|
19
|
+
AwsAuthResolvedConfig,
|
|
20
|
+
} from "@aws-sdk/middleware-signing";
|
|
21
|
+
import {
|
|
22
|
+
UserAgentInputConfig,
|
|
23
|
+
UserAgentResolvedConfig,
|
|
24
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
25
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
26
|
+
import {
|
|
27
|
+
Client as __Client,
|
|
28
|
+
DefaultsMode,
|
|
29
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
30
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
31
|
+
} from "@aws-sdk/smithy-client";
|
|
32
|
+
import {
|
|
33
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
|
+
Credentials as __Credentials,
|
|
35
|
+
Decoder as __Decoder,
|
|
36
|
+
Encoder as __Encoder,
|
|
37
|
+
HashConstructor as __HashConstructor,
|
|
38
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
39
|
+
Logger as __Logger,
|
|
40
|
+
Provider as __Provider,
|
|
41
|
+
Provider,
|
|
42
|
+
StreamCollector as __StreamCollector,
|
|
43
|
+
UrlParser as __UrlParser,
|
|
44
|
+
UserAgent as __UserAgent,
|
|
45
|
+
} from "@aws-sdk/types";
|
|
46
|
+
import {
|
|
47
|
+
AssociateDefaultViewCommandInput,
|
|
48
|
+
AssociateDefaultViewCommandOutput,
|
|
49
|
+
} from "./commands/AssociateDefaultViewCommand";
|
|
50
|
+
import {
|
|
51
|
+
BatchGetViewCommandInput,
|
|
52
|
+
BatchGetViewCommandOutput,
|
|
53
|
+
} from "./commands/BatchGetViewCommand";
|
|
54
|
+
import {
|
|
55
|
+
CreateIndexCommandInput,
|
|
56
|
+
CreateIndexCommandOutput,
|
|
57
|
+
} from "./commands/CreateIndexCommand";
|
|
58
|
+
import {
|
|
59
|
+
CreateViewCommandInput,
|
|
60
|
+
CreateViewCommandOutput,
|
|
61
|
+
} from "./commands/CreateViewCommand";
|
|
62
|
+
import {
|
|
63
|
+
DeleteIndexCommandInput,
|
|
64
|
+
DeleteIndexCommandOutput,
|
|
65
|
+
} from "./commands/DeleteIndexCommand";
|
|
66
|
+
import {
|
|
67
|
+
DeleteViewCommandInput,
|
|
68
|
+
DeleteViewCommandOutput,
|
|
69
|
+
} from "./commands/DeleteViewCommand";
|
|
70
|
+
import {
|
|
71
|
+
DisassociateDefaultViewCommandInput,
|
|
72
|
+
DisassociateDefaultViewCommandOutput,
|
|
73
|
+
} from "./commands/DisassociateDefaultViewCommand";
|
|
74
|
+
import {
|
|
75
|
+
GetDefaultViewCommandInput,
|
|
76
|
+
GetDefaultViewCommandOutput,
|
|
77
|
+
} from "./commands/GetDefaultViewCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetIndexCommandInput,
|
|
80
|
+
GetIndexCommandOutput,
|
|
81
|
+
} from "./commands/GetIndexCommand";
|
|
82
|
+
import {
|
|
83
|
+
GetViewCommandInput,
|
|
84
|
+
GetViewCommandOutput,
|
|
85
|
+
} from "./commands/GetViewCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListIndexesCommandInput,
|
|
88
|
+
ListIndexesCommandOutput,
|
|
89
|
+
} from "./commands/ListIndexesCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListSupportedResourceTypesCommandInput,
|
|
92
|
+
ListSupportedResourceTypesCommandOutput,
|
|
93
|
+
} from "./commands/ListSupportedResourceTypesCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListTagsForResourceCommandInput,
|
|
96
|
+
ListTagsForResourceCommandOutput,
|
|
97
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListViewsCommandInput,
|
|
100
|
+
ListViewsCommandOutput,
|
|
101
|
+
} from "./commands/ListViewsCommand";
|
|
102
|
+
import {
|
|
103
|
+
SearchCommandInput,
|
|
104
|
+
SearchCommandOutput,
|
|
105
|
+
} from "./commands/SearchCommand";
|
|
106
|
+
import {
|
|
107
|
+
TagResourceCommandInput,
|
|
108
|
+
TagResourceCommandOutput,
|
|
109
|
+
} from "./commands/TagResourceCommand";
|
|
110
|
+
import {
|
|
111
|
+
UntagResourceCommandInput,
|
|
112
|
+
UntagResourceCommandOutput,
|
|
113
|
+
} from "./commands/UntagResourceCommand";
|
|
114
|
+
import {
|
|
115
|
+
UpdateIndexTypeCommandInput,
|
|
116
|
+
UpdateIndexTypeCommandOutput,
|
|
117
|
+
} from "./commands/UpdateIndexTypeCommand";
|
|
118
|
+
import {
|
|
119
|
+
UpdateViewCommandInput,
|
|
120
|
+
UpdateViewCommandOutput,
|
|
121
|
+
} from "./commands/UpdateViewCommand";
|
|
122
|
+
import {
|
|
123
|
+
ClientInputEndpointParameters,
|
|
124
|
+
ClientResolvedEndpointParameters,
|
|
125
|
+
EndpointParameters,
|
|
126
|
+
} from "./endpoint/EndpointParameters";
|
|
127
|
+
export declare type ServiceInputTypes =
|
|
128
|
+
| AssociateDefaultViewCommandInput
|
|
129
|
+
| BatchGetViewCommandInput
|
|
130
|
+
| CreateIndexCommandInput
|
|
131
|
+
| CreateViewCommandInput
|
|
132
|
+
| DeleteIndexCommandInput
|
|
133
|
+
| DeleteViewCommandInput
|
|
134
|
+
| DisassociateDefaultViewCommandInput
|
|
135
|
+
| GetDefaultViewCommandInput
|
|
136
|
+
| GetIndexCommandInput
|
|
137
|
+
| GetViewCommandInput
|
|
138
|
+
| ListIndexesCommandInput
|
|
139
|
+
| ListSupportedResourceTypesCommandInput
|
|
140
|
+
| ListTagsForResourceCommandInput
|
|
141
|
+
| ListViewsCommandInput
|
|
142
|
+
| SearchCommandInput
|
|
143
|
+
| TagResourceCommandInput
|
|
144
|
+
| UntagResourceCommandInput
|
|
145
|
+
| UpdateIndexTypeCommandInput
|
|
146
|
+
| UpdateViewCommandInput;
|
|
147
|
+
export declare type ServiceOutputTypes =
|
|
148
|
+
| AssociateDefaultViewCommandOutput
|
|
149
|
+
| BatchGetViewCommandOutput
|
|
150
|
+
| CreateIndexCommandOutput
|
|
151
|
+
| CreateViewCommandOutput
|
|
152
|
+
| DeleteIndexCommandOutput
|
|
153
|
+
| DeleteViewCommandOutput
|
|
154
|
+
| DisassociateDefaultViewCommandOutput
|
|
155
|
+
| GetDefaultViewCommandOutput
|
|
156
|
+
| GetIndexCommandOutput
|
|
157
|
+
| GetViewCommandOutput
|
|
158
|
+
| ListIndexesCommandOutput
|
|
159
|
+
| ListSupportedResourceTypesCommandOutput
|
|
160
|
+
| ListTagsForResourceCommandOutput
|
|
161
|
+
| ListViewsCommandOutput
|
|
162
|
+
| SearchCommandOutput
|
|
163
|
+
| TagResourceCommandOutput
|
|
164
|
+
| UntagResourceCommandOutput
|
|
165
|
+
| UpdateIndexTypeCommandOutput
|
|
166
|
+
| UpdateViewCommandOutput;
|
|
167
|
+
export interface ClientDefaults
|
|
168
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
169
|
+
requestHandler?: __HttpHandler;
|
|
170
|
+
sha256?: __HashConstructor;
|
|
171
|
+
urlParser?: __UrlParser;
|
|
172
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
173
|
+
streamCollector?: __StreamCollector;
|
|
174
|
+
base64Decoder?: __Decoder;
|
|
175
|
+
base64Encoder?: __Encoder;
|
|
176
|
+
utf8Decoder?: __Decoder;
|
|
177
|
+
utf8Encoder?: __Encoder;
|
|
178
|
+
runtime?: string;
|
|
179
|
+
disableHostPrefix?: boolean;
|
|
180
|
+
maxAttempts?: number | __Provider<number>;
|
|
181
|
+
retryMode?: string | __Provider<string>;
|
|
182
|
+
logger?: __Logger;
|
|
183
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
184
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
185
|
+
serviceId?: string;
|
|
186
|
+
region?: string | __Provider<string>;
|
|
187
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
188
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
189
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
190
|
+
}
|
|
191
|
+
declare type ResourceExplorer2ClientConfigType = Partial<
|
|
192
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
193
|
+
> &
|
|
194
|
+
ClientDefaults &
|
|
195
|
+
RegionInputConfig &
|
|
196
|
+
EndpointInputConfig<EndpointParameters> &
|
|
197
|
+
RetryInputConfig &
|
|
198
|
+
HostHeaderInputConfig &
|
|
199
|
+
AwsAuthInputConfig &
|
|
200
|
+
UserAgentInputConfig &
|
|
201
|
+
ClientInputEndpointParameters;
|
|
202
|
+
export interface ResourceExplorer2ClientConfig
|
|
203
|
+
extends ResourceExplorer2ClientConfigType {}
|
|
204
|
+
declare type ResourceExplorer2ClientResolvedConfigType =
|
|
205
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
206
|
+
Required<ClientDefaults> &
|
|
207
|
+
RegionResolvedConfig &
|
|
208
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
209
|
+
RetryResolvedConfig &
|
|
210
|
+
HostHeaderResolvedConfig &
|
|
211
|
+
AwsAuthResolvedConfig &
|
|
212
|
+
UserAgentResolvedConfig &
|
|
213
|
+
ClientResolvedEndpointParameters;
|
|
214
|
+
export interface ResourceExplorer2ClientResolvedConfig
|
|
215
|
+
extends ResourceExplorer2ClientResolvedConfigType {}
|
|
216
|
+
export declare class ResourceExplorer2Client extends __Client<
|
|
217
|
+
__HttpHandlerOptions,
|
|
218
|
+
ServiceInputTypes,
|
|
219
|
+
ServiceOutputTypes,
|
|
220
|
+
ResourceExplorer2ClientResolvedConfig
|
|
221
|
+
> {
|
|
222
|
+
readonly config: ResourceExplorer2ClientResolvedConfig;
|
|
223
|
+
constructor(configuration: ResourceExplorer2ClientConfig);
|
|
224
|
+
destroy(): void;
|
|
225
|
+
}
|
|
226
|
+
export {};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
AssociateDefaultViewInput,
|
|
11
|
+
AssociateDefaultViewOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../ResourceExplorer2Client";
|
|
18
|
+
export interface AssociateDefaultViewCommandInput
|
|
19
|
+
extends AssociateDefaultViewInput {}
|
|
20
|
+
export interface AssociateDefaultViewCommandOutput
|
|
21
|
+
extends AssociateDefaultViewOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class AssociateDefaultViewCommand extends $Command<
|
|
24
|
+
AssociateDefaultViewCommandInput,
|
|
25
|
+
AssociateDefaultViewCommandOutput,
|
|
26
|
+
ResourceExplorer2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: AssociateDefaultViewCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: AssociateDefaultViewCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
AssociateDefaultViewCommandInput,
|
|
37
|
+
AssociateDefaultViewCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { BatchGetViewInput, BatchGetViewOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ResourceExplorer2Client";
|
|
15
|
+
export interface BatchGetViewCommandInput extends BatchGetViewInput {}
|
|
16
|
+
export interface BatchGetViewCommandOutput
|
|
17
|
+
extends BatchGetViewOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class BatchGetViewCommand extends $Command<
|
|
20
|
+
BatchGetViewCommandInput,
|
|
21
|
+
BatchGetViewCommandOutput,
|
|
22
|
+
ResourceExplorer2ClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: BatchGetViewCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: BatchGetViewCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<BatchGetViewCommandInput, BatchGetViewCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { CreateIndexInput, CreateIndexOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ResourceExplorer2Client";
|
|
15
|
+
export interface CreateIndexCommandInput extends CreateIndexInput {}
|
|
16
|
+
export interface CreateIndexCommandOutput
|
|
17
|
+
extends CreateIndexOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class CreateIndexCommand extends $Command<
|
|
20
|
+
CreateIndexCommandInput,
|
|
21
|
+
CreateIndexCommandOutput,
|
|
22
|
+
ResourceExplorer2ClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateIndexCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: CreateIndexCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateIndexCommandInput, CreateIndexCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { CreateViewInput, CreateViewOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ResourceExplorer2Client";
|
|
15
|
+
export interface CreateViewCommandInput extends CreateViewInput {}
|
|
16
|
+
export interface CreateViewCommandOutput
|
|
17
|
+
extends CreateViewOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class CreateViewCommand extends $Command<
|
|
20
|
+
CreateViewCommandInput,
|
|
21
|
+
CreateViewCommandOutput,
|
|
22
|
+
ResourceExplorer2ClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateViewCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: CreateViewCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateViewCommandInput, CreateViewCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { DeleteIndexInput, DeleteIndexOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ResourceExplorer2Client";
|
|
15
|
+
export interface DeleteIndexCommandInput extends DeleteIndexInput {}
|
|
16
|
+
export interface DeleteIndexCommandOutput
|
|
17
|
+
extends DeleteIndexOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class DeleteIndexCommand extends $Command<
|
|
20
|
+
DeleteIndexCommandInput,
|
|
21
|
+
DeleteIndexCommandOutput,
|
|
22
|
+
ResourceExplorer2ClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteIndexCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteIndexCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteIndexCommandInput, DeleteIndexCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { DeleteViewInput, DeleteViewOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ResourceExplorer2Client";
|
|
15
|
+
export interface DeleteViewCommandInput extends DeleteViewInput {}
|
|
16
|
+
export interface DeleteViewCommandOutput
|
|
17
|
+
extends DeleteViewOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class DeleteViewCommand extends $Command<
|
|
20
|
+
DeleteViewCommandInput,
|
|
21
|
+
DeleteViewCommandOutput,
|
|
22
|
+
ResourceExplorer2ClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteViewCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteViewCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteViewCommandInput, DeleteViewCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ResourceExplorer2Client";
|
|
14
|
+
export interface DisassociateDefaultViewCommandInput {}
|
|
15
|
+
export interface DisassociateDefaultViewCommandOutput
|
|
16
|
+
extends __MetadataBearer {}
|
|
17
|
+
export declare class DisassociateDefaultViewCommand extends $Command<
|
|
18
|
+
DisassociateDefaultViewCommandInput,
|
|
19
|
+
DisassociateDefaultViewCommandOutput,
|
|
20
|
+
ResourceExplorer2ClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DisassociateDefaultViewCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
|
+
constructor(input: DisassociateDefaultViewCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<
|
|
30
|
+
DisassociateDefaultViewCommandInput,
|
|
31
|
+
DisassociateDefaultViewCommandOutput
|
|
32
|
+
>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { GetDefaultViewOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ResourceExplorer2Client";
|
|
15
|
+
export interface GetDefaultViewCommandInput {}
|
|
16
|
+
export interface GetDefaultViewCommandOutput
|
|
17
|
+
extends GetDefaultViewOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class GetDefaultViewCommand extends $Command<
|
|
20
|
+
GetDefaultViewCommandInput,
|
|
21
|
+
GetDefaultViewCommandOutput,
|
|
22
|
+
ResourceExplorer2ClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetDefaultViewCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: GetDefaultViewCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetDefaultViewCommandInput, GetDefaultViewCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { GetIndexOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ResourceExplorer2Client";
|
|
15
|
+
export interface GetIndexCommandInput {}
|
|
16
|
+
export interface GetIndexCommandOutput
|
|
17
|
+
extends GetIndexOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class GetIndexCommand extends $Command<
|
|
20
|
+
GetIndexCommandInput,
|
|
21
|
+
GetIndexCommandOutput,
|
|
22
|
+
ResourceExplorer2ClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetIndexCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: GetIndexCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetIndexCommandInput, GetIndexCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { GetViewInput, GetViewOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ResourceExplorer2Client";
|
|
15
|
+
export interface GetViewCommandInput extends GetViewInput {}
|
|
16
|
+
export interface GetViewCommandOutput extends GetViewOutput, __MetadataBearer {}
|
|
17
|
+
export declare class GetViewCommand extends $Command<
|
|
18
|
+
GetViewCommandInput,
|
|
19
|
+
GetViewCommandOutput,
|
|
20
|
+
ResourceExplorer2ClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: GetViewCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
|
+
constructor(input: GetViewCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetViewCommandInput, GetViewCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { ListIndexesInput, ListIndexesOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ResourceExplorer2Client";
|
|
15
|
+
export interface ListIndexesCommandInput extends ListIndexesInput {}
|
|
16
|
+
export interface ListIndexesCommandOutput
|
|
17
|
+
extends ListIndexesOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class ListIndexesCommand extends $Command<
|
|
20
|
+
ListIndexesCommandInput,
|
|
21
|
+
ListIndexesCommandOutput,
|
|
22
|
+
ResourceExplorer2ClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListIndexesCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: ListIndexesCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListIndexesCommandInput, ListIndexesCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListSupportedResourceTypesInput,
|
|
11
|
+
ListSupportedResourceTypesOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../ResourceExplorer2Client";
|
|
18
|
+
export interface ListSupportedResourceTypesCommandInput
|
|
19
|
+
extends ListSupportedResourceTypesInput {}
|
|
20
|
+
export interface ListSupportedResourceTypesCommandOutput
|
|
21
|
+
extends ListSupportedResourceTypesOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListSupportedResourceTypesCommand extends $Command<
|
|
24
|
+
ListSupportedResourceTypesCommandInput,
|
|
25
|
+
ListSupportedResourceTypesCommandOutput,
|
|
26
|
+
ResourceExplorer2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListSupportedResourceTypesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListSupportedResourceTypesCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListSupportedResourceTypesCommandInput,
|
|
37
|
+
ListSupportedResourceTypesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|