@aws-sdk/client-athena 3.974.0 → 3.978.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +48 -31
- package/dist-es/Athena.js +33 -1
- package/dist-types/Athena.d.ts +106 -1
- package/dist-types/ts3.4/Athena.d.ts +110 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -2937,6 +2937,36 @@ class UpdateWorkGroupCommand extends smithyClient.Command
|
|
|
2937
2937
|
.build() {
|
|
2938
2938
|
}
|
|
2939
2939
|
|
|
2940
|
+
const paginateGetQueryResults = core.createPaginator(AthenaClient, GetQueryResultsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2941
|
+
|
|
2942
|
+
const paginateListApplicationDPUSizes = core.createPaginator(AthenaClient, ListApplicationDPUSizesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2943
|
+
|
|
2944
|
+
const paginateListCalculationExecutions = core.createPaginator(AthenaClient, ListCalculationExecutionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2945
|
+
|
|
2946
|
+
const paginateListCapacityReservations = core.createPaginator(AthenaClient, ListCapacityReservationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2947
|
+
|
|
2948
|
+
const paginateListDatabases = core.createPaginator(AthenaClient, ListDatabasesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2949
|
+
|
|
2950
|
+
const paginateListDataCatalogs = core.createPaginator(AthenaClient, ListDataCatalogsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2951
|
+
|
|
2952
|
+
const paginateListEngineVersions = core.createPaginator(AthenaClient, ListEngineVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2953
|
+
|
|
2954
|
+
const paginateListExecutors = core.createPaginator(AthenaClient, ListExecutorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2955
|
+
|
|
2956
|
+
const paginateListNamedQueries = core.createPaginator(AthenaClient, ListNamedQueriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2957
|
+
|
|
2958
|
+
const paginateListPreparedStatements = core.createPaginator(AthenaClient, ListPreparedStatementsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2959
|
+
|
|
2960
|
+
const paginateListQueryExecutions = core.createPaginator(AthenaClient, ListQueryExecutionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2961
|
+
|
|
2962
|
+
const paginateListSessions = core.createPaginator(AthenaClient, ListSessionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2963
|
+
|
|
2964
|
+
const paginateListTableMetadata = core.createPaginator(AthenaClient, ListTableMetadataCommand, "NextToken", "NextToken", "MaxResults");
|
|
2965
|
+
|
|
2966
|
+
const paginateListTagsForResource = core.createPaginator(AthenaClient, ListTagsForResourceCommand, "NextToken", "NextToken", "MaxResults");
|
|
2967
|
+
|
|
2968
|
+
const paginateListWorkGroups = core.createPaginator(AthenaClient, ListWorkGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2969
|
+
|
|
2940
2970
|
const commands = {
|
|
2941
2971
|
BatchGetNamedQueryCommand,
|
|
2942
2972
|
BatchGetPreparedStatementCommand,
|
|
@@ -3009,39 +3039,26 @@ const commands = {
|
|
|
3009
3039
|
UpdatePreparedStatementCommand,
|
|
3010
3040
|
UpdateWorkGroupCommand,
|
|
3011
3041
|
};
|
|
3042
|
+
const paginators = {
|
|
3043
|
+
paginateGetQueryResults,
|
|
3044
|
+
paginateListApplicationDPUSizes,
|
|
3045
|
+
paginateListCalculationExecutions,
|
|
3046
|
+
paginateListCapacityReservations,
|
|
3047
|
+
paginateListDatabases,
|
|
3048
|
+
paginateListDataCatalogs,
|
|
3049
|
+
paginateListEngineVersions,
|
|
3050
|
+
paginateListExecutors,
|
|
3051
|
+
paginateListNamedQueries,
|
|
3052
|
+
paginateListPreparedStatements,
|
|
3053
|
+
paginateListQueryExecutions,
|
|
3054
|
+
paginateListSessions,
|
|
3055
|
+
paginateListTableMetadata,
|
|
3056
|
+
paginateListTagsForResource,
|
|
3057
|
+
paginateListWorkGroups,
|
|
3058
|
+
};
|
|
3012
3059
|
class Athena extends AthenaClient {
|
|
3013
3060
|
}
|
|
3014
|
-
smithyClient.createAggregatedClient(commands, Athena);
|
|
3015
|
-
|
|
3016
|
-
const paginateGetQueryResults = core.createPaginator(AthenaClient, GetQueryResultsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3017
|
-
|
|
3018
|
-
const paginateListApplicationDPUSizes = core.createPaginator(AthenaClient, ListApplicationDPUSizesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3019
|
-
|
|
3020
|
-
const paginateListCalculationExecutions = core.createPaginator(AthenaClient, ListCalculationExecutionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3021
|
-
|
|
3022
|
-
const paginateListCapacityReservations = core.createPaginator(AthenaClient, ListCapacityReservationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3023
|
-
|
|
3024
|
-
const paginateListDatabases = core.createPaginator(AthenaClient, ListDatabasesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3025
|
-
|
|
3026
|
-
const paginateListDataCatalogs = core.createPaginator(AthenaClient, ListDataCatalogsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3027
|
-
|
|
3028
|
-
const paginateListEngineVersions = core.createPaginator(AthenaClient, ListEngineVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3029
|
-
|
|
3030
|
-
const paginateListExecutors = core.createPaginator(AthenaClient, ListExecutorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3031
|
-
|
|
3032
|
-
const paginateListNamedQueries = core.createPaginator(AthenaClient, ListNamedQueriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3033
|
-
|
|
3034
|
-
const paginateListPreparedStatements = core.createPaginator(AthenaClient, ListPreparedStatementsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3035
|
-
|
|
3036
|
-
const paginateListQueryExecutions = core.createPaginator(AthenaClient, ListQueryExecutionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3037
|
-
|
|
3038
|
-
const paginateListSessions = core.createPaginator(AthenaClient, ListSessionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3039
|
-
|
|
3040
|
-
const paginateListTableMetadata = core.createPaginator(AthenaClient, ListTableMetadataCommand, "NextToken", "NextToken", "MaxResults");
|
|
3041
|
-
|
|
3042
|
-
const paginateListTagsForResource = core.createPaginator(AthenaClient, ListTagsForResourceCommand, "NextToken", "NextToken", "MaxResults");
|
|
3043
|
-
|
|
3044
|
-
const paginateListWorkGroups = core.createPaginator(AthenaClient, ListWorkGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3061
|
+
smithyClient.createAggregatedClient(commands, Athena, { paginators });
|
|
3045
3062
|
|
|
3046
3063
|
const S3AclOption = {
|
|
3047
3064
|
BUCKET_OWNER_FULL_CONTROL: "BUCKET_OWNER_FULL_CONTROL",
|
package/dist-es/Athena.js
CHANGED
|
@@ -70,6 +70,21 @@ import { UpdateNotebookCommand, } from "./commands/UpdateNotebookCommand";
|
|
|
70
70
|
import { UpdateNotebookMetadataCommand, } from "./commands/UpdateNotebookMetadataCommand";
|
|
71
71
|
import { UpdatePreparedStatementCommand, } from "./commands/UpdatePreparedStatementCommand";
|
|
72
72
|
import { UpdateWorkGroupCommand, } from "./commands/UpdateWorkGroupCommand";
|
|
73
|
+
import { paginateGetQueryResults } from "./pagination/GetQueryResultsPaginator";
|
|
74
|
+
import { paginateListApplicationDPUSizes } from "./pagination/ListApplicationDPUSizesPaginator";
|
|
75
|
+
import { paginateListCalculationExecutions } from "./pagination/ListCalculationExecutionsPaginator";
|
|
76
|
+
import { paginateListCapacityReservations } from "./pagination/ListCapacityReservationsPaginator";
|
|
77
|
+
import { paginateListDatabases } from "./pagination/ListDatabasesPaginator";
|
|
78
|
+
import { paginateListDataCatalogs } from "./pagination/ListDataCatalogsPaginator";
|
|
79
|
+
import { paginateListEngineVersions } from "./pagination/ListEngineVersionsPaginator";
|
|
80
|
+
import { paginateListExecutors } from "./pagination/ListExecutorsPaginator";
|
|
81
|
+
import { paginateListNamedQueries } from "./pagination/ListNamedQueriesPaginator";
|
|
82
|
+
import { paginateListPreparedStatements } from "./pagination/ListPreparedStatementsPaginator";
|
|
83
|
+
import { paginateListQueryExecutions } from "./pagination/ListQueryExecutionsPaginator";
|
|
84
|
+
import { paginateListSessions } from "./pagination/ListSessionsPaginator";
|
|
85
|
+
import { paginateListTableMetadata } from "./pagination/ListTableMetadataPaginator";
|
|
86
|
+
import { paginateListTagsForResource } from "./pagination/ListTagsForResourcePaginator";
|
|
87
|
+
import { paginateListWorkGroups } from "./pagination/ListWorkGroupsPaginator";
|
|
73
88
|
const commands = {
|
|
74
89
|
BatchGetNamedQueryCommand,
|
|
75
90
|
BatchGetPreparedStatementCommand,
|
|
@@ -142,6 +157,23 @@ const commands = {
|
|
|
142
157
|
UpdatePreparedStatementCommand,
|
|
143
158
|
UpdateWorkGroupCommand,
|
|
144
159
|
};
|
|
160
|
+
const paginators = {
|
|
161
|
+
paginateGetQueryResults,
|
|
162
|
+
paginateListApplicationDPUSizes,
|
|
163
|
+
paginateListCalculationExecutions,
|
|
164
|
+
paginateListCapacityReservations,
|
|
165
|
+
paginateListDatabases,
|
|
166
|
+
paginateListDataCatalogs,
|
|
167
|
+
paginateListEngineVersions,
|
|
168
|
+
paginateListExecutors,
|
|
169
|
+
paginateListNamedQueries,
|
|
170
|
+
paginateListPreparedStatements,
|
|
171
|
+
paginateListQueryExecutions,
|
|
172
|
+
paginateListSessions,
|
|
173
|
+
paginateListTableMetadata,
|
|
174
|
+
paginateListTagsForResource,
|
|
175
|
+
paginateListWorkGroups,
|
|
176
|
+
};
|
|
145
177
|
export class Athena extends AthenaClient {
|
|
146
178
|
}
|
|
147
|
-
createAggregatedClient(commands, Athena);
|
|
179
|
+
createAggregatedClient(commands, Athena, { paginators });
|
package/dist-types/Athena.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AthenaClient } from "./AthenaClient";
|
|
3
3
|
import { BatchGetNamedQueryCommandInput, BatchGetNamedQueryCommandOutput } from "./commands/BatchGetNamedQueryCommand";
|
|
4
4
|
import { BatchGetPreparedStatementCommandInput, BatchGetPreparedStatementCommandOutput } from "./commands/BatchGetPreparedStatementCommand";
|
|
@@ -498,6 +498,111 @@ export interface Athena {
|
|
|
498
498
|
updateWorkGroup(args: UpdateWorkGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkGroupCommandOutput>;
|
|
499
499
|
updateWorkGroup(args: UpdateWorkGroupCommandInput, cb: (err: any, data?: UpdateWorkGroupCommandOutput) => void): void;
|
|
500
500
|
updateWorkGroup(args: UpdateWorkGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkGroupCommandOutput) => void): void;
|
|
501
|
+
/**
|
|
502
|
+
* @see {@link GetQueryResultsCommand}
|
|
503
|
+
* @param args - command input.
|
|
504
|
+
* @param paginationConfig - optional pagination config.
|
|
505
|
+
* @returns AsyncIterable of {@link GetQueryResultsCommandOutput}.
|
|
506
|
+
*/
|
|
507
|
+
paginateGetQueryResults(args: GetQueryResultsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetQueryResultsCommandOutput>;
|
|
508
|
+
/**
|
|
509
|
+
* @see {@link ListApplicationDPUSizesCommand}
|
|
510
|
+
* @param args - command input.
|
|
511
|
+
* @param paginationConfig - optional pagination config.
|
|
512
|
+
* @returns AsyncIterable of {@link ListApplicationDPUSizesCommandOutput}.
|
|
513
|
+
*/
|
|
514
|
+
paginateListApplicationDPUSizes(args?: ListApplicationDPUSizesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListApplicationDPUSizesCommandOutput>;
|
|
515
|
+
/**
|
|
516
|
+
* @see {@link ListCalculationExecutionsCommand}
|
|
517
|
+
* @param args - command input.
|
|
518
|
+
* @param paginationConfig - optional pagination config.
|
|
519
|
+
* @returns AsyncIterable of {@link ListCalculationExecutionsCommandOutput}.
|
|
520
|
+
*/
|
|
521
|
+
paginateListCalculationExecutions(args: ListCalculationExecutionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCalculationExecutionsCommandOutput>;
|
|
522
|
+
/**
|
|
523
|
+
* @see {@link ListCapacityReservationsCommand}
|
|
524
|
+
* @param args - command input.
|
|
525
|
+
* @param paginationConfig - optional pagination config.
|
|
526
|
+
* @returns AsyncIterable of {@link ListCapacityReservationsCommandOutput}.
|
|
527
|
+
*/
|
|
528
|
+
paginateListCapacityReservations(args?: ListCapacityReservationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCapacityReservationsCommandOutput>;
|
|
529
|
+
/**
|
|
530
|
+
* @see {@link ListDatabasesCommand}
|
|
531
|
+
* @param args - command input.
|
|
532
|
+
* @param paginationConfig - optional pagination config.
|
|
533
|
+
* @returns AsyncIterable of {@link ListDatabasesCommandOutput}.
|
|
534
|
+
*/
|
|
535
|
+
paginateListDatabases(args: ListDatabasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDatabasesCommandOutput>;
|
|
536
|
+
/**
|
|
537
|
+
* @see {@link ListDataCatalogsCommand}
|
|
538
|
+
* @param args - command input.
|
|
539
|
+
* @param paginationConfig - optional pagination config.
|
|
540
|
+
* @returns AsyncIterable of {@link ListDataCatalogsCommandOutput}.
|
|
541
|
+
*/
|
|
542
|
+
paginateListDataCatalogs(args?: ListDataCatalogsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDataCatalogsCommandOutput>;
|
|
543
|
+
/**
|
|
544
|
+
* @see {@link ListEngineVersionsCommand}
|
|
545
|
+
* @param args - command input.
|
|
546
|
+
* @param paginationConfig - optional pagination config.
|
|
547
|
+
* @returns AsyncIterable of {@link ListEngineVersionsCommandOutput}.
|
|
548
|
+
*/
|
|
549
|
+
paginateListEngineVersions(args?: ListEngineVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEngineVersionsCommandOutput>;
|
|
550
|
+
/**
|
|
551
|
+
* @see {@link ListExecutorsCommand}
|
|
552
|
+
* @param args - command input.
|
|
553
|
+
* @param paginationConfig - optional pagination config.
|
|
554
|
+
* @returns AsyncIterable of {@link ListExecutorsCommandOutput}.
|
|
555
|
+
*/
|
|
556
|
+
paginateListExecutors(args: ListExecutorsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListExecutorsCommandOutput>;
|
|
557
|
+
/**
|
|
558
|
+
* @see {@link ListNamedQueriesCommand}
|
|
559
|
+
* @param args - command input.
|
|
560
|
+
* @param paginationConfig - optional pagination config.
|
|
561
|
+
* @returns AsyncIterable of {@link ListNamedQueriesCommandOutput}.
|
|
562
|
+
*/
|
|
563
|
+
paginateListNamedQueries(args?: ListNamedQueriesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNamedQueriesCommandOutput>;
|
|
564
|
+
/**
|
|
565
|
+
* @see {@link ListPreparedStatementsCommand}
|
|
566
|
+
* @param args - command input.
|
|
567
|
+
* @param paginationConfig - optional pagination config.
|
|
568
|
+
* @returns AsyncIterable of {@link ListPreparedStatementsCommandOutput}.
|
|
569
|
+
*/
|
|
570
|
+
paginateListPreparedStatements(args: ListPreparedStatementsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPreparedStatementsCommandOutput>;
|
|
571
|
+
/**
|
|
572
|
+
* @see {@link ListQueryExecutionsCommand}
|
|
573
|
+
* @param args - command input.
|
|
574
|
+
* @param paginationConfig - optional pagination config.
|
|
575
|
+
* @returns AsyncIterable of {@link ListQueryExecutionsCommandOutput}.
|
|
576
|
+
*/
|
|
577
|
+
paginateListQueryExecutions(args?: ListQueryExecutionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQueryExecutionsCommandOutput>;
|
|
578
|
+
/**
|
|
579
|
+
* @see {@link ListSessionsCommand}
|
|
580
|
+
* @param args - command input.
|
|
581
|
+
* @param paginationConfig - optional pagination config.
|
|
582
|
+
* @returns AsyncIterable of {@link ListSessionsCommandOutput}.
|
|
583
|
+
*/
|
|
584
|
+
paginateListSessions(args: ListSessionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSessionsCommandOutput>;
|
|
585
|
+
/**
|
|
586
|
+
* @see {@link ListTableMetadataCommand}
|
|
587
|
+
* @param args - command input.
|
|
588
|
+
* @param paginationConfig - optional pagination config.
|
|
589
|
+
* @returns AsyncIterable of {@link ListTableMetadataCommandOutput}.
|
|
590
|
+
*/
|
|
591
|
+
paginateListTableMetadata(args: ListTableMetadataCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTableMetadataCommandOutput>;
|
|
592
|
+
/**
|
|
593
|
+
* @see {@link ListTagsForResourceCommand}
|
|
594
|
+
* @param args - command input.
|
|
595
|
+
* @param paginationConfig - optional pagination config.
|
|
596
|
+
* @returns AsyncIterable of {@link ListTagsForResourceCommandOutput}.
|
|
597
|
+
*/
|
|
598
|
+
paginateListTagsForResource(args: ListTagsForResourceCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTagsForResourceCommandOutput>;
|
|
599
|
+
/**
|
|
600
|
+
* @see {@link ListWorkGroupsCommand}
|
|
601
|
+
* @param args - command input.
|
|
602
|
+
* @param paginationConfig - optional pagination config.
|
|
603
|
+
* @returns AsyncIterable of {@link ListWorkGroupsCommandOutput}.
|
|
604
|
+
*/
|
|
605
|
+
paginateListWorkGroups(args?: ListWorkGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListWorkGroupsCommandOutput>;
|
|
501
606
|
}
|
|
502
607
|
/**
|
|
503
608
|
* <p>Amazon Athena is an interactive query service that lets you use standard SQL
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import { AthenaClient } from "./AthenaClient";
|
|
3
7
|
import {
|
|
4
8
|
BatchGetNamedQueryCommandInput,
|
|
@@ -1210,5 +1214,110 @@ export interface Athena {
|
|
|
1210
1214
|
options: __HttpHandlerOptions,
|
|
1211
1215
|
cb: (err: any, data?: UpdateWorkGroupCommandOutput) => void
|
|
1212
1216
|
): void;
|
|
1217
|
+
paginateGetQueryResults(
|
|
1218
|
+
args: GetQueryResultsCommandInput,
|
|
1219
|
+
paginationConfig?: Pick<
|
|
1220
|
+
PaginationConfiguration,
|
|
1221
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1222
|
+
>
|
|
1223
|
+
): Paginator<GetQueryResultsCommandOutput>;
|
|
1224
|
+
paginateListApplicationDPUSizes(
|
|
1225
|
+
args?: ListApplicationDPUSizesCommandInput,
|
|
1226
|
+
paginationConfig?: Pick<
|
|
1227
|
+
PaginationConfiguration,
|
|
1228
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1229
|
+
>
|
|
1230
|
+
): Paginator<ListApplicationDPUSizesCommandOutput>;
|
|
1231
|
+
paginateListCalculationExecutions(
|
|
1232
|
+
args: ListCalculationExecutionsCommandInput,
|
|
1233
|
+
paginationConfig?: Pick<
|
|
1234
|
+
PaginationConfiguration,
|
|
1235
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1236
|
+
>
|
|
1237
|
+
): Paginator<ListCalculationExecutionsCommandOutput>;
|
|
1238
|
+
paginateListCapacityReservations(
|
|
1239
|
+
args?: ListCapacityReservationsCommandInput,
|
|
1240
|
+
paginationConfig?: Pick<
|
|
1241
|
+
PaginationConfiguration,
|
|
1242
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1243
|
+
>
|
|
1244
|
+
): Paginator<ListCapacityReservationsCommandOutput>;
|
|
1245
|
+
paginateListDatabases(
|
|
1246
|
+
args: ListDatabasesCommandInput,
|
|
1247
|
+
paginationConfig?: Pick<
|
|
1248
|
+
PaginationConfiguration,
|
|
1249
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1250
|
+
>
|
|
1251
|
+
): Paginator<ListDatabasesCommandOutput>;
|
|
1252
|
+
paginateListDataCatalogs(
|
|
1253
|
+
args?: ListDataCatalogsCommandInput,
|
|
1254
|
+
paginationConfig?: Pick<
|
|
1255
|
+
PaginationConfiguration,
|
|
1256
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1257
|
+
>
|
|
1258
|
+
): Paginator<ListDataCatalogsCommandOutput>;
|
|
1259
|
+
paginateListEngineVersions(
|
|
1260
|
+
args?: ListEngineVersionsCommandInput,
|
|
1261
|
+
paginationConfig?: Pick<
|
|
1262
|
+
PaginationConfiguration,
|
|
1263
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1264
|
+
>
|
|
1265
|
+
): Paginator<ListEngineVersionsCommandOutput>;
|
|
1266
|
+
paginateListExecutors(
|
|
1267
|
+
args: ListExecutorsCommandInput,
|
|
1268
|
+
paginationConfig?: Pick<
|
|
1269
|
+
PaginationConfiguration,
|
|
1270
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1271
|
+
>
|
|
1272
|
+
): Paginator<ListExecutorsCommandOutput>;
|
|
1273
|
+
paginateListNamedQueries(
|
|
1274
|
+
args?: ListNamedQueriesCommandInput,
|
|
1275
|
+
paginationConfig?: Pick<
|
|
1276
|
+
PaginationConfiguration,
|
|
1277
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1278
|
+
>
|
|
1279
|
+
): Paginator<ListNamedQueriesCommandOutput>;
|
|
1280
|
+
paginateListPreparedStatements(
|
|
1281
|
+
args: ListPreparedStatementsCommandInput,
|
|
1282
|
+
paginationConfig?: Pick<
|
|
1283
|
+
PaginationConfiguration,
|
|
1284
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1285
|
+
>
|
|
1286
|
+
): Paginator<ListPreparedStatementsCommandOutput>;
|
|
1287
|
+
paginateListQueryExecutions(
|
|
1288
|
+
args?: ListQueryExecutionsCommandInput,
|
|
1289
|
+
paginationConfig?: Pick<
|
|
1290
|
+
PaginationConfiguration,
|
|
1291
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1292
|
+
>
|
|
1293
|
+
): Paginator<ListQueryExecutionsCommandOutput>;
|
|
1294
|
+
paginateListSessions(
|
|
1295
|
+
args: ListSessionsCommandInput,
|
|
1296
|
+
paginationConfig?: Pick<
|
|
1297
|
+
PaginationConfiguration,
|
|
1298
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1299
|
+
>
|
|
1300
|
+
): Paginator<ListSessionsCommandOutput>;
|
|
1301
|
+
paginateListTableMetadata(
|
|
1302
|
+
args: ListTableMetadataCommandInput,
|
|
1303
|
+
paginationConfig?: Pick<
|
|
1304
|
+
PaginationConfiguration,
|
|
1305
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1306
|
+
>
|
|
1307
|
+
): Paginator<ListTableMetadataCommandOutput>;
|
|
1308
|
+
paginateListTagsForResource(
|
|
1309
|
+
args: ListTagsForResourceCommandInput,
|
|
1310
|
+
paginationConfig?: Pick<
|
|
1311
|
+
PaginationConfiguration,
|
|
1312
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1313
|
+
>
|
|
1314
|
+
): Paginator<ListTagsForResourceCommandOutput>;
|
|
1315
|
+
paginateListWorkGroups(
|
|
1316
|
+
args?: ListWorkGroupsCommandInput,
|
|
1317
|
+
paginationConfig?: Pick<
|
|
1318
|
+
PaginationConfiguration,
|
|
1319
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1320
|
+
>
|
|
1321
|
+
): Paginator<ListWorkGroupsCommandOutput>;
|
|
1213
1322
|
}
|
|
1214
1323
|
export declare class Athena extends AthenaClient implements Athena {}
|
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.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-athena",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|