@@ -33,6 +33,11 @@ import {
33
33
CancelServiceSoftwareUpdateCommandInput ,
34
34
CancelServiceSoftwareUpdateCommandOutput ,
35
35
} from "./commands/CancelServiceSoftwareUpdateCommand" ;
36
+ import {
37
+ CreateApplicationCommand ,
38
+ CreateApplicationCommandInput ,
39
+ CreateApplicationCommandOutput ,
40
+ } from "./commands/CreateApplicationCommand" ;
36
41
import {
37
42
CreateDomainCommand ,
38
43
CreateDomainCommandInput ,
@@ -53,6 +58,11 @@ import {
53
58
CreateVpcEndpointCommandInput ,
54
59
CreateVpcEndpointCommandOutput ,
55
60
} from "./commands/CreateVpcEndpointCommand" ;
61
+ import {
62
+ DeleteApplicationCommand ,
63
+ DeleteApplicationCommandInput ,
64
+ DeleteApplicationCommandOutput ,
65
+ } from "./commands/DeleteApplicationCommand" ;
56
66
import {
57
67
DeleteDataSourceCommand ,
58
68
DeleteDataSourceCommandInput ,
@@ -163,6 +173,11 @@ import {
163
173
DissociatePackageCommandInput ,
164
174
DissociatePackageCommandOutput ,
165
175
} from "./commands/DissociatePackageCommand" ;
176
+ import {
177
+ GetApplicationCommand ,
178
+ GetApplicationCommandInput ,
179
+ GetApplicationCommandOutput ,
180
+ } from "./commands/GetApplicationCommand" ;
166
181
import {
167
182
GetCompatibleVersionsCommand ,
168
183
GetCompatibleVersionsCommandInput ,
@@ -193,6 +208,11 @@ import {
193
208
GetUpgradeStatusCommandInput ,
194
209
GetUpgradeStatusCommandOutput ,
195
210
} from "./commands/GetUpgradeStatusCommand" ;
211
+ import {
212
+ ListApplicationsCommand ,
213
+ ListApplicationsCommandInput ,
214
+ ListApplicationsCommandOutput ,
215
+ } from "./commands/ListApplicationsCommand" ;
196
216
import {
197
217
ListDataSourcesCommand ,
198
218
ListDataSourcesCommandInput ,
@@ -275,6 +295,11 @@ import {
275
295
StartServiceSoftwareUpdateCommandInput ,
276
296
StartServiceSoftwareUpdateCommandOutput ,
277
297
} from "./commands/StartServiceSoftwareUpdateCommand" ;
298
+ import {
299
+ UpdateApplicationCommand ,
300
+ UpdateApplicationCommandInput ,
301
+ UpdateApplicationCommandOutput ,
302
+ } from "./commands/UpdateApplicationCommand" ;
278
303
import {
279
304
UpdateDataSourceCommand ,
280
305
UpdateDataSourceCommandInput ,
@@ -315,10 +340,12 @@ const commands = {
315
340
AuthorizeVpcEndpointAccessCommand,
316
341
CancelDomainConfigChangeCommand,
317
342
CancelServiceSoftwareUpdateCommand,
343
+ CreateApplicationCommand,
318
344
CreateDomainCommand,
319
345
CreateOutboundConnectionCommand,
320
346
CreatePackageCommand,
321
347
CreateVpcEndpointCommand,
348
+ DeleteApplicationCommand,
322
349
DeleteDataSourceCommand,
323
350
DeleteDomainCommand,
324
351
DeleteInboundConnectionCommand,
@@ -341,12 +368,14 @@ const commands = {
341
368
DescribeReservedInstancesCommand,
342
369
DescribeVpcEndpointsCommand,
343
370
DissociatePackageCommand,
371
+ GetApplicationCommand,
344
372
GetCompatibleVersionsCommand,
345
373
GetDataSourceCommand,
346
374
GetDomainMaintenanceStatusCommand,
347
375
GetPackageVersionHistoryCommand,
348
376
GetUpgradeHistoryCommand,
349
377
GetUpgradeStatusCommand,
378
+ ListApplicationsCommand,
350
379
ListDataSourcesCommand,
351
380
ListDomainMaintenancesCommand,
352
381
ListDomainNamesCommand,
@@ -365,6 +394,7 @@ const commands = {
365
394
RevokeVpcEndpointAccessCommand,
366
395
StartDomainMaintenanceCommand,
367
396
StartServiceSoftwareUpdateCommand,
397
+ UpdateApplicationCommand,
368
398
UpdateDataSourceCommand,
369
399
UpdateDomainConfigCommand,
370
400
UpdatePackageCommand,
@@ -481,6 +511,23 @@ export interface OpenSearch {
481
511
cb : ( err : any , data ?: CancelServiceSoftwareUpdateCommandOutput ) => void
482
512
) : void ;
483
513
514
+ /**
515
+ * @see {@link CreateApplicationCommand }
516
+ */
517
+ createApplication (
518
+ args : CreateApplicationCommandInput ,
519
+ options ?: __HttpHandlerOptions
520
+ ) : Promise < CreateApplicationCommandOutput > ;
521
+ createApplication (
522
+ args : CreateApplicationCommandInput ,
523
+ cb : ( err : any , data ?: CreateApplicationCommandOutput ) => void
524
+ ) : void ;
525
+ createApplication (
526
+ args : CreateApplicationCommandInput ,
527
+ options : __HttpHandlerOptions ,
528
+ cb : ( err : any , data ?: CreateApplicationCommandOutput ) => void
529
+ ) : void ;
530
+
484
531
/**
485
532
* @see {@link CreateDomainCommand }
486
533
*/
@@ -537,6 +584,23 @@ export interface OpenSearch {
537
584
cb : ( err : any , data ?: CreateVpcEndpointCommandOutput ) => void
538
585
) : void ;
539
586
587
+ /**
588
+ * @see {@link DeleteApplicationCommand }
589
+ */
590
+ deleteApplication (
591
+ args : DeleteApplicationCommandInput ,
592
+ options ?: __HttpHandlerOptions
593
+ ) : Promise < DeleteApplicationCommandOutput > ;
594
+ deleteApplication (
595
+ args : DeleteApplicationCommandInput ,
596
+ cb : ( err : any , data ?: DeleteApplicationCommandOutput ) => void
597
+ ) : void ;
598
+ deleteApplication (
599
+ args : DeleteApplicationCommandInput ,
600
+ options : __HttpHandlerOptions ,
601
+ cb : ( err : any , data ?: DeleteApplicationCommandOutput ) => void
602
+ ) : void ;
603
+
540
604
/**
541
605
* @see {@link DeleteDataSourceCommand }
542
606
*/
@@ -898,6 +962,20 @@ export interface OpenSearch {
898
962
cb : ( err : any , data ?: DissociatePackageCommandOutput ) => void
899
963
) : void ;
900
964
965
+ /**
966
+ * @see {@link GetApplicationCommand }
967
+ */
968
+ getApplication (
969
+ args : GetApplicationCommandInput ,
970
+ options ?: __HttpHandlerOptions
971
+ ) : Promise < GetApplicationCommandOutput > ;
972
+ getApplication ( args : GetApplicationCommandInput , cb : ( err : any , data ?: GetApplicationCommandOutput ) => void ) : void ;
973
+ getApplication (
974
+ args : GetApplicationCommandInput ,
975
+ options : __HttpHandlerOptions ,
976
+ cb : ( err : any , data ?: GetApplicationCommandOutput ) => void
977
+ ) : void ;
978
+
901
979
/**
902
980
* @see {@link GetCompatibleVersionsCommand }
903
981
*/
@@ -995,6 +1073,24 @@ export interface OpenSearch {
995
1073
cb : ( err : any , data ?: GetUpgradeStatusCommandOutput ) => void
996
1074
) : void ;
997
1075
1076
+ /**
1077
+ * @see {@link ListApplicationsCommand }
1078
+ */
1079
+ listApplications ( ) : Promise < ListApplicationsCommandOutput > ;
1080
+ listApplications (
1081
+ args : ListApplicationsCommandInput ,
1082
+ options ?: __HttpHandlerOptions
1083
+ ) : Promise < ListApplicationsCommandOutput > ;
1084
+ listApplications (
1085
+ args : ListApplicationsCommandInput ,
1086
+ cb : ( err : any , data ?: ListApplicationsCommandOutput ) => void
1087
+ ) : void ;
1088
+ listApplications (
1089
+ args : ListApplicationsCommandInput ,
1090
+ options : __HttpHandlerOptions ,
1091
+ cb : ( err : any , data ?: ListApplicationsCommandOutput ) => void
1092
+ ) : void ;
1093
+
998
1094
/**
999
1095
* @see {@link ListDataSourcesCommand }
1000
1096
*/
@@ -1280,6 +1376,23 @@ export interface OpenSearch {
1280
1376
cb : ( err : any , data ?: StartServiceSoftwareUpdateCommandOutput ) => void
1281
1377
) : void ;
1282
1378
1379
+ /**
1380
+ * @see {@link UpdateApplicationCommand }
1381
+ */
1382
+ updateApplication (
1383
+ args : UpdateApplicationCommandInput ,
1384
+ options ?: __HttpHandlerOptions
1385
+ ) : Promise < UpdateApplicationCommandOutput > ;
1386
+ updateApplication (
1387
+ args : UpdateApplicationCommandInput ,
1388
+ cb : ( err : any , data ?: UpdateApplicationCommandOutput ) => void
1389
+ ) : void ;
1390
+ updateApplication (
1391
+ args : UpdateApplicationCommandInput ,
1392
+ options : __HttpHandlerOptions ,
1393
+ cb : ( err : any , data ?: UpdateApplicationCommandOutput ) => void
1394
+ ) : void ;
1395
+
1283
1396
/**
1284
1397
* @see {@link UpdateDataSourceCommand }
1285
1398
*/
0 commit comments