@aws-sdk/client-omics 3.697.0 → 3.709.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/README.md +32 -0
- package/dist-cjs/index.js +261 -5
- package/dist-es/Omics.js +8 -0
- package/dist-es/commands/DeleteS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/GetS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/PutS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/UpdateSequenceStoreCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +11 -0
- package/dist-es/protocols/Aws_restJson1.js +171 -2
- package/dist-types/Omics.d.ts +28 -0
- package/dist-types/OmicsClient.d.ts +6 -2
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +16 -0
- package/dist-types/commands/DeleteS3AccessPolicyCommand.d.ts +92 -0
- package/dist-types/commands/GetS3AccessPolicyCommand.d.ts +101 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +7 -0
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +6 -0
- package/dist-types/commands/PutS3AccessPolicyCommand.d.ts +97 -0
- package/dist-types/commands/UpdateSequenceStoreCommand.d.ts +123 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +333 -10
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/Omics.d.ts +68 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeleteS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateSequenceStoreCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +89 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +37 -37
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
1
|
+
import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion, ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { DocumentType as __DocumentType, StreamingBlobTypes } from "@smithy/types";
|
|
3
3
|
import { OmicsServiceException as __BaseException } from "./OmicsServiceException";
|
|
4
4
|
/**
|
|
@@ -2507,6 +2507,17 @@ export declare const ETagAlgorithmFamily: {
|
|
|
2507
2507
|
* @public
|
|
2508
2508
|
*/
|
|
2509
2509
|
export type ETagAlgorithmFamily = (typeof ETagAlgorithmFamily)[keyof typeof ETagAlgorithmFamily];
|
|
2510
|
+
/**
|
|
2511
|
+
* <p>S3 access configuration parameters.</p>
|
|
2512
|
+
* @public
|
|
2513
|
+
*/
|
|
2514
|
+
export interface S3AccessConfig {
|
|
2515
|
+
/**
|
|
2516
|
+
* <p>Location of the access logs.</p>
|
|
2517
|
+
* @public
|
|
2518
|
+
*/
|
|
2519
|
+
accessLogLocation?: string | undefined;
|
|
2520
|
+
}
|
|
2510
2521
|
/**
|
|
2511
2522
|
* @public
|
|
2512
2523
|
*/
|
|
@@ -2546,7 +2557,53 @@ export interface CreateSequenceStoreRequest {
|
|
|
2546
2557
|
* @public
|
|
2547
2558
|
*/
|
|
2548
2559
|
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
2560
|
+
/**
|
|
2561
|
+
* <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
|
|
2562
|
+
* @public
|
|
2563
|
+
*/
|
|
2564
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
2565
|
+
/**
|
|
2566
|
+
* <p>S3 access configuration parameters</p>
|
|
2567
|
+
* @public
|
|
2568
|
+
*/
|
|
2569
|
+
s3AccessConfig?: S3AccessConfig | undefined;
|
|
2549
2570
|
}
|
|
2571
|
+
/**
|
|
2572
|
+
* <p>The S3 access metadata of the sequence store.</p>
|
|
2573
|
+
* @public
|
|
2574
|
+
*/
|
|
2575
|
+
export interface SequenceStoreS3Access {
|
|
2576
|
+
/**
|
|
2577
|
+
* <p>The S3 URI of the sequence store.</p>
|
|
2578
|
+
* @public
|
|
2579
|
+
*/
|
|
2580
|
+
s3Uri?: string | undefined;
|
|
2581
|
+
/**
|
|
2582
|
+
* <p>This is ARN of the access point associated with the S3 bucket storing read sets.</p>
|
|
2583
|
+
* @public
|
|
2584
|
+
*/
|
|
2585
|
+
s3AccessPointArn?: string | undefined;
|
|
2586
|
+
/**
|
|
2587
|
+
* <p>Location of the access logs.</p>
|
|
2588
|
+
* @public
|
|
2589
|
+
*/
|
|
2590
|
+
accessLogLocation?: string | undefined;
|
|
2591
|
+
}
|
|
2592
|
+
/**
|
|
2593
|
+
* @public
|
|
2594
|
+
* @enum
|
|
2595
|
+
*/
|
|
2596
|
+
export declare const SequenceStoreStatus: {
|
|
2597
|
+
readonly ACTIVE: "ACTIVE";
|
|
2598
|
+
readonly CREATING: "CREATING";
|
|
2599
|
+
readonly DELETING: "DELETING";
|
|
2600
|
+
readonly FAILED: "FAILED";
|
|
2601
|
+
readonly UPDATING: "UPDATING";
|
|
2602
|
+
};
|
|
2603
|
+
/**
|
|
2604
|
+
* @public
|
|
2605
|
+
*/
|
|
2606
|
+
export type SequenceStoreStatus = (typeof SequenceStoreStatus)[keyof typeof SequenceStoreStatus];
|
|
2550
2607
|
/**
|
|
2551
2608
|
* @public
|
|
2552
2609
|
*/
|
|
@@ -2591,6 +2648,26 @@ export interface CreateSequenceStoreResponse {
|
|
|
2591
2648
|
* @public
|
|
2592
2649
|
*/
|
|
2593
2650
|
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
2651
|
+
/**
|
|
2652
|
+
* <p>The status of the sequence store.</p>
|
|
2653
|
+
* @public
|
|
2654
|
+
*/
|
|
2655
|
+
status?: SequenceStoreStatus | undefined;
|
|
2656
|
+
/**
|
|
2657
|
+
* <p>The status message of the sequence store.</p>
|
|
2658
|
+
* @public
|
|
2659
|
+
*/
|
|
2660
|
+
statusMessage?: string | undefined;
|
|
2661
|
+
/**
|
|
2662
|
+
* <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
|
|
2663
|
+
* @public
|
|
2664
|
+
*/
|
|
2665
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
2666
|
+
/**
|
|
2667
|
+
* <p>The S3 access metadata of the sequence store.</p>
|
|
2668
|
+
* @public
|
|
2669
|
+
*/
|
|
2670
|
+
s3Access?: SequenceStoreS3Access | undefined;
|
|
2594
2671
|
}
|
|
2595
2672
|
/**
|
|
2596
2673
|
* @public
|
|
@@ -2899,6 +2976,21 @@ export interface DeleteRunGroupRequest {
|
|
|
2899
2976
|
*/
|
|
2900
2977
|
id: string | undefined;
|
|
2901
2978
|
}
|
|
2979
|
+
/**
|
|
2980
|
+
* @public
|
|
2981
|
+
*/
|
|
2982
|
+
export interface DeleteS3AccessPolicyRequest {
|
|
2983
|
+
/**
|
|
2984
|
+
* <p>The S3 access point ARN that has the access policy.</p>
|
|
2985
|
+
* @public
|
|
2986
|
+
*/
|
|
2987
|
+
s3AccessPointArn: string | undefined;
|
|
2988
|
+
}
|
|
2989
|
+
/**
|
|
2990
|
+
* @public
|
|
2991
|
+
*/
|
|
2992
|
+
export interface DeleteS3AccessPolicyResponse {
|
|
2993
|
+
}
|
|
2902
2994
|
/**
|
|
2903
2995
|
* @public
|
|
2904
2996
|
*/
|
|
@@ -4606,28 +4698,64 @@ export interface GetRunTaskResponse {
|
|
|
4606
4698
|
/**
|
|
4607
4699
|
* @public
|
|
4608
4700
|
*/
|
|
4609
|
-
export interface
|
|
4701
|
+
export interface GetS3AccessPolicyRequest {
|
|
4610
4702
|
/**
|
|
4611
|
-
* <p>The
|
|
4703
|
+
* <p>The S3 access point ARN that has the access policy.</p>
|
|
4612
4704
|
* @public
|
|
4613
4705
|
*/
|
|
4614
|
-
|
|
4706
|
+
s3AccessPointArn: string | undefined;
|
|
4615
4707
|
}
|
|
4616
4708
|
/**
|
|
4617
|
-
* <p>The S3 access metadata of the sequence store.</p>
|
|
4618
4709
|
* @public
|
|
4710
|
+
* @enum
|
|
4619
4711
|
*/
|
|
4620
|
-
export
|
|
4712
|
+
export declare const StoreType: {
|
|
4713
|
+
readonly REFERENCE_STORE: "REFERENCE_STORE";
|
|
4714
|
+
readonly SEQUENCE_STORE: "SEQUENCE_STORE";
|
|
4715
|
+
};
|
|
4716
|
+
/**
|
|
4717
|
+
* @public
|
|
4718
|
+
*/
|
|
4719
|
+
export type StoreType = (typeof StoreType)[keyof typeof StoreType];
|
|
4720
|
+
/**
|
|
4721
|
+
* @public
|
|
4722
|
+
*/
|
|
4723
|
+
export interface GetS3AccessPolicyResponse {
|
|
4621
4724
|
/**
|
|
4622
|
-
* <p>The S3
|
|
4725
|
+
* <p>The S3 access point ARN that has the access policy.</p>
|
|
4623
4726
|
* @public
|
|
4624
4727
|
*/
|
|
4625
|
-
|
|
4728
|
+
s3AccessPointArn?: string | undefined;
|
|
4626
4729
|
/**
|
|
4627
|
-
* <p>
|
|
4730
|
+
* <p>The AWS-generated Sequence Store or Reference Store ID.</p>
|
|
4628
4731
|
* @public
|
|
4629
4732
|
*/
|
|
4630
|
-
|
|
4733
|
+
storeId?: string | undefined;
|
|
4734
|
+
/**
|
|
4735
|
+
* <p>The type of store associated with the access point.</p>
|
|
4736
|
+
* @public
|
|
4737
|
+
*/
|
|
4738
|
+
storeType?: StoreType | undefined;
|
|
4739
|
+
/**
|
|
4740
|
+
* <p>The time when the policy was last updated.</p>
|
|
4741
|
+
* @public
|
|
4742
|
+
*/
|
|
4743
|
+
updateTime?: Date | undefined;
|
|
4744
|
+
/**
|
|
4745
|
+
* <p>The current resource policy that controls S3 access on the store.</p>
|
|
4746
|
+
* @public
|
|
4747
|
+
*/
|
|
4748
|
+
s3AccessPolicy: __AutomaticJsonStringConversion | string | undefined;
|
|
4749
|
+
}
|
|
4750
|
+
/**
|
|
4751
|
+
* @public
|
|
4752
|
+
*/
|
|
4753
|
+
export interface GetSequenceStoreRequest {
|
|
4754
|
+
/**
|
|
4755
|
+
* <p>The store's ID.</p>
|
|
4756
|
+
* @public
|
|
4757
|
+
*/
|
|
4758
|
+
id: string | undefined;
|
|
4631
4759
|
}
|
|
4632
4760
|
/**
|
|
4633
4761
|
* @public
|
|
@@ -4678,6 +4806,26 @@ export interface GetSequenceStoreResponse {
|
|
|
4678
4806
|
* @public
|
|
4679
4807
|
*/
|
|
4680
4808
|
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
4809
|
+
/**
|
|
4810
|
+
* <p>The status of the sequence store.</p>
|
|
4811
|
+
* @public
|
|
4812
|
+
*/
|
|
4813
|
+
status?: SequenceStoreStatus | undefined;
|
|
4814
|
+
/**
|
|
4815
|
+
* <p>The status message of the sequence store.</p>
|
|
4816
|
+
* @public
|
|
4817
|
+
*/
|
|
4818
|
+
statusMessage?: string | undefined;
|
|
4819
|
+
/**
|
|
4820
|
+
* <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
|
|
4821
|
+
* @public
|
|
4822
|
+
*/
|
|
4823
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
4824
|
+
/**
|
|
4825
|
+
* <p>The last-updated time of the sequence store.</p>
|
|
4826
|
+
* @public
|
|
4827
|
+
*/
|
|
4828
|
+
updateTime?: Date | undefined;
|
|
4681
4829
|
}
|
|
4682
4830
|
/**
|
|
4683
4831
|
* @public
|
|
@@ -6351,6 +6499,21 @@ export interface SequenceStoreFilter {
|
|
|
6351
6499
|
* @public
|
|
6352
6500
|
*/
|
|
6353
6501
|
createdBefore?: Date | undefined;
|
|
6502
|
+
/**
|
|
6503
|
+
* <p>Filter results based on status.</p>
|
|
6504
|
+
* @public
|
|
6505
|
+
*/
|
|
6506
|
+
status?: SequenceStoreStatus | undefined;
|
|
6507
|
+
/**
|
|
6508
|
+
* <p>Filter results based on stores updated after the specified time.</p>
|
|
6509
|
+
* @public
|
|
6510
|
+
*/
|
|
6511
|
+
updatedAfter?: Date | undefined;
|
|
6512
|
+
/**
|
|
6513
|
+
* <p>Filter results based on stores updated before the specified time.</p>
|
|
6514
|
+
* @public
|
|
6515
|
+
*/
|
|
6516
|
+
updatedBefore?: Date | undefined;
|
|
6354
6517
|
}
|
|
6355
6518
|
/**
|
|
6356
6519
|
* @public
|
|
@@ -6419,6 +6582,21 @@ export interface SequenceStoreDetail {
|
|
|
6419
6582
|
* @public
|
|
6420
6583
|
*/
|
|
6421
6584
|
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
6585
|
+
/**
|
|
6586
|
+
* <p>Status of the sequence store.</p>
|
|
6587
|
+
* @public
|
|
6588
|
+
*/
|
|
6589
|
+
status?: SequenceStoreStatus | undefined;
|
|
6590
|
+
/**
|
|
6591
|
+
* <p>The status message of the sequence store.</p>
|
|
6592
|
+
* @public
|
|
6593
|
+
*/
|
|
6594
|
+
statusMessage?: string | undefined;
|
|
6595
|
+
/**
|
|
6596
|
+
* <p>The last-updated time of the Sequence Store.</p>
|
|
6597
|
+
* @public
|
|
6598
|
+
*/
|
|
6599
|
+
updateTime?: Date | undefined;
|
|
6422
6600
|
}
|
|
6423
6601
|
/**
|
|
6424
6602
|
* @public
|
|
@@ -6825,6 +7003,41 @@ export interface ListWorkflowsResponse {
|
|
|
6825
7003
|
*/
|
|
6826
7004
|
nextToken?: string | undefined;
|
|
6827
7005
|
}
|
|
7006
|
+
/**
|
|
7007
|
+
* @public
|
|
7008
|
+
*/
|
|
7009
|
+
export interface PutS3AccessPolicyRequest {
|
|
7010
|
+
/**
|
|
7011
|
+
* <p>The S3 access point ARN where you want to put the access policy.</p>
|
|
7012
|
+
* @public
|
|
7013
|
+
*/
|
|
7014
|
+
s3AccessPointArn: string | undefined;
|
|
7015
|
+
/**
|
|
7016
|
+
* <p>The resource policy that controls S3 access to the store.</p>
|
|
7017
|
+
* @public
|
|
7018
|
+
*/
|
|
7019
|
+
s3AccessPolicy: __AutomaticJsonStringConversion | string | undefined;
|
|
7020
|
+
}
|
|
7021
|
+
/**
|
|
7022
|
+
* @public
|
|
7023
|
+
*/
|
|
7024
|
+
export interface PutS3AccessPolicyResponse {
|
|
7025
|
+
/**
|
|
7026
|
+
* <p>The S3 access point ARN that now has the access policy.</p>
|
|
7027
|
+
* @public
|
|
7028
|
+
*/
|
|
7029
|
+
s3AccessPointArn?: string | undefined;
|
|
7030
|
+
/**
|
|
7031
|
+
* <p>The AWS-generated Sequence Store or Reference Store ID.</p>
|
|
7032
|
+
* @public
|
|
7033
|
+
*/
|
|
7034
|
+
storeId?: string | undefined;
|
|
7035
|
+
/**
|
|
7036
|
+
* <p>The type of store associated with the access point.</p>
|
|
7037
|
+
* @public
|
|
7038
|
+
*/
|
|
7039
|
+
storeType?: StoreType | undefined;
|
|
7040
|
+
}
|
|
6828
7041
|
/**
|
|
6829
7042
|
* <p>A source for a reference import job.</p>
|
|
6830
7043
|
* @public
|
|
@@ -7331,6 +7544,116 @@ export interface StartReadSetImportJobResponse {
|
|
|
7331
7544
|
*/
|
|
7332
7545
|
creationTime: Date | undefined;
|
|
7333
7546
|
}
|
|
7547
|
+
/**
|
|
7548
|
+
* @public
|
|
7549
|
+
*/
|
|
7550
|
+
export interface UpdateSequenceStoreRequest {
|
|
7551
|
+
/**
|
|
7552
|
+
* <p>The ID of the sequence store.</p>
|
|
7553
|
+
* @public
|
|
7554
|
+
*/
|
|
7555
|
+
id: string | undefined;
|
|
7556
|
+
/**
|
|
7557
|
+
* <p>A name for the sequence store.</p>
|
|
7558
|
+
* @public
|
|
7559
|
+
*/
|
|
7560
|
+
name?: string | undefined;
|
|
7561
|
+
/**
|
|
7562
|
+
* <p>A description for the sequence store.</p>
|
|
7563
|
+
* @public
|
|
7564
|
+
*/
|
|
7565
|
+
description?: string | undefined;
|
|
7566
|
+
/**
|
|
7567
|
+
* <p>To ensure that requests don't run multiple times, specify a unique token for each request.</p>
|
|
7568
|
+
* @public
|
|
7569
|
+
*/
|
|
7570
|
+
clientToken?: string | undefined;
|
|
7571
|
+
/**
|
|
7572
|
+
* <p>The S3 URI of a bucket and folder to store Read Sets that fail to upload.</p>
|
|
7573
|
+
* @public
|
|
7574
|
+
*/
|
|
7575
|
+
fallbackLocation?: string | undefined;
|
|
7576
|
+
/**
|
|
7577
|
+
* <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
|
|
7578
|
+
* @public
|
|
7579
|
+
*/
|
|
7580
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
7581
|
+
/**
|
|
7582
|
+
* <p>S3 access configuration parameters.</p>
|
|
7583
|
+
* @public
|
|
7584
|
+
*/
|
|
7585
|
+
s3AccessConfig?: S3AccessConfig | undefined;
|
|
7586
|
+
}
|
|
7587
|
+
/**
|
|
7588
|
+
* @public
|
|
7589
|
+
*/
|
|
7590
|
+
export interface UpdateSequenceStoreResponse {
|
|
7591
|
+
/**
|
|
7592
|
+
* <p>The ID of the sequence store.</p>
|
|
7593
|
+
* @public
|
|
7594
|
+
*/
|
|
7595
|
+
id: string | undefined;
|
|
7596
|
+
/**
|
|
7597
|
+
* <p>The ARN of the sequence store.</p>
|
|
7598
|
+
* @public
|
|
7599
|
+
*/
|
|
7600
|
+
arn: string | undefined;
|
|
7601
|
+
/**
|
|
7602
|
+
* <p>The name of the sequence store.</p>
|
|
7603
|
+
* @public
|
|
7604
|
+
*/
|
|
7605
|
+
name?: string | undefined;
|
|
7606
|
+
/**
|
|
7607
|
+
* <p>Description of the sequence store.</p>
|
|
7608
|
+
* @public
|
|
7609
|
+
*/
|
|
7610
|
+
description?: string | undefined;
|
|
7611
|
+
/**
|
|
7612
|
+
* <p>Server-side encryption (SSE) settings for a store.</p>
|
|
7613
|
+
* @public
|
|
7614
|
+
*/
|
|
7615
|
+
sseConfig?: SseConfig | undefined;
|
|
7616
|
+
/**
|
|
7617
|
+
* <p>The time when the store was created.</p>
|
|
7618
|
+
* @public
|
|
7619
|
+
*/
|
|
7620
|
+
creationTime: Date | undefined;
|
|
7621
|
+
/**
|
|
7622
|
+
* <p>The last-updated time of the Sequence Store.</p>
|
|
7623
|
+
* @public
|
|
7624
|
+
*/
|
|
7625
|
+
updateTime?: Date | undefined;
|
|
7626
|
+
/**
|
|
7627
|
+
* <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
|
|
7628
|
+
* @public
|
|
7629
|
+
*/
|
|
7630
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
7631
|
+
/**
|
|
7632
|
+
* <p>The status of the sequence store.</p>
|
|
7633
|
+
* @public
|
|
7634
|
+
*/
|
|
7635
|
+
status?: SequenceStoreStatus | undefined;
|
|
7636
|
+
/**
|
|
7637
|
+
* <p>The status message of the sequence store.</p>
|
|
7638
|
+
* @public
|
|
7639
|
+
*/
|
|
7640
|
+
statusMessage?: string | undefined;
|
|
7641
|
+
/**
|
|
7642
|
+
* <p>The S3 URI of a bucket and folder to store Read Sets that fail to upload.</p>
|
|
7643
|
+
* @public
|
|
7644
|
+
*/
|
|
7645
|
+
fallbackLocation?: string | undefined;
|
|
7646
|
+
/**
|
|
7647
|
+
* <p>The S3 access metadata of the sequence store.</p>
|
|
7648
|
+
* @public
|
|
7649
|
+
*/
|
|
7650
|
+
s3Access?: SequenceStoreS3Access | undefined;
|
|
7651
|
+
/**
|
|
7652
|
+
* <p>The ETag algorithm family to use on ingested read sets.</p>
|
|
7653
|
+
* @public
|
|
7654
|
+
*/
|
|
7655
|
+
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
7656
|
+
}
|
|
7334
7657
|
/**
|
|
7335
7658
|
* @public
|
|
7336
7659
|
*/
|
|
@@ -24,6 +24,7 @@ import { DeleteReferenceStoreCommandInput, DeleteReferenceStoreCommandOutput } f
|
|
|
24
24
|
import { DeleteRunCacheCommandInput, DeleteRunCacheCommandOutput } from "../commands/DeleteRunCacheCommand";
|
|
25
25
|
import { DeleteRunCommandInput, DeleteRunCommandOutput } from "../commands/DeleteRunCommand";
|
|
26
26
|
import { DeleteRunGroupCommandInput, DeleteRunGroupCommandOutput } from "../commands/DeleteRunGroupCommand";
|
|
27
|
+
import { DeleteS3AccessPolicyCommandInput, DeleteS3AccessPolicyCommandOutput } from "../commands/DeleteS3AccessPolicyCommand";
|
|
27
28
|
import { DeleteSequenceStoreCommandInput, DeleteSequenceStoreCommandOutput } from "../commands/DeleteSequenceStoreCommand";
|
|
28
29
|
import { DeleteShareCommandInput, DeleteShareCommandOutput } from "../commands/DeleteShareCommand";
|
|
29
30
|
import { DeleteVariantStoreCommandInput, DeleteVariantStoreCommandOutput } from "../commands/DeleteVariantStoreCommand";
|
|
@@ -44,6 +45,7 @@ import { GetRunCacheCommandInput, GetRunCacheCommandOutput } from "../commands/G
|
|
|
44
45
|
import { GetRunCommandInput, GetRunCommandOutput } from "../commands/GetRunCommand";
|
|
45
46
|
import { GetRunGroupCommandInput, GetRunGroupCommandOutput } from "../commands/GetRunGroupCommand";
|
|
46
47
|
import { GetRunTaskCommandInput, GetRunTaskCommandOutput } from "../commands/GetRunTaskCommand";
|
|
48
|
+
import { GetS3AccessPolicyCommandInput, GetS3AccessPolicyCommandOutput } from "../commands/GetS3AccessPolicyCommand";
|
|
47
49
|
import { GetSequenceStoreCommandInput, GetSequenceStoreCommandOutput } from "../commands/GetSequenceStoreCommand";
|
|
48
50
|
import { GetShareCommandInput, GetShareCommandOutput } from "../commands/GetShareCommand";
|
|
49
51
|
import { GetVariantImportJobCommandInput, GetVariantImportJobCommandOutput } from "../commands/GetVariantImportJobCommand";
|
|
@@ -71,6 +73,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
71
73
|
import { ListVariantImportJobsCommandInput, ListVariantImportJobsCommandOutput } from "../commands/ListVariantImportJobsCommand";
|
|
72
74
|
import { ListVariantStoresCommandInput, ListVariantStoresCommandOutput } from "../commands/ListVariantStoresCommand";
|
|
73
75
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "../commands/ListWorkflowsCommand";
|
|
76
|
+
import { PutS3AccessPolicyCommandInput, PutS3AccessPolicyCommandOutput } from "../commands/PutS3AccessPolicyCommand";
|
|
74
77
|
import { StartAnnotationImportJobCommandInput, StartAnnotationImportJobCommandOutput } from "../commands/StartAnnotationImportJobCommand";
|
|
75
78
|
import { StartReadSetActivationJobCommandInput, StartReadSetActivationJobCommandOutput } from "../commands/StartReadSetActivationJobCommand";
|
|
76
79
|
import { StartReadSetExportJobCommandInput, StartReadSetExportJobCommandOutput } from "../commands/StartReadSetExportJobCommand";
|
|
@@ -84,6 +87,7 @@ import { UpdateAnnotationStoreCommandInput, UpdateAnnotationStoreCommandOutput }
|
|
|
84
87
|
import { UpdateAnnotationStoreVersionCommandInput, UpdateAnnotationStoreVersionCommandOutput } from "../commands/UpdateAnnotationStoreVersionCommand";
|
|
85
88
|
import { UpdateRunCacheCommandInput, UpdateRunCacheCommandOutput } from "../commands/UpdateRunCacheCommand";
|
|
86
89
|
import { UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput } from "../commands/UpdateRunGroupCommand";
|
|
90
|
+
import { UpdateSequenceStoreCommandInput, UpdateSequenceStoreCommandOutput } from "../commands/UpdateSequenceStoreCommand";
|
|
87
91
|
import { UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput } from "../commands/UpdateVariantStoreCommand";
|
|
88
92
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "../commands/UpdateWorkflowCommand";
|
|
89
93
|
import { UploadReadSetPartCommandInput, UploadReadSetPartCommandOutput } from "../commands/UploadReadSetPartCommand";
|
|
@@ -183,6 +187,10 @@ export declare const se_DeleteRunCacheCommand: (input: DeleteRunCacheCommandInpu
|
|
|
183
187
|
* serializeAws_restJson1DeleteRunGroupCommand
|
|
184
188
|
*/
|
|
185
189
|
export declare const se_DeleteRunGroupCommand: (input: DeleteRunGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
190
|
+
/**
|
|
191
|
+
* serializeAws_restJson1DeleteS3AccessPolicyCommand
|
|
192
|
+
*/
|
|
193
|
+
export declare const se_DeleteS3AccessPolicyCommand: (input: DeleteS3AccessPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
186
194
|
/**
|
|
187
195
|
* serializeAws_restJson1DeleteSequenceStoreCommand
|
|
188
196
|
*/
|
|
@@ -263,6 +271,10 @@ export declare const se_GetRunGroupCommand: (input: GetRunGroupCommandInput, con
|
|
|
263
271
|
* serializeAws_restJson1GetRunTaskCommand
|
|
264
272
|
*/
|
|
265
273
|
export declare const se_GetRunTaskCommand: (input: GetRunTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
274
|
+
/**
|
|
275
|
+
* serializeAws_restJson1GetS3AccessPolicyCommand
|
|
276
|
+
*/
|
|
277
|
+
export declare const se_GetS3AccessPolicyCommand: (input: GetS3AccessPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
266
278
|
/**
|
|
267
279
|
* serializeAws_restJson1GetSequenceStoreCommand
|
|
268
280
|
*/
|
|
@@ -371,6 +383,10 @@ export declare const se_ListVariantStoresCommand: (input: ListVariantStoresComma
|
|
|
371
383
|
* serializeAws_restJson1ListWorkflowsCommand
|
|
372
384
|
*/
|
|
373
385
|
export declare const se_ListWorkflowsCommand: (input: ListWorkflowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
386
|
+
/**
|
|
387
|
+
* serializeAws_restJson1PutS3AccessPolicyCommand
|
|
388
|
+
*/
|
|
389
|
+
export declare const se_PutS3AccessPolicyCommand: (input: PutS3AccessPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
374
390
|
/**
|
|
375
391
|
* serializeAws_restJson1StartAnnotationImportJobCommand
|
|
376
392
|
*/
|
|
@@ -423,6 +439,10 @@ export declare const se_UpdateRunCacheCommand: (input: UpdateRunCacheCommandInpu
|
|
|
423
439
|
* serializeAws_restJson1UpdateRunGroupCommand
|
|
424
440
|
*/
|
|
425
441
|
export declare const se_UpdateRunGroupCommand: (input: UpdateRunGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
442
|
+
/**
|
|
443
|
+
* serializeAws_restJson1UpdateSequenceStoreCommand
|
|
444
|
+
*/
|
|
445
|
+
export declare const se_UpdateSequenceStoreCommand: (input: UpdateSequenceStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
426
446
|
/**
|
|
427
447
|
* serializeAws_restJson1UpdateVariantStoreCommand
|
|
428
448
|
*/
|
|
@@ -531,6 +551,10 @@ export declare const de_DeleteRunCacheCommand: (output: __HttpResponse, context:
|
|
|
531
551
|
* deserializeAws_restJson1DeleteRunGroupCommand
|
|
532
552
|
*/
|
|
533
553
|
export declare const de_DeleteRunGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRunGroupCommandOutput>;
|
|
554
|
+
/**
|
|
555
|
+
* deserializeAws_restJson1DeleteS3AccessPolicyCommand
|
|
556
|
+
*/
|
|
557
|
+
export declare const de_DeleteS3AccessPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteS3AccessPolicyCommandOutput>;
|
|
534
558
|
/**
|
|
535
559
|
* deserializeAws_restJson1DeleteSequenceStoreCommand
|
|
536
560
|
*/
|
|
@@ -611,6 +635,10 @@ export declare const de_GetRunGroupCommand: (output: __HttpResponse, context: __
|
|
|
611
635
|
* deserializeAws_restJson1GetRunTaskCommand
|
|
612
636
|
*/
|
|
613
637
|
export declare const de_GetRunTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRunTaskCommandOutput>;
|
|
638
|
+
/**
|
|
639
|
+
* deserializeAws_restJson1GetS3AccessPolicyCommand
|
|
640
|
+
*/
|
|
641
|
+
export declare const de_GetS3AccessPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetS3AccessPolicyCommandOutput>;
|
|
614
642
|
/**
|
|
615
643
|
* deserializeAws_restJson1GetSequenceStoreCommand
|
|
616
644
|
*/
|
|
@@ -719,6 +747,10 @@ export declare const de_ListVariantStoresCommand: (output: __HttpResponse, conte
|
|
|
719
747
|
* deserializeAws_restJson1ListWorkflowsCommand
|
|
720
748
|
*/
|
|
721
749
|
export declare const de_ListWorkflowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkflowsCommandOutput>;
|
|
750
|
+
/**
|
|
751
|
+
* deserializeAws_restJson1PutS3AccessPolicyCommand
|
|
752
|
+
*/
|
|
753
|
+
export declare const de_PutS3AccessPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutS3AccessPolicyCommandOutput>;
|
|
722
754
|
/**
|
|
723
755
|
* deserializeAws_restJson1StartAnnotationImportJobCommand
|
|
724
756
|
*/
|
|
@@ -771,6 +803,10 @@ export declare const de_UpdateRunCacheCommand: (output: __HttpResponse, context:
|
|
|
771
803
|
* deserializeAws_restJson1UpdateRunGroupCommand
|
|
772
804
|
*/
|
|
773
805
|
export declare const de_UpdateRunGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRunGroupCommandOutput>;
|
|
806
|
+
/**
|
|
807
|
+
* deserializeAws_restJson1UpdateSequenceStoreCommand
|
|
808
|
+
*/
|
|
809
|
+
export declare const de_UpdateSequenceStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSequenceStoreCommandOutput>;
|
|
774
810
|
/**
|
|
775
811
|
* deserializeAws_restJson1UpdateVariantStoreCommand
|
|
776
812
|
*/
|
|
@@ -95,6 +95,10 @@ import {
|
|
|
95
95
|
DeleteRunGroupCommandInput,
|
|
96
96
|
DeleteRunGroupCommandOutput,
|
|
97
97
|
} from "./commands/DeleteRunGroupCommand";
|
|
98
|
+
import {
|
|
99
|
+
DeleteS3AccessPolicyCommandInput,
|
|
100
|
+
DeleteS3AccessPolicyCommandOutput,
|
|
101
|
+
} from "./commands/DeleteS3AccessPolicyCommand";
|
|
98
102
|
import {
|
|
99
103
|
DeleteSequenceStoreCommandInput,
|
|
100
104
|
DeleteSequenceStoreCommandOutput,
|
|
@@ -175,6 +179,10 @@ import {
|
|
|
175
179
|
GetRunTaskCommandInput,
|
|
176
180
|
GetRunTaskCommandOutput,
|
|
177
181
|
} from "./commands/GetRunTaskCommand";
|
|
182
|
+
import {
|
|
183
|
+
GetS3AccessPolicyCommandInput,
|
|
184
|
+
GetS3AccessPolicyCommandOutput,
|
|
185
|
+
} from "./commands/GetS3AccessPolicyCommand";
|
|
178
186
|
import {
|
|
179
187
|
GetSequenceStoreCommandInput,
|
|
180
188
|
GetSequenceStoreCommandOutput,
|
|
@@ -283,6 +291,10 @@ import {
|
|
|
283
291
|
ListWorkflowsCommandInput,
|
|
284
292
|
ListWorkflowsCommandOutput,
|
|
285
293
|
} from "./commands/ListWorkflowsCommand";
|
|
294
|
+
import {
|
|
295
|
+
PutS3AccessPolicyCommandInput,
|
|
296
|
+
PutS3AccessPolicyCommandOutput,
|
|
297
|
+
} from "./commands/PutS3AccessPolicyCommand";
|
|
286
298
|
import {
|
|
287
299
|
StartAnnotationImportJobCommandInput,
|
|
288
300
|
StartAnnotationImportJobCommandOutput,
|
|
@@ -335,6 +347,10 @@ import {
|
|
|
335
347
|
UpdateRunGroupCommandInput,
|
|
336
348
|
UpdateRunGroupCommandOutput,
|
|
337
349
|
} from "./commands/UpdateRunGroupCommand";
|
|
350
|
+
import {
|
|
351
|
+
UpdateSequenceStoreCommandInput,
|
|
352
|
+
UpdateSequenceStoreCommandOutput,
|
|
353
|
+
} from "./commands/UpdateSequenceStoreCommand";
|
|
338
354
|
import {
|
|
339
355
|
UpdateVariantStoreCommandInput,
|
|
340
356
|
UpdateVariantStoreCommandOutput,
|
|
@@ -661,6 +677,19 @@ export interface Omics {
|
|
|
661
677
|
options: __HttpHandlerOptions,
|
|
662
678
|
cb: (err: any, data?: DeleteRunGroupCommandOutput) => void
|
|
663
679
|
): void;
|
|
680
|
+
deleteS3AccessPolicy(
|
|
681
|
+
args: DeleteS3AccessPolicyCommandInput,
|
|
682
|
+
options?: __HttpHandlerOptions
|
|
683
|
+
): Promise<DeleteS3AccessPolicyCommandOutput>;
|
|
684
|
+
deleteS3AccessPolicy(
|
|
685
|
+
args: DeleteS3AccessPolicyCommandInput,
|
|
686
|
+
cb: (err: any, data?: DeleteS3AccessPolicyCommandOutput) => void
|
|
687
|
+
): void;
|
|
688
|
+
deleteS3AccessPolicy(
|
|
689
|
+
args: DeleteS3AccessPolicyCommandInput,
|
|
690
|
+
options: __HttpHandlerOptions,
|
|
691
|
+
cb: (err: any, data?: DeleteS3AccessPolicyCommandOutput) => void
|
|
692
|
+
): void;
|
|
664
693
|
deleteSequenceStore(
|
|
665
694
|
args: DeleteSequenceStoreCommandInput,
|
|
666
695
|
options?: __HttpHandlerOptions
|
|
@@ -921,6 +950,19 @@ export interface Omics {
|
|
|
921
950
|
options: __HttpHandlerOptions,
|
|
922
951
|
cb: (err: any, data?: GetRunTaskCommandOutput) => void
|
|
923
952
|
): void;
|
|
953
|
+
getS3AccessPolicy(
|
|
954
|
+
args: GetS3AccessPolicyCommandInput,
|
|
955
|
+
options?: __HttpHandlerOptions
|
|
956
|
+
): Promise<GetS3AccessPolicyCommandOutput>;
|
|
957
|
+
getS3AccessPolicy(
|
|
958
|
+
args: GetS3AccessPolicyCommandInput,
|
|
959
|
+
cb: (err: any, data?: GetS3AccessPolicyCommandOutput) => void
|
|
960
|
+
): void;
|
|
961
|
+
getS3AccessPolicy(
|
|
962
|
+
args: GetS3AccessPolicyCommandInput,
|
|
963
|
+
options: __HttpHandlerOptions,
|
|
964
|
+
cb: (err: any, data?: GetS3AccessPolicyCommandOutput) => void
|
|
965
|
+
): void;
|
|
924
966
|
getSequenceStore(
|
|
925
967
|
args: GetSequenceStoreCommandInput,
|
|
926
968
|
options?: __HttpHandlerOptions
|
|
@@ -1282,6 +1324,19 @@ export interface Omics {
|
|
|
1282
1324
|
options: __HttpHandlerOptions,
|
|
1283
1325
|
cb: (err: any, data?: ListWorkflowsCommandOutput) => void
|
|
1284
1326
|
): void;
|
|
1327
|
+
putS3AccessPolicy(
|
|
1328
|
+
args: PutS3AccessPolicyCommandInput,
|
|
1329
|
+
options?: __HttpHandlerOptions
|
|
1330
|
+
): Promise<PutS3AccessPolicyCommandOutput>;
|
|
1331
|
+
putS3AccessPolicy(
|
|
1332
|
+
args: PutS3AccessPolicyCommandInput,
|
|
1333
|
+
cb: (err: any, data?: PutS3AccessPolicyCommandOutput) => void
|
|
1334
|
+
): void;
|
|
1335
|
+
putS3AccessPolicy(
|
|
1336
|
+
args: PutS3AccessPolicyCommandInput,
|
|
1337
|
+
options: __HttpHandlerOptions,
|
|
1338
|
+
cb: (err: any, data?: PutS3AccessPolicyCommandOutput) => void
|
|
1339
|
+
): void;
|
|
1285
1340
|
startAnnotationImportJob(
|
|
1286
1341
|
args: StartAnnotationImportJobCommandInput,
|
|
1287
1342
|
options?: __HttpHandlerOptions
|
|
@@ -1451,6 +1506,19 @@ export interface Omics {
|
|
|
1451
1506
|
options: __HttpHandlerOptions,
|
|
1452
1507
|
cb: (err: any, data?: UpdateRunGroupCommandOutput) => void
|
|
1453
1508
|
): void;
|
|
1509
|
+
updateSequenceStore(
|
|
1510
|
+
args: UpdateSequenceStoreCommandInput,
|
|
1511
|
+
options?: __HttpHandlerOptions
|
|
1512
|
+
): Promise<UpdateSequenceStoreCommandOutput>;
|
|
1513
|
+
updateSequenceStore(
|
|
1514
|
+
args: UpdateSequenceStoreCommandInput,
|
|
1515
|
+
cb: (err: any, data?: UpdateSequenceStoreCommandOutput) => void
|
|
1516
|
+
): void;
|
|
1517
|
+
updateSequenceStore(
|
|
1518
|
+
args: UpdateSequenceStoreCommandInput,
|
|
1519
|
+
options: __HttpHandlerOptions,
|
|
1520
|
+
cb: (err: any, data?: UpdateSequenceStoreCommandOutput) => void
|
|
1521
|
+
): void;
|
|
1454
1522
|
updateVariantStore(
|
|
1455
1523
|
args: UpdateVariantStoreCommandInput,
|
|
1456
1524
|
options?: __HttpHandlerOptions
|