@aws-sdk/client-athena 3.50.0 → 3.51.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 (59) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Athena.d.ts +175 -0
  3. package/dist-types/ts3.4/AthenaClient.d.ts +107 -0
  4. package/dist-types/ts3.4/commands/BatchGetNamedQueryCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/BatchGetQueryExecutionCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/CreateDataCatalogCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/CreateNamedQueryCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/CreatePreparedStatementCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/CreateWorkGroupCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/DeleteDataCatalogCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/DeleteNamedQueryCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/DeletePreparedStatementCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/DeleteWorkGroupCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/GetDataCatalogCommand.d.ts +17 -0
  15. package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/GetNamedQueryCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/GetPreparedStatementCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/GetQueryExecutionCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/GetTableMetadataCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/GetWorkGroupCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListDataCatalogsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListEngineVersionsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListNamedQueriesCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListPreparedStatementsCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/ListQueryExecutionsCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/ListTableMetadataCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/ListWorkGroupsCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/StartQueryExecutionCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/StopQueryExecutionCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/UpdateDataCatalogCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/UpdatePreparedStatementCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/UpdateWorkGroupCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/index.d.ts +34 -0
  39. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  40. package/dist-types/ts3.4/index.d.ts +5 -0
  41. package/dist-types/ts3.4/models/index.d.ts +1 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +1167 -0
  43. package/dist-types/ts3.4/pagination/GetQueryResultsPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  45. package/dist-types/ts3.4/pagination/ListDataCatalogsPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/ListDatabasesPaginator.d.ts +4 -0
  47. package/dist-types/ts3.4/pagination/ListNamedQueriesPaginator.d.ts +4 -0
  48. package/dist-types/ts3.4/pagination/ListPreparedStatementsPaginator.d.ts +4 -0
  49. package/dist-types/ts3.4/pagination/ListQueryExecutionsPaginator.d.ts +4 -0
  50. package/dist-types/ts3.4/pagination/ListTableMetadataPaginator.d.ts +4 -0
  51. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
  52. package/dist-types/ts3.4/pagination/ListWorkGroupsPaginator.d.ts +4 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +10 -0
  54. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +104 -0
  55. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  56. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  57. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  58. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  59. package/package.json +8 -8
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetQueryResultsCommandInput, GetQueryResultsCommandOutput } from "../commands/GetQueryResultsCommand";
3
+ import { AthenaPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetQueryResults(config: AthenaPaginationConfiguration, input: GetQueryResultsCommandInput, ...additionalArguments: any): Paginator<GetQueryResultsCommandOutput>;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Athena } from "../Athena";
3
+ import { AthenaClient } from "../AthenaClient";
4
+ export interface AthenaPaginationConfiguration extends PaginationConfiguration {
5
+ client: Athena | AthenaClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListDataCatalogsCommandInput, ListDataCatalogsCommandOutput } from "../commands/ListDataCatalogsCommand";
3
+ import { AthenaPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListDataCatalogs(config: AthenaPaginationConfiguration, input: ListDataCatalogsCommandInput, ...additionalArguments: any): Paginator<ListDataCatalogsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
3
+ import { AthenaPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListDatabases(config: AthenaPaginationConfiguration, input: ListDatabasesCommandInput, ...additionalArguments: any): Paginator<ListDatabasesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListNamedQueriesCommandInput, ListNamedQueriesCommandOutput } from "../commands/ListNamedQueriesCommand";
3
+ import { AthenaPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListNamedQueries(config: AthenaPaginationConfiguration, input: ListNamedQueriesCommandInput, ...additionalArguments: any): Paginator<ListNamedQueriesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListPreparedStatementsCommandInput, ListPreparedStatementsCommandOutput } from "../commands/ListPreparedStatementsCommand";
3
+ import { AthenaPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListPreparedStatements(config: AthenaPaginationConfiguration, input: ListPreparedStatementsCommandInput, ...additionalArguments: any): Paginator<ListPreparedStatementsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListQueryExecutionsCommandInput, ListQueryExecutionsCommandOutput } from "../commands/ListQueryExecutionsCommand";
3
+ import { AthenaPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListQueryExecutions(config: AthenaPaginationConfiguration, input: ListQueryExecutionsCommandInput, ...additionalArguments: any): Paginator<ListQueryExecutionsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListTableMetadataCommandInput, ListTableMetadataCommandOutput } from "../commands/ListTableMetadataCommand";
3
+ import { AthenaPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListTableMetadata(config: AthenaPaginationConfiguration, input: ListTableMetadataCommandInput, ...additionalArguments: any): Paginator<ListTableMetadataCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
3
+ import { AthenaPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListTagsForResource(config: AthenaPaginationConfiguration, input: ListTagsForResourceCommandInput, ...additionalArguments: any): Paginator<ListTagsForResourceCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListWorkGroupsCommandInput, ListWorkGroupsCommandOutput } from "../commands/ListWorkGroupsCommand";
3
+ import { AthenaPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListWorkGroups(config: AthenaPaginationConfiguration, input: ListWorkGroupsCommandInput, ...additionalArguments: any): Paginator<ListWorkGroupsCommandOutput>;
@@ -0,0 +1,10 @@
1
+ export * from "./GetQueryResultsPaginator";
2
+ export * from "./Interfaces";
3
+ export * from "./ListDataCatalogsPaginator";
4
+ export * from "./ListDatabasesPaginator";
5
+ export * from "./ListNamedQueriesPaginator";
6
+ export * from "./ListPreparedStatementsPaginator";
7
+ export * from "./ListQueryExecutionsPaginator";
8
+ export * from "./ListTableMetadataPaginator";
9
+ export * from "./ListTagsForResourcePaginator";
10
+ export * from "./ListWorkGroupsPaginator";
@@ -0,0 +1,104 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { BatchGetNamedQueryCommandInput, BatchGetNamedQueryCommandOutput } from "../commands/BatchGetNamedQueryCommand";
4
+ import { BatchGetQueryExecutionCommandInput, BatchGetQueryExecutionCommandOutput } from "../commands/BatchGetQueryExecutionCommand";
5
+ import { CreateDataCatalogCommandInput, CreateDataCatalogCommandOutput } from "../commands/CreateDataCatalogCommand";
6
+ import { CreateNamedQueryCommandInput, CreateNamedQueryCommandOutput } from "../commands/CreateNamedQueryCommand";
7
+ import { CreatePreparedStatementCommandInput, CreatePreparedStatementCommandOutput } from "../commands/CreatePreparedStatementCommand";
8
+ import { CreateWorkGroupCommandInput, CreateWorkGroupCommandOutput } from "../commands/CreateWorkGroupCommand";
9
+ import { DeleteDataCatalogCommandInput, DeleteDataCatalogCommandOutput } from "../commands/DeleteDataCatalogCommand";
10
+ import { DeleteNamedQueryCommandInput, DeleteNamedQueryCommandOutput } from "../commands/DeleteNamedQueryCommand";
11
+ import { DeletePreparedStatementCommandInput, DeletePreparedStatementCommandOutput } from "../commands/DeletePreparedStatementCommand";
12
+ import { DeleteWorkGroupCommandInput, DeleteWorkGroupCommandOutput } from "../commands/DeleteWorkGroupCommand";
13
+ import { GetDatabaseCommandInput, GetDatabaseCommandOutput } from "../commands/GetDatabaseCommand";
14
+ import { GetDataCatalogCommandInput, GetDataCatalogCommandOutput } from "../commands/GetDataCatalogCommand";
15
+ import { GetNamedQueryCommandInput, GetNamedQueryCommandOutput } from "../commands/GetNamedQueryCommand";
16
+ import { GetPreparedStatementCommandInput, GetPreparedStatementCommandOutput } from "../commands/GetPreparedStatementCommand";
17
+ import { GetQueryExecutionCommandInput, GetQueryExecutionCommandOutput } from "../commands/GetQueryExecutionCommand";
18
+ import { GetQueryResultsCommandInput, GetQueryResultsCommandOutput } from "../commands/GetQueryResultsCommand";
19
+ import { GetTableMetadataCommandInput, GetTableMetadataCommandOutput } from "../commands/GetTableMetadataCommand";
20
+ import { GetWorkGroupCommandInput, GetWorkGroupCommandOutput } from "../commands/GetWorkGroupCommand";
21
+ import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
22
+ import { ListDataCatalogsCommandInput, ListDataCatalogsCommandOutput } from "../commands/ListDataCatalogsCommand";
23
+ import { ListEngineVersionsCommandInput, ListEngineVersionsCommandOutput } from "../commands/ListEngineVersionsCommand";
24
+ import { ListNamedQueriesCommandInput, ListNamedQueriesCommandOutput } from "../commands/ListNamedQueriesCommand";
25
+ import { ListPreparedStatementsCommandInput, ListPreparedStatementsCommandOutput } from "../commands/ListPreparedStatementsCommand";
26
+ import { ListQueryExecutionsCommandInput, ListQueryExecutionsCommandOutput } from "../commands/ListQueryExecutionsCommand";
27
+ import { ListTableMetadataCommandInput, ListTableMetadataCommandOutput } from "../commands/ListTableMetadataCommand";
28
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
29
+ import { ListWorkGroupsCommandInput, ListWorkGroupsCommandOutput } from "../commands/ListWorkGroupsCommand";
30
+ import { StartQueryExecutionCommandInput, StartQueryExecutionCommandOutput } from "../commands/StartQueryExecutionCommand";
31
+ import { StopQueryExecutionCommandInput, StopQueryExecutionCommandOutput } from "../commands/StopQueryExecutionCommand";
32
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
33
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
34
+ import { UpdateDataCatalogCommandInput, UpdateDataCatalogCommandOutput } from "../commands/UpdateDataCatalogCommand";
35
+ import { UpdatePreparedStatementCommandInput, UpdatePreparedStatementCommandOutput } from "../commands/UpdatePreparedStatementCommand";
36
+ import { UpdateWorkGroupCommandInput, UpdateWorkGroupCommandOutput } from "../commands/UpdateWorkGroupCommand";
37
+ export declare const serializeAws_json1_1BatchGetNamedQueryCommand: (input: BatchGetNamedQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
+ export declare const serializeAws_json1_1BatchGetQueryExecutionCommand: (input: BatchGetQueryExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ export declare const serializeAws_json1_1CreateDataCatalogCommand: (input: CreateDataCatalogCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
+ export declare const serializeAws_json1_1CreateNamedQueryCommand: (input: CreateNamedQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ export declare const serializeAws_json1_1CreatePreparedStatementCommand: (input: CreatePreparedStatementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
+ export declare const serializeAws_json1_1CreateWorkGroupCommand: (input: CreateWorkGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ export declare const serializeAws_json1_1DeleteDataCatalogCommand: (input: DeleteDataCatalogCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
+ export declare const serializeAws_json1_1DeleteNamedQueryCommand: (input: DeleteNamedQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
+ export declare const serializeAws_json1_1DeletePreparedStatementCommand: (input: DeletePreparedStatementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
+ export declare const serializeAws_json1_1DeleteWorkGroupCommand: (input: DeleteWorkGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ export declare const serializeAws_json1_1GetDatabaseCommand: (input: GetDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
+ export declare const serializeAws_json1_1GetDataCatalogCommand: (input: GetDataCatalogCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
+ export declare const serializeAws_json1_1GetNamedQueryCommand: (input: GetNamedQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
+ export declare const serializeAws_json1_1GetPreparedStatementCommand: (input: GetPreparedStatementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
+ export declare const serializeAws_json1_1GetQueryExecutionCommand: (input: GetQueryExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
+ export declare const serializeAws_json1_1GetQueryResultsCommand: (input: GetQueryResultsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
+ export declare const serializeAws_json1_1GetTableMetadataCommand: (input: GetTableMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
+ export declare const serializeAws_json1_1GetWorkGroupCommand: (input: GetWorkGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ export declare const serializeAws_json1_1ListDatabasesCommand: (input: ListDatabasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
+ export declare const serializeAws_json1_1ListDataCatalogsCommand: (input: ListDataCatalogsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
+ export declare const serializeAws_json1_1ListEngineVersionsCommand: (input: ListEngineVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
+ export declare const serializeAws_json1_1ListNamedQueriesCommand: (input: ListNamedQueriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ export declare const serializeAws_json1_1ListPreparedStatementsCommand: (input: ListPreparedStatementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
+ export declare const serializeAws_json1_1ListQueryExecutionsCommand: (input: ListQueryExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
+ export declare const serializeAws_json1_1ListTableMetadataCommand: (input: ListTableMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
+ export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
+ export declare const serializeAws_json1_1ListWorkGroupsCommand: (input: ListWorkGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
+ export declare const serializeAws_json1_1StartQueryExecutionCommand: (input: StartQueryExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
+ export declare const serializeAws_json1_1StopQueryExecutionCommand: (input: StopQueryExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
+ export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
+ export declare const serializeAws_json1_1UpdateDataCatalogCommand: (input: UpdateDataCatalogCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
+ export declare const serializeAws_json1_1UpdatePreparedStatementCommand: (input: UpdatePreparedStatementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
70
+ export declare const serializeAws_json1_1UpdateWorkGroupCommand: (input: UpdateWorkGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
+ export declare const deserializeAws_json1_1BatchGetNamedQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetNamedQueryCommandOutput>;
72
+ export declare const deserializeAws_json1_1BatchGetQueryExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetQueryExecutionCommandOutput>;
73
+ export declare const deserializeAws_json1_1CreateDataCatalogCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataCatalogCommandOutput>;
74
+ export declare const deserializeAws_json1_1CreateNamedQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateNamedQueryCommandOutput>;
75
+ export declare const deserializeAws_json1_1CreatePreparedStatementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePreparedStatementCommandOutput>;
76
+ export declare const deserializeAws_json1_1CreateWorkGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkGroupCommandOutput>;
77
+ export declare const deserializeAws_json1_1DeleteDataCatalogCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataCatalogCommandOutput>;
78
+ export declare const deserializeAws_json1_1DeleteNamedQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNamedQueryCommandOutput>;
79
+ export declare const deserializeAws_json1_1DeletePreparedStatementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePreparedStatementCommandOutput>;
80
+ export declare const deserializeAws_json1_1DeleteWorkGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWorkGroupCommandOutput>;
81
+ export declare const deserializeAws_json1_1GetDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDatabaseCommandOutput>;
82
+ export declare const deserializeAws_json1_1GetDataCatalogCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataCatalogCommandOutput>;
83
+ export declare const deserializeAws_json1_1GetNamedQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNamedQueryCommandOutput>;
84
+ export declare const deserializeAws_json1_1GetPreparedStatementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPreparedStatementCommandOutput>;
85
+ export declare const deserializeAws_json1_1GetQueryExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueryExecutionCommandOutput>;
86
+ export declare const deserializeAws_json1_1GetQueryResultsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueryResultsCommandOutput>;
87
+ export declare const deserializeAws_json1_1GetTableMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableMetadataCommandOutput>;
88
+ export declare const deserializeAws_json1_1GetWorkGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkGroupCommandOutput>;
89
+ export declare const deserializeAws_json1_1ListDatabasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatabasesCommandOutput>;
90
+ export declare const deserializeAws_json1_1ListDataCatalogsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataCatalogsCommandOutput>;
91
+ export declare const deserializeAws_json1_1ListEngineVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEngineVersionsCommandOutput>;
92
+ export declare const deserializeAws_json1_1ListNamedQueriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNamedQueriesCommandOutput>;
93
+ export declare const deserializeAws_json1_1ListPreparedStatementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPreparedStatementsCommandOutput>;
94
+ export declare const deserializeAws_json1_1ListQueryExecutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueryExecutionsCommandOutput>;
95
+ export declare const deserializeAws_json1_1ListTableMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTableMetadataCommandOutput>;
96
+ export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
97
+ export declare const deserializeAws_json1_1ListWorkGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkGroupsCommandOutput>;
98
+ export declare const deserializeAws_json1_1StartQueryExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartQueryExecutionCommandOutput>;
99
+ export declare const deserializeAws_json1_1StopQueryExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopQueryExecutionCommandOutput>;
100
+ export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
101
+ export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
102
+ export declare const deserializeAws_json1_1UpdateDataCatalogCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataCatalogCommandOutput>;
103
+ export declare const deserializeAws_json1_1UpdatePreparedStatementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePreparedStatementCommandOutput>;
104
+ export declare const deserializeAws_json1_1UpdateWorkGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWorkGroupCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { AthenaClientConfig } from "./AthenaClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AthenaClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
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
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,38 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { AthenaClientConfig } from "./AthenaClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AthenaClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
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
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,37 @@
1
+ import { AthenaClientConfig } from "./AthenaClient";
2
+
3
+ export declare const getRuntimeConfig: (config: AthenaClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ 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;
7
+ apiVersion: string;
8
+ urlParser: import("@aws-sdk/types").UrlParser;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ streamCollector: import("@aws-sdk/types").StreamCollector;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ utf8Decoder: import("@aws-sdk/types").Decoder;
14
+ utf8Encoder: import("@aws-sdk/types").Encoder;
15
+ disableHostPrefix: boolean;
16
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
18
+ logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,11 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { AthenaClientConfig } from "./AthenaClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AthenaClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-athena",
3
3
  "description": "AWS SDK for JavaScript Athena Client for Node.js, Browser and React Native",
4
- "version": "3.50.0",
4
+ "version": "3.51.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,21 +18,21 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.50.0",
22
- "@aws-sdk/config-resolver": "3.50.0",
23
- "@aws-sdk/credential-provider-node": "3.50.0",
21
+ "@aws-sdk/client-sts": "3.51.0",
22
+ "@aws-sdk/config-resolver": "3.51.0",
23
+ "@aws-sdk/credential-provider-node": "3.51.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.50.0",
25
25
  "@aws-sdk/hash-node": "3.50.0",
26
26
  "@aws-sdk/invalid-dependency": "3.50.0",
27
27
  "@aws-sdk/middleware-content-length": "3.50.0",
28
28
  "@aws-sdk/middleware-host-header": "3.50.0",
29
29
  "@aws-sdk/middleware-logger": "3.50.0",
30
- "@aws-sdk/middleware-retry": "3.50.0",
30
+ "@aws-sdk/middleware-retry": "3.51.0",
31
31
  "@aws-sdk/middleware-serde": "3.50.0",
32
32
  "@aws-sdk/middleware-signing": "3.50.0",
33
33
  "@aws-sdk/middleware-stack": "3.50.0",
34
34
  "@aws-sdk/middleware-user-agent": "3.50.0",
35
- "@aws-sdk/node-config-provider": "3.50.0",
35
+ "@aws-sdk/node-config-provider": "3.51.0",
36
36
  "@aws-sdk/node-http-handler": "3.50.0",
37
37
  "@aws-sdk/protocol-http": "3.50.0",
38
38
  "@aws-sdk/smithy-client": "3.50.0",
@@ -43,9 +43,9 @@
43
43
  "@aws-sdk/util-body-length-browser": "3.49.0",
44
44
  "@aws-sdk/util-body-length-node": "3.49.0",
45
45
  "@aws-sdk/util-defaults-mode-browser": "3.50.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.50.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.51.0",
47
47
  "@aws-sdk/util-user-agent-browser": "3.50.0",
48
- "@aws-sdk/util-user-agent-node": "3.50.0",
48
+ "@aws-sdk/util-user-agent-node": "3.51.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.49.0",
50
50
  "@aws-sdk/util-utf8-node": "3.49.0",
51
51
  "tslib": "^2.3.0",