@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,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ResourceExplorer2 } from "../ResourceExplorer2";
|
|
3
|
+
import { ResourceExplorer2Client } from "../ResourceExplorer2Client";
|
|
4
|
+
export interface ResourceExplorer2PaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: ResourceExplorer2 | ResourceExplorer2Client;
|
|
6
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListIndexesCommandInput, ListIndexesCommandOutput } from "../commands/ListIndexesCommand";
|
|
3
|
+
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListIndexes(config: ResourceExplorer2PaginationConfiguration, input: ListIndexesCommandInput, ...additionalArguments: any): Paginator<ListIndexesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListSupportedResourceTypesCommandInput, ListSupportedResourceTypesCommandOutput } from "../commands/ListSupportedResourceTypesCommand";
|
|
3
|
+
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListSupportedResourceTypes(config: ResourceExplorer2PaginationConfiguration, input: ListSupportedResourceTypesCommandInput, ...additionalArguments: any): Paginator<ListSupportedResourceTypesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListViewsCommandInput, ListViewsCommandOutput } from "../commands/ListViewsCommand";
|
|
3
|
+
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListViews(config: ResourceExplorer2PaginationConfiguration, input: ListViewsCommandInput, ...additionalArguments: any): Paginator<ListViewsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { SearchCommandInput, SearchCommandOutput } from "../commands/SearchCommand";
|
|
3
|
+
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateSearch(config: ResourceExplorer2PaginationConfiguration, input: SearchCommandInput, ...additionalArguments: any): Paginator<SearchCommandOutput>;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { AssociateDefaultViewCommandInput, AssociateDefaultViewCommandOutput } from "../commands/AssociateDefaultViewCommand";
|
|
4
|
+
import { BatchGetViewCommandInput, BatchGetViewCommandOutput } from "../commands/BatchGetViewCommand";
|
|
5
|
+
import { CreateIndexCommandInput, CreateIndexCommandOutput } from "../commands/CreateIndexCommand";
|
|
6
|
+
import { CreateViewCommandInput, CreateViewCommandOutput } from "../commands/CreateViewCommand";
|
|
7
|
+
import { DeleteIndexCommandInput, DeleteIndexCommandOutput } from "../commands/DeleteIndexCommand";
|
|
8
|
+
import { DeleteViewCommandInput, DeleteViewCommandOutput } from "../commands/DeleteViewCommand";
|
|
9
|
+
import { DisassociateDefaultViewCommandInput, DisassociateDefaultViewCommandOutput } from "../commands/DisassociateDefaultViewCommand";
|
|
10
|
+
import { GetDefaultViewCommandInput, GetDefaultViewCommandOutput } from "../commands/GetDefaultViewCommand";
|
|
11
|
+
import { GetIndexCommandInput, GetIndexCommandOutput } from "../commands/GetIndexCommand";
|
|
12
|
+
import { GetViewCommandInput, GetViewCommandOutput } from "../commands/GetViewCommand";
|
|
13
|
+
import { ListIndexesCommandInput, ListIndexesCommandOutput } from "../commands/ListIndexesCommand";
|
|
14
|
+
import { ListSupportedResourceTypesCommandInput, ListSupportedResourceTypesCommandOutput } from "../commands/ListSupportedResourceTypesCommand";
|
|
15
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
16
|
+
import { ListViewsCommandInput, ListViewsCommandOutput } from "../commands/ListViewsCommand";
|
|
17
|
+
import { SearchCommandInput, SearchCommandOutput } from "../commands/SearchCommand";
|
|
18
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
19
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
20
|
+
import { UpdateIndexTypeCommandInput, UpdateIndexTypeCommandOutput } from "../commands/UpdateIndexTypeCommand";
|
|
21
|
+
import { UpdateViewCommandInput, UpdateViewCommandOutput } from "../commands/UpdateViewCommand";
|
|
22
|
+
export declare const serializeAws_restJson1AssociateDefaultViewCommand: (input: AssociateDefaultViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
export declare const serializeAws_restJson1BatchGetViewCommand: (input: BatchGetViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
+
export declare const serializeAws_restJson1CreateIndexCommand: (input: CreateIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
|
+
export declare const serializeAws_restJson1CreateViewCommand: (input: CreateViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
export declare const serializeAws_restJson1DeleteIndexCommand: (input: DeleteIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
+
export declare const serializeAws_restJson1DeleteViewCommand: (input: DeleteViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
+
export declare const serializeAws_restJson1DisassociateDefaultViewCommand: (input: DisassociateDefaultViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
+
export declare const serializeAws_restJson1GetDefaultViewCommand: (input: GetDefaultViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
export declare const serializeAws_restJson1GetIndexCommand: (input: GetIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
export declare const serializeAws_restJson1GetViewCommand: (input: GetViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
+
export declare const serializeAws_restJson1ListIndexesCommand: (input: ListIndexesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
+
export declare const serializeAws_restJson1ListSupportedResourceTypesCommand: (input: ListSupportedResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
export declare const serializeAws_restJson1ListViewsCommand: (input: ListViewsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
export declare const serializeAws_restJson1SearchCommand: (input: SearchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
+
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
+
export declare const serializeAws_restJson1UpdateIndexTypeCommand: (input: UpdateIndexTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
+
export declare const serializeAws_restJson1UpdateViewCommand: (input: UpdateViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
export declare const deserializeAws_restJson1AssociateDefaultViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateDefaultViewCommandOutput>;
|
|
42
|
+
export declare const deserializeAws_restJson1BatchGetViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetViewCommandOutput>;
|
|
43
|
+
export declare const deserializeAws_restJson1CreateIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIndexCommandOutput>;
|
|
44
|
+
export declare const deserializeAws_restJson1CreateViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateViewCommandOutput>;
|
|
45
|
+
export declare const deserializeAws_restJson1DeleteIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIndexCommandOutput>;
|
|
46
|
+
export declare const deserializeAws_restJson1DeleteViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteViewCommandOutput>;
|
|
47
|
+
export declare const deserializeAws_restJson1DisassociateDefaultViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateDefaultViewCommandOutput>;
|
|
48
|
+
export declare const deserializeAws_restJson1GetDefaultViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDefaultViewCommandOutput>;
|
|
49
|
+
export declare const deserializeAws_restJson1GetIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIndexCommandOutput>;
|
|
50
|
+
export declare const deserializeAws_restJson1GetViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetViewCommandOutput>;
|
|
51
|
+
export declare const deserializeAws_restJson1ListIndexesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIndexesCommandOutput>;
|
|
52
|
+
export declare const deserializeAws_restJson1ListSupportedResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSupportedResourceTypesCommandOutput>;
|
|
53
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
54
|
+
export declare const deserializeAws_restJson1ListViewsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListViewsCommandOutput>;
|
|
55
|
+
export declare const deserializeAws_restJson1SearchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchCommandOutput>;
|
|
56
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
57
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
58
|
+
export declare const deserializeAws_restJson1UpdateIndexTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIndexTypeCommandOutput>;
|
|
59
|
+
export declare const deserializeAws_restJson1UpdateViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateViewCommandOutput>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: ResourceExplorer2ClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
25
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: ResourceExplorer2ClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
25
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: ResourceExplorer2ClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
16
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
17
|
+
disableHostPrefix: boolean;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
logger: import("@aws-sdk/types").Logger;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
|
+
serviceId: string;
|
|
24
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
27
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
32
|
+
tls?: boolean | undefined;
|
|
33
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
34
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
35
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
36
|
+
signingEscapePath?: boolean | undefined;
|
|
37
|
+
systemClockOffset?: number | undefined;
|
|
38
|
+
signingRegion?: string | undefined;
|
|
39
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
40
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
41
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: ResourceExplorer2ClientConfig) => {
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
disableHostPrefix: boolean;
|
|
11
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
12
|
+
logger?: __Logger | undefined;
|
|
13
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
14
|
+
logger: __Logger;
|
|
15
|
+
serviceId: string;
|
|
16
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
17
|
+
};
|
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
AssociateDefaultViewCommandInput,
|
|
4
|
+
AssociateDefaultViewCommandOutput,
|
|
5
|
+
} from "./commands/AssociateDefaultViewCommand";
|
|
6
|
+
import {
|
|
7
|
+
BatchGetViewCommandInput,
|
|
8
|
+
BatchGetViewCommandOutput,
|
|
9
|
+
} from "./commands/BatchGetViewCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateIndexCommandInput,
|
|
12
|
+
CreateIndexCommandOutput,
|
|
13
|
+
} from "./commands/CreateIndexCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateViewCommandInput,
|
|
16
|
+
CreateViewCommandOutput,
|
|
17
|
+
} from "./commands/CreateViewCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteIndexCommandInput,
|
|
20
|
+
DeleteIndexCommandOutput,
|
|
21
|
+
} from "./commands/DeleteIndexCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteViewCommandInput,
|
|
24
|
+
DeleteViewCommandOutput,
|
|
25
|
+
} from "./commands/DeleteViewCommand";
|
|
26
|
+
import {
|
|
27
|
+
DisassociateDefaultViewCommandInput,
|
|
28
|
+
DisassociateDefaultViewCommandOutput,
|
|
29
|
+
} from "./commands/DisassociateDefaultViewCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetDefaultViewCommandInput,
|
|
32
|
+
GetDefaultViewCommandOutput,
|
|
33
|
+
} from "./commands/GetDefaultViewCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetIndexCommandInput,
|
|
36
|
+
GetIndexCommandOutput,
|
|
37
|
+
} from "./commands/GetIndexCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetViewCommandInput,
|
|
40
|
+
GetViewCommandOutput,
|
|
41
|
+
} from "./commands/GetViewCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListIndexesCommandInput,
|
|
44
|
+
ListIndexesCommandOutput,
|
|
45
|
+
} from "./commands/ListIndexesCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListSupportedResourceTypesCommandInput,
|
|
48
|
+
ListSupportedResourceTypesCommandOutput,
|
|
49
|
+
} from "./commands/ListSupportedResourceTypesCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListTagsForResourceCommandInput,
|
|
52
|
+
ListTagsForResourceCommandOutput,
|
|
53
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListViewsCommandInput,
|
|
56
|
+
ListViewsCommandOutput,
|
|
57
|
+
} from "./commands/ListViewsCommand";
|
|
58
|
+
import {
|
|
59
|
+
SearchCommandInput,
|
|
60
|
+
SearchCommandOutput,
|
|
61
|
+
} from "./commands/SearchCommand";
|
|
62
|
+
import {
|
|
63
|
+
TagResourceCommandInput,
|
|
64
|
+
TagResourceCommandOutput,
|
|
65
|
+
} from "./commands/TagResourceCommand";
|
|
66
|
+
import {
|
|
67
|
+
UntagResourceCommandInput,
|
|
68
|
+
UntagResourceCommandOutput,
|
|
69
|
+
} from "./commands/UntagResourceCommand";
|
|
70
|
+
import {
|
|
71
|
+
UpdateIndexTypeCommandInput,
|
|
72
|
+
UpdateIndexTypeCommandOutput,
|
|
73
|
+
} from "./commands/UpdateIndexTypeCommand";
|
|
74
|
+
import {
|
|
75
|
+
UpdateViewCommandInput,
|
|
76
|
+
UpdateViewCommandOutput,
|
|
77
|
+
} from "./commands/UpdateViewCommand";
|
|
78
|
+
import { ResourceExplorer2Client } from "./ResourceExplorer2Client";
|
|
79
|
+
export declare class ResourceExplorer2 extends ResourceExplorer2Client {
|
|
80
|
+
associateDefaultView(
|
|
81
|
+
args: AssociateDefaultViewCommandInput,
|
|
82
|
+
options?: __HttpHandlerOptions
|
|
83
|
+
): Promise<AssociateDefaultViewCommandOutput>;
|
|
84
|
+
associateDefaultView(
|
|
85
|
+
args: AssociateDefaultViewCommandInput,
|
|
86
|
+
cb: (err: any, data?: AssociateDefaultViewCommandOutput) => void
|
|
87
|
+
): void;
|
|
88
|
+
associateDefaultView(
|
|
89
|
+
args: AssociateDefaultViewCommandInput,
|
|
90
|
+
options: __HttpHandlerOptions,
|
|
91
|
+
cb: (err: any, data?: AssociateDefaultViewCommandOutput) => void
|
|
92
|
+
): void;
|
|
93
|
+
batchGetView(
|
|
94
|
+
args: BatchGetViewCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<BatchGetViewCommandOutput>;
|
|
97
|
+
batchGetView(
|
|
98
|
+
args: BatchGetViewCommandInput,
|
|
99
|
+
cb: (err: any, data?: BatchGetViewCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
batchGetView(
|
|
102
|
+
args: BatchGetViewCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: BatchGetViewCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
createIndex(
|
|
107
|
+
args: CreateIndexCommandInput,
|
|
108
|
+
options?: __HttpHandlerOptions
|
|
109
|
+
): Promise<CreateIndexCommandOutput>;
|
|
110
|
+
createIndex(
|
|
111
|
+
args: CreateIndexCommandInput,
|
|
112
|
+
cb: (err: any, data?: CreateIndexCommandOutput) => void
|
|
113
|
+
): void;
|
|
114
|
+
createIndex(
|
|
115
|
+
args: CreateIndexCommandInput,
|
|
116
|
+
options: __HttpHandlerOptions,
|
|
117
|
+
cb: (err: any, data?: CreateIndexCommandOutput) => void
|
|
118
|
+
): void;
|
|
119
|
+
createView(
|
|
120
|
+
args: CreateViewCommandInput,
|
|
121
|
+
options?: __HttpHandlerOptions
|
|
122
|
+
): Promise<CreateViewCommandOutput>;
|
|
123
|
+
createView(
|
|
124
|
+
args: CreateViewCommandInput,
|
|
125
|
+
cb: (err: any, data?: CreateViewCommandOutput) => void
|
|
126
|
+
): void;
|
|
127
|
+
createView(
|
|
128
|
+
args: CreateViewCommandInput,
|
|
129
|
+
options: __HttpHandlerOptions,
|
|
130
|
+
cb: (err: any, data?: CreateViewCommandOutput) => void
|
|
131
|
+
): void;
|
|
132
|
+
deleteIndex(
|
|
133
|
+
args: DeleteIndexCommandInput,
|
|
134
|
+
options?: __HttpHandlerOptions
|
|
135
|
+
): Promise<DeleteIndexCommandOutput>;
|
|
136
|
+
deleteIndex(
|
|
137
|
+
args: DeleteIndexCommandInput,
|
|
138
|
+
cb: (err: any, data?: DeleteIndexCommandOutput) => void
|
|
139
|
+
): void;
|
|
140
|
+
deleteIndex(
|
|
141
|
+
args: DeleteIndexCommandInput,
|
|
142
|
+
options: __HttpHandlerOptions,
|
|
143
|
+
cb: (err: any, data?: DeleteIndexCommandOutput) => void
|
|
144
|
+
): void;
|
|
145
|
+
deleteView(
|
|
146
|
+
args: DeleteViewCommandInput,
|
|
147
|
+
options?: __HttpHandlerOptions
|
|
148
|
+
): Promise<DeleteViewCommandOutput>;
|
|
149
|
+
deleteView(
|
|
150
|
+
args: DeleteViewCommandInput,
|
|
151
|
+
cb: (err: any, data?: DeleteViewCommandOutput) => void
|
|
152
|
+
): void;
|
|
153
|
+
deleteView(
|
|
154
|
+
args: DeleteViewCommandInput,
|
|
155
|
+
options: __HttpHandlerOptions,
|
|
156
|
+
cb: (err: any, data?: DeleteViewCommandOutput) => void
|
|
157
|
+
): void;
|
|
158
|
+
disassociateDefaultView(
|
|
159
|
+
args: DisassociateDefaultViewCommandInput,
|
|
160
|
+
options?: __HttpHandlerOptions
|
|
161
|
+
): Promise<DisassociateDefaultViewCommandOutput>;
|
|
162
|
+
disassociateDefaultView(
|
|
163
|
+
args: DisassociateDefaultViewCommandInput,
|
|
164
|
+
cb: (err: any, data?: DisassociateDefaultViewCommandOutput) => void
|
|
165
|
+
): void;
|
|
166
|
+
disassociateDefaultView(
|
|
167
|
+
args: DisassociateDefaultViewCommandInput,
|
|
168
|
+
options: __HttpHandlerOptions,
|
|
169
|
+
cb: (err: any, data?: DisassociateDefaultViewCommandOutput) => void
|
|
170
|
+
): void;
|
|
171
|
+
getDefaultView(
|
|
172
|
+
args: GetDefaultViewCommandInput,
|
|
173
|
+
options?: __HttpHandlerOptions
|
|
174
|
+
): Promise<GetDefaultViewCommandOutput>;
|
|
175
|
+
getDefaultView(
|
|
176
|
+
args: GetDefaultViewCommandInput,
|
|
177
|
+
cb: (err: any, data?: GetDefaultViewCommandOutput) => void
|
|
178
|
+
): void;
|
|
179
|
+
getDefaultView(
|
|
180
|
+
args: GetDefaultViewCommandInput,
|
|
181
|
+
options: __HttpHandlerOptions,
|
|
182
|
+
cb: (err: any, data?: GetDefaultViewCommandOutput) => void
|
|
183
|
+
): void;
|
|
184
|
+
getIndex(
|
|
185
|
+
args: GetIndexCommandInput,
|
|
186
|
+
options?: __HttpHandlerOptions
|
|
187
|
+
): Promise<GetIndexCommandOutput>;
|
|
188
|
+
getIndex(
|
|
189
|
+
args: GetIndexCommandInput,
|
|
190
|
+
cb: (err: any, data?: GetIndexCommandOutput) => void
|
|
191
|
+
): void;
|
|
192
|
+
getIndex(
|
|
193
|
+
args: GetIndexCommandInput,
|
|
194
|
+
options: __HttpHandlerOptions,
|
|
195
|
+
cb: (err: any, data?: GetIndexCommandOutput) => void
|
|
196
|
+
): void;
|
|
197
|
+
getView(
|
|
198
|
+
args: GetViewCommandInput,
|
|
199
|
+
options?: __HttpHandlerOptions
|
|
200
|
+
): Promise<GetViewCommandOutput>;
|
|
201
|
+
getView(
|
|
202
|
+
args: GetViewCommandInput,
|
|
203
|
+
cb: (err: any, data?: GetViewCommandOutput) => void
|
|
204
|
+
): void;
|
|
205
|
+
getView(
|
|
206
|
+
args: GetViewCommandInput,
|
|
207
|
+
options: __HttpHandlerOptions,
|
|
208
|
+
cb: (err: any, data?: GetViewCommandOutput) => void
|
|
209
|
+
): void;
|
|
210
|
+
listIndexes(
|
|
211
|
+
args: ListIndexesCommandInput,
|
|
212
|
+
options?: __HttpHandlerOptions
|
|
213
|
+
): Promise<ListIndexesCommandOutput>;
|
|
214
|
+
listIndexes(
|
|
215
|
+
args: ListIndexesCommandInput,
|
|
216
|
+
cb: (err: any, data?: ListIndexesCommandOutput) => void
|
|
217
|
+
): void;
|
|
218
|
+
listIndexes(
|
|
219
|
+
args: ListIndexesCommandInput,
|
|
220
|
+
options: __HttpHandlerOptions,
|
|
221
|
+
cb: (err: any, data?: ListIndexesCommandOutput) => void
|
|
222
|
+
): void;
|
|
223
|
+
listSupportedResourceTypes(
|
|
224
|
+
args: ListSupportedResourceTypesCommandInput,
|
|
225
|
+
options?: __HttpHandlerOptions
|
|
226
|
+
): Promise<ListSupportedResourceTypesCommandOutput>;
|
|
227
|
+
listSupportedResourceTypes(
|
|
228
|
+
args: ListSupportedResourceTypesCommandInput,
|
|
229
|
+
cb: (err: any, data?: ListSupportedResourceTypesCommandOutput) => void
|
|
230
|
+
): void;
|
|
231
|
+
listSupportedResourceTypes(
|
|
232
|
+
args: ListSupportedResourceTypesCommandInput,
|
|
233
|
+
options: __HttpHandlerOptions,
|
|
234
|
+
cb: (err: any, data?: ListSupportedResourceTypesCommandOutput) => void
|
|
235
|
+
): void;
|
|
236
|
+
listTagsForResource(
|
|
237
|
+
args: ListTagsForResourceCommandInput,
|
|
238
|
+
options?: __HttpHandlerOptions
|
|
239
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
240
|
+
listTagsForResource(
|
|
241
|
+
args: ListTagsForResourceCommandInput,
|
|
242
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
243
|
+
): void;
|
|
244
|
+
listTagsForResource(
|
|
245
|
+
args: ListTagsForResourceCommandInput,
|
|
246
|
+
options: __HttpHandlerOptions,
|
|
247
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
248
|
+
): void;
|
|
249
|
+
listViews(
|
|
250
|
+
args: ListViewsCommandInput,
|
|
251
|
+
options?: __HttpHandlerOptions
|
|
252
|
+
): Promise<ListViewsCommandOutput>;
|
|
253
|
+
listViews(
|
|
254
|
+
args: ListViewsCommandInput,
|
|
255
|
+
cb: (err: any, data?: ListViewsCommandOutput) => void
|
|
256
|
+
): void;
|
|
257
|
+
listViews(
|
|
258
|
+
args: ListViewsCommandInput,
|
|
259
|
+
options: __HttpHandlerOptions,
|
|
260
|
+
cb: (err: any, data?: ListViewsCommandOutput) => void
|
|
261
|
+
): void;
|
|
262
|
+
search(
|
|
263
|
+
args: SearchCommandInput,
|
|
264
|
+
options?: __HttpHandlerOptions
|
|
265
|
+
): Promise<SearchCommandOutput>;
|
|
266
|
+
search(
|
|
267
|
+
args: SearchCommandInput,
|
|
268
|
+
cb: (err: any, data?: SearchCommandOutput) => void
|
|
269
|
+
): void;
|
|
270
|
+
search(
|
|
271
|
+
args: SearchCommandInput,
|
|
272
|
+
options: __HttpHandlerOptions,
|
|
273
|
+
cb: (err: any, data?: SearchCommandOutput) => void
|
|
274
|
+
): void;
|
|
275
|
+
tagResource(
|
|
276
|
+
args: TagResourceCommandInput,
|
|
277
|
+
options?: __HttpHandlerOptions
|
|
278
|
+
): Promise<TagResourceCommandOutput>;
|
|
279
|
+
tagResource(
|
|
280
|
+
args: TagResourceCommandInput,
|
|
281
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
282
|
+
): void;
|
|
283
|
+
tagResource(
|
|
284
|
+
args: TagResourceCommandInput,
|
|
285
|
+
options: __HttpHandlerOptions,
|
|
286
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
287
|
+
): void;
|
|
288
|
+
untagResource(
|
|
289
|
+
args: UntagResourceCommandInput,
|
|
290
|
+
options?: __HttpHandlerOptions
|
|
291
|
+
): Promise<UntagResourceCommandOutput>;
|
|
292
|
+
untagResource(
|
|
293
|
+
args: UntagResourceCommandInput,
|
|
294
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
295
|
+
): void;
|
|
296
|
+
untagResource(
|
|
297
|
+
args: UntagResourceCommandInput,
|
|
298
|
+
options: __HttpHandlerOptions,
|
|
299
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
300
|
+
): void;
|
|
301
|
+
updateIndexType(
|
|
302
|
+
args: UpdateIndexTypeCommandInput,
|
|
303
|
+
options?: __HttpHandlerOptions
|
|
304
|
+
): Promise<UpdateIndexTypeCommandOutput>;
|
|
305
|
+
updateIndexType(
|
|
306
|
+
args: UpdateIndexTypeCommandInput,
|
|
307
|
+
cb: (err: any, data?: UpdateIndexTypeCommandOutput) => void
|
|
308
|
+
): void;
|
|
309
|
+
updateIndexType(
|
|
310
|
+
args: UpdateIndexTypeCommandInput,
|
|
311
|
+
options: __HttpHandlerOptions,
|
|
312
|
+
cb: (err: any, data?: UpdateIndexTypeCommandOutput) => void
|
|
313
|
+
): void;
|
|
314
|
+
updateView(
|
|
315
|
+
args: UpdateViewCommandInput,
|
|
316
|
+
options?: __HttpHandlerOptions
|
|
317
|
+
): Promise<UpdateViewCommandOutput>;
|
|
318
|
+
updateView(
|
|
319
|
+
args: UpdateViewCommandInput,
|
|
320
|
+
cb: (err: any, data?: UpdateViewCommandOutput) => void
|
|
321
|
+
): void;
|
|
322
|
+
updateView(
|
|
323
|
+
args: UpdateViewCommandInput,
|
|
324
|
+
options: __HttpHandlerOptions,
|
|
325
|
+
cb: (err: any, data?: UpdateViewCommandOutput) => void
|
|
326
|
+
): void;
|
|
327
|
+
}
|