@@ -106,6 +106,11 @@ import {
106
106
DeleteRunGroupCommandInput ,
107
107
DeleteRunGroupCommandOutput ,
108
108
} from "./commands/DeleteRunGroupCommand" ;
109
+ import {
110
+ DeleteS3AccessPolicyCommand ,
111
+ DeleteS3AccessPolicyCommandInput ,
112
+ DeleteS3AccessPolicyCommandOutput ,
113
+ } from "./commands/DeleteS3AccessPolicyCommand" ;
109
114
import {
110
115
DeleteSequenceStoreCommand ,
111
116
DeleteSequenceStoreCommandInput ,
@@ -182,6 +187,11 @@ import { GetRunCacheCommand, GetRunCacheCommandInput, GetRunCacheCommandOutput }
182
187
import { GetRunCommand , GetRunCommandInput , GetRunCommandOutput } from "./commands/GetRunCommand" ;
183
188
import { GetRunGroupCommand , GetRunGroupCommandInput , GetRunGroupCommandOutput } from "./commands/GetRunGroupCommand" ;
184
189
import { GetRunTaskCommand , GetRunTaskCommandInput , GetRunTaskCommandOutput } from "./commands/GetRunTaskCommand" ;
190
+ import {
191
+ GetS3AccessPolicyCommand ,
192
+ GetS3AccessPolicyCommandInput ,
193
+ GetS3AccessPolicyCommandOutput ,
194
+ } from "./commands/GetS3AccessPolicyCommand" ;
185
195
import {
186
196
GetSequenceStoreCommand ,
187
197
GetSequenceStoreCommandInput ,
@@ -301,6 +311,11 @@ import {
301
311
ListWorkflowsCommandInput ,
302
312
ListWorkflowsCommandOutput ,
303
313
} from "./commands/ListWorkflowsCommand" ;
314
+ import {
315
+ PutS3AccessPolicyCommand ,
316
+ PutS3AccessPolicyCommandInput ,
317
+ PutS3AccessPolicyCommandOutput ,
318
+ } from "./commands/PutS3AccessPolicyCommand" ;
304
319
import {
305
320
StartAnnotationImportJobCommand ,
306
321
StartAnnotationImportJobCommandInput ,
@@ -358,6 +373,11 @@ import {
358
373
UpdateRunGroupCommandInput ,
359
374
UpdateRunGroupCommandOutput ,
360
375
} from "./commands/UpdateRunGroupCommand" ;
376
+ import {
377
+ UpdateSequenceStoreCommand ,
378
+ UpdateSequenceStoreCommandInput ,
379
+ UpdateSequenceStoreCommandOutput ,
380
+ } from "./commands/UpdateSequenceStoreCommand" ;
361
381
import {
362
382
UpdateVariantStoreCommand ,
363
383
UpdateVariantStoreCommandInput ,
@@ -400,6 +420,7 @@ const commands = {
400
420
DeleteRunCommand,
401
421
DeleteRunCacheCommand,
402
422
DeleteRunGroupCommand,
423
+ DeleteS3AccessPolicyCommand,
403
424
DeleteSequenceStoreCommand,
404
425
DeleteShareCommand,
405
426
DeleteVariantStoreCommand,
@@ -420,6 +441,7 @@ const commands = {
420
441
GetRunCacheCommand,
421
442
GetRunGroupCommand,
422
443
GetRunTaskCommand,
444
+ GetS3AccessPolicyCommand,
423
445
GetSequenceStoreCommand,
424
446
GetShareCommand,
425
447
GetVariantImportJobCommand,
@@ -447,6 +469,7 @@ const commands = {
447
469
ListVariantImportJobsCommand,
448
470
ListVariantStoresCommand,
449
471
ListWorkflowsCommand,
472
+ PutS3AccessPolicyCommand,
450
473
StartAnnotationImportJobCommand,
451
474
StartReadSetActivationJobCommand,
452
475
StartReadSetExportJobCommand,
@@ -460,6 +483,7 @@ const commands = {
460
483
UpdateAnnotationStoreVersionCommand,
461
484
UpdateRunCacheCommand,
462
485
UpdateRunGroupCommand,
486
+ UpdateSequenceStoreCommand,
463
487
UpdateVariantStoreCommand,
464
488
UpdateWorkflowCommand,
465
489
UploadReadSetPartCommand,
@@ -832,6 +856,23 @@ export interface Omics {
832
856
cb : ( err : any , data ?: DeleteRunGroupCommandOutput ) => void
833
857
) : void ;
834
858
859
+ /**
860
+ * @see {@link DeleteS3AccessPolicyCommand }
861
+ */
862
+ deleteS3AccessPolicy (
863
+ args : DeleteS3AccessPolicyCommandInput ,
864
+ options ?: __HttpHandlerOptions
865
+ ) : Promise < DeleteS3AccessPolicyCommandOutput > ;
866
+ deleteS3AccessPolicy (
867
+ args : DeleteS3AccessPolicyCommandInput ,
868
+ cb : ( err : any , data ?: DeleteS3AccessPolicyCommandOutput ) => void
869
+ ) : void ;
870
+ deleteS3AccessPolicy (
871
+ args : DeleteS3AccessPolicyCommandInput ,
872
+ options : __HttpHandlerOptions ,
873
+ cb : ( err : any , data ?: DeleteS3AccessPolicyCommandOutput ) => void
874
+ ) : void ;
875
+
835
876
/**
836
877
* @see {@link DeleteSequenceStoreCommand }
837
878
*/
@@ -1127,6 +1168,23 @@ export interface Omics {
1127
1168
cb : ( err : any , data ?: GetRunTaskCommandOutput ) => void
1128
1169
) : void ;
1129
1170
1171
+ /**
1172
+ * @see {@link GetS3AccessPolicyCommand }
1173
+ */
1174
+ getS3AccessPolicy (
1175
+ args : GetS3AccessPolicyCommandInput ,
1176
+ options ?: __HttpHandlerOptions
1177
+ ) : Promise < GetS3AccessPolicyCommandOutput > ;
1178
+ getS3AccessPolicy (
1179
+ args : GetS3AccessPolicyCommandInput ,
1180
+ cb : ( err : any , data ?: GetS3AccessPolicyCommandOutput ) => void
1181
+ ) : void ;
1182
+ getS3AccessPolicy (
1183
+ args : GetS3AccessPolicyCommandInput ,
1184
+ options : __HttpHandlerOptions ,
1185
+ cb : ( err : any , data ?: GetS3AccessPolicyCommandOutput ) => void
1186
+ ) : void ;
1187
+
1130
1188
/**
1131
1189
* @see {@link GetSequenceStoreCommand }
1132
1190
*/
@@ -1536,6 +1594,23 @@ export interface Omics {
1536
1594
cb : ( err : any , data ?: ListWorkflowsCommandOutput ) => void
1537
1595
) : void ;
1538
1596
1597
+ /**
1598
+ * @see {@link PutS3AccessPolicyCommand }
1599
+ */
1600
+ putS3AccessPolicy (
1601
+ args : PutS3AccessPolicyCommandInput ,
1602
+ options ?: __HttpHandlerOptions
1603
+ ) : Promise < PutS3AccessPolicyCommandOutput > ;
1604
+ putS3AccessPolicy (
1605
+ args : PutS3AccessPolicyCommandInput ,
1606
+ cb : ( err : any , data ?: PutS3AccessPolicyCommandOutput ) => void
1607
+ ) : void ;
1608
+ putS3AccessPolicy (
1609
+ args : PutS3AccessPolicyCommandInput ,
1610
+ options : __HttpHandlerOptions ,
1611
+ cb : ( err : any , data ?: PutS3AccessPolicyCommandOutput ) => void
1612
+ ) : void ;
1613
+
1539
1614
/**
1540
1615
* @see {@link StartAnnotationImportJobCommand }
1541
1616
*/
@@ -1733,6 +1808,23 @@ export interface Omics {
1733
1808
cb : ( err : any , data ?: UpdateRunGroupCommandOutput ) => void
1734
1809
) : void ;
1735
1810
1811
+ /**
1812
+ * @see {@link UpdateSequenceStoreCommand }
1813
+ */
1814
+ updateSequenceStore (
1815
+ args : UpdateSequenceStoreCommandInput ,
1816
+ options ?: __HttpHandlerOptions
1817
+ ) : Promise < UpdateSequenceStoreCommandOutput > ;
1818
+ updateSequenceStore (
1819
+ args : UpdateSequenceStoreCommandInput ,
1820
+ cb : ( err : any , data ?: UpdateSequenceStoreCommandOutput ) => void
1821
+ ) : void ;
1822
+ updateSequenceStore (
1823
+ args : UpdateSequenceStoreCommandInput ,
1824
+ options : __HttpHandlerOptions ,
1825
+ cb : ( err : any , data ?: UpdateSequenceStoreCommandOutput ) => void
1826
+ ) : void ;
1827
+
1736
1828
/**
1737
1829
* @see {@link UpdateVariantStoreCommand }
1738
1830
*/
0 commit comments