@aws-sdk/client-omics 3.936.0 → 3.939.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.
@@ -1,166 +0,0 @@
1
- import { ReferenceItem, StorageType, StoreStatus, VariantImportItemSource } from "./models_0";
2
- /**
3
- * @public
4
- */
5
- export interface StartVariantImportRequest {
6
- /**
7
- * <p>The destination variant store for the job.</p>
8
- * @public
9
- */
10
- destinationName: string | undefined;
11
- /**
12
- * <p>A service role for the job.</p>
13
- * @public
14
- */
15
- roleArn: string | undefined;
16
- /**
17
- * <p>Items to import.</p>
18
- * @public
19
- */
20
- items: VariantImportItemSource[] | undefined;
21
- /**
22
- * <p>The job's left normalization setting.</p>
23
- * @public
24
- */
25
- runLeftNormalization?: boolean | undefined;
26
- /**
27
- * <p>The annotation schema generated by the parsed annotation data.</p>
28
- * @public
29
- */
30
- annotationFields?: Record<string, string> | undefined;
31
- }
32
- /**
33
- * @public
34
- */
35
- export interface StartVariantImportResponse {
36
- /**
37
- * <p>The job's ID.</p>
38
- * @public
39
- */
40
- jobId: string | undefined;
41
- }
42
- /**
43
- * @public
44
- */
45
- export interface UpdateVariantStoreRequest {
46
- /**
47
- * <p>A name for the store.</p>
48
- * @public
49
- */
50
- name: string | undefined;
51
- /**
52
- * <p>A description for the store.</p>
53
- * @public
54
- */
55
- description?: string | undefined;
56
- }
57
- /**
58
- * @public
59
- */
60
- export interface UpdateVariantStoreResponse {
61
- /**
62
- * <p>The store's ID.</p>
63
- * @public
64
- */
65
- id: string | undefined;
66
- /**
67
- * <p>The store's genome reference.</p>
68
- * @public
69
- */
70
- reference: ReferenceItem | undefined;
71
- /**
72
- * <p>The store's status.</p>
73
- * @public
74
- */
75
- status: StoreStatus | undefined;
76
- /**
77
- * <p>The store's name.</p>
78
- * @public
79
- */
80
- name: string | undefined;
81
- /**
82
- * <p>The store's description.</p>
83
- * @public
84
- */
85
- description: string | undefined;
86
- /**
87
- * <p>When the store was created.</p>
88
- * @public
89
- */
90
- creationTime: Date | undefined;
91
- /**
92
- * <p>When the store was updated.</p>
93
- * @public
94
- */
95
- updateTime: Date | undefined;
96
- }
97
- /**
98
- * @public
99
- */
100
- export interface UpdateWorkflowRequest {
101
- /**
102
- * <p>The workflow's ID.</p>
103
- * @public
104
- */
105
- id: string | undefined;
106
- /**
107
- * <p>A name for the workflow.</p>
108
- * @public
109
- */
110
- name?: string | undefined;
111
- /**
112
- * <p>A description for the workflow.</p>
113
- * @public
114
- */
115
- description?: string | undefined;
116
- /**
117
- * <p>The default storage type for runs that use this workflow. STATIC storage allocates a fixed amount of storage. DYNAMIC storage dynamically scales the storage up or down, based on file system utilization. For more information about static and dynamic storage, see <a href="https://docs.aws.amazon.com/omics/latest/dev/Using-workflows.html">Running workflows</a> in the <i>Amazon Web Services HealthOmics User Guide</i>. </p>
118
- * @public
119
- */
120
- storageType?: StorageType | undefined;
121
- /**
122
- * <p>The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version. </p>
123
- * @public
124
- */
125
- storageCapacity?: number | undefined;
126
- /**
127
- * <p>The markdown content for the workflow's README file. This provides documentation and usage information for users of the workflow.</p>
128
- * @public
129
- */
130
- readmeMarkdown?: string | undefined;
131
- }
132
- /**
133
- * @public
134
- */
135
- export interface UpdateWorkflowVersionRequest {
136
- /**
137
- * <p>The workflow's ID. The <code>workflowId</code> is not the UUID.</p>
138
- * @public
139
- */
140
- workflowId: string | undefined;
141
- /**
142
- * <p>The name of the workflow version.</p>
143
- * @public
144
- */
145
- versionName: string | undefined;
146
- /**
147
- * <p>Description of the workflow version.</p>
148
- * @public
149
- */
150
- description?: string | undefined;
151
- /**
152
- * <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>in the <i>Amazon Web Services HealthOmics User Guide</i> </i>.</p>
153
- * @public
154
- */
155
- storageType?: StorageType | undefined;
156
- /**
157
- * <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>
158
- * @public
159
- */
160
- storageCapacity?: number | undefined;
161
- /**
162
- * <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>
163
- * @public
164
- */
165
- readmeMarkdown?: string | undefined;
166
- }
@@ -1,45 +0,0 @@
1
- import {
2
- ReferenceItem,
3
- StorageType,
4
- StoreStatus,
5
- VariantImportItemSource,
6
- } from "./models_0";
7
- export interface StartVariantImportRequest {
8
- destinationName: string | undefined;
9
- roleArn: string | undefined;
10
- items: VariantImportItemSource[] | undefined;
11
- runLeftNormalization?: boolean | undefined;
12
- annotationFields?: Record<string, string> | undefined;
13
- }
14
- export interface StartVariantImportResponse {
15
- jobId: string | undefined;
16
- }
17
- export interface UpdateVariantStoreRequest {
18
- name: string | undefined;
19
- description?: string | undefined;
20
- }
21
- export interface UpdateVariantStoreResponse {
22
- id: string | undefined;
23
- reference: ReferenceItem | undefined;
24
- status: StoreStatus | undefined;
25
- name: string | undefined;
26
- description: string | undefined;
27
- creationTime: Date | undefined;
28
- updateTime: Date | undefined;
29
- }
30
- export interface UpdateWorkflowRequest {
31
- id: string | undefined;
32
- name?: string | undefined;
33
- description?: string | undefined;
34
- storageType?: StorageType | undefined;
35
- storageCapacity?: number | undefined;
36
- readmeMarkdown?: string | undefined;
37
- }
38
- export interface UpdateWorkflowVersionRequest {
39
- workflowId: string | undefined;
40
- versionName: string | undefined;
41
- description?: string | undefined;
42
- storageType?: StorageType | undefined;
43
- storageCapacity?: number | undefined;
44
- readmeMarkdown?: string | undefined;
45
- }