@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.
Files changed (163) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +241 -0
  3. package/dist-cjs/ResourceExplorer2.js +292 -0
  4. package/dist-cjs/ResourceExplorer2Client.js +40 -0
  5. package/dist-cjs/commands/AssociateDefaultViewCommand.js +45 -0
  6. package/dist-cjs/commands/BatchGetViewCommand.js +45 -0
  7. package/dist-cjs/commands/CreateIndexCommand.js +45 -0
  8. package/dist-cjs/commands/CreateViewCommand.js +45 -0
  9. package/dist-cjs/commands/DeleteIndexCommand.js +45 -0
  10. package/dist-cjs/commands/DeleteViewCommand.js +45 -0
  11. package/dist-cjs/commands/DisassociateDefaultViewCommand.js +44 -0
  12. package/dist-cjs/commands/GetDefaultViewCommand.js +45 -0
  13. package/dist-cjs/commands/GetIndexCommand.js +45 -0
  14. package/dist-cjs/commands/GetViewCommand.js +45 -0
  15. package/dist-cjs/commands/ListIndexesCommand.js +45 -0
  16. package/dist-cjs/commands/ListSupportedResourceTypesCommand.js +45 -0
  17. package/dist-cjs/commands/ListTagsForResourceCommand.js +45 -0
  18. package/dist-cjs/commands/ListViewsCommand.js +45 -0
  19. package/dist-cjs/commands/SearchCommand.js +45 -0
  20. package/dist-cjs/commands/TagResourceCommand.js +45 -0
  21. package/dist-cjs/commands/UntagResourceCommand.js +45 -0
  22. package/dist-cjs/commands/UpdateIndexTypeCommand.js +45 -0
  23. package/dist-cjs/commands/UpdateViewCommand.js +45 -0
  24. package/dist-cjs/commands/index.js +22 -0
  25. package/dist-cjs/endpoint/EndpointParameters.js +11 -0
  26. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  27. package/dist-cjs/endpoint/ruleset.js +251 -0
  28. package/dist-cjs/index.js +11 -0
  29. package/dist-cjs/models/ResourceExplorer2ServiceException.js +11 -0
  30. package/dist-cjs/models/index.js +4 -0
  31. package/dist-cjs/models/models_0.js +318 -0
  32. package/dist-cjs/pagination/Interfaces.js +2 -0
  33. package/dist-cjs/pagination/ListIndexesPaginator.js +36 -0
  34. package/dist-cjs/pagination/ListSupportedResourceTypesPaginator.js +36 -0
  35. package/dist-cjs/pagination/ListViewsPaginator.js +36 -0
  36. package/dist-cjs/pagination/SearchPaginator.js +36 -0
  37. package/dist-cjs/pagination/index.js +8 -0
  38. package/dist-cjs/protocols/Aws_restJson1.js +1771 -0
  39. package/dist-cjs/runtimeConfig.browser.js +42 -0
  40. package/dist-cjs/runtimeConfig.js +50 -0
  41. package/dist-cjs/runtimeConfig.native.js +15 -0
  42. package/dist-cjs/runtimeConfig.shared.js +17 -0
  43. package/dist-es/ResourceExplorer2.js +288 -0
  44. package/dist-es/ResourceExplorer2Client.js +36 -0
  45. package/dist-es/commands/AssociateDefaultViewCommand.js +41 -0
  46. package/dist-es/commands/BatchGetViewCommand.js +41 -0
  47. package/dist-es/commands/CreateIndexCommand.js +41 -0
  48. package/dist-es/commands/CreateViewCommand.js +41 -0
  49. package/dist-es/commands/DeleteIndexCommand.js +41 -0
  50. package/dist-es/commands/DeleteViewCommand.js +41 -0
  51. package/dist-es/commands/DisassociateDefaultViewCommand.js +40 -0
  52. package/dist-es/commands/GetDefaultViewCommand.js +41 -0
  53. package/dist-es/commands/GetIndexCommand.js +41 -0
  54. package/dist-es/commands/GetViewCommand.js +41 -0
  55. package/dist-es/commands/ListIndexesCommand.js +41 -0
  56. package/dist-es/commands/ListSupportedResourceTypesCommand.js +41 -0
  57. package/dist-es/commands/ListTagsForResourceCommand.js +41 -0
  58. package/dist-es/commands/ListViewsCommand.js +41 -0
  59. package/dist-es/commands/SearchCommand.js +41 -0
  60. package/dist-es/commands/TagResourceCommand.js +41 -0
  61. package/dist-es/commands/UntagResourceCommand.js +41 -0
  62. package/dist-es/commands/UpdateIndexTypeCommand.js +41 -0
  63. package/dist-es/commands/UpdateViewCommand.js +41 -0
  64. package/dist-es/commands/index.js +19 -0
  65. package/dist-es/endpoint/EndpointParameters.js +7 -0
  66. package/dist-es/endpoint/endpointResolver.js +8 -0
  67. package/dist-es/endpoint/ruleset.js +248 -0
  68. package/dist-es/index.js +6 -0
  69. package/dist-es/models/ResourceExplorer2ServiceException.js +7 -0
  70. package/dist-es/models/index.js +1 -0
  71. package/dist-es/models/models_0.js +262 -0
  72. package/dist-es/pagination/Interfaces.js +1 -0
  73. package/dist-es/pagination/ListIndexesPaginator.js +32 -0
  74. package/dist-es/pagination/ListSupportedResourceTypesPaginator.js +32 -0
  75. package/dist-es/pagination/ListViewsPaginator.js +32 -0
  76. package/dist-es/pagination/SearchPaginator.js +32 -0
  77. package/dist-es/pagination/index.js +5 -0
  78. package/dist-es/protocols/Aws_restJson1.js +1730 -0
  79. package/dist-es/runtimeConfig.browser.js +37 -0
  80. package/dist-es/runtimeConfig.js +45 -0
  81. package/dist-es/runtimeConfig.native.js +11 -0
  82. package/dist-es/runtimeConfig.shared.js +13 -0
  83. package/dist-types/ResourceExplorer2.d.ts +336 -0
  84. package/dist-types/ResourceExplorer2Client.d.ts +196 -0
  85. package/dist-types/commands/AssociateDefaultViewCommand.d.ts +43 -0
  86. package/dist-types/commands/BatchGetViewCommand.d.ts +37 -0
  87. package/dist-types/commands/CreateIndexCommand.d.ts +90 -0
  88. package/dist-types/commands/CreateViewCommand.d.ts +44 -0
  89. package/dist-types/commands/DeleteIndexCommand.d.ts +42 -0
  90. package/dist-types/commands/DeleteViewCommand.d.ts +40 -0
  91. package/dist-types/commands/DisassociateDefaultViewCommand.d.ts +41 -0
  92. package/dist-types/commands/GetDefaultViewCommand.d.ts +38 -0
  93. package/dist-types/commands/GetIndexCommand.d.ts +38 -0
  94. package/dist-types/commands/GetViewCommand.d.ts +37 -0
  95. package/dist-types/commands/ListIndexesCommand.d.ts +38 -0
  96. package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +37 -0
  97. package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
  98. package/dist-types/commands/ListViewsCommand.d.ts +46 -0
  99. package/dist-types/commands/SearchCommand.d.ts +49 -0
  100. package/dist-types/commands/TagResourceCommand.d.ts +37 -0
  101. package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
  102. package/dist-types/commands/UpdateIndexTypeCommand.d.ts +93 -0
  103. package/dist-types/commands/UpdateViewCommand.d.ts +38 -0
  104. package/dist-types/commands/index.d.ts +19 -0
  105. package/dist-types/endpoint/EndpointParameters.d.ts +17 -0
  106. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  107. package/dist-types/endpoint/ruleset.d.ts +2 -0
  108. package/dist-types/index.d.ts +6 -0
  109. package/dist-types/models/ResourceExplorer2ServiceException.d.ts +10 -0
  110. package/dist-types/models/index.d.ts +1 -0
  111. package/dist-types/models/models_0.d.ts +1080 -0
  112. package/dist-types/pagination/Interfaces.d.ts +6 -0
  113. package/dist-types/pagination/ListIndexesPaginator.d.ts +4 -0
  114. package/dist-types/pagination/ListSupportedResourceTypesPaginator.d.ts +4 -0
  115. package/dist-types/pagination/ListViewsPaginator.d.ts +4 -0
  116. package/dist-types/pagination/SearchPaginator.d.ts +4 -0
  117. package/dist-types/pagination/index.d.ts +5 -0
  118. package/dist-types/protocols/Aws_restJson1.d.ts +59 -0
  119. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  120. package/dist-types/runtimeConfig.d.ts +42 -0
  121. package/dist-types/runtimeConfig.native.d.ts +41 -0
  122. package/dist-types/runtimeConfig.shared.d.ts +17 -0
  123. package/dist-types/ts3.4/ResourceExplorer2.d.ts +327 -0
  124. package/dist-types/ts3.4/ResourceExplorer2Client.d.ts +226 -0
  125. package/dist-types/ts3.4/commands/AssociateDefaultViewCommand.d.ts +41 -0
  126. package/dist-types/ts3.4/commands/BatchGetViewCommand.d.ts +34 -0
  127. package/dist-types/ts3.4/commands/CreateIndexCommand.d.ts +34 -0
  128. package/dist-types/ts3.4/commands/CreateViewCommand.d.ts +34 -0
  129. package/dist-types/ts3.4/commands/DeleteIndexCommand.d.ts +34 -0
  130. package/dist-types/ts3.4/commands/DeleteViewCommand.d.ts +34 -0
  131. package/dist-types/ts3.4/commands/DisassociateDefaultViewCommand.d.ts +35 -0
  132. package/dist-types/ts3.4/commands/GetDefaultViewCommand.d.ts +34 -0
  133. package/dist-types/ts3.4/commands/GetIndexCommand.d.ts +34 -0
  134. package/dist-types/ts3.4/commands/GetViewCommand.d.ts +32 -0
  135. package/dist-types/ts3.4/commands/ListIndexesCommand.d.ts +34 -0
  136. package/dist-types/ts3.4/commands/ListSupportedResourceTypesCommand.d.ts +41 -0
  137. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  138. package/dist-types/ts3.4/commands/ListViewsCommand.d.ts +34 -0
  139. package/dist-types/ts3.4/commands/SearchCommand.d.ts +32 -0
  140. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  141. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
  142. package/dist-types/ts3.4/commands/UpdateIndexTypeCommand.d.ts +37 -0
  143. package/dist-types/ts3.4/commands/UpdateViewCommand.d.ts +34 -0
  144. package/dist-types/ts3.4/commands/index.d.ts +19 -0
  145. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +32 -0
  146. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  147. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  148. package/dist-types/ts3.4/index.d.ts +6 -0
  149. package/dist-types/ts3.4/models/ResourceExplorer2ServiceException.d.ts +7 -0
  150. package/dist-types/ts3.4/models/index.d.ts +1 -0
  151. package/dist-types/ts3.4/models/models_0.d.ts +384 -0
  152. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
  153. package/dist-types/ts3.4/pagination/ListIndexesPaginator.d.ts +11 -0
  154. package/dist-types/ts3.4/pagination/ListSupportedResourceTypesPaginator.d.ts +11 -0
  155. package/dist-types/ts3.4/pagination/ListViewsPaginator.d.ts +11 -0
  156. package/dist-types/ts3.4/pagination/SearchPaginator.d.ts +11 -0
  157. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  158. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +233 -0
  159. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
  160. package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
  161. package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
  162. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  163. 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,5 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListIndexesPaginator";
3
+ export * from "./ListSupportedResourceTypesPaginator";
4
+ export * from "./ListViewsPaginator";
5
+ export * from "./SearchPaginator";
@@ -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
+ }