@aws-sdk/client-omics 3.696.0 → 3.699.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 +72 -0
- package/dist-cjs/index.js +575 -5
- package/dist-es/Omics.js +18 -0
- package/dist-es/commands/CreateRunCacheCommand.js +22 -0
- package/dist-es/commands/DeleteRunCacheCommand.js +22 -0
- package/dist-es/commands/DeleteS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/GetRunCacheCommand.js +22 -0
- package/dist-es/commands/GetS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/ListRunCachesCommand.js +22 -0
- package/dist-es/commands/PutS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/UpdateRunCacheCommand.js +22 -0
- package/dist-es/commands/UpdateSequenceStoreCommand.js +22 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +20 -0
- package/dist-es/pagination/ListRunCachesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +379 -2
- package/dist-types/Omics.d.ts +64 -0
- package/dist-types/OmicsClient.d.ts +11 -2
- package/dist-types/commands/CreateRunCacheCommand.d.ts +112 -0
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRunCacheCommand.d.ts +98 -0
- package/dist-types/commands/DeleteS3AccessPolicyCommand.d.ts +92 -0
- package/dist-types/commands/GetRunCacheCommand.d.ts +107 -0
- package/dist-types/commands/GetRunCommand.d.ts +7 -0
- package/dist-types/commands/GetRunTaskCommand.d.ts +2 -0
- package/dist-types/commands/GetS3AccessPolicyCommand.d.ts +101 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +7 -0
- package/dist-types/commands/ListRunCachesCommand.d.ts +107 -0
- package/dist-types/commands/ListRunTasksCommand.d.ts +2 -0
- package/dist-types/commands/ListRunsCommand.d.ts +4 -0
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +6 -0
- package/dist-types/commands/PutS3AccessPolicyCommand.d.ts +97 -0
- package/dist-types/commands/StartRunCommand.d.ts +6 -3
- package/dist-types/commands/UpdateRunCacheCommand.d.ts +96 -0
- package/dist-types/commands/UpdateSequenceStoreCommand.d.ts +123 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +666 -12
- package/dist-types/pagination/ListRunCachesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
- package/dist-types/ts3.4/Omics.d.ts +154 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/CreateRunCacheCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteRunCacheCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRunCacheCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRunCachesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PutS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateRunCacheCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UpdateSequenceStoreCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +166 -5
- package/dist-types/ts3.4/pagination/ListRunCachesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
- package/package.json +4 -4
package/dist-cjs/index.js
CHANGED
|
@@ -27,6 +27,7 @@ __export(src_exports, {
|
|
|
27
27
|
AccessDeniedException: () => AccessDeniedException,
|
|
28
28
|
AnnotationType: () => AnnotationType,
|
|
29
29
|
BatchDeleteReadSetCommand: () => BatchDeleteReadSetCommand,
|
|
30
|
+
CacheBehavior: () => CacheBehavior,
|
|
30
31
|
CancelAnnotationImportJobCommand: () => CancelAnnotationImportJobCommand,
|
|
31
32
|
CancelRunCommand: () => CancelRunCommand,
|
|
32
33
|
CancelVariantImportJobCommand: () => CancelVariantImportJobCommand,
|
|
@@ -36,6 +37,7 @@ __export(src_exports, {
|
|
|
36
37
|
CreateAnnotationStoreVersionCommand: () => CreateAnnotationStoreVersionCommand,
|
|
37
38
|
CreateMultipartReadSetUploadCommand: () => CreateMultipartReadSetUploadCommand,
|
|
38
39
|
CreateReferenceStoreCommand: () => CreateReferenceStoreCommand,
|
|
40
|
+
CreateRunCacheCommand: () => CreateRunCacheCommand,
|
|
39
41
|
CreateRunGroupCommand: () => CreateRunGroupCommand,
|
|
40
42
|
CreateSequenceStoreCommand: () => CreateSequenceStoreCommand,
|
|
41
43
|
CreateShareCommand: () => CreateShareCommand,
|
|
@@ -46,8 +48,10 @@ __export(src_exports, {
|
|
|
46
48
|
DeleteAnnotationStoreVersionsCommand: () => DeleteAnnotationStoreVersionsCommand,
|
|
47
49
|
DeleteReferenceCommand: () => DeleteReferenceCommand,
|
|
48
50
|
DeleteReferenceStoreCommand: () => DeleteReferenceStoreCommand,
|
|
51
|
+
DeleteRunCacheCommand: () => DeleteRunCacheCommand,
|
|
49
52
|
DeleteRunCommand: () => DeleteRunCommand,
|
|
50
53
|
DeleteRunGroupCommand: () => DeleteRunGroupCommand,
|
|
54
|
+
DeleteS3AccessPolicyCommand: () => DeleteS3AccessPolicyCommand,
|
|
51
55
|
DeleteSequenceStoreCommand: () => DeleteSequenceStoreCommand,
|
|
52
56
|
DeleteShareCommand: () => DeleteShareCommand,
|
|
53
57
|
DeleteVariantStoreCommand: () => DeleteVariantStoreCommand,
|
|
@@ -72,9 +76,11 @@ __export(src_exports, {
|
|
|
72
76
|
GetReferenceMetadataCommand: () => GetReferenceMetadataCommand,
|
|
73
77
|
GetReferenceResponseFilterSensitiveLog: () => GetReferenceResponseFilterSensitiveLog,
|
|
74
78
|
GetReferenceStoreCommand: () => GetReferenceStoreCommand,
|
|
79
|
+
GetRunCacheCommand: () => GetRunCacheCommand,
|
|
75
80
|
GetRunCommand: () => GetRunCommand,
|
|
76
81
|
GetRunGroupCommand: () => GetRunGroupCommand,
|
|
77
82
|
GetRunTaskCommand: () => GetRunTaskCommand,
|
|
83
|
+
GetS3AccessPolicyCommand: () => GetS3AccessPolicyCommand,
|
|
78
84
|
GetSequenceStoreCommand: () => GetSequenceStoreCommand,
|
|
79
85
|
GetShareCommand: () => GetShareCommand,
|
|
80
86
|
GetVariantImportJobCommand: () => GetVariantImportJobCommand,
|
|
@@ -94,6 +100,7 @@ __export(src_exports, {
|
|
|
94
100
|
ListReferenceImportJobsCommand: () => ListReferenceImportJobsCommand,
|
|
95
101
|
ListReferenceStoresCommand: () => ListReferenceStoresCommand,
|
|
96
102
|
ListReferencesCommand: () => ListReferencesCommand,
|
|
103
|
+
ListRunCachesCommand: () => ListRunCachesCommand,
|
|
97
104
|
ListRunGroupsCommand: () => ListRunGroupsCommand,
|
|
98
105
|
ListRunTasksCommand: () => ListRunTasksCommand,
|
|
99
106
|
ListRunsCommand: () => ListRunsCommand,
|
|
@@ -107,6 +114,7 @@ __export(src_exports, {
|
|
|
107
114
|
Omics: () => Omics,
|
|
108
115
|
OmicsClient: () => OmicsClient,
|
|
109
116
|
OmicsServiceException: () => OmicsServiceException,
|
|
117
|
+
PutS3AccessPolicyCommand: () => PutS3AccessPolicyCommand,
|
|
110
118
|
RangeNotSatisfiableException: () => RangeNotSatisfiableException,
|
|
111
119
|
ReadSetActivationJobItemStatus: () => ReadSetActivationJobItemStatus,
|
|
112
120
|
ReadSetActivationJobStatus: () => ReadSetActivationJobStatus,
|
|
@@ -126,11 +134,13 @@ __export(src_exports, {
|
|
|
126
134
|
RequestTimeoutException: () => RequestTimeoutException,
|
|
127
135
|
ResourceNotFoundException: () => ResourceNotFoundException,
|
|
128
136
|
ResourceOwner: () => ResourceOwner,
|
|
137
|
+
RunCacheStatus: () => RunCacheStatus,
|
|
129
138
|
RunExport: () => RunExport,
|
|
130
139
|
RunLogLevel: () => RunLogLevel,
|
|
131
140
|
RunRetentionMode: () => RunRetentionMode,
|
|
132
141
|
RunStatus: () => RunStatus,
|
|
133
142
|
SchemaValueType: () => SchemaValueType,
|
|
143
|
+
SequenceStoreStatus: () => SequenceStoreStatus,
|
|
134
144
|
ServiceQuotaExceededException: () => ServiceQuotaExceededException,
|
|
135
145
|
ShareResourceType: () => ShareResourceType,
|
|
136
146
|
ShareStatus: () => ShareStatus,
|
|
@@ -145,13 +155,16 @@ __export(src_exports, {
|
|
|
145
155
|
StoreFormat: () => StoreFormat,
|
|
146
156
|
StoreOptions: () => StoreOptions,
|
|
147
157
|
StoreStatus: () => StoreStatus,
|
|
158
|
+
StoreType: () => StoreType,
|
|
148
159
|
TagResourceCommand: () => TagResourceCommand,
|
|
149
160
|
TaskStatus: () => TaskStatus,
|
|
150
161
|
ThrottlingException: () => ThrottlingException,
|
|
151
162
|
UntagResourceCommand: () => UntagResourceCommand,
|
|
152
163
|
UpdateAnnotationStoreCommand: () => UpdateAnnotationStoreCommand,
|
|
153
164
|
UpdateAnnotationStoreVersionCommand: () => UpdateAnnotationStoreVersionCommand,
|
|
165
|
+
UpdateRunCacheCommand: () => UpdateRunCacheCommand,
|
|
154
166
|
UpdateRunGroupCommand: () => UpdateRunGroupCommand,
|
|
167
|
+
UpdateSequenceStoreCommand: () => UpdateSequenceStoreCommand,
|
|
155
168
|
UpdateVariantStoreCommand: () => UpdateVariantStoreCommand,
|
|
156
169
|
UpdateWorkflowCommand: () => UpdateWorkflowCommand,
|
|
157
170
|
UploadReadSetPartCommand: () => UploadReadSetPartCommand,
|
|
@@ -176,6 +189,7 @@ __export(src_exports, {
|
|
|
176
189
|
paginateListReferenceImportJobs: () => paginateListReferenceImportJobs,
|
|
177
190
|
paginateListReferenceStores: () => paginateListReferenceStores,
|
|
178
191
|
paginateListReferences: () => paginateListReferences,
|
|
192
|
+
paginateListRunCaches: () => paginateListRunCaches,
|
|
179
193
|
paginateListRunGroups: () => paginateListRunGroups,
|
|
180
194
|
paginateListRunTasks: () => paginateListRunTasks,
|
|
181
195
|
paginateListRuns: () => paginateListRuns,
|
|
@@ -777,6 +791,10 @@ var VersionStatus = {
|
|
|
777
791
|
*/
|
|
778
792
|
UPDATING: "UPDATING"
|
|
779
793
|
};
|
|
794
|
+
var CacheBehavior = {
|
|
795
|
+
CACHE_ALWAYS: "CACHE_ALWAYS",
|
|
796
|
+
CACHE_ON_FAILURE: "CACHE_ON_FAILURE"
|
|
797
|
+
};
|
|
780
798
|
var ReadSetPartSource = {
|
|
781
799
|
SOURCE1: "SOURCE1",
|
|
782
800
|
SOURCE2: "SOURCE2"
|
|
@@ -787,11 +805,23 @@ var FileType = {
|
|
|
787
805
|
FASTQ: "FASTQ",
|
|
788
806
|
UBAM: "UBAM"
|
|
789
807
|
};
|
|
808
|
+
var RunCacheStatus = {
|
|
809
|
+
ACTIVE: "ACTIVE",
|
|
810
|
+
DELETED: "DELETED",
|
|
811
|
+
FAILED: "FAILED"
|
|
812
|
+
};
|
|
790
813
|
var ETagAlgorithmFamily = {
|
|
791
814
|
MD5UP: "MD5up",
|
|
792
815
|
SHA256UP: "SHA256up",
|
|
793
816
|
SHA512UP: "SHA512up"
|
|
794
817
|
};
|
|
818
|
+
var SequenceStoreStatus = {
|
|
819
|
+
ACTIVE: "ACTIVE",
|
|
820
|
+
CREATING: "CREATING",
|
|
821
|
+
DELETING: "DELETING",
|
|
822
|
+
FAILED: "FAILED",
|
|
823
|
+
UPDATING: "UPDATING"
|
|
824
|
+
};
|
|
795
825
|
var WorkflowEngine = {
|
|
796
826
|
CWL: "CWL",
|
|
797
827
|
NEXTFLOW: "NEXTFLOW",
|
|
@@ -963,6 +993,10 @@ var TaskStatus = {
|
|
|
963
993
|
STARTING: "STARTING",
|
|
964
994
|
STOPPING: "STOPPING"
|
|
965
995
|
};
|
|
996
|
+
var StoreType = {
|
|
997
|
+
REFERENCE_STORE: "REFERENCE_STORE",
|
|
998
|
+
SEQUENCE_STORE: "SEQUENCE_STORE"
|
|
999
|
+
};
|
|
966
1000
|
var WorkflowExport = {
|
|
967
1001
|
DEFINITION: "DEFINITION"
|
|
968
1002
|
};
|
|
@@ -1238,6 +1272,35 @@ var se_CreateReferenceStoreCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1238
1272
|
b.m("POST").h(headers).b(body);
|
|
1239
1273
|
return b.build();
|
|
1240
1274
|
}, "se_CreateReferenceStoreCommand");
|
|
1275
|
+
var se_CreateRunCacheCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1276
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1277
|
+
const headers = {
|
|
1278
|
+
"content-type": "application/json"
|
|
1279
|
+
};
|
|
1280
|
+
b.bp("/runCache");
|
|
1281
|
+
let body;
|
|
1282
|
+
body = JSON.stringify(
|
|
1283
|
+
(0, import_smithy_client.take)(input, {
|
|
1284
|
+
cacheBehavior: [],
|
|
1285
|
+
cacheBucketOwnerId: [],
|
|
1286
|
+
cacheS3Location: [],
|
|
1287
|
+
description: [],
|
|
1288
|
+
name: [],
|
|
1289
|
+
requestId: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
1290
|
+
tags: (_) => (0, import_smithy_client._json)(_)
|
|
1291
|
+
})
|
|
1292
|
+
);
|
|
1293
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
1294
|
+
if (context.disableHostPrefix !== true) {
|
|
1295
|
+
resolvedHostname = "workflows-" + resolvedHostname;
|
|
1296
|
+
if (!(0, import_protocol_http.isValidHostname)(resolvedHostname)) {
|
|
1297
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
b.hn(resolvedHostname);
|
|
1301
|
+
b.m("POST").h(headers).b(body);
|
|
1302
|
+
return b.build();
|
|
1303
|
+
}, "se_CreateRunCacheCommand");
|
|
1241
1304
|
var se_CreateRunGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1242
1305
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1243
1306
|
const headers = {
|
|
@@ -1276,11 +1339,13 @@ var se_CreateSequenceStoreCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1276
1339
|
let body;
|
|
1277
1340
|
body = JSON.stringify(
|
|
1278
1341
|
(0, import_smithy_client.take)(input, {
|
|
1279
|
-
clientToken: [],
|
|
1342
|
+
clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
1280
1343
|
description: [],
|
|
1281
1344
|
eTagAlgorithmFamily: [],
|
|
1282
1345
|
fallbackLocation: [],
|
|
1283
1346
|
name: [],
|
|
1347
|
+
propagatedSetLevelTags: (_) => (0, import_smithy_client._json)(_),
|
|
1348
|
+
s3AccessConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1284
1349
|
sseConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1285
1350
|
tags: (_) => (0, import_smithy_client._json)(_)
|
|
1286
1351
|
})
|
|
@@ -1480,6 +1545,23 @@ var se_DeleteRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1480
1545
|
b.m("DELETE").h(headers).b(body);
|
|
1481
1546
|
return b.build();
|
|
1482
1547
|
}, "se_DeleteRunCommand");
|
|
1548
|
+
var se_DeleteRunCacheCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1549
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1550
|
+
const headers = {};
|
|
1551
|
+
b.bp("/runCache/{id}");
|
|
1552
|
+
b.p("id", () => input.id, "{id}", false);
|
|
1553
|
+
let body;
|
|
1554
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
1555
|
+
if (context.disableHostPrefix !== true) {
|
|
1556
|
+
resolvedHostname = "workflows-" + resolvedHostname;
|
|
1557
|
+
if (!(0, import_protocol_http.isValidHostname)(resolvedHostname)) {
|
|
1558
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
1559
|
+
}
|
|
1560
|
+
}
|
|
1561
|
+
b.hn(resolvedHostname);
|
|
1562
|
+
b.m("DELETE").h(headers).b(body);
|
|
1563
|
+
return b.build();
|
|
1564
|
+
}, "se_DeleteRunCacheCommand");
|
|
1483
1565
|
var se_DeleteRunGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1484
1566
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1485
1567
|
const headers = {};
|
|
@@ -1497,6 +1579,23 @@ var se_DeleteRunGroupCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1497
1579
|
b.m("DELETE").h(headers).b(body);
|
|
1498
1580
|
return b.build();
|
|
1499
1581
|
}, "se_DeleteRunGroupCommand");
|
|
1582
|
+
var se_DeleteS3AccessPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1583
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1584
|
+
const headers = {};
|
|
1585
|
+
b.bp("/s3accesspolicy/{s3AccessPointArn}");
|
|
1586
|
+
b.p("s3AccessPointArn", () => input.s3AccessPointArn, "{s3AccessPointArn}", false);
|
|
1587
|
+
let body;
|
|
1588
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
1589
|
+
if (context.disableHostPrefix !== true) {
|
|
1590
|
+
resolvedHostname = "control-storage-" + resolvedHostname;
|
|
1591
|
+
if (!(0, import_protocol_http.isValidHostname)(resolvedHostname)) {
|
|
1592
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
1593
|
+
}
|
|
1594
|
+
}
|
|
1595
|
+
b.hn(resolvedHostname);
|
|
1596
|
+
b.m("DELETE").h(headers).b(body);
|
|
1597
|
+
return b.build();
|
|
1598
|
+
}, "se_DeleteS3AccessPolicyCommand");
|
|
1500
1599
|
var se_DeleteSequenceStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1501
1600
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1502
1601
|
const headers = {};
|
|
@@ -1811,6 +1910,23 @@ var se_GetRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1811
1910
|
b.m("GET").h(headers).q(query).b(body);
|
|
1812
1911
|
return b.build();
|
|
1813
1912
|
}, "se_GetRunCommand");
|
|
1913
|
+
var se_GetRunCacheCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1914
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1915
|
+
const headers = {};
|
|
1916
|
+
b.bp("/runCache/{id}");
|
|
1917
|
+
b.p("id", () => input.id, "{id}", false);
|
|
1918
|
+
let body;
|
|
1919
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
1920
|
+
if (context.disableHostPrefix !== true) {
|
|
1921
|
+
resolvedHostname = "workflows-" + resolvedHostname;
|
|
1922
|
+
if (!(0, import_protocol_http.isValidHostname)(resolvedHostname)) {
|
|
1923
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
1924
|
+
}
|
|
1925
|
+
}
|
|
1926
|
+
b.hn(resolvedHostname);
|
|
1927
|
+
b.m("GET").h(headers).b(body);
|
|
1928
|
+
return b.build();
|
|
1929
|
+
}, "se_GetRunCacheCommand");
|
|
1814
1930
|
var se_GetRunGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1815
1931
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1816
1932
|
const headers = {};
|
|
@@ -1846,6 +1962,23 @@ var se_GetRunTaskCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1846
1962
|
b.m("GET").h(headers).b(body);
|
|
1847
1963
|
return b.build();
|
|
1848
1964
|
}, "se_GetRunTaskCommand");
|
|
1965
|
+
var se_GetS3AccessPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1966
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1967
|
+
const headers = {};
|
|
1968
|
+
b.bp("/s3accesspolicy/{s3AccessPointArn}");
|
|
1969
|
+
b.p("s3AccessPointArn", () => input.s3AccessPointArn, "{s3AccessPointArn}", false);
|
|
1970
|
+
let body;
|
|
1971
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
1972
|
+
if (context.disableHostPrefix !== true) {
|
|
1973
|
+
resolvedHostname = "control-storage-" + resolvedHostname;
|
|
1974
|
+
if (!(0, import_protocol_http.isValidHostname)(resolvedHostname)) {
|
|
1975
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
1976
|
+
}
|
|
1977
|
+
}
|
|
1978
|
+
b.hn(resolvedHostname);
|
|
1979
|
+
b.m("GET").h(headers).b(body);
|
|
1980
|
+
return b.build();
|
|
1981
|
+
}, "se_GetS3AccessPolicyCommand");
|
|
1849
1982
|
var se_GetSequenceStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1850
1983
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
1851
1984
|
const headers = {};
|
|
@@ -2266,6 +2399,26 @@ var se_ListReferenceStoresCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
2266
2399
|
b.m("POST").h(headers).q(query).b(body);
|
|
2267
2400
|
return b.build();
|
|
2268
2401
|
}, "se_ListReferenceStoresCommand");
|
|
2402
|
+
var se_ListRunCachesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2403
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2404
|
+
const headers = {};
|
|
2405
|
+
b.bp("/runCache");
|
|
2406
|
+
const query = (0, import_smithy_client.map)({
|
|
2407
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
2408
|
+
[_sT]: [, input[_sT]]
|
|
2409
|
+
});
|
|
2410
|
+
let body;
|
|
2411
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
2412
|
+
if (context.disableHostPrefix !== true) {
|
|
2413
|
+
resolvedHostname = "workflows-" + resolvedHostname;
|
|
2414
|
+
if (!(0, import_protocol_http.isValidHostname)(resolvedHostname)) {
|
|
2415
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
2416
|
+
}
|
|
2417
|
+
}
|
|
2418
|
+
b.hn(resolvedHostname);
|
|
2419
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
2420
|
+
return b.build();
|
|
2421
|
+
}, "se_ListRunCachesCommand");
|
|
2269
2422
|
var se_ListRunGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2270
2423
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2271
2424
|
const headers = {};
|
|
@@ -2482,6 +2635,30 @@ var se_ListWorkflowsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2482
2635
|
b.m("GET").h(headers).q(query).b(body);
|
|
2483
2636
|
return b.build();
|
|
2484
2637
|
}, "se_ListWorkflowsCommand");
|
|
2638
|
+
var se_PutS3AccessPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2639
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2640
|
+
const headers = {
|
|
2641
|
+
"content-type": "application/json"
|
|
2642
|
+
};
|
|
2643
|
+
b.bp("/s3accesspolicy/{s3AccessPointArn}");
|
|
2644
|
+
b.p("s3AccessPointArn", () => input.s3AccessPointArn, "{s3AccessPointArn}", false);
|
|
2645
|
+
let body;
|
|
2646
|
+
body = JSON.stringify(
|
|
2647
|
+
(0, import_smithy_client.take)(input, {
|
|
2648
|
+
s3AccessPolicy: (_) => import_smithy_client.LazyJsonString.fromObject(_)
|
|
2649
|
+
})
|
|
2650
|
+
);
|
|
2651
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
2652
|
+
if (context.disableHostPrefix !== true) {
|
|
2653
|
+
resolvedHostname = "control-storage-" + resolvedHostname;
|
|
2654
|
+
if (!(0, import_protocol_http.isValidHostname)(resolvedHostname)) {
|
|
2655
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
2656
|
+
}
|
|
2657
|
+
}
|
|
2658
|
+
b.hn(resolvedHostname);
|
|
2659
|
+
b.m("PUT").h(headers).b(body);
|
|
2660
|
+
return b.build();
|
|
2661
|
+
}, "se_PutS3AccessPolicyCommand");
|
|
2485
2662
|
var se_StartAnnotationImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2486
2663
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2487
2664
|
const headers = {
|
|
@@ -2624,6 +2801,8 @@ var se_StartRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2624
2801
|
let body;
|
|
2625
2802
|
body = JSON.stringify(
|
|
2626
2803
|
(0, import_smithy_client.take)(input, {
|
|
2804
|
+
cacheBehavior: [],
|
|
2805
|
+
cacheId: [],
|
|
2627
2806
|
logLevel: [],
|
|
2628
2807
|
name: [],
|
|
2629
2808
|
outputUri: [],
|
|
@@ -2773,6 +2952,32 @@ var se_UpdateAnnotationStoreVersionCommand = /* @__PURE__ */ __name(async (input
|
|
|
2773
2952
|
b.m("POST").h(headers).b(body);
|
|
2774
2953
|
return b.build();
|
|
2775
2954
|
}, "se_UpdateAnnotationStoreVersionCommand");
|
|
2955
|
+
var se_UpdateRunCacheCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2956
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2957
|
+
const headers = {
|
|
2958
|
+
"content-type": "application/json"
|
|
2959
|
+
};
|
|
2960
|
+
b.bp("/runCache/{id}");
|
|
2961
|
+
b.p("id", () => input.id, "{id}", false);
|
|
2962
|
+
let body;
|
|
2963
|
+
body = JSON.stringify(
|
|
2964
|
+
(0, import_smithy_client.take)(input, {
|
|
2965
|
+
cacheBehavior: [],
|
|
2966
|
+
description: [],
|
|
2967
|
+
name: []
|
|
2968
|
+
})
|
|
2969
|
+
);
|
|
2970
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
2971
|
+
if (context.disableHostPrefix !== true) {
|
|
2972
|
+
resolvedHostname = "workflows-" + resolvedHostname;
|
|
2973
|
+
if (!(0, import_protocol_http.isValidHostname)(resolvedHostname)) {
|
|
2974
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
2975
|
+
}
|
|
2976
|
+
}
|
|
2977
|
+
b.hn(resolvedHostname);
|
|
2978
|
+
b.m("POST").h(headers).b(body);
|
|
2979
|
+
return b.build();
|
|
2980
|
+
}, "se_UpdateRunCacheCommand");
|
|
2776
2981
|
var se_UpdateRunGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2777
2982
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2778
2983
|
const headers = {
|
|
@@ -2801,6 +3006,35 @@ var se_UpdateRunGroupCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2801
3006
|
b.m("POST").h(headers).b(body);
|
|
2802
3007
|
return b.build();
|
|
2803
3008
|
}, "se_UpdateRunGroupCommand");
|
|
3009
|
+
var se_UpdateSequenceStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3010
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3011
|
+
const headers = {
|
|
3012
|
+
"content-type": "application/json"
|
|
3013
|
+
};
|
|
3014
|
+
b.bp("/sequencestore/{id}");
|
|
3015
|
+
b.p("id", () => input.id, "{id}", false);
|
|
3016
|
+
let body;
|
|
3017
|
+
body = JSON.stringify(
|
|
3018
|
+
(0, import_smithy_client.take)(input, {
|
|
3019
|
+
clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
3020
|
+
description: [],
|
|
3021
|
+
fallbackLocation: [],
|
|
3022
|
+
name: [],
|
|
3023
|
+
propagatedSetLevelTags: (_) => (0, import_smithy_client._json)(_),
|
|
3024
|
+
s3AccessConfig: (_) => (0, import_smithy_client._json)(_)
|
|
3025
|
+
})
|
|
3026
|
+
);
|
|
3027
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
3028
|
+
if (context.disableHostPrefix !== true) {
|
|
3029
|
+
resolvedHostname = "control-storage-" + resolvedHostname;
|
|
3030
|
+
if (!(0, import_protocol_http.isValidHostname)(resolvedHostname)) {
|
|
3031
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
3032
|
+
}
|
|
3033
|
+
}
|
|
3034
|
+
b.hn(resolvedHostname);
|
|
3035
|
+
b.m("PATCH").h(headers).b(body);
|
|
3036
|
+
return b.build();
|
|
3037
|
+
}, "se_UpdateSequenceStoreCommand");
|
|
2804
3038
|
var se_UpdateVariantStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2805
3039
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2806
3040
|
const headers = {
|
|
@@ -3044,6 +3278,23 @@ var de_CreateReferenceStoreCommand = /* @__PURE__ */ __name(async (output, conte
|
|
|
3044
3278
|
Object.assign(contents, doc);
|
|
3045
3279
|
return contents;
|
|
3046
3280
|
}, "de_CreateReferenceStoreCommand");
|
|
3281
|
+
var de_CreateRunCacheCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3282
|
+
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
3283
|
+
return de_CommandError(output, context);
|
|
3284
|
+
}
|
|
3285
|
+
const contents = (0, import_smithy_client.map)({
|
|
3286
|
+
$metadata: deserializeMetadata(output)
|
|
3287
|
+
});
|
|
3288
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
3289
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
3290
|
+
arn: import_smithy_client.expectString,
|
|
3291
|
+
id: import_smithy_client.expectString,
|
|
3292
|
+
status: import_smithy_client.expectString,
|
|
3293
|
+
tags: import_smithy_client._json
|
|
3294
|
+
});
|
|
3295
|
+
Object.assign(contents, doc);
|
|
3296
|
+
return contents;
|
|
3297
|
+
}, "de_CreateRunCacheCommand");
|
|
3047
3298
|
var de_CreateRunGroupCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3048
3299
|
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
3049
3300
|
return de_CommandError(output, context);
|
|
@@ -3076,7 +3327,11 @@ var de_CreateSequenceStoreCommand = /* @__PURE__ */ __name(async (output, contex
|
|
|
3076
3327
|
fallbackLocation: import_smithy_client.expectString,
|
|
3077
3328
|
id: import_smithy_client.expectString,
|
|
3078
3329
|
name: import_smithy_client.expectString,
|
|
3079
|
-
|
|
3330
|
+
propagatedSetLevelTags: import_smithy_client._json,
|
|
3331
|
+
s3Access: import_smithy_client._json,
|
|
3332
|
+
sseConfig: import_smithy_client._json,
|
|
3333
|
+
status: import_smithy_client.expectString,
|
|
3334
|
+
statusMessage: import_smithy_client.expectString
|
|
3080
3335
|
});
|
|
3081
3336
|
Object.assign(contents, doc);
|
|
3082
3337
|
return contents;
|
|
@@ -3190,6 +3445,16 @@ var de_DeleteRunCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
3190
3445
|
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
3191
3446
|
return contents;
|
|
3192
3447
|
}, "de_DeleteRunCommand");
|
|
3448
|
+
var de_DeleteRunCacheCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3449
|
+
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
3450
|
+
return de_CommandError(output, context);
|
|
3451
|
+
}
|
|
3452
|
+
const contents = (0, import_smithy_client.map)({
|
|
3453
|
+
$metadata: deserializeMetadata(output)
|
|
3454
|
+
});
|
|
3455
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
3456
|
+
return contents;
|
|
3457
|
+
}, "de_DeleteRunCacheCommand");
|
|
3193
3458
|
var de_DeleteRunGroupCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3194
3459
|
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
3195
3460
|
return de_CommandError(output, context);
|
|
@@ -3200,6 +3465,16 @@ var de_DeleteRunGroupCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
3200
3465
|
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
3201
3466
|
return contents;
|
|
3202
3467
|
}, "de_DeleteRunGroupCommand");
|
|
3468
|
+
var de_DeleteS3AccessPolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3469
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3470
|
+
return de_CommandError(output, context);
|
|
3471
|
+
}
|
|
3472
|
+
const contents = (0, import_smithy_client.map)({
|
|
3473
|
+
$metadata: deserializeMetadata(output)
|
|
3474
|
+
});
|
|
3475
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
3476
|
+
return contents;
|
|
3477
|
+
}, "de_DeleteS3AccessPolicyCommand");
|
|
3203
3478
|
var de_DeleteSequenceStoreCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3204
3479
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3205
3480
|
return de_CommandError(output, context);
|
|
@@ -3520,9 +3795,12 @@ var de_GetRunCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
3520
3795
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3521
3796
|
accelerators: import_smithy_client.expectString,
|
|
3522
3797
|
arn: import_smithy_client.expectString,
|
|
3798
|
+
cacheBehavior: import_smithy_client.expectString,
|
|
3799
|
+
cacheId: import_smithy_client.expectString,
|
|
3523
3800
|
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
3524
3801
|
definition: import_smithy_client.expectString,
|
|
3525
3802
|
digest: import_smithy_client.expectString,
|
|
3803
|
+
engineVersion: import_smithy_client.expectString,
|
|
3526
3804
|
failureReason: import_smithy_client.expectString,
|
|
3527
3805
|
id: import_smithy_client.expectString,
|
|
3528
3806
|
logLevel: import_smithy_client.expectString,
|
|
@@ -3553,6 +3831,29 @@ var de_GetRunCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
3553
3831
|
Object.assign(contents, doc);
|
|
3554
3832
|
return contents;
|
|
3555
3833
|
}, "de_GetRunCommand");
|
|
3834
|
+
var de_GetRunCacheCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3835
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3836
|
+
return de_CommandError(output, context);
|
|
3837
|
+
}
|
|
3838
|
+
const contents = (0, import_smithy_client.map)({
|
|
3839
|
+
$metadata: deserializeMetadata(output)
|
|
3840
|
+
});
|
|
3841
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
3842
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
3843
|
+
arn: import_smithy_client.expectString,
|
|
3844
|
+
cacheBehavior: import_smithy_client.expectString,
|
|
3845
|
+
cacheBucketOwnerId: import_smithy_client.expectString,
|
|
3846
|
+
cacheS3Uri: import_smithy_client.expectString,
|
|
3847
|
+
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
3848
|
+
description: import_smithy_client.expectString,
|
|
3849
|
+
id: import_smithy_client.expectString,
|
|
3850
|
+
name: import_smithy_client.expectString,
|
|
3851
|
+
status: import_smithy_client.expectString,
|
|
3852
|
+
tags: import_smithy_client._json
|
|
3853
|
+
});
|
|
3854
|
+
Object.assign(contents, doc);
|
|
3855
|
+
return contents;
|
|
3856
|
+
}, "de_GetRunCacheCommand");
|
|
3556
3857
|
var de_GetRunGroupCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3557
3858
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3558
3859
|
return de_CommandError(output, context);
|
|
@@ -3584,6 +3885,8 @@ var de_GetRunTaskCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
3584
3885
|
});
|
|
3585
3886
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
3586
3887
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3888
|
+
cacheHit: import_smithy_client.expectBoolean,
|
|
3889
|
+
cacheS3Uri: import_smithy_client.expectString,
|
|
3587
3890
|
cpus: import_smithy_client.expectInt32,
|
|
3588
3891
|
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
3589
3892
|
failureReason: import_smithy_client.expectString,
|
|
@@ -3601,6 +3904,24 @@ var de_GetRunTaskCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
3601
3904
|
Object.assign(contents, doc);
|
|
3602
3905
|
return contents;
|
|
3603
3906
|
}, "de_GetRunTaskCommand");
|
|
3907
|
+
var de_GetS3AccessPolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3908
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3909
|
+
return de_CommandError(output, context);
|
|
3910
|
+
}
|
|
3911
|
+
const contents = (0, import_smithy_client.map)({
|
|
3912
|
+
$metadata: deserializeMetadata(output)
|
|
3913
|
+
});
|
|
3914
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
3915
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
3916
|
+
s3AccessPointArn: import_smithy_client.expectString,
|
|
3917
|
+
s3AccessPolicy: (_) => new import_smithy_client.LazyJsonString(_),
|
|
3918
|
+
storeId: import_smithy_client.expectString,
|
|
3919
|
+
storeType: import_smithy_client.expectString,
|
|
3920
|
+
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_))
|
|
3921
|
+
});
|
|
3922
|
+
Object.assign(contents, doc);
|
|
3923
|
+
return contents;
|
|
3924
|
+
}, "de_GetS3AccessPolicyCommand");
|
|
3604
3925
|
var de_GetSequenceStoreCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3605
3926
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3606
3927
|
return de_CommandError(output, context);
|
|
@@ -3617,8 +3938,12 @@ var de_GetSequenceStoreCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
3617
3938
|
fallbackLocation: import_smithy_client.expectString,
|
|
3618
3939
|
id: import_smithy_client.expectString,
|
|
3619
3940
|
name: import_smithy_client.expectString,
|
|
3941
|
+
propagatedSetLevelTags: import_smithy_client._json,
|
|
3620
3942
|
s3Access: import_smithy_client._json,
|
|
3621
|
-
sseConfig: import_smithy_client._json
|
|
3943
|
+
sseConfig: import_smithy_client._json,
|
|
3944
|
+
status: import_smithy_client.expectString,
|
|
3945
|
+
statusMessage: import_smithy_client.expectString,
|
|
3946
|
+
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_))
|
|
3622
3947
|
});
|
|
3623
3948
|
Object.assign(contents, doc);
|
|
3624
3949
|
return contents;
|
|
@@ -3896,6 +4221,21 @@ var de_ListReferenceStoresCommand = /* @__PURE__ */ __name(async (output, contex
|
|
|
3896
4221
|
Object.assign(contents, doc);
|
|
3897
4222
|
return contents;
|
|
3898
4223
|
}, "de_ListReferenceStoresCommand");
|
|
4224
|
+
var de_ListRunCachesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4225
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4226
|
+
return de_CommandError(output, context);
|
|
4227
|
+
}
|
|
4228
|
+
const contents = (0, import_smithy_client.map)({
|
|
4229
|
+
$metadata: deserializeMetadata(output)
|
|
4230
|
+
});
|
|
4231
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
4232
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
4233
|
+
items: (_) => de_RunCacheList(_, context),
|
|
4234
|
+
nextToken: import_smithy_client.expectString
|
|
4235
|
+
});
|
|
4236
|
+
Object.assign(contents, doc);
|
|
4237
|
+
return contents;
|
|
4238
|
+
}, "de_ListRunCachesCommand");
|
|
3899
4239
|
var de_ListRunGroupsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
3900
4240
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3901
4241
|
return de_CommandError(output, context);
|
|
@@ -4030,6 +4370,22 @@ var de_ListWorkflowsCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
4030
4370
|
Object.assign(contents, doc);
|
|
4031
4371
|
return contents;
|
|
4032
4372
|
}, "de_ListWorkflowsCommand");
|
|
4373
|
+
var de_PutS3AccessPolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4374
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4375
|
+
return de_CommandError(output, context);
|
|
4376
|
+
}
|
|
4377
|
+
const contents = (0, import_smithy_client.map)({
|
|
4378
|
+
$metadata: deserializeMetadata(output)
|
|
4379
|
+
});
|
|
4380
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
4381
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
4382
|
+
s3AccessPointArn: import_smithy_client.expectString,
|
|
4383
|
+
storeId: import_smithy_client.expectString,
|
|
4384
|
+
storeType: import_smithy_client.expectString
|
|
4385
|
+
});
|
|
4386
|
+
Object.assign(contents, doc);
|
|
4387
|
+
return contents;
|
|
4388
|
+
}, "de_PutS3AccessPolicyCommand");
|
|
4033
4389
|
var de_StartAnnotationImportJobCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4034
4390
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4035
4391
|
return de_CommandError(output, context);
|
|
@@ -4211,6 +4567,16 @@ var de_UpdateAnnotationStoreVersionCommand = /* @__PURE__ */ __name(async (outpu
|
|
|
4211
4567
|
Object.assign(contents, doc);
|
|
4212
4568
|
return contents;
|
|
4213
4569
|
}, "de_UpdateAnnotationStoreVersionCommand");
|
|
4570
|
+
var de_UpdateRunCacheCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4571
|
+
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
4572
|
+
return de_CommandError(output, context);
|
|
4573
|
+
}
|
|
4574
|
+
const contents = (0, import_smithy_client.map)({
|
|
4575
|
+
$metadata: deserializeMetadata(output)
|
|
4576
|
+
});
|
|
4577
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
4578
|
+
return contents;
|
|
4579
|
+
}, "de_UpdateRunCacheCommand");
|
|
4214
4580
|
var de_UpdateRunGroupCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4215
4581
|
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
4216
4582
|
return de_CommandError(output, context);
|
|
@@ -4221,6 +4587,32 @@ var de_UpdateRunGroupCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
4221
4587
|
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
4222
4588
|
return contents;
|
|
4223
4589
|
}, "de_UpdateRunGroupCommand");
|
|
4590
|
+
var de_UpdateSequenceStoreCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4591
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4592
|
+
return de_CommandError(output, context);
|
|
4593
|
+
}
|
|
4594
|
+
const contents = (0, import_smithy_client.map)({
|
|
4595
|
+
$metadata: deserializeMetadata(output)
|
|
4596
|
+
});
|
|
4597
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
4598
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
4599
|
+
arn: import_smithy_client.expectString,
|
|
4600
|
+
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
4601
|
+
description: import_smithy_client.expectString,
|
|
4602
|
+
eTagAlgorithmFamily: import_smithy_client.expectString,
|
|
4603
|
+
fallbackLocation: import_smithy_client.expectString,
|
|
4604
|
+
id: import_smithy_client.expectString,
|
|
4605
|
+
name: import_smithy_client.expectString,
|
|
4606
|
+
propagatedSetLevelTags: import_smithy_client._json,
|
|
4607
|
+
s3Access: import_smithy_client._json,
|
|
4608
|
+
sseConfig: import_smithy_client._json,
|
|
4609
|
+
status: import_smithy_client.expectString,
|
|
4610
|
+
statusMessage: import_smithy_client.expectString,
|
|
4611
|
+
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_))
|
|
4612
|
+
});
|
|
4613
|
+
Object.assign(contents, doc);
|
|
4614
|
+
return contents;
|
|
4615
|
+
}, "de_UpdateSequenceStoreCommand");
|
|
4224
4616
|
var de_UpdateVariantStoreCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4225
4617
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4226
4618
|
return de_CommandError(output, context);
|
|
@@ -4511,7 +4903,10 @@ var se_SequenceStoreFilter = /* @__PURE__ */ __name((input, context) => {
|
|
|
4511
4903
|
return (0, import_smithy_client.take)(input, {
|
|
4512
4904
|
createdAfter: import_smithy_client.serializeDateTime,
|
|
4513
4905
|
createdBefore: import_smithy_client.serializeDateTime,
|
|
4514
|
-
name: []
|
|
4906
|
+
name: [],
|
|
4907
|
+
status: [],
|
|
4908
|
+
updatedAfter: import_smithy_client.serializeDateTime,
|
|
4909
|
+
updatedBefore: import_smithy_client.serializeDateTime
|
|
4515
4910
|
});
|
|
4516
4911
|
}, "se_SequenceStoreFilter");
|
|
4517
4912
|
var de_ActivateReadSetJobItem = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -4737,6 +5132,23 @@ var de_ReferenceStoreDetailList = /* @__PURE__ */ __name((output, context) => {
|
|
|
4737
5132
|
});
|
|
4738
5133
|
return retVal;
|
|
4739
5134
|
}, "de_ReferenceStoreDetailList");
|
|
5135
|
+
var de_RunCacheList = /* @__PURE__ */ __name((output, context) => {
|
|
5136
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
5137
|
+
return de_RunCacheListItem(entry, context);
|
|
5138
|
+
});
|
|
5139
|
+
return retVal;
|
|
5140
|
+
}, "de_RunCacheList");
|
|
5141
|
+
var de_RunCacheListItem = /* @__PURE__ */ __name((output, context) => {
|
|
5142
|
+
return (0, import_smithy_client.take)(output, {
|
|
5143
|
+
arn: import_smithy_client.expectString,
|
|
5144
|
+
cacheBehavior: import_smithy_client.expectString,
|
|
5145
|
+
cacheS3Uri: import_smithy_client.expectString,
|
|
5146
|
+
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
5147
|
+
id: import_smithy_client.expectString,
|
|
5148
|
+
name: import_smithy_client.expectString,
|
|
5149
|
+
status: import_smithy_client.expectString
|
|
5150
|
+
});
|
|
5151
|
+
}, "de_RunCacheListItem");
|
|
4740
5152
|
var de_RunGroupList = /* @__PURE__ */ __name((output, context) => {
|
|
4741
5153
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
4742
5154
|
return de_RunGroupListItem(entry, context);
|
|
@@ -4788,7 +5200,10 @@ var de_SequenceStoreDetail = /* @__PURE__ */ __name((output, context) => {
|
|
|
4788
5200
|
fallbackLocation: import_smithy_client.expectString,
|
|
4789
5201
|
id: import_smithy_client.expectString,
|
|
4790
5202
|
name: import_smithy_client.expectString,
|
|
4791
|
-
sseConfig: import_smithy_client._json
|
|
5203
|
+
sseConfig: import_smithy_client._json,
|
|
5204
|
+
status: import_smithy_client.expectString,
|
|
5205
|
+
statusMessage: import_smithy_client.expectString,
|
|
5206
|
+
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_))
|
|
4792
5207
|
});
|
|
4793
5208
|
}, "de_SequenceStoreDetail");
|
|
4794
5209
|
var de_SequenceStoreDetailList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -4825,6 +5240,8 @@ var de_TaskList = /* @__PURE__ */ __name((output, context) => {
|
|
|
4825
5240
|
}, "de_TaskList");
|
|
4826
5241
|
var de_TaskListItem = /* @__PURE__ */ __name((output, context) => {
|
|
4827
5242
|
return (0, import_smithy_client.take)(output, {
|
|
5243
|
+
cacheHit: import_smithy_client.expectBoolean,
|
|
5244
|
+
cacheS3Uri: import_smithy_client.expectString,
|
|
4828
5245
|
cpus: import_smithy_client.expectInt32,
|
|
4829
5246
|
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
4830
5247
|
gpus: import_smithy_client.expectInt32,
|
|
@@ -5068,6 +5485,20 @@ var _CreateReferenceStoreCommand = class _CreateReferenceStoreCommand extends im
|
|
|
5068
5485
|
__name(_CreateReferenceStoreCommand, "CreateReferenceStoreCommand");
|
|
5069
5486
|
var CreateReferenceStoreCommand = _CreateReferenceStoreCommand;
|
|
5070
5487
|
|
|
5488
|
+
// src/commands/CreateRunCacheCommand.ts
|
|
5489
|
+
|
|
5490
|
+
|
|
5491
|
+
|
|
5492
|
+
var _CreateRunCacheCommand = class _CreateRunCacheCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5493
|
+
return [
|
|
5494
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5495
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5496
|
+
];
|
|
5497
|
+
}).s("Omics", "CreateRunCache", {}).n("OmicsClient", "CreateRunCacheCommand").f(void 0, void 0).ser(se_CreateRunCacheCommand).de(de_CreateRunCacheCommand).build() {
|
|
5498
|
+
};
|
|
5499
|
+
__name(_CreateRunCacheCommand, "CreateRunCacheCommand");
|
|
5500
|
+
var CreateRunCacheCommand = _CreateRunCacheCommand;
|
|
5501
|
+
|
|
5071
5502
|
// src/commands/CreateRunGroupCommand.ts
|
|
5072
5503
|
|
|
5073
5504
|
|
|
@@ -5194,6 +5625,20 @@ var _DeleteReferenceStoreCommand = class _DeleteReferenceStoreCommand extends im
|
|
|
5194
5625
|
__name(_DeleteReferenceStoreCommand, "DeleteReferenceStoreCommand");
|
|
5195
5626
|
var DeleteReferenceStoreCommand = _DeleteReferenceStoreCommand;
|
|
5196
5627
|
|
|
5628
|
+
// src/commands/DeleteRunCacheCommand.ts
|
|
5629
|
+
|
|
5630
|
+
|
|
5631
|
+
|
|
5632
|
+
var _DeleteRunCacheCommand = class _DeleteRunCacheCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5633
|
+
return [
|
|
5634
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5635
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5636
|
+
];
|
|
5637
|
+
}).s("Omics", "DeleteRunCache", {}).n("OmicsClient", "DeleteRunCacheCommand").f(void 0, void 0).ser(se_DeleteRunCacheCommand).de(de_DeleteRunCacheCommand).build() {
|
|
5638
|
+
};
|
|
5639
|
+
__name(_DeleteRunCacheCommand, "DeleteRunCacheCommand");
|
|
5640
|
+
var DeleteRunCacheCommand = _DeleteRunCacheCommand;
|
|
5641
|
+
|
|
5197
5642
|
// src/commands/DeleteRunCommand.ts
|
|
5198
5643
|
|
|
5199
5644
|
|
|
@@ -5222,6 +5667,20 @@ var _DeleteRunGroupCommand = class _DeleteRunGroupCommand extends import_smithy_
|
|
|
5222
5667
|
__name(_DeleteRunGroupCommand, "DeleteRunGroupCommand");
|
|
5223
5668
|
var DeleteRunGroupCommand = _DeleteRunGroupCommand;
|
|
5224
5669
|
|
|
5670
|
+
// src/commands/DeleteS3AccessPolicyCommand.ts
|
|
5671
|
+
|
|
5672
|
+
|
|
5673
|
+
|
|
5674
|
+
var _DeleteS3AccessPolicyCommand = class _DeleteS3AccessPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5675
|
+
return [
|
|
5676
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5677
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5678
|
+
];
|
|
5679
|
+
}).s("Omics", "DeleteS3AccessPolicy", {}).n("OmicsClient", "DeleteS3AccessPolicyCommand").f(void 0, void 0).ser(se_DeleteS3AccessPolicyCommand).de(de_DeleteS3AccessPolicyCommand).build() {
|
|
5680
|
+
};
|
|
5681
|
+
__name(_DeleteS3AccessPolicyCommand, "DeleteS3AccessPolicyCommand");
|
|
5682
|
+
var DeleteS3AccessPolicyCommand = _DeleteS3AccessPolicyCommand;
|
|
5683
|
+
|
|
5225
5684
|
// src/commands/DeleteSequenceStoreCommand.ts
|
|
5226
5685
|
|
|
5227
5686
|
|
|
@@ -5446,6 +5905,20 @@ var _GetReferenceStoreCommand = class _GetReferenceStoreCommand extends import_s
|
|
|
5446
5905
|
__name(_GetReferenceStoreCommand, "GetReferenceStoreCommand");
|
|
5447
5906
|
var GetReferenceStoreCommand = _GetReferenceStoreCommand;
|
|
5448
5907
|
|
|
5908
|
+
// src/commands/GetRunCacheCommand.ts
|
|
5909
|
+
|
|
5910
|
+
|
|
5911
|
+
|
|
5912
|
+
var _GetRunCacheCommand = class _GetRunCacheCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5913
|
+
return [
|
|
5914
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5915
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5916
|
+
];
|
|
5917
|
+
}).s("Omics", "GetRunCache", {}).n("OmicsClient", "GetRunCacheCommand").f(void 0, void 0).ser(se_GetRunCacheCommand).de(de_GetRunCacheCommand).build() {
|
|
5918
|
+
};
|
|
5919
|
+
__name(_GetRunCacheCommand, "GetRunCacheCommand");
|
|
5920
|
+
var GetRunCacheCommand = _GetRunCacheCommand;
|
|
5921
|
+
|
|
5449
5922
|
// src/commands/GetRunCommand.ts
|
|
5450
5923
|
|
|
5451
5924
|
|
|
@@ -5488,6 +5961,20 @@ var _GetRunTaskCommand = class _GetRunTaskCommand extends import_smithy_client.C
|
|
|
5488
5961
|
__name(_GetRunTaskCommand, "GetRunTaskCommand");
|
|
5489
5962
|
var GetRunTaskCommand = _GetRunTaskCommand;
|
|
5490
5963
|
|
|
5964
|
+
// src/commands/GetS3AccessPolicyCommand.ts
|
|
5965
|
+
|
|
5966
|
+
|
|
5967
|
+
|
|
5968
|
+
var _GetS3AccessPolicyCommand = class _GetS3AccessPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5969
|
+
return [
|
|
5970
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5971
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5972
|
+
];
|
|
5973
|
+
}).s("Omics", "GetS3AccessPolicy", {}).n("OmicsClient", "GetS3AccessPolicyCommand").f(void 0, void 0).ser(se_GetS3AccessPolicyCommand).de(de_GetS3AccessPolicyCommand).build() {
|
|
5974
|
+
};
|
|
5975
|
+
__name(_GetS3AccessPolicyCommand, "GetS3AccessPolicyCommand");
|
|
5976
|
+
var GetS3AccessPolicyCommand = _GetS3AccessPolicyCommand;
|
|
5977
|
+
|
|
5491
5978
|
// src/commands/GetSequenceStoreCommand.ts
|
|
5492
5979
|
|
|
5493
5980
|
|
|
@@ -5726,6 +6213,20 @@ var _ListReferenceStoresCommand = class _ListReferenceStoresCommand extends impo
|
|
|
5726
6213
|
__name(_ListReferenceStoresCommand, "ListReferenceStoresCommand");
|
|
5727
6214
|
var ListReferenceStoresCommand = _ListReferenceStoresCommand;
|
|
5728
6215
|
|
|
6216
|
+
// src/commands/ListRunCachesCommand.ts
|
|
6217
|
+
|
|
6218
|
+
|
|
6219
|
+
|
|
6220
|
+
var _ListRunCachesCommand = class _ListRunCachesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6221
|
+
return [
|
|
6222
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6223
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6224
|
+
];
|
|
6225
|
+
}).s("Omics", "ListRunCaches", {}).n("OmicsClient", "ListRunCachesCommand").f(void 0, void 0).ser(se_ListRunCachesCommand).de(de_ListRunCachesCommand).build() {
|
|
6226
|
+
};
|
|
6227
|
+
__name(_ListRunCachesCommand, "ListRunCachesCommand");
|
|
6228
|
+
var ListRunCachesCommand = _ListRunCachesCommand;
|
|
6229
|
+
|
|
5729
6230
|
// src/commands/ListRunGroupsCommand.ts
|
|
5730
6231
|
|
|
5731
6232
|
|
|
@@ -5852,6 +6353,20 @@ var _ListWorkflowsCommand = class _ListWorkflowsCommand extends import_smithy_cl
|
|
|
5852
6353
|
__name(_ListWorkflowsCommand, "ListWorkflowsCommand");
|
|
5853
6354
|
var ListWorkflowsCommand = _ListWorkflowsCommand;
|
|
5854
6355
|
|
|
6356
|
+
// src/commands/PutS3AccessPolicyCommand.ts
|
|
6357
|
+
|
|
6358
|
+
|
|
6359
|
+
|
|
6360
|
+
var _PutS3AccessPolicyCommand = class _PutS3AccessPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6361
|
+
return [
|
|
6362
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6363
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6364
|
+
];
|
|
6365
|
+
}).s("Omics", "PutS3AccessPolicy", {}).n("OmicsClient", "PutS3AccessPolicyCommand").f(void 0, void 0).ser(se_PutS3AccessPolicyCommand).de(de_PutS3AccessPolicyCommand).build() {
|
|
6366
|
+
};
|
|
6367
|
+
__name(_PutS3AccessPolicyCommand, "PutS3AccessPolicyCommand");
|
|
6368
|
+
var PutS3AccessPolicyCommand = _PutS3AccessPolicyCommand;
|
|
6369
|
+
|
|
5855
6370
|
// src/commands/StartAnnotationImportJobCommand.ts
|
|
5856
6371
|
|
|
5857
6372
|
|
|
@@ -6006,6 +6521,20 @@ var _UpdateAnnotationStoreVersionCommand = class _UpdateAnnotationStoreVersionCo
|
|
|
6006
6521
|
__name(_UpdateAnnotationStoreVersionCommand, "UpdateAnnotationStoreVersionCommand");
|
|
6007
6522
|
var UpdateAnnotationStoreVersionCommand = _UpdateAnnotationStoreVersionCommand;
|
|
6008
6523
|
|
|
6524
|
+
// src/commands/UpdateRunCacheCommand.ts
|
|
6525
|
+
|
|
6526
|
+
|
|
6527
|
+
|
|
6528
|
+
var _UpdateRunCacheCommand = class _UpdateRunCacheCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6529
|
+
return [
|
|
6530
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6531
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6532
|
+
];
|
|
6533
|
+
}).s("Omics", "UpdateRunCache", {}).n("OmicsClient", "UpdateRunCacheCommand").f(void 0, void 0).ser(se_UpdateRunCacheCommand).de(de_UpdateRunCacheCommand).build() {
|
|
6534
|
+
};
|
|
6535
|
+
__name(_UpdateRunCacheCommand, "UpdateRunCacheCommand");
|
|
6536
|
+
var UpdateRunCacheCommand = _UpdateRunCacheCommand;
|
|
6537
|
+
|
|
6009
6538
|
// src/commands/UpdateRunGroupCommand.ts
|
|
6010
6539
|
|
|
6011
6540
|
|
|
@@ -6020,6 +6549,20 @@ var _UpdateRunGroupCommand = class _UpdateRunGroupCommand extends import_smithy_
|
|
|
6020
6549
|
__name(_UpdateRunGroupCommand, "UpdateRunGroupCommand");
|
|
6021
6550
|
var UpdateRunGroupCommand = _UpdateRunGroupCommand;
|
|
6022
6551
|
|
|
6552
|
+
// src/commands/UpdateSequenceStoreCommand.ts
|
|
6553
|
+
|
|
6554
|
+
|
|
6555
|
+
|
|
6556
|
+
var _UpdateSequenceStoreCommand = class _UpdateSequenceStoreCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6557
|
+
return [
|
|
6558
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6559
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6560
|
+
];
|
|
6561
|
+
}).s("Omics", "UpdateSequenceStore", {}).n("OmicsClient", "UpdateSequenceStoreCommand").f(void 0, void 0).ser(se_UpdateSequenceStoreCommand).de(de_UpdateSequenceStoreCommand).build() {
|
|
6562
|
+
};
|
|
6563
|
+
__name(_UpdateSequenceStoreCommand, "UpdateSequenceStoreCommand");
|
|
6564
|
+
var UpdateSequenceStoreCommand = _UpdateSequenceStoreCommand;
|
|
6565
|
+
|
|
6023
6566
|
// src/commands/UpdateVariantStoreCommand.ts
|
|
6024
6567
|
|
|
6025
6568
|
|
|
@@ -6075,6 +6618,7 @@ var commands = {
|
|
|
6075
6618
|
CreateAnnotationStoreVersionCommand,
|
|
6076
6619
|
CreateMultipartReadSetUploadCommand,
|
|
6077
6620
|
CreateReferenceStoreCommand,
|
|
6621
|
+
CreateRunCacheCommand,
|
|
6078
6622
|
CreateRunGroupCommand,
|
|
6079
6623
|
CreateSequenceStoreCommand,
|
|
6080
6624
|
CreateShareCommand,
|
|
@@ -6085,7 +6629,9 @@ var commands = {
|
|
|
6085
6629
|
DeleteReferenceCommand,
|
|
6086
6630
|
DeleteReferenceStoreCommand,
|
|
6087
6631
|
DeleteRunCommand,
|
|
6632
|
+
DeleteRunCacheCommand,
|
|
6088
6633
|
DeleteRunGroupCommand,
|
|
6634
|
+
DeleteS3AccessPolicyCommand,
|
|
6089
6635
|
DeleteSequenceStoreCommand,
|
|
6090
6636
|
DeleteShareCommand,
|
|
6091
6637
|
DeleteVariantStoreCommand,
|
|
@@ -6103,8 +6649,10 @@ var commands = {
|
|
|
6103
6649
|
GetReferenceMetadataCommand,
|
|
6104
6650
|
GetReferenceStoreCommand,
|
|
6105
6651
|
GetRunCommand,
|
|
6652
|
+
GetRunCacheCommand,
|
|
6106
6653
|
GetRunGroupCommand,
|
|
6107
6654
|
GetRunTaskCommand,
|
|
6655
|
+
GetS3AccessPolicyCommand,
|
|
6108
6656
|
GetSequenceStoreCommand,
|
|
6109
6657
|
GetShareCommand,
|
|
6110
6658
|
GetVariantImportJobCommand,
|
|
@@ -6122,6 +6670,7 @@ var commands = {
|
|
|
6122
6670
|
ListReferenceImportJobsCommand,
|
|
6123
6671
|
ListReferencesCommand,
|
|
6124
6672
|
ListReferenceStoresCommand,
|
|
6673
|
+
ListRunCachesCommand,
|
|
6125
6674
|
ListRunGroupsCommand,
|
|
6126
6675
|
ListRunsCommand,
|
|
6127
6676
|
ListRunTasksCommand,
|
|
@@ -6131,6 +6680,7 @@ var commands = {
|
|
|
6131
6680
|
ListVariantImportJobsCommand,
|
|
6132
6681
|
ListVariantStoresCommand,
|
|
6133
6682
|
ListWorkflowsCommand,
|
|
6683
|
+
PutS3AccessPolicyCommand,
|
|
6134
6684
|
StartAnnotationImportJobCommand,
|
|
6135
6685
|
StartReadSetActivationJobCommand,
|
|
6136
6686
|
StartReadSetExportJobCommand,
|
|
@@ -6142,7 +6692,9 @@ var commands = {
|
|
|
6142
6692
|
UntagResourceCommand,
|
|
6143
6693
|
UpdateAnnotationStoreCommand,
|
|
6144
6694
|
UpdateAnnotationStoreVersionCommand,
|
|
6695
|
+
UpdateRunCacheCommand,
|
|
6145
6696
|
UpdateRunGroupCommand,
|
|
6697
|
+
UpdateSequenceStoreCommand,
|
|
6146
6698
|
UpdateVariantStoreCommand,
|
|
6147
6699
|
UpdateWorkflowCommand,
|
|
6148
6700
|
UploadReadSetPartCommand
|
|
@@ -6201,6 +6753,10 @@ var paginateListReferenceStores = (0, import_core.createPaginator)(OmicsClient,
|
|
|
6201
6753
|
|
|
6202
6754
|
var paginateListReferences = (0, import_core.createPaginator)(OmicsClient, ListReferencesCommand, "nextToken", "nextToken", "maxResults");
|
|
6203
6755
|
|
|
6756
|
+
// src/pagination/ListRunCachesPaginator.ts
|
|
6757
|
+
|
|
6758
|
+
var paginateListRunCaches = (0, import_core.createPaginator)(OmicsClient, ListRunCachesCommand, "startingToken", "nextToken", "maxResults");
|
|
6759
|
+
|
|
6204
6760
|
// src/pagination/ListRunGroupsPaginator.ts
|
|
6205
6761
|
|
|
6206
6762
|
var paginateListRunGroups = (0, import_core.createPaginator)(OmicsClient, ListRunGroupsCommand, "startingToken", "nextToken", "maxResults");
|
|
@@ -7372,6 +7928,7 @@ var waitUntilWorkflowActive = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
7372
7928
|
CreateAnnotationStoreVersionCommand,
|
|
7373
7929
|
CreateMultipartReadSetUploadCommand,
|
|
7374
7930
|
CreateReferenceStoreCommand,
|
|
7931
|
+
CreateRunCacheCommand,
|
|
7375
7932
|
CreateRunGroupCommand,
|
|
7376
7933
|
CreateSequenceStoreCommand,
|
|
7377
7934
|
CreateShareCommand,
|
|
@@ -7381,8 +7938,10 @@ var waitUntilWorkflowActive = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
7381
7938
|
DeleteAnnotationStoreVersionsCommand,
|
|
7382
7939
|
DeleteReferenceCommand,
|
|
7383
7940
|
DeleteReferenceStoreCommand,
|
|
7941
|
+
DeleteRunCacheCommand,
|
|
7384
7942
|
DeleteRunCommand,
|
|
7385
7943
|
DeleteRunGroupCommand,
|
|
7944
|
+
DeleteS3AccessPolicyCommand,
|
|
7386
7945
|
DeleteSequenceStoreCommand,
|
|
7387
7946
|
DeleteShareCommand,
|
|
7388
7947
|
DeleteVariantStoreCommand,
|
|
@@ -7399,9 +7958,11 @@ var waitUntilWorkflowActive = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
7399
7958
|
GetReferenceImportJobCommand,
|
|
7400
7959
|
GetReferenceMetadataCommand,
|
|
7401
7960
|
GetReferenceStoreCommand,
|
|
7961
|
+
GetRunCacheCommand,
|
|
7402
7962
|
GetRunCommand,
|
|
7403
7963
|
GetRunGroupCommand,
|
|
7404
7964
|
GetRunTaskCommand,
|
|
7965
|
+
GetS3AccessPolicyCommand,
|
|
7405
7966
|
GetSequenceStoreCommand,
|
|
7406
7967
|
GetShareCommand,
|
|
7407
7968
|
GetVariantImportJobCommand,
|
|
@@ -7419,6 +7980,7 @@ var waitUntilWorkflowActive = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
7419
7980
|
ListReferenceImportJobsCommand,
|
|
7420
7981
|
ListReferenceStoresCommand,
|
|
7421
7982
|
ListReferencesCommand,
|
|
7983
|
+
ListRunCachesCommand,
|
|
7422
7984
|
ListRunGroupsCommand,
|
|
7423
7985
|
ListRunTasksCommand,
|
|
7424
7986
|
ListRunsCommand,
|
|
@@ -7428,6 +7990,7 @@ var waitUntilWorkflowActive = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
7428
7990
|
ListVariantImportJobsCommand,
|
|
7429
7991
|
ListVariantStoresCommand,
|
|
7430
7992
|
ListWorkflowsCommand,
|
|
7993
|
+
PutS3AccessPolicyCommand,
|
|
7431
7994
|
StartAnnotationImportJobCommand,
|
|
7432
7995
|
StartReadSetActivationJobCommand,
|
|
7433
7996
|
StartReadSetExportJobCommand,
|
|
@@ -7439,7 +8002,9 @@ var waitUntilWorkflowActive = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
7439
8002
|
UntagResourceCommand,
|
|
7440
8003
|
UpdateAnnotationStoreCommand,
|
|
7441
8004
|
UpdateAnnotationStoreVersionCommand,
|
|
8005
|
+
UpdateRunCacheCommand,
|
|
7442
8006
|
UpdateRunGroupCommand,
|
|
8007
|
+
UpdateSequenceStoreCommand,
|
|
7443
8008
|
UpdateVariantStoreCommand,
|
|
7444
8009
|
UpdateWorkflowCommand,
|
|
7445
8010
|
UploadReadSetPartCommand,
|
|
@@ -7455,6 +8020,7 @@ var waitUntilWorkflowActive = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
7455
8020
|
paginateListReferenceImportJobs,
|
|
7456
8021
|
paginateListReferenceStores,
|
|
7457
8022
|
paginateListReferences,
|
|
8023
|
+
paginateListRunCaches,
|
|
7458
8024
|
paginateListRunGroups,
|
|
7459
8025
|
paginateListRunTasks,
|
|
7460
8026
|
paginateListRuns,
|
|
@@ -7522,9 +8088,12 @@ var waitUntilWorkflowActive = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
7522
8088
|
StoreStatus,
|
|
7523
8089
|
VersionOptions,
|
|
7524
8090
|
VersionStatus,
|
|
8091
|
+
CacheBehavior,
|
|
7525
8092
|
ReadSetPartSource,
|
|
7526
8093
|
FileType,
|
|
8094
|
+
RunCacheStatus,
|
|
7527
8095
|
ETagAlgorithmFamily,
|
|
8096
|
+
SequenceStoreStatus,
|
|
7528
8097
|
WorkflowEngine,
|
|
7529
8098
|
WorkflowStatus,
|
|
7530
8099
|
CreationType,
|
|
@@ -7549,6 +8118,7 @@ var waitUntilWorkflowActive = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
7549
8118
|
StorageType,
|
|
7550
8119
|
WorkflowType,
|
|
7551
8120
|
TaskStatus,
|
|
8121
|
+
StoreType,
|
|
7552
8122
|
WorkflowExport,
|
|
7553
8123
|
ResourceOwner,
|
|
7554
8124
|
GetReadSetResponseFilterSensitiveLog,
|