@@ -12,6 +12,11 @@ import {
12
12
AddDataSourceCommandInput ,
13
13
AddDataSourceCommandOutput ,
14
14
} from "./commands/AddDataSourceCommand" ;
15
+ import {
16
+ AddDirectQueryDataSourceCommand ,
17
+ AddDirectQueryDataSourceCommandInput ,
18
+ AddDirectQueryDataSourceCommandOutput ,
19
+ } from "./commands/AddDirectQueryDataSourceCommand" ;
15
20
import { AddTagsCommand , AddTagsCommandInput , AddTagsCommandOutput } from "./commands/AddTagsCommand" ;
16
21
import {
17
22
AssociatePackageCommand ,
@@ -73,6 +78,11 @@ import {
73
78
DeleteDataSourceCommandInput ,
74
79
DeleteDataSourceCommandOutput ,
75
80
} from "./commands/DeleteDataSourceCommand" ;
81
+ import {
82
+ DeleteDirectQueryDataSourceCommand ,
83
+ DeleteDirectQueryDataSourceCommandInput ,
84
+ DeleteDirectQueryDataSourceCommandOutput ,
85
+ } from "./commands/DeleteDirectQueryDataSourceCommand" ;
76
86
import {
77
87
DeleteDomainCommand ,
78
88
DeleteDomainCommandInput ,
@@ -198,6 +208,11 @@ import {
198
208
GetDataSourceCommandInput ,
199
209
GetDataSourceCommandOutput ,
200
210
} from "./commands/GetDataSourceCommand" ;
211
+ import {
212
+ GetDirectQueryDataSourceCommand ,
213
+ GetDirectQueryDataSourceCommandInput ,
214
+ GetDirectQueryDataSourceCommandOutput ,
215
+ } from "./commands/GetDirectQueryDataSourceCommand" ;
201
216
import {
202
217
GetDomainMaintenanceStatusCommand ,
203
218
GetDomainMaintenanceStatusCommandInput ,
@@ -228,6 +243,11 @@ import {
228
243
ListDataSourcesCommandInput ,
229
244
ListDataSourcesCommandOutput ,
230
245
} from "./commands/ListDataSourcesCommand" ;
246
+ import {
247
+ ListDirectQueryDataSourcesCommand ,
248
+ ListDirectQueryDataSourcesCommandInput ,
249
+ ListDirectQueryDataSourcesCommandOutput ,
250
+ } from "./commands/ListDirectQueryDataSourcesCommand" ;
231
251
import {
232
252
ListDomainMaintenancesCommand ,
233
253
ListDomainMaintenancesCommandInput ,
@@ -315,6 +335,11 @@ import {
315
335
UpdateDataSourceCommandInput ,
316
336
UpdateDataSourceCommandOutput ,
317
337
} from "./commands/UpdateDataSourceCommand" ;
338
+ import {
339
+ UpdateDirectQueryDataSourceCommand ,
340
+ UpdateDirectQueryDataSourceCommandInput ,
341
+ UpdateDirectQueryDataSourceCommandOutput ,
342
+ } from "./commands/UpdateDirectQueryDataSourceCommand" ;
318
343
import {
319
344
UpdateDomainConfigCommand ,
320
345
UpdateDomainConfigCommandInput ,
@@ -350,6 +375,7 @@ import { OpenSearchClient, OpenSearchClientConfig } from "./OpenSearchClient";
350
375
const commands = {
351
376
AcceptInboundConnectionCommand,
352
377
AddDataSourceCommand,
378
+ AddDirectQueryDataSourceCommand,
353
379
AddTagsCommand,
354
380
AssociatePackageCommand,
355
381
AssociatePackagesCommand,
@@ -363,6 +389,7 @@ const commands = {
363
389
CreateVpcEndpointCommand,
364
390
DeleteApplicationCommand,
365
391
DeleteDataSourceCommand,
392
+ DeleteDirectQueryDataSourceCommand,
366
393
DeleteDomainCommand,
367
394
DeleteInboundConnectionCommand,
368
395
DeleteOutboundConnectionCommand,
@@ -388,12 +415,14 @@ const commands = {
388
415
GetApplicationCommand,
389
416
GetCompatibleVersionsCommand,
390
417
GetDataSourceCommand,
418
+ GetDirectQueryDataSourceCommand,
391
419
GetDomainMaintenanceStatusCommand,
392
420
GetPackageVersionHistoryCommand,
393
421
GetUpgradeHistoryCommand,
394
422
GetUpgradeStatusCommand,
395
423
ListApplicationsCommand,
396
424
ListDataSourcesCommand,
425
+ ListDirectQueryDataSourcesCommand,
397
426
ListDomainMaintenancesCommand,
398
427
ListDomainNamesCommand,
399
428
ListDomainsForPackageCommand,
@@ -413,6 +442,7 @@ const commands = {
413
442
StartServiceSoftwareUpdateCommand,
414
443
UpdateApplicationCommand,
415
444
UpdateDataSourceCommand,
445
+ UpdateDirectQueryDataSourceCommand,
416
446
UpdateDomainConfigCommand,
417
447
UpdatePackageCommand,
418
448
UpdatePackageScopeCommand,
@@ -450,6 +480,23 @@ export interface OpenSearch {
450
480
cb : ( err : any , data ?: AddDataSourceCommandOutput ) => void
451
481
) : void ;
452
482
483
+ /**
484
+ * @see {@link AddDirectQueryDataSourceCommand }
485
+ */
486
+ addDirectQueryDataSource (
487
+ args : AddDirectQueryDataSourceCommandInput ,
488
+ options ?: __HttpHandlerOptions
489
+ ) : Promise < AddDirectQueryDataSourceCommandOutput > ;
490
+ addDirectQueryDataSource (
491
+ args : AddDirectQueryDataSourceCommandInput ,
492
+ cb : ( err : any , data ?: AddDirectQueryDataSourceCommandOutput ) => void
493
+ ) : void ;
494
+ addDirectQueryDataSource (
495
+ args : AddDirectQueryDataSourceCommandInput ,
496
+ options : __HttpHandlerOptions ,
497
+ cb : ( err : any , data ?: AddDirectQueryDataSourceCommandOutput ) => void
498
+ ) : void ;
499
+
453
500
/**
454
501
* @see {@link AddTagsCommand }
455
502
*/
@@ -653,6 +700,23 @@ export interface OpenSearch {
653
700
cb : ( err : any , data ?: DeleteDataSourceCommandOutput ) => void
654
701
) : void ;
655
702
703
+ /**
704
+ * @see {@link DeleteDirectQueryDataSourceCommand }
705
+ */
706
+ deleteDirectQueryDataSource (
707
+ args : DeleteDirectQueryDataSourceCommandInput ,
708
+ options ?: __HttpHandlerOptions
709
+ ) : Promise < DeleteDirectQueryDataSourceCommandOutput > ;
710
+ deleteDirectQueryDataSource (
711
+ args : DeleteDirectQueryDataSourceCommandInput ,
712
+ cb : ( err : any , data ?: DeleteDirectQueryDataSourceCommandOutput ) => void
713
+ ) : void ;
714
+ deleteDirectQueryDataSource (
715
+ args : DeleteDirectQueryDataSourceCommandInput ,
716
+ options : __HttpHandlerOptions ,
717
+ cb : ( err : any , data ?: DeleteDirectQueryDataSourceCommandOutput ) => void
718
+ ) : void ;
719
+
656
720
/**
657
721
* @see {@link DeleteDomainCommand }
658
722
*/
@@ -1057,6 +1121,23 @@ export interface OpenSearch {
1057
1121
cb : ( err : any , data ?: GetDataSourceCommandOutput ) => void
1058
1122
) : void ;
1059
1123
1124
+ /**
1125
+ * @see {@link GetDirectQueryDataSourceCommand }
1126
+ */
1127
+ getDirectQueryDataSource (
1128
+ args : GetDirectQueryDataSourceCommandInput ,
1129
+ options ?: __HttpHandlerOptions
1130
+ ) : Promise < GetDirectQueryDataSourceCommandOutput > ;
1131
+ getDirectQueryDataSource (
1132
+ args : GetDirectQueryDataSourceCommandInput ,
1133
+ cb : ( err : any , data ?: GetDirectQueryDataSourceCommandOutput ) => void
1134
+ ) : void ;
1135
+ getDirectQueryDataSource (
1136
+ args : GetDirectQueryDataSourceCommandInput ,
1137
+ options : __HttpHandlerOptions ,
1138
+ cb : ( err : any , data ?: GetDirectQueryDataSourceCommandOutput ) => void
1139
+ ) : void ;
1140
+
1060
1141
/**
1061
1142
* @see {@link GetDomainMaintenanceStatusCommand }
1062
1143
*/
@@ -1157,6 +1238,24 @@ export interface OpenSearch {
1157
1238
cb : ( err : any , data ?: ListDataSourcesCommandOutput ) => void
1158
1239
) : void ;
1159
1240
1241
+ /**
1242
+ * @see {@link ListDirectQueryDataSourcesCommand }
1243
+ */
1244
+ listDirectQueryDataSources ( ) : Promise < ListDirectQueryDataSourcesCommandOutput > ;
1245
+ listDirectQueryDataSources (
1246
+ args : ListDirectQueryDataSourcesCommandInput ,
1247
+ options ?: __HttpHandlerOptions
1248
+ ) : Promise < ListDirectQueryDataSourcesCommandOutput > ;
1249
+ listDirectQueryDataSources (
1250
+ args : ListDirectQueryDataSourcesCommandInput ,
1251
+ cb : ( err : any , data ?: ListDirectQueryDataSourcesCommandOutput ) => void
1252
+ ) : void ;
1253
+ listDirectQueryDataSources (
1254
+ args : ListDirectQueryDataSourcesCommandInput ,
1255
+ options : __HttpHandlerOptions ,
1256
+ cb : ( err : any , data ?: ListDirectQueryDataSourcesCommandOutput ) => void
1257
+ ) : void ;
1258
+
1160
1259
/**
1161
1260
* @see {@link ListDomainMaintenancesCommand }
1162
1261
*/
@@ -1462,6 +1561,23 @@ export interface OpenSearch {
1462
1561
cb : ( err : any , data ?: UpdateDataSourceCommandOutput ) => void
1463
1562
) : void ;
1464
1563
1564
+ /**
1565
+ * @see {@link UpdateDirectQueryDataSourceCommand }
1566
+ */
1567
+ updateDirectQueryDataSource (
1568
+ args : UpdateDirectQueryDataSourceCommandInput ,
1569
+ options ?: __HttpHandlerOptions
1570
+ ) : Promise < UpdateDirectQueryDataSourceCommandOutput > ;
1571
+ updateDirectQueryDataSource (
1572
+ args : UpdateDirectQueryDataSourceCommandInput ,
1573
+ cb : ( err : any , data ?: UpdateDirectQueryDataSourceCommandOutput ) => void
1574
+ ) : void ;
1575
+ updateDirectQueryDataSource (
1576
+ args : UpdateDirectQueryDataSourceCommandInput ,
1577
+ options : __HttpHandlerOptions ,
1578
+ cb : ( err : any , data ?: UpdateDirectQueryDataSourceCommandOutput ) => void
1579
+ ) : void ;
1580
+
1465
1581
/**
1466
1582
* @see {@link UpdateDomainConfigCommand }
1467
1583
*/
0 commit comments