@aws-sdk/client-omics 3.876.0 → 3.879.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 +7 -0
- package/dist-es/protocols/Aws_restJson1.js +7 -0
- package/dist-types/commands/AbortMultipartReadSetUploadCommand.d.ts +1 -1
- package/dist-types/commands/BatchDeleteReadSetCommand.d.ts +1 -1
- package/dist-types/commands/CompleteMultipartReadSetUploadCommand.d.ts +1 -1
- package/dist-types/commands/CreateMultipartReadSetUploadCommand.d.ts +1 -1
- package/dist-types/commands/CreateReferenceStoreCommand.d.ts +1 -1
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkflowCommand.d.ts +18 -1
- package/dist-types/commands/CreateWorkflowVersionCommand.d.ts +18 -1
- package/dist-types/commands/DeleteReferenceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteReferenceStoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSequenceStoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +1 -1
- package/dist-types/commands/GetReadSetActivationJobCommand.d.ts +1 -1
- package/dist-types/commands/GetReadSetCommand.d.ts +1 -1
- package/dist-types/commands/GetReadSetExportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetReadSetImportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetReadSetMetadataCommand.d.ts +1 -1
- package/dist-types/commands/GetReferenceCommand.d.ts +1 -1
- package/dist-types/commands/GetReferenceImportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetReferenceMetadataCommand.d.ts +1 -1
- package/dist-types/commands/GetRunTaskCommand.d.ts +5 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkflowVersionCommand.d.ts +16 -0
- package/dist-types/commands/ListMultipartReadSetUploadsCommand.d.ts +1 -1
- package/dist-types/commands/ListReadSetActivationJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListReadSetExportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListReadSetImportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListReadSetUploadPartsCommand.d.ts +1 -1
- package/dist-types/commands/ListReadSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListReferenceImportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListReferenceStoresCommand.d.ts +1 -1
- package/dist-types/commands/ListReferencesCommand.d.ts +1 -1
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +1 -1
- package/dist-types/commands/StartReadSetActivationJobCommand.d.ts +1 -1
- package/dist-types/commands/StartReadSetExportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartReadSetImportJobCommand.d.ts +2 -2
- package/dist-types/commands/StartReferenceImportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartRunCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSequenceStoreCommand.d.ts +1 -1
- package/dist-types/commands/UploadReadSetPartCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +136 -187
- package/dist-types/models/models_1.d.ts +169 -4
- package/dist-types/ts3.4/commands/StartReadSetImportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSequenceStoreCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +27 -38
- package/dist-types/ts3.4/models/models_1.d.ts +44 -0
- package/package.json +12 -12
|
@@ -28,7 +28,7 @@ declare const UploadReadSetPartCommand_base: {
|
|
|
28
28
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
29
|
};
|
|
30
30
|
/**
|
|
31
|
-
* <p>
|
|
31
|
+
* <p>Uploads a specific part of a read set into a sequence store. When you a upload a read set part with a part number that already exists, the new part replaces the existing one. This operation returns a JSON formatted response containing a string identifier that is used to confirm that parts are being added to the intended upload.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/synchronous-uploads.html">Direct upload to a sequence store</a> in the <i>Amazon Web Services HealthOmics User Guide</i>.</p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -1983,6 +1983,64 @@ export interface CompleteMultipartReadSetUploadResponse {
|
|
|
1983
1983
|
*/
|
|
1984
1984
|
readSetId: string | undefined;
|
|
1985
1985
|
}
|
|
1986
|
+
/**
|
|
1987
|
+
* <p>Specifies image mappings that workflow tasks can use. For example, you can replace all the task references of a public image to use an equivalent image in your private ECR repository. You can use image mappings with upstream registries that don't support pull through cache. You need to manually synchronize the upstream registry with your private repository. </p>
|
|
1988
|
+
* @public
|
|
1989
|
+
*/
|
|
1990
|
+
export interface ImageMapping {
|
|
1991
|
+
/**
|
|
1992
|
+
* <p>Specifies the URI of the source image in the upstream registry.</p>
|
|
1993
|
+
* @public
|
|
1994
|
+
*/
|
|
1995
|
+
sourceImage?: string | undefined;
|
|
1996
|
+
/**
|
|
1997
|
+
* <p>Specifies the URI of the corresponding image in the private ECR registry.</p>
|
|
1998
|
+
* @public
|
|
1999
|
+
*/
|
|
2000
|
+
destinationImage?: string | undefined;
|
|
2001
|
+
}
|
|
2002
|
+
/**
|
|
2003
|
+
* <p>If you are using the ECR pull through cache feature, the registry mapping maps between the ECR repository and the upstream registry where container images are pulled and synchronized.</p>
|
|
2004
|
+
* @public
|
|
2005
|
+
*/
|
|
2006
|
+
export interface RegistryMapping {
|
|
2007
|
+
/**
|
|
2008
|
+
* <p>The URI of the upstream registry.</p>
|
|
2009
|
+
* @public
|
|
2010
|
+
*/
|
|
2011
|
+
upstreamRegistryUrl?: string | undefined;
|
|
2012
|
+
/**
|
|
2013
|
+
* <p>The repository prefix to use in the ECR private repository.</p>
|
|
2014
|
+
* @public
|
|
2015
|
+
*/
|
|
2016
|
+
ecrRepositoryPrefix?: string | undefined;
|
|
2017
|
+
/**
|
|
2018
|
+
* <p>The repository prefix of the corresponding repository in the upstream registry.</p>
|
|
2019
|
+
* @public
|
|
2020
|
+
*/
|
|
2021
|
+
upstreamRepositoryPrefix?: string | undefined;
|
|
2022
|
+
/**
|
|
2023
|
+
* <p>Account ID of the account that owns the upstream container image.</p>
|
|
2024
|
+
* @public
|
|
2025
|
+
*/
|
|
2026
|
+
ecrAccountId?: string | undefined;
|
|
2027
|
+
}
|
|
2028
|
+
/**
|
|
2029
|
+
* <p>Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries. For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html">Container images</a> in the <i>Amazon Web Services HealthOmics User Guide</i>. </p>
|
|
2030
|
+
* @public
|
|
2031
|
+
*/
|
|
2032
|
+
export interface ContainerRegistryMap {
|
|
2033
|
+
/**
|
|
2034
|
+
* <p>Mapping that provides the ECR repository path where upstream container images are pulled and synchronized.</p>
|
|
2035
|
+
* @public
|
|
2036
|
+
*/
|
|
2037
|
+
registryMappings?: RegistryMapping[] | undefined;
|
|
2038
|
+
/**
|
|
2039
|
+
* <p>Image mappings specify path mappings between the ECR private repository and their corresponding external repositories.</p>
|
|
2040
|
+
* @public
|
|
2041
|
+
*/
|
|
2042
|
+
imageMappings?: ImageMapping[] | undefined;
|
|
2043
|
+
}
|
|
1986
2044
|
/**
|
|
1987
2045
|
* @public
|
|
1988
2046
|
* @enum
|
|
@@ -2359,32 +2417,32 @@ export interface CreateSequenceStoreRequest {
|
|
|
2359
2417
|
*/
|
|
2360
2418
|
sseConfig?: SseConfig | undefined;
|
|
2361
2419
|
/**
|
|
2362
|
-
* <p>Tags for the store.</p>
|
|
2420
|
+
* <p>Tags for the store. You can configure up to 50 tags.</p>
|
|
2363
2421
|
* @public
|
|
2364
2422
|
*/
|
|
2365
2423
|
tags?: Record<string, string> | undefined;
|
|
2366
2424
|
/**
|
|
2367
|
-
* <p>
|
|
2425
|
+
* <p>An idempotency token used to dedupe retry requests so that duplicate runs are not created.</p>
|
|
2368
2426
|
* @public
|
|
2369
2427
|
*/
|
|
2370
2428
|
clientToken?: string | undefined;
|
|
2371
2429
|
/**
|
|
2372
|
-
* <p>An S3 location that is used to store files that have failed a direct upload.</p>
|
|
2430
|
+
* <p>An S3 location that is used to store files that have failed a direct upload. You can add or change the <code>fallbackLocation</code> after creating a sequence store. This is not required if you are uploading files from a different S3 bucket.</p>
|
|
2373
2431
|
* @public
|
|
2374
2432
|
*/
|
|
2375
2433
|
fallbackLocation?: string | undefined;
|
|
2376
2434
|
/**
|
|
2377
|
-
* <p>The ETag algorithm family to use for ingested read sets
|
|
2435
|
+
* <p>The ETag algorithm family to use for ingested read sets. The default value is MD5up. For more information on ETags, see <a href="https://docs.aws.amazon.com/omics/latest/dev/etags-and-provenance.html">ETags and data provenance</a> in the <i>Amazon Web Services HealthOmics User Guide</i>.</p>
|
|
2378
2436
|
* @public
|
|
2379
2437
|
*/
|
|
2380
2438
|
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
2381
2439
|
/**
|
|
2382
|
-
* <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
|
|
2440
|
+
* <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store. These tags can be used as input to add metadata to your read sets.</p>
|
|
2383
2441
|
* @public
|
|
2384
2442
|
*/
|
|
2385
2443
|
propagatedSetLevelTags?: string[] | undefined;
|
|
2386
2444
|
/**
|
|
2387
|
-
* <p>S3 access configuration parameters</p>
|
|
2445
|
+
* <p>S3 access configuration parameters. This specifies the parameters needed to access logs stored in S3 buckets. The S3 bucket must be in the same region and account as the sequence store. </p>
|
|
2388
2446
|
* @public
|
|
2389
2447
|
*/
|
|
2390
2448
|
s3AccessConfig?: S3AccessConfig | undefined;
|
|
@@ -2450,7 +2508,7 @@ export interface CreateSequenceStoreResponse {
|
|
|
2450
2508
|
*/
|
|
2451
2509
|
description?: string | undefined;
|
|
2452
2510
|
/**
|
|
2453
|
-
* <p>
|
|
2511
|
+
* <p>Server-side encryption (SSE) settings for the store. This contains the KMS key ARN that is used to encrypt read set objects.</p>
|
|
2454
2512
|
* @public
|
|
2455
2513
|
*/
|
|
2456
2514
|
sseConfig?: SseConfig | undefined;
|
|
@@ -2750,6 +2808,16 @@ export interface CreateWorkflowRequest {
|
|
|
2750
2808
|
* @public
|
|
2751
2809
|
*/
|
|
2752
2810
|
storageType?: StorageType | undefined;
|
|
2811
|
+
/**
|
|
2812
|
+
* <p>(Optional) Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries. For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html">Container images</a> in the <i>Amazon Web Services HealthOmics User Guide</i>. </p>
|
|
2813
|
+
* @public
|
|
2814
|
+
*/
|
|
2815
|
+
containerRegistryMap?: ContainerRegistryMap | undefined;
|
|
2816
|
+
/**
|
|
2817
|
+
* <p>(Optional) URI of the S3 location for the registry mapping file.</p>
|
|
2818
|
+
* @public
|
|
2819
|
+
*/
|
|
2820
|
+
containerRegistryMapUri?: string | undefined;
|
|
2753
2821
|
/**
|
|
2754
2822
|
* <p>The markdown content for the workflow's README file. This provides documentation and usage information for users of the workflow.</p>
|
|
2755
2823
|
* @public
|
|
@@ -2832,7 +2900,7 @@ export interface CreateWorkflowResponse {
|
|
|
2832
2900
|
*/
|
|
2833
2901
|
export interface CreateWorkflowVersionRequest {
|
|
2834
2902
|
/**
|
|
2835
|
-
* <p>The ID of the workflow where you are creating the new version.</p>
|
|
2903
|
+
* <p>The ID of the workflow where you are creating the new version. The <code>workflowId</code> is not the UUID.</p>
|
|
2836
2904
|
* @public
|
|
2837
2905
|
*/
|
|
2838
2906
|
workflowId: string | undefined;
|
|
@@ -2842,12 +2910,12 @@ export interface CreateWorkflowVersionRequest {
|
|
|
2842
2910
|
*/
|
|
2843
2911
|
versionName: string | undefined;
|
|
2844
2912
|
/**
|
|
2845
|
-
* <p>A
|
|
2913
|
+
* <p>A ZIP archive containing the main workflow definition file and dependencies that it imports for this workflow version. You can use a file with a ://fileb prefix instead of the Base64 string. For more information, see Workflow definition requirements in the <i>Amazon Web Services HealthOmics User Guide</i>.</p>
|
|
2846
2914
|
* @public
|
|
2847
2915
|
*/
|
|
2848
2916
|
definitionZip?: Uint8Array | undefined;
|
|
2849
2917
|
/**
|
|
2850
|
-
* <p>The URI
|
|
2918
|
+
* <p>The S3 URI of a definition for this workflow version. The S3 bucket must be in the same region as this workflow version.</p>
|
|
2851
2919
|
* @public
|
|
2852
2920
|
*/
|
|
2853
2921
|
definitionUri?: string | undefined;
|
|
@@ -2862,37 +2930,37 @@ export interface CreateWorkflowVersionRequest {
|
|
|
2862
2930
|
*/
|
|
2863
2931
|
description?: string | undefined;
|
|
2864
2932
|
/**
|
|
2865
|
-
* <p>The workflow engine for this workflow version.</p>
|
|
2933
|
+
* <p>The workflow engine for this workflow version. This is only required if you have workflow definition files from more than one engine in your zip file. Otherwise, the service can detect the engine automatically from your workflow definition.</p>
|
|
2866
2934
|
* @public
|
|
2867
2935
|
*/
|
|
2868
2936
|
engine?: WorkflowEngine | undefined;
|
|
2869
2937
|
/**
|
|
2870
|
-
* <p>The path of the main definition file for this workflow version
|
|
2938
|
+
* <p>The path of the main definition file for this workflow version. This parameter is not required if the ZIP archive contains only one workflow definition file, or if the main definition file is named “main”. An example path is: <code>workflow-definition/main-file.wdl</code>. </p>
|
|
2871
2939
|
* @public
|
|
2872
2940
|
*/
|
|
2873
2941
|
main?: string | undefined;
|
|
2874
2942
|
/**
|
|
2875
|
-
* <p>
|
|
2943
|
+
* <p>A parameter template for this workflow version. If this field is blank, Amazon Web Services HealthOmics will automatically parse the parameter template values from your workflow definition file. To override these service generated default values, provide a parameter template. To view an example of a parameter template, see <a href="https://docs.aws.amazon.com/omics/latest/dev/parameter-templates.html">Parameter template files</a> in the <i>Amazon Web Services HealthOmics User Guide</i>.</p>
|
|
2876
2944
|
* @public
|
|
2877
2945
|
*/
|
|
2878
2946
|
parameterTemplate?: Record<string, WorkflowParameter> | undefined;
|
|
2879
2947
|
/**
|
|
2880
|
-
* <p>
|
|
2948
|
+
* <p>An idempotency token to ensure that duplicate workflows are not created when Amazon Web Services HealthOmics submits retry requests.</p>
|
|
2881
2949
|
* @public
|
|
2882
2950
|
*/
|
|
2883
2951
|
requestId?: string | undefined;
|
|
2884
2952
|
/**
|
|
2885
|
-
* <p>The default storage type for runs that use this workflow.
|
|
2953
|
+
* <p>The default storage type for runs that use this workflow version. The <code>storageType</code> can be overridden at run time. <code>DYNAMIC</code> storage dynamically scales the storage up or down, based on file system utilization. STATIC storage allocates a fixed amount of storage. For more information about dynamic and static storage types, see <a href="https://docs.aws.amazon.com/omics/latest/dev/workflows-run-types.html">Run storage types</a> in the <i>Amazon Web Services HealthOmics User Guide</i>.</p>
|
|
2886
2954
|
* @public
|
|
2887
2955
|
*/
|
|
2888
2956
|
storageType?: StorageType | undefined;
|
|
2889
2957
|
/**
|
|
2890
|
-
* <p>The default static storage capacity (in gibibytes) for runs that use this workflow
|
|
2958
|
+
* <p>The default static storage capacity (in gibibytes) for runs that use this workflow version. The <code>storageCapacity</code> can be overwritten at run time. The storage capacity is not required for runs with a <code>DYNAMIC</code> storage type.</p>
|
|
2891
2959
|
* @public
|
|
2892
2960
|
*/
|
|
2893
2961
|
storageCapacity?: number | undefined;
|
|
2894
2962
|
/**
|
|
2895
|
-
* <p>
|
|
2963
|
+
* <p>Tags for this workflow version. You can define up to 50 tags for the workflow. For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/add-a-tag.html">Adding a tag</a> in the <i>Amazon Web Services HealthOmics User Guide</i>.</p>
|
|
2896
2964
|
* @public
|
|
2897
2965
|
*/
|
|
2898
2966
|
tags?: Record<string, string> | undefined;
|
|
@@ -2901,6 +2969,16 @@ export interface CreateWorkflowVersionRequest {
|
|
|
2901
2969
|
* @public
|
|
2902
2970
|
*/
|
|
2903
2971
|
workflowBucketOwnerId?: string | undefined;
|
|
2972
|
+
/**
|
|
2973
|
+
* <p>(Optional) Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries. For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html">Container images</a> in the <i>Amazon Web Services HealthOmics User Guide</i>. </p>
|
|
2974
|
+
* @public
|
|
2975
|
+
*/
|
|
2976
|
+
containerRegistryMap?: ContainerRegistryMap | undefined;
|
|
2977
|
+
/**
|
|
2978
|
+
* <p>(Optional) URI of the S3 location for the registry mapping file.</p>
|
|
2979
|
+
* @public
|
|
2980
|
+
*/
|
|
2981
|
+
containerRegistryMapUri?: string | undefined;
|
|
2904
2982
|
/**
|
|
2905
2983
|
* <p>The markdown content for the workflow version's README file. This provides documentation and usage information for users of this specific workflow version.</p>
|
|
2906
2984
|
* @public
|
|
@@ -4700,6 +4778,27 @@ export interface GetRunTaskRequest {
|
|
|
4700
4778
|
*/
|
|
4701
4779
|
taskId: string | undefined;
|
|
4702
4780
|
}
|
|
4781
|
+
/**
|
|
4782
|
+
* <p>Information about the container image used for a task.</p>
|
|
4783
|
+
* @public
|
|
4784
|
+
*/
|
|
4785
|
+
export interface ImageDetails {
|
|
4786
|
+
/**
|
|
4787
|
+
* <p>The URI of the container image.</p>
|
|
4788
|
+
* @public
|
|
4789
|
+
*/
|
|
4790
|
+
image?: string | undefined;
|
|
4791
|
+
/**
|
|
4792
|
+
* <p>The container image digest. If the image URI was transformed, this will be the digest of the container image referenced by the transformed URI.</p>
|
|
4793
|
+
* @public
|
|
4794
|
+
*/
|
|
4795
|
+
imageDigest?: string | undefined;
|
|
4796
|
+
/**
|
|
4797
|
+
* <p>URI of the source registry. If the URI is from a third-party registry, Amazon Web Services HealthOmics transforms the URI to the corresponding ECR path, using the pull-through cache mapping rules.</p>
|
|
4798
|
+
* @public
|
|
4799
|
+
*/
|
|
4800
|
+
sourceImage?: string | undefined;
|
|
4801
|
+
}
|
|
4703
4802
|
/**
|
|
4704
4803
|
* @public
|
|
4705
4804
|
* @enum
|
|
@@ -4796,6 +4895,11 @@ export interface GetRunTaskResponse {
|
|
|
4796
4895
|
* @public
|
|
4797
4896
|
*/
|
|
4798
4897
|
failureReason?: string | undefined;
|
|
4898
|
+
/**
|
|
4899
|
+
* <p>Details about the container image that this task uses.</p>
|
|
4900
|
+
* @public
|
|
4901
|
+
*/
|
|
4902
|
+
imageDetails?: ImageDetails | undefined;
|
|
4799
4903
|
}
|
|
4800
4904
|
/**
|
|
4801
4905
|
* @public
|
|
@@ -5307,6 +5411,11 @@ export interface GetWorkflowResponse {
|
|
|
5307
5411
|
* @public
|
|
5308
5412
|
*/
|
|
5309
5413
|
uuid?: string | undefined;
|
|
5414
|
+
/**
|
|
5415
|
+
* <p>The registry map that this workflow is using.</p>
|
|
5416
|
+
* @public
|
|
5417
|
+
*/
|
|
5418
|
+
containerRegistryMap?: ContainerRegistryMap | undefined;
|
|
5310
5419
|
/**
|
|
5311
5420
|
* <p>The README content for the workflow, providing documentation and usage information.</p>
|
|
5312
5421
|
* @public
|
|
@@ -5328,7 +5437,7 @@ export interface GetWorkflowResponse {
|
|
|
5328
5437
|
*/
|
|
5329
5438
|
export interface GetWorkflowVersionRequest {
|
|
5330
5439
|
/**
|
|
5331
|
-
* <p>The workflow's ID.</p>
|
|
5440
|
+
* <p>The workflow's ID. The <code>workflowId</code> is not the UUID.</p>
|
|
5332
5441
|
* @public
|
|
5333
5442
|
*/
|
|
5334
5443
|
workflowId: string | undefined;
|
|
@@ -5348,7 +5457,7 @@ export interface GetWorkflowVersionRequest {
|
|
|
5348
5457
|
*/
|
|
5349
5458
|
export?: WorkflowExport[] | undefined;
|
|
5350
5459
|
/**
|
|
5351
|
-
* <p>
|
|
5460
|
+
* <p>The 12-digit account ID of the workflow owner. The workflow owner ID can be retrieved using the <code>GetShare</code> API operation. If you are the workflow owner, you do not need to include this ID.</p>
|
|
5352
5461
|
* @public
|
|
5353
5462
|
*/
|
|
5354
5463
|
workflowOwnerId?: string | undefined;
|
|
@@ -5457,6 +5566,11 @@ export interface GetWorkflowVersionResponse {
|
|
|
5457
5566
|
* @public
|
|
5458
5567
|
*/
|
|
5459
5568
|
workflowBucketOwnerId?: string | undefined;
|
|
5569
|
+
/**
|
|
5570
|
+
* <p>The registry map that this workflow version uses.</p>
|
|
5571
|
+
* @public
|
|
5572
|
+
*/
|
|
5573
|
+
containerRegistryMap?: ContainerRegistryMap | undefined;
|
|
5460
5574
|
/**
|
|
5461
5575
|
* <p>The README content for the workflow version, providing documentation and usage information specific to this version.</p>
|
|
5462
5576
|
* @public
|
|
@@ -7215,7 +7329,7 @@ export interface ListWorkflowsResponse {
|
|
|
7215
7329
|
*/
|
|
7216
7330
|
export interface ListWorkflowVersionsRequest {
|
|
7217
7331
|
/**
|
|
7218
|
-
* <p>The workflow's ID.</p>
|
|
7332
|
+
* <p>The workflow's ID. The <code>workflowId</code> is not the UUID.</p>
|
|
7219
7333
|
* @public
|
|
7220
7334
|
*/
|
|
7221
7335
|
workflowId: string | undefined;
|
|
@@ -7225,7 +7339,7 @@ export interface ListWorkflowVersionsRequest {
|
|
|
7225
7339
|
*/
|
|
7226
7340
|
type?: WorkflowType | undefined;
|
|
7227
7341
|
/**
|
|
7228
|
-
* <p>
|
|
7342
|
+
* <p>The 12-digit account ID of the workflow owner. The workflow owner ID can be retrieved using the <code>GetShare</code> API operation. If you are the workflow owner, you do not need to include this ID.</p>
|
|
7229
7343
|
* @public
|
|
7230
7344
|
*/
|
|
7231
7345
|
workflowOwnerId?: string | undefined;
|
|
@@ -7545,7 +7659,7 @@ export interface StartRunRequest {
|
|
|
7545
7659
|
* <p>An output S3 URI for the run. The S3 bucket must be in the same region as the workflow. The role ARN must have permission to write to this S3 bucket.</p>
|
|
7546
7660
|
* @public
|
|
7547
7661
|
*/
|
|
7548
|
-
outputUri
|
|
7662
|
+
outputUri: string | undefined;
|
|
7549
7663
|
/**
|
|
7550
7664
|
* <p>A log level for the run.</p>
|
|
7551
7665
|
* @public
|
|
@@ -7784,171 +7898,6 @@ export interface StartReadSetImportJobSourceItem {
|
|
|
7784
7898
|
*/
|
|
7785
7899
|
tags?: Record<string, string> | undefined;
|
|
7786
7900
|
}
|
|
7787
|
-
/**
|
|
7788
|
-
* @public
|
|
7789
|
-
*/
|
|
7790
|
-
export interface StartReadSetImportJobRequest {
|
|
7791
|
-
/**
|
|
7792
|
-
* <p>The read set's sequence store ID.</p>
|
|
7793
|
-
* @public
|
|
7794
|
-
*/
|
|
7795
|
-
sequenceStoreId: string | undefined;
|
|
7796
|
-
/**
|
|
7797
|
-
* <p>A service role for the job.</p>
|
|
7798
|
-
* @public
|
|
7799
|
-
*/
|
|
7800
|
-
roleArn: string | undefined;
|
|
7801
|
-
/**
|
|
7802
|
-
* <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
|
|
7803
|
-
* @public
|
|
7804
|
-
*/
|
|
7805
|
-
clientToken?: string | undefined;
|
|
7806
|
-
/**
|
|
7807
|
-
* <p>The job's source files.</p>
|
|
7808
|
-
* @public
|
|
7809
|
-
*/
|
|
7810
|
-
sources: StartReadSetImportJobSourceItem[] | undefined;
|
|
7811
|
-
}
|
|
7812
|
-
/**
|
|
7813
|
-
* @public
|
|
7814
|
-
*/
|
|
7815
|
-
export interface StartReadSetImportJobResponse {
|
|
7816
|
-
/**
|
|
7817
|
-
* <p>The job's ID.</p>
|
|
7818
|
-
* @public
|
|
7819
|
-
*/
|
|
7820
|
-
id: string | undefined;
|
|
7821
|
-
/**
|
|
7822
|
-
* <p>The read set's sequence store ID.</p>
|
|
7823
|
-
* @public
|
|
7824
|
-
*/
|
|
7825
|
-
sequenceStoreId: string | undefined;
|
|
7826
|
-
/**
|
|
7827
|
-
* <p>The job's service role ARN.</p>
|
|
7828
|
-
* @public
|
|
7829
|
-
*/
|
|
7830
|
-
roleArn: string | undefined;
|
|
7831
|
-
/**
|
|
7832
|
-
* <p>The job's status.</p>
|
|
7833
|
-
* @public
|
|
7834
|
-
*/
|
|
7835
|
-
status: ReadSetImportJobStatus | undefined;
|
|
7836
|
-
/**
|
|
7837
|
-
* <p>When the job was created.</p>
|
|
7838
|
-
* @public
|
|
7839
|
-
*/
|
|
7840
|
-
creationTime: Date | undefined;
|
|
7841
|
-
}
|
|
7842
|
-
/**
|
|
7843
|
-
* @public
|
|
7844
|
-
*/
|
|
7845
|
-
export interface UpdateSequenceStoreRequest {
|
|
7846
|
-
/**
|
|
7847
|
-
* <p>The ID of the sequence store.</p>
|
|
7848
|
-
* @public
|
|
7849
|
-
*/
|
|
7850
|
-
id: string | undefined;
|
|
7851
|
-
/**
|
|
7852
|
-
* <p>A name for the sequence store.</p>
|
|
7853
|
-
* @public
|
|
7854
|
-
*/
|
|
7855
|
-
name?: string | undefined;
|
|
7856
|
-
/**
|
|
7857
|
-
* <p>A description for the sequence store.</p>
|
|
7858
|
-
* @public
|
|
7859
|
-
*/
|
|
7860
|
-
description?: string | undefined;
|
|
7861
|
-
/**
|
|
7862
|
-
* <p>To ensure that requests don't run multiple times, specify a unique token for each request.</p>
|
|
7863
|
-
* @public
|
|
7864
|
-
*/
|
|
7865
|
-
clientToken?: string | undefined;
|
|
7866
|
-
/**
|
|
7867
|
-
* <p>The S3 URI of a bucket and folder to store Read Sets that fail to upload.</p>
|
|
7868
|
-
* @public
|
|
7869
|
-
*/
|
|
7870
|
-
fallbackLocation?: string | undefined;
|
|
7871
|
-
/**
|
|
7872
|
-
* <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
|
|
7873
|
-
* @public
|
|
7874
|
-
*/
|
|
7875
|
-
propagatedSetLevelTags?: string[] | undefined;
|
|
7876
|
-
/**
|
|
7877
|
-
* <p>S3 access configuration parameters.</p>
|
|
7878
|
-
* @public
|
|
7879
|
-
*/
|
|
7880
|
-
s3AccessConfig?: S3AccessConfig | undefined;
|
|
7881
|
-
}
|
|
7882
|
-
/**
|
|
7883
|
-
* @public
|
|
7884
|
-
*/
|
|
7885
|
-
export interface UpdateSequenceStoreResponse {
|
|
7886
|
-
/**
|
|
7887
|
-
* <p>The ID of the sequence store.</p>
|
|
7888
|
-
* @public
|
|
7889
|
-
*/
|
|
7890
|
-
id: string | undefined;
|
|
7891
|
-
/**
|
|
7892
|
-
* <p>The ARN of the sequence store.</p>
|
|
7893
|
-
* @public
|
|
7894
|
-
*/
|
|
7895
|
-
arn: string | undefined;
|
|
7896
|
-
/**
|
|
7897
|
-
* <p>The name of the sequence store.</p>
|
|
7898
|
-
* @public
|
|
7899
|
-
*/
|
|
7900
|
-
name?: string | undefined;
|
|
7901
|
-
/**
|
|
7902
|
-
* <p>Description of the sequence store.</p>
|
|
7903
|
-
* @public
|
|
7904
|
-
*/
|
|
7905
|
-
description?: string | undefined;
|
|
7906
|
-
/**
|
|
7907
|
-
* <p>Server-side encryption (SSE) settings for a store.</p>
|
|
7908
|
-
* @public
|
|
7909
|
-
*/
|
|
7910
|
-
sseConfig?: SseConfig | undefined;
|
|
7911
|
-
/**
|
|
7912
|
-
* <p>The time when the store was created.</p>
|
|
7913
|
-
* @public
|
|
7914
|
-
*/
|
|
7915
|
-
creationTime: Date | undefined;
|
|
7916
|
-
/**
|
|
7917
|
-
* <p>The last-updated time of the Sequence Store.</p>
|
|
7918
|
-
* @public
|
|
7919
|
-
*/
|
|
7920
|
-
updateTime?: Date | undefined;
|
|
7921
|
-
/**
|
|
7922
|
-
* <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
|
|
7923
|
-
* @public
|
|
7924
|
-
*/
|
|
7925
|
-
propagatedSetLevelTags?: string[] | undefined;
|
|
7926
|
-
/**
|
|
7927
|
-
* <p>The status of the sequence store.</p>
|
|
7928
|
-
* @public
|
|
7929
|
-
*/
|
|
7930
|
-
status?: SequenceStoreStatus | undefined;
|
|
7931
|
-
/**
|
|
7932
|
-
* <p>The status message of the sequence store.</p>
|
|
7933
|
-
* @public
|
|
7934
|
-
*/
|
|
7935
|
-
statusMessage?: string | undefined;
|
|
7936
|
-
/**
|
|
7937
|
-
* <p>The S3 URI of a bucket and folder to store Read Sets that fail to upload.</p>
|
|
7938
|
-
* @public
|
|
7939
|
-
*/
|
|
7940
|
-
fallbackLocation?: string | undefined;
|
|
7941
|
-
/**
|
|
7942
|
-
* <p>The S3 access metadata of the sequence store.</p>
|
|
7943
|
-
* @public
|
|
7944
|
-
*/
|
|
7945
|
-
s3Access?: SequenceStoreS3Access | undefined;
|
|
7946
|
-
/**
|
|
7947
|
-
* <p>The ETag algorithm family to use on ingested read sets.</p>
|
|
7948
|
-
* @public
|
|
7949
|
-
*/
|
|
7950
|
-
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
7951
|
-
}
|
|
7952
7901
|
/**
|
|
7953
7902
|
* @internal
|
|
7954
7903
|
*/
|