@aws-sdk/client-omics 3.697.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 +32 -0
- package/dist-cjs/index.js +261 -5
- package/dist-es/Omics.js +8 -0
- package/dist-es/commands/DeleteS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/GetS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/PutS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/UpdateSequenceStoreCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +11 -0
- package/dist-es/protocols/Aws_restJson1.js +171 -2
- package/dist-types/Omics.d.ts +28 -0
- package/dist-types/OmicsClient.d.ts +6 -2
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +16 -0
- package/dist-types/commands/DeleteS3AccessPolicyCommand.d.ts +92 -0
- package/dist-types/commands/GetS3AccessPolicyCommand.d.ts +101 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +7 -0
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +6 -0
- package/dist-types/commands/PutS3AccessPolicyCommand.d.ts +97 -0
- package/dist-types/commands/UpdateSequenceStoreCommand.d.ts +123 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +333 -10
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/Omics.d.ts +68 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeleteS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateSequenceStoreCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +89 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +4 -4
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_PutS3AccessPolicyCommand, se_PutS3AccessPolicyCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class PutS3AccessPolicyCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("Omics", "PutS3AccessPolicy", {})
|
|
17
|
+
.n("OmicsClient", "PutS3AccessPolicyCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_PutS3AccessPolicyCommand)
|
|
20
|
+
.de(de_PutS3AccessPolicyCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_UpdateSequenceStoreCommand, se_UpdateSequenceStoreCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class UpdateSequenceStoreCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("Omics", "UpdateSequenceStore", {})
|
|
17
|
+
.n("OmicsClient", "UpdateSequenceStoreCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_UpdateSequenceStoreCommand)
|
|
20
|
+
.de(de_UpdateSequenceStoreCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -22,6 +22,7 @@ export * from "./DeleteReferenceStoreCommand";
|
|
|
22
22
|
export * from "./DeleteRunCacheCommand";
|
|
23
23
|
export * from "./DeleteRunCommand";
|
|
24
24
|
export * from "./DeleteRunGroupCommand";
|
|
25
|
+
export * from "./DeleteS3AccessPolicyCommand";
|
|
25
26
|
export * from "./DeleteSequenceStoreCommand";
|
|
26
27
|
export * from "./DeleteShareCommand";
|
|
27
28
|
export * from "./DeleteVariantStoreCommand";
|
|
@@ -42,6 +43,7 @@ export * from "./GetRunCacheCommand";
|
|
|
42
43
|
export * from "./GetRunCommand";
|
|
43
44
|
export * from "./GetRunGroupCommand";
|
|
44
45
|
export * from "./GetRunTaskCommand";
|
|
46
|
+
export * from "./GetS3AccessPolicyCommand";
|
|
45
47
|
export * from "./GetSequenceStoreCommand";
|
|
46
48
|
export * from "./GetShareCommand";
|
|
47
49
|
export * from "./GetVariantImportJobCommand";
|
|
@@ -69,6 +71,7 @@ export * from "./ListTagsForResourceCommand";
|
|
|
69
71
|
export * from "./ListVariantImportJobsCommand";
|
|
70
72
|
export * from "./ListVariantStoresCommand";
|
|
71
73
|
export * from "./ListWorkflowsCommand";
|
|
74
|
+
export * from "./PutS3AccessPolicyCommand";
|
|
72
75
|
export * from "./StartAnnotationImportJobCommand";
|
|
73
76
|
export * from "./StartReadSetActivationJobCommand";
|
|
74
77
|
export * from "./StartReadSetExportJobCommand";
|
|
@@ -82,6 +85,7 @@ export * from "./UpdateAnnotationStoreCommand";
|
|
|
82
85
|
export * from "./UpdateAnnotationStoreVersionCommand";
|
|
83
86
|
export * from "./UpdateRunCacheCommand";
|
|
84
87
|
export * from "./UpdateRunGroupCommand";
|
|
88
|
+
export * from "./UpdateSequenceStoreCommand";
|
|
85
89
|
export * from "./UpdateVariantStoreCommand";
|
|
86
90
|
export * from "./UpdateWorkflowCommand";
|
|
87
91
|
export * from "./UploadReadSetPartCommand";
|
|
@@ -250,6 +250,13 @@ export const ETagAlgorithmFamily = {
|
|
|
250
250
|
SHA256UP: "SHA256up",
|
|
251
251
|
SHA512UP: "SHA512up",
|
|
252
252
|
};
|
|
253
|
+
export const SequenceStoreStatus = {
|
|
254
|
+
ACTIVE: "ACTIVE",
|
|
255
|
+
CREATING: "CREATING",
|
|
256
|
+
DELETING: "DELETING",
|
|
257
|
+
FAILED: "FAILED",
|
|
258
|
+
UPDATING: "UPDATING",
|
|
259
|
+
};
|
|
253
260
|
export const WorkflowEngine = {
|
|
254
261
|
CWL: "CWL",
|
|
255
262
|
NEXTFLOW: "NEXTFLOW",
|
|
@@ -407,6 +414,10 @@ export const TaskStatus = {
|
|
|
407
414
|
STARTING: "STARTING",
|
|
408
415
|
STOPPING: "STOPPING",
|
|
409
416
|
};
|
|
417
|
+
export const StoreType = {
|
|
418
|
+
REFERENCE_STORE: "REFERENCE_STORE",
|
|
419
|
+
SEQUENCE_STORE: "SEQUENCE_STORE",
|
|
420
|
+
};
|
|
410
421
|
export const WorkflowExport = {
|
|
411
422
|
DEFINITION: "DEFINITION",
|
|
412
423
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { awsExpectUnion as __expectUnion, loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody, } from "@aws-sdk/core";
|
|
2
2
|
import { requestBuilder as rb } from "@smithy/core";
|
|
3
3
|
import { isValidHostname as __isValidHostname, } from "@smithy/protocol-http";
|
|
4
|
-
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, isSerializableHeaderValue, map, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, serializeDateTime as __serializeDateTime, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
|
+
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, isSerializableHeaderValue, LazyJsonString as __LazyJsonString, map, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, serializeDateTime as __serializeDateTime, take, withBaseException, } from "@smithy/smithy-client";
|
|
5
5
|
import { v4 as generateIdempotencyToken } from "uuid";
|
|
6
6
|
import { AccessDeniedException, ConflictException, InternalServerException, NotSupportedOperationException, RangeNotSatisfiableException, RequestTimeoutException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0";
|
|
7
7
|
import { OmicsServiceException as __BaseException } from "../models/OmicsServiceException";
|
|
@@ -306,11 +306,13 @@ export const se_CreateSequenceStoreCommand = async (input, context) => {
|
|
|
306
306
|
b.bp("/sequencestore");
|
|
307
307
|
let body;
|
|
308
308
|
body = JSON.stringify(take(input, {
|
|
309
|
-
clientToken: [],
|
|
309
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
310
310
|
description: [],
|
|
311
311
|
eTagAlgorithmFamily: [],
|
|
312
312
|
fallbackLocation: [],
|
|
313
313
|
name: [],
|
|
314
|
+
propagatedSetLevelTags: (_) => _json(_),
|
|
315
|
+
s3AccessConfig: (_) => _json(_),
|
|
314
316
|
sseConfig: (_) => _json(_),
|
|
315
317
|
tags: (_) => _json(_),
|
|
316
318
|
}));
|
|
@@ -535,6 +537,23 @@ export const se_DeleteRunGroupCommand = async (input, context) => {
|
|
|
535
537
|
b.m("DELETE").h(headers).b(body);
|
|
536
538
|
return b.build();
|
|
537
539
|
};
|
|
540
|
+
export const se_DeleteS3AccessPolicyCommand = async (input, context) => {
|
|
541
|
+
const b = rb(input, context);
|
|
542
|
+
const headers = {};
|
|
543
|
+
b.bp("/s3accesspolicy/{s3AccessPointArn}");
|
|
544
|
+
b.p("s3AccessPointArn", () => input.s3AccessPointArn, "{s3AccessPointArn}", false);
|
|
545
|
+
let body;
|
|
546
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
547
|
+
if (context.disableHostPrefix !== true) {
|
|
548
|
+
resolvedHostname = "control-storage-" + resolvedHostname;
|
|
549
|
+
if (!__isValidHostname(resolvedHostname)) {
|
|
550
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
b.hn(resolvedHostname);
|
|
554
|
+
b.m("DELETE").h(headers).b(body);
|
|
555
|
+
return b.build();
|
|
556
|
+
};
|
|
538
557
|
export const se_DeleteSequenceStoreCommand = async (input, context) => {
|
|
539
558
|
const b = rb(input, context);
|
|
540
559
|
const headers = {};
|
|
@@ -901,6 +920,23 @@ export const se_GetRunTaskCommand = async (input, context) => {
|
|
|
901
920
|
b.m("GET").h(headers).b(body);
|
|
902
921
|
return b.build();
|
|
903
922
|
};
|
|
923
|
+
export const se_GetS3AccessPolicyCommand = async (input, context) => {
|
|
924
|
+
const b = rb(input, context);
|
|
925
|
+
const headers = {};
|
|
926
|
+
b.bp("/s3accesspolicy/{s3AccessPointArn}");
|
|
927
|
+
b.p("s3AccessPointArn", () => input.s3AccessPointArn, "{s3AccessPointArn}", false);
|
|
928
|
+
let body;
|
|
929
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
930
|
+
if (context.disableHostPrefix !== true) {
|
|
931
|
+
resolvedHostname = "control-storage-" + resolvedHostname;
|
|
932
|
+
if (!__isValidHostname(resolvedHostname)) {
|
|
933
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
b.hn(resolvedHostname);
|
|
937
|
+
b.m("GET").h(headers).b(body);
|
|
938
|
+
return b.build();
|
|
939
|
+
};
|
|
904
940
|
export const se_GetSequenceStoreCommand = async (input, context) => {
|
|
905
941
|
const b = rb(input, context);
|
|
906
942
|
const headers = {};
|
|
@@ -1527,6 +1563,28 @@ export const se_ListWorkflowsCommand = async (input, context) => {
|
|
|
1527
1563
|
b.m("GET").h(headers).q(query).b(body);
|
|
1528
1564
|
return b.build();
|
|
1529
1565
|
};
|
|
1566
|
+
export const se_PutS3AccessPolicyCommand = async (input, context) => {
|
|
1567
|
+
const b = rb(input, context);
|
|
1568
|
+
const headers = {
|
|
1569
|
+
"content-type": "application/json",
|
|
1570
|
+
};
|
|
1571
|
+
b.bp("/s3accesspolicy/{s3AccessPointArn}");
|
|
1572
|
+
b.p("s3AccessPointArn", () => input.s3AccessPointArn, "{s3AccessPointArn}", false);
|
|
1573
|
+
let body;
|
|
1574
|
+
body = JSON.stringify(take(input, {
|
|
1575
|
+
s3AccessPolicy: (_) => __LazyJsonString.fromObject(_),
|
|
1576
|
+
}));
|
|
1577
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
1578
|
+
if (context.disableHostPrefix !== true) {
|
|
1579
|
+
resolvedHostname = "control-storage-" + resolvedHostname;
|
|
1580
|
+
if (!__isValidHostname(resolvedHostname)) {
|
|
1581
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
1582
|
+
}
|
|
1583
|
+
}
|
|
1584
|
+
b.hn(resolvedHostname);
|
|
1585
|
+
b.m("PUT").h(headers).b(body);
|
|
1586
|
+
return b.build();
|
|
1587
|
+
};
|
|
1530
1588
|
export const se_StartAnnotationImportJobCommand = async (input, context) => {
|
|
1531
1589
|
const b = rb(input, context);
|
|
1532
1590
|
const headers = {
|
|
@@ -1850,6 +1908,33 @@ export const se_UpdateRunGroupCommand = async (input, context) => {
|
|
|
1850
1908
|
b.m("POST").h(headers).b(body);
|
|
1851
1909
|
return b.build();
|
|
1852
1910
|
};
|
|
1911
|
+
export const se_UpdateSequenceStoreCommand = async (input, context) => {
|
|
1912
|
+
const b = rb(input, context);
|
|
1913
|
+
const headers = {
|
|
1914
|
+
"content-type": "application/json",
|
|
1915
|
+
};
|
|
1916
|
+
b.bp("/sequencestore/{id}");
|
|
1917
|
+
b.p("id", () => input.id, "{id}", false);
|
|
1918
|
+
let body;
|
|
1919
|
+
body = JSON.stringify(take(input, {
|
|
1920
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
1921
|
+
description: [],
|
|
1922
|
+
fallbackLocation: [],
|
|
1923
|
+
name: [],
|
|
1924
|
+
propagatedSetLevelTags: (_) => _json(_),
|
|
1925
|
+
s3AccessConfig: (_) => _json(_),
|
|
1926
|
+
}));
|
|
1927
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
1928
|
+
if (context.disableHostPrefix !== true) {
|
|
1929
|
+
resolvedHostname = "control-storage-" + resolvedHostname;
|
|
1930
|
+
if (!__isValidHostname(resolvedHostname)) {
|
|
1931
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
1932
|
+
}
|
|
1933
|
+
}
|
|
1934
|
+
b.hn(resolvedHostname);
|
|
1935
|
+
b.m("PATCH").h(headers).b(body);
|
|
1936
|
+
return b.build();
|
|
1937
|
+
};
|
|
1853
1938
|
export const se_UpdateVariantStoreCommand = async (input, context) => {
|
|
1854
1939
|
const b = rb(input, context);
|
|
1855
1940
|
const headers = {
|
|
@@ -2138,7 +2223,11 @@ export const de_CreateSequenceStoreCommand = async (output, context) => {
|
|
|
2138
2223
|
fallbackLocation: __expectString,
|
|
2139
2224
|
id: __expectString,
|
|
2140
2225
|
name: __expectString,
|
|
2226
|
+
propagatedSetLevelTags: _json,
|
|
2227
|
+
s3Access: _json,
|
|
2141
2228
|
sseConfig: _json,
|
|
2229
|
+
status: __expectString,
|
|
2230
|
+
statusMessage: __expectString,
|
|
2142
2231
|
});
|
|
2143
2232
|
Object.assign(contents, doc);
|
|
2144
2233
|
return contents;
|
|
@@ -2272,6 +2361,16 @@ export const de_DeleteRunGroupCommand = async (output, context) => {
|
|
|
2272
2361
|
await collectBody(output.body, context);
|
|
2273
2362
|
return contents;
|
|
2274
2363
|
};
|
|
2364
|
+
export const de_DeleteS3AccessPolicyCommand = async (output, context) => {
|
|
2365
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2366
|
+
return de_CommandError(output, context);
|
|
2367
|
+
}
|
|
2368
|
+
const contents = map({
|
|
2369
|
+
$metadata: deserializeMetadata(output),
|
|
2370
|
+
});
|
|
2371
|
+
await collectBody(output.body, context);
|
|
2372
|
+
return contents;
|
|
2373
|
+
};
|
|
2275
2374
|
export const de_DeleteSequenceStoreCommand = async (output, context) => {
|
|
2276
2375
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2277
2376
|
return de_CommandError(output, context);
|
|
@@ -2701,6 +2800,24 @@ export const de_GetRunTaskCommand = async (output, context) => {
|
|
|
2701
2800
|
Object.assign(contents, doc);
|
|
2702
2801
|
return contents;
|
|
2703
2802
|
};
|
|
2803
|
+
export const de_GetS3AccessPolicyCommand = async (output, context) => {
|
|
2804
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2805
|
+
return de_CommandError(output, context);
|
|
2806
|
+
}
|
|
2807
|
+
const contents = map({
|
|
2808
|
+
$metadata: deserializeMetadata(output),
|
|
2809
|
+
});
|
|
2810
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2811
|
+
const doc = take(data, {
|
|
2812
|
+
s3AccessPointArn: __expectString,
|
|
2813
|
+
s3AccessPolicy: (_) => new __LazyJsonString(_),
|
|
2814
|
+
storeId: __expectString,
|
|
2815
|
+
storeType: __expectString,
|
|
2816
|
+
updateTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
2817
|
+
});
|
|
2818
|
+
Object.assign(contents, doc);
|
|
2819
|
+
return contents;
|
|
2820
|
+
};
|
|
2704
2821
|
export const de_GetSequenceStoreCommand = async (output, context) => {
|
|
2705
2822
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2706
2823
|
return de_CommandError(output, context);
|
|
@@ -2717,8 +2834,12 @@ export const de_GetSequenceStoreCommand = async (output, context) => {
|
|
|
2717
2834
|
fallbackLocation: __expectString,
|
|
2718
2835
|
id: __expectString,
|
|
2719
2836
|
name: __expectString,
|
|
2837
|
+
propagatedSetLevelTags: _json,
|
|
2720
2838
|
s3Access: _json,
|
|
2721
2839
|
sseConfig: _json,
|
|
2840
|
+
status: __expectString,
|
|
2841
|
+
statusMessage: __expectString,
|
|
2842
|
+
updateTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
2722
2843
|
});
|
|
2723
2844
|
Object.assign(contents, doc);
|
|
2724
2845
|
return contents;
|
|
@@ -3145,6 +3266,22 @@ export const de_ListWorkflowsCommand = async (output, context) => {
|
|
|
3145
3266
|
Object.assign(contents, doc);
|
|
3146
3267
|
return contents;
|
|
3147
3268
|
};
|
|
3269
|
+
export const de_PutS3AccessPolicyCommand = async (output, context) => {
|
|
3270
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3271
|
+
return de_CommandError(output, context);
|
|
3272
|
+
}
|
|
3273
|
+
const contents = map({
|
|
3274
|
+
$metadata: deserializeMetadata(output),
|
|
3275
|
+
});
|
|
3276
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
3277
|
+
const doc = take(data, {
|
|
3278
|
+
s3AccessPointArn: __expectString,
|
|
3279
|
+
storeId: __expectString,
|
|
3280
|
+
storeType: __expectString,
|
|
3281
|
+
});
|
|
3282
|
+
Object.assign(contents, doc);
|
|
3283
|
+
return contents;
|
|
3284
|
+
};
|
|
3148
3285
|
export const de_StartAnnotationImportJobCommand = async (output, context) => {
|
|
3149
3286
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3150
3287
|
return de_CommandError(output, context);
|
|
@@ -3346,6 +3483,32 @@ export const de_UpdateRunGroupCommand = async (output, context) => {
|
|
|
3346
3483
|
await collectBody(output.body, context);
|
|
3347
3484
|
return contents;
|
|
3348
3485
|
};
|
|
3486
|
+
export const de_UpdateSequenceStoreCommand = async (output, context) => {
|
|
3487
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3488
|
+
return de_CommandError(output, context);
|
|
3489
|
+
}
|
|
3490
|
+
const contents = map({
|
|
3491
|
+
$metadata: deserializeMetadata(output),
|
|
3492
|
+
});
|
|
3493
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
3494
|
+
const doc = take(data, {
|
|
3495
|
+
arn: __expectString,
|
|
3496
|
+
creationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
3497
|
+
description: __expectString,
|
|
3498
|
+
eTagAlgorithmFamily: __expectString,
|
|
3499
|
+
fallbackLocation: __expectString,
|
|
3500
|
+
id: __expectString,
|
|
3501
|
+
name: __expectString,
|
|
3502
|
+
propagatedSetLevelTags: _json,
|
|
3503
|
+
s3Access: _json,
|
|
3504
|
+
sseConfig: _json,
|
|
3505
|
+
status: __expectString,
|
|
3506
|
+
statusMessage: __expectString,
|
|
3507
|
+
updateTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
3508
|
+
});
|
|
3509
|
+
Object.assign(contents, doc);
|
|
3510
|
+
return contents;
|
|
3511
|
+
};
|
|
3349
3512
|
export const de_UpdateVariantStoreCommand = async (output, context) => {
|
|
3350
3513
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3351
3514
|
return de_CommandError(output, context);
|
|
@@ -3637,6 +3800,9 @@ const se_SequenceStoreFilter = (input, context) => {
|
|
|
3637
3800
|
createdAfter: __serializeDateTime,
|
|
3638
3801
|
createdBefore: __serializeDateTime,
|
|
3639
3802
|
name: [],
|
|
3803
|
+
status: [],
|
|
3804
|
+
updatedAfter: __serializeDateTime,
|
|
3805
|
+
updatedBefore: __serializeDateTime,
|
|
3640
3806
|
});
|
|
3641
3807
|
};
|
|
3642
3808
|
const de_ActivateReadSetJobItem = (output, context) => {
|
|
@@ -3961,6 +4127,9 @@ const de_SequenceStoreDetail = (output, context) => {
|
|
|
3961
4127
|
id: __expectString,
|
|
3962
4128
|
name: __expectString,
|
|
3963
4129
|
sseConfig: _json,
|
|
4130
|
+
status: __expectString,
|
|
4131
|
+
statusMessage: __expectString,
|
|
4132
|
+
updateTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
3964
4133
|
});
|
|
3965
4134
|
};
|
|
3966
4135
|
const de_SequenceStoreDetailList = (output, context) => {
|
package/dist-types/Omics.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ import { DeleteReferenceStoreCommandInput, DeleteReferenceStoreCommandOutput } f
|
|
|
23
23
|
import { DeleteRunCacheCommandInput, DeleteRunCacheCommandOutput } from "./commands/DeleteRunCacheCommand";
|
|
24
24
|
import { DeleteRunCommandInput, DeleteRunCommandOutput } from "./commands/DeleteRunCommand";
|
|
25
25
|
import { DeleteRunGroupCommandInput, DeleteRunGroupCommandOutput } from "./commands/DeleteRunGroupCommand";
|
|
26
|
+
import { DeleteS3AccessPolicyCommandInput, DeleteS3AccessPolicyCommandOutput } from "./commands/DeleteS3AccessPolicyCommand";
|
|
26
27
|
import { DeleteSequenceStoreCommandInput, DeleteSequenceStoreCommandOutput } from "./commands/DeleteSequenceStoreCommand";
|
|
27
28
|
import { DeleteShareCommandInput, DeleteShareCommandOutput } from "./commands/DeleteShareCommand";
|
|
28
29
|
import { DeleteVariantStoreCommandInput, DeleteVariantStoreCommandOutput } from "./commands/DeleteVariantStoreCommand";
|
|
@@ -43,6 +44,7 @@ import { GetRunCacheCommandInput, GetRunCacheCommandOutput } from "./commands/Ge
|
|
|
43
44
|
import { GetRunCommandInput, GetRunCommandOutput } from "./commands/GetRunCommand";
|
|
44
45
|
import { GetRunGroupCommandInput, GetRunGroupCommandOutput } from "./commands/GetRunGroupCommand";
|
|
45
46
|
import { GetRunTaskCommandInput, GetRunTaskCommandOutput } from "./commands/GetRunTaskCommand";
|
|
47
|
+
import { GetS3AccessPolicyCommandInput, GetS3AccessPolicyCommandOutput } from "./commands/GetS3AccessPolicyCommand";
|
|
46
48
|
import { GetSequenceStoreCommandInput, GetSequenceStoreCommandOutput } from "./commands/GetSequenceStoreCommand";
|
|
47
49
|
import { GetShareCommandInput, GetShareCommandOutput } from "./commands/GetShareCommand";
|
|
48
50
|
import { GetVariantImportJobCommandInput, GetVariantImportJobCommandOutput } from "./commands/GetVariantImportJobCommand";
|
|
@@ -70,6 +72,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
70
72
|
import { ListVariantImportJobsCommandInput, ListVariantImportJobsCommandOutput } from "./commands/ListVariantImportJobsCommand";
|
|
71
73
|
import { ListVariantStoresCommandInput, ListVariantStoresCommandOutput } from "./commands/ListVariantStoresCommand";
|
|
72
74
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
75
|
+
import { PutS3AccessPolicyCommandInput, PutS3AccessPolicyCommandOutput } from "./commands/PutS3AccessPolicyCommand";
|
|
73
76
|
import { StartAnnotationImportJobCommandInput, StartAnnotationImportJobCommandOutput } from "./commands/StartAnnotationImportJobCommand";
|
|
74
77
|
import { StartReadSetActivationJobCommandInput, StartReadSetActivationJobCommandOutput } from "./commands/StartReadSetActivationJobCommand";
|
|
75
78
|
import { StartReadSetExportJobCommandInput, StartReadSetExportJobCommandOutput } from "./commands/StartReadSetExportJobCommand";
|
|
@@ -83,6 +86,7 @@ import { UpdateAnnotationStoreCommandInput, UpdateAnnotationStoreCommandOutput }
|
|
|
83
86
|
import { UpdateAnnotationStoreVersionCommandInput, UpdateAnnotationStoreVersionCommandOutput } from "./commands/UpdateAnnotationStoreVersionCommand";
|
|
84
87
|
import { UpdateRunCacheCommandInput, UpdateRunCacheCommandOutput } from "./commands/UpdateRunCacheCommand";
|
|
85
88
|
import { UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput } from "./commands/UpdateRunGroupCommand";
|
|
89
|
+
import { UpdateSequenceStoreCommandInput, UpdateSequenceStoreCommandOutput } from "./commands/UpdateSequenceStoreCommand";
|
|
86
90
|
import { UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput } from "./commands/UpdateVariantStoreCommand";
|
|
87
91
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "./commands/UpdateWorkflowCommand";
|
|
88
92
|
import { UploadReadSetPartCommandInput, UploadReadSetPartCommandOutput } from "./commands/UploadReadSetPartCommand";
|
|
@@ -232,6 +236,12 @@ export interface Omics {
|
|
|
232
236
|
deleteRunGroup(args: DeleteRunGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRunGroupCommandOutput>;
|
|
233
237
|
deleteRunGroup(args: DeleteRunGroupCommandInput, cb: (err: any, data?: DeleteRunGroupCommandOutput) => void): void;
|
|
234
238
|
deleteRunGroup(args: DeleteRunGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRunGroupCommandOutput) => void): void;
|
|
239
|
+
/**
|
|
240
|
+
* @see {@link DeleteS3AccessPolicyCommand}
|
|
241
|
+
*/
|
|
242
|
+
deleteS3AccessPolicy(args: DeleteS3AccessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteS3AccessPolicyCommandOutput>;
|
|
243
|
+
deleteS3AccessPolicy(args: DeleteS3AccessPolicyCommandInput, cb: (err: any, data?: DeleteS3AccessPolicyCommandOutput) => void): void;
|
|
244
|
+
deleteS3AccessPolicy(args: DeleteS3AccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteS3AccessPolicyCommandOutput) => void): void;
|
|
235
245
|
/**
|
|
236
246
|
* @see {@link DeleteSequenceStoreCommand}
|
|
237
247
|
*/
|
|
@@ -352,6 +362,12 @@ export interface Omics {
|
|
|
352
362
|
getRunTask(args: GetRunTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetRunTaskCommandOutput>;
|
|
353
363
|
getRunTask(args: GetRunTaskCommandInput, cb: (err: any, data?: GetRunTaskCommandOutput) => void): void;
|
|
354
364
|
getRunTask(args: GetRunTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRunTaskCommandOutput) => void): void;
|
|
365
|
+
/**
|
|
366
|
+
* @see {@link GetS3AccessPolicyCommand}
|
|
367
|
+
*/
|
|
368
|
+
getS3AccessPolicy(args: GetS3AccessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetS3AccessPolicyCommandOutput>;
|
|
369
|
+
getS3AccessPolicy(args: GetS3AccessPolicyCommandInput, cb: (err: any, data?: GetS3AccessPolicyCommandOutput) => void): void;
|
|
370
|
+
getS3AccessPolicy(args: GetS3AccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetS3AccessPolicyCommandOutput) => void): void;
|
|
355
371
|
/**
|
|
356
372
|
* @see {@link GetSequenceStoreCommand}
|
|
357
373
|
*/
|
|
@@ -524,6 +540,12 @@ export interface Omics {
|
|
|
524
540
|
listWorkflows(args: ListWorkflowsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkflowsCommandOutput>;
|
|
525
541
|
listWorkflows(args: ListWorkflowsCommandInput, cb: (err: any, data?: ListWorkflowsCommandOutput) => void): void;
|
|
526
542
|
listWorkflows(args: ListWorkflowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkflowsCommandOutput) => void): void;
|
|
543
|
+
/**
|
|
544
|
+
* @see {@link PutS3AccessPolicyCommand}
|
|
545
|
+
*/
|
|
546
|
+
putS3AccessPolicy(args: PutS3AccessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutS3AccessPolicyCommandOutput>;
|
|
547
|
+
putS3AccessPolicy(args: PutS3AccessPolicyCommandInput, cb: (err: any, data?: PutS3AccessPolicyCommandOutput) => void): void;
|
|
548
|
+
putS3AccessPolicy(args: PutS3AccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutS3AccessPolicyCommandOutput) => void): void;
|
|
527
549
|
/**
|
|
528
550
|
* @see {@link StartAnnotationImportJobCommand}
|
|
529
551
|
*/
|
|
@@ -602,6 +624,12 @@ export interface Omics {
|
|
|
602
624
|
updateRunGroup(args: UpdateRunGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRunGroupCommandOutput>;
|
|
603
625
|
updateRunGroup(args: UpdateRunGroupCommandInput, cb: (err: any, data?: UpdateRunGroupCommandOutput) => void): void;
|
|
604
626
|
updateRunGroup(args: UpdateRunGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRunGroupCommandOutput) => void): void;
|
|
627
|
+
/**
|
|
628
|
+
* @see {@link UpdateSequenceStoreCommand}
|
|
629
|
+
*/
|
|
630
|
+
updateSequenceStore(args: UpdateSequenceStoreCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSequenceStoreCommandOutput>;
|
|
631
|
+
updateSequenceStore(args: UpdateSequenceStoreCommandInput, cb: (err: any, data?: UpdateSequenceStoreCommandOutput) => void): void;
|
|
632
|
+
updateSequenceStore(args: UpdateSequenceStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSequenceStoreCommandOutput) => void): void;
|
|
605
633
|
/**
|
|
606
634
|
* @see {@link UpdateVariantStoreCommand}
|
|
607
635
|
*/
|
|
@@ -31,6 +31,7 @@ import { DeleteReferenceStoreCommandInput, DeleteReferenceStoreCommandOutput } f
|
|
|
31
31
|
import { DeleteRunCacheCommandInput, DeleteRunCacheCommandOutput } from "./commands/DeleteRunCacheCommand";
|
|
32
32
|
import { DeleteRunCommandInput, DeleteRunCommandOutput } from "./commands/DeleteRunCommand";
|
|
33
33
|
import { DeleteRunGroupCommandInput, DeleteRunGroupCommandOutput } from "./commands/DeleteRunGroupCommand";
|
|
34
|
+
import { DeleteS3AccessPolicyCommandInput, DeleteS3AccessPolicyCommandOutput } from "./commands/DeleteS3AccessPolicyCommand";
|
|
34
35
|
import { DeleteSequenceStoreCommandInput, DeleteSequenceStoreCommandOutput } from "./commands/DeleteSequenceStoreCommand";
|
|
35
36
|
import { DeleteShareCommandInput, DeleteShareCommandOutput } from "./commands/DeleteShareCommand";
|
|
36
37
|
import { DeleteVariantStoreCommandInput, DeleteVariantStoreCommandOutput } from "./commands/DeleteVariantStoreCommand";
|
|
@@ -51,6 +52,7 @@ import { GetRunCacheCommandInput, GetRunCacheCommandOutput } from "./commands/Ge
|
|
|
51
52
|
import { GetRunCommandInput, GetRunCommandOutput } from "./commands/GetRunCommand";
|
|
52
53
|
import { GetRunGroupCommandInput, GetRunGroupCommandOutput } from "./commands/GetRunGroupCommand";
|
|
53
54
|
import { GetRunTaskCommandInput, GetRunTaskCommandOutput } from "./commands/GetRunTaskCommand";
|
|
55
|
+
import { GetS3AccessPolicyCommandInput, GetS3AccessPolicyCommandOutput } from "./commands/GetS3AccessPolicyCommand";
|
|
54
56
|
import { GetSequenceStoreCommandInput, GetSequenceStoreCommandOutput } from "./commands/GetSequenceStoreCommand";
|
|
55
57
|
import { GetShareCommandInput, GetShareCommandOutput } from "./commands/GetShareCommand";
|
|
56
58
|
import { GetVariantImportJobCommandInput, GetVariantImportJobCommandOutput } from "./commands/GetVariantImportJobCommand";
|
|
@@ -78,6 +80,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
78
80
|
import { ListVariantImportJobsCommandInput, ListVariantImportJobsCommandOutput } from "./commands/ListVariantImportJobsCommand";
|
|
79
81
|
import { ListVariantStoresCommandInput, ListVariantStoresCommandOutput } from "./commands/ListVariantStoresCommand";
|
|
80
82
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
83
|
+
import { PutS3AccessPolicyCommandInput, PutS3AccessPolicyCommandOutput } from "./commands/PutS3AccessPolicyCommand";
|
|
81
84
|
import { StartAnnotationImportJobCommandInput, StartAnnotationImportJobCommandOutput } from "./commands/StartAnnotationImportJobCommand";
|
|
82
85
|
import { StartReadSetActivationJobCommandInput, StartReadSetActivationJobCommandOutput } from "./commands/StartReadSetActivationJobCommand";
|
|
83
86
|
import { StartReadSetExportJobCommandInput, StartReadSetExportJobCommandOutput } from "./commands/StartReadSetExportJobCommand";
|
|
@@ -91,6 +94,7 @@ import { UpdateAnnotationStoreCommandInput, UpdateAnnotationStoreCommandOutput }
|
|
|
91
94
|
import { UpdateAnnotationStoreVersionCommandInput, UpdateAnnotationStoreVersionCommandOutput } from "./commands/UpdateAnnotationStoreVersionCommand";
|
|
92
95
|
import { UpdateRunCacheCommandInput, UpdateRunCacheCommandOutput } from "./commands/UpdateRunCacheCommand";
|
|
93
96
|
import { UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput } from "./commands/UpdateRunGroupCommand";
|
|
97
|
+
import { UpdateSequenceStoreCommandInput, UpdateSequenceStoreCommandOutput } from "./commands/UpdateSequenceStoreCommand";
|
|
94
98
|
import { UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput } from "./commands/UpdateVariantStoreCommand";
|
|
95
99
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "./commands/UpdateWorkflowCommand";
|
|
96
100
|
import { UploadReadSetPartCommandInput, UploadReadSetPartCommandOutput } from "./commands/UploadReadSetPartCommand";
|
|
@@ -100,11 +104,11 @@ export { __Client };
|
|
|
100
104
|
/**
|
|
101
105
|
* @public
|
|
102
106
|
*/
|
|
103
|
-
export type ServiceInputTypes = AbortMultipartReadSetUploadCommandInput | AcceptShareCommandInput | BatchDeleteReadSetCommandInput | CancelAnnotationImportJobCommandInput | CancelRunCommandInput | CancelVariantImportJobCommandInput | CompleteMultipartReadSetUploadCommandInput | CreateAnnotationStoreCommandInput | CreateAnnotationStoreVersionCommandInput | CreateMultipartReadSetUploadCommandInput | CreateReferenceStoreCommandInput | CreateRunCacheCommandInput | CreateRunGroupCommandInput | CreateSequenceStoreCommandInput | CreateShareCommandInput | CreateVariantStoreCommandInput | CreateWorkflowCommandInput | DeleteAnnotationStoreCommandInput | DeleteAnnotationStoreVersionsCommandInput | DeleteReferenceCommandInput | DeleteReferenceStoreCommandInput | DeleteRunCacheCommandInput | DeleteRunCommandInput | DeleteRunGroupCommandInput | DeleteSequenceStoreCommandInput | DeleteShareCommandInput | DeleteVariantStoreCommandInput | DeleteWorkflowCommandInput | GetAnnotationImportJobCommandInput | GetAnnotationStoreCommandInput | GetAnnotationStoreVersionCommandInput | GetReadSetActivationJobCommandInput | GetReadSetCommandInput | GetReadSetExportJobCommandInput | GetReadSetImportJobCommandInput | GetReadSetMetadataCommandInput | GetReferenceCommandInput | GetReferenceImportJobCommandInput | GetReferenceMetadataCommandInput | GetReferenceStoreCommandInput | GetRunCacheCommandInput | GetRunCommandInput | GetRunGroupCommandInput | GetRunTaskCommandInput | GetSequenceStoreCommandInput | GetShareCommandInput | GetVariantImportJobCommandInput | GetVariantStoreCommandInput | GetWorkflowCommandInput | ListAnnotationImportJobsCommandInput | ListAnnotationStoreVersionsCommandInput | ListAnnotationStoresCommandInput | ListMultipartReadSetUploadsCommandInput | ListReadSetActivationJobsCommandInput | ListReadSetExportJobsCommandInput | ListReadSetImportJobsCommandInput | ListReadSetUploadPartsCommandInput | ListReadSetsCommandInput | ListReferenceImportJobsCommandInput | ListReferenceStoresCommandInput | ListReferencesCommandInput | ListRunCachesCommandInput | ListRunGroupsCommandInput | ListRunTasksCommandInput | ListRunsCommandInput | ListSequenceStoresCommandInput | ListSharesCommandInput | ListTagsForResourceCommandInput | ListVariantImportJobsCommandInput | ListVariantStoresCommandInput | ListWorkflowsCommandInput | StartAnnotationImportJobCommandInput | StartReadSetActivationJobCommandInput | StartReadSetExportJobCommandInput | StartReadSetImportJobCommandInput | StartReferenceImportJobCommandInput | StartRunCommandInput | StartVariantImportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnnotationStoreCommandInput | UpdateAnnotationStoreVersionCommandInput | UpdateRunCacheCommandInput | UpdateRunGroupCommandInput | UpdateVariantStoreCommandInput | UpdateWorkflowCommandInput | UploadReadSetPartCommandInput;
|
|
107
|
+
export type ServiceInputTypes = AbortMultipartReadSetUploadCommandInput | AcceptShareCommandInput | BatchDeleteReadSetCommandInput | CancelAnnotationImportJobCommandInput | CancelRunCommandInput | CancelVariantImportJobCommandInput | CompleteMultipartReadSetUploadCommandInput | CreateAnnotationStoreCommandInput | CreateAnnotationStoreVersionCommandInput | CreateMultipartReadSetUploadCommandInput | CreateReferenceStoreCommandInput | CreateRunCacheCommandInput | CreateRunGroupCommandInput | CreateSequenceStoreCommandInput | CreateShareCommandInput | CreateVariantStoreCommandInput | CreateWorkflowCommandInput | DeleteAnnotationStoreCommandInput | DeleteAnnotationStoreVersionsCommandInput | DeleteReferenceCommandInput | DeleteReferenceStoreCommandInput | DeleteRunCacheCommandInput | DeleteRunCommandInput | DeleteRunGroupCommandInput | DeleteS3AccessPolicyCommandInput | DeleteSequenceStoreCommandInput | DeleteShareCommandInput | DeleteVariantStoreCommandInput | DeleteWorkflowCommandInput | GetAnnotationImportJobCommandInput | GetAnnotationStoreCommandInput | GetAnnotationStoreVersionCommandInput | GetReadSetActivationJobCommandInput | GetReadSetCommandInput | GetReadSetExportJobCommandInput | GetReadSetImportJobCommandInput | GetReadSetMetadataCommandInput | GetReferenceCommandInput | GetReferenceImportJobCommandInput | GetReferenceMetadataCommandInput | GetReferenceStoreCommandInput | GetRunCacheCommandInput | GetRunCommandInput | GetRunGroupCommandInput | GetRunTaskCommandInput | GetS3AccessPolicyCommandInput | GetSequenceStoreCommandInput | GetShareCommandInput | GetVariantImportJobCommandInput | GetVariantStoreCommandInput | GetWorkflowCommandInput | ListAnnotationImportJobsCommandInput | ListAnnotationStoreVersionsCommandInput | ListAnnotationStoresCommandInput | ListMultipartReadSetUploadsCommandInput | ListReadSetActivationJobsCommandInput | ListReadSetExportJobsCommandInput | ListReadSetImportJobsCommandInput | ListReadSetUploadPartsCommandInput | ListReadSetsCommandInput | ListReferenceImportJobsCommandInput | ListReferenceStoresCommandInput | ListReferencesCommandInput | ListRunCachesCommandInput | ListRunGroupsCommandInput | ListRunTasksCommandInput | ListRunsCommandInput | ListSequenceStoresCommandInput | ListSharesCommandInput | ListTagsForResourceCommandInput | ListVariantImportJobsCommandInput | ListVariantStoresCommandInput | ListWorkflowsCommandInput | PutS3AccessPolicyCommandInput | StartAnnotationImportJobCommandInput | StartReadSetActivationJobCommandInput | StartReadSetExportJobCommandInput | StartReadSetImportJobCommandInput | StartReferenceImportJobCommandInput | StartRunCommandInput | StartVariantImportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnnotationStoreCommandInput | UpdateAnnotationStoreVersionCommandInput | UpdateRunCacheCommandInput | UpdateRunGroupCommandInput | UpdateSequenceStoreCommandInput | UpdateVariantStoreCommandInput | UpdateWorkflowCommandInput | UploadReadSetPartCommandInput;
|
|
104
108
|
/**
|
|
105
109
|
* @public
|
|
106
110
|
*/
|
|
107
|
-
export type ServiceOutputTypes = AbortMultipartReadSetUploadCommandOutput | AcceptShareCommandOutput | BatchDeleteReadSetCommandOutput | CancelAnnotationImportJobCommandOutput | CancelRunCommandOutput | CancelVariantImportJobCommandOutput | CompleteMultipartReadSetUploadCommandOutput | CreateAnnotationStoreCommandOutput | CreateAnnotationStoreVersionCommandOutput | CreateMultipartReadSetUploadCommandOutput | CreateReferenceStoreCommandOutput | CreateRunCacheCommandOutput | CreateRunGroupCommandOutput | CreateSequenceStoreCommandOutput | CreateShareCommandOutput | CreateVariantStoreCommandOutput | CreateWorkflowCommandOutput | DeleteAnnotationStoreCommandOutput | DeleteAnnotationStoreVersionsCommandOutput | DeleteReferenceCommandOutput | DeleteReferenceStoreCommandOutput | DeleteRunCacheCommandOutput | DeleteRunCommandOutput | DeleteRunGroupCommandOutput | DeleteSequenceStoreCommandOutput | DeleteShareCommandOutput | DeleteVariantStoreCommandOutput | DeleteWorkflowCommandOutput | GetAnnotationImportJobCommandOutput | GetAnnotationStoreCommandOutput | GetAnnotationStoreVersionCommandOutput | GetReadSetActivationJobCommandOutput | GetReadSetCommandOutput | GetReadSetExportJobCommandOutput | GetReadSetImportJobCommandOutput | GetReadSetMetadataCommandOutput | GetReferenceCommandOutput | GetReferenceImportJobCommandOutput | GetReferenceMetadataCommandOutput | GetReferenceStoreCommandOutput | GetRunCacheCommandOutput | GetRunCommandOutput | GetRunGroupCommandOutput | GetRunTaskCommandOutput | GetSequenceStoreCommandOutput | GetShareCommandOutput | GetVariantImportJobCommandOutput | GetVariantStoreCommandOutput | GetWorkflowCommandOutput | ListAnnotationImportJobsCommandOutput | ListAnnotationStoreVersionsCommandOutput | ListAnnotationStoresCommandOutput | ListMultipartReadSetUploadsCommandOutput | ListReadSetActivationJobsCommandOutput | ListReadSetExportJobsCommandOutput | ListReadSetImportJobsCommandOutput | ListReadSetUploadPartsCommandOutput | ListReadSetsCommandOutput | ListReferenceImportJobsCommandOutput | ListReferenceStoresCommandOutput | ListReferencesCommandOutput | ListRunCachesCommandOutput | ListRunGroupsCommandOutput | ListRunTasksCommandOutput | ListRunsCommandOutput | ListSequenceStoresCommandOutput | ListSharesCommandOutput | ListTagsForResourceCommandOutput | ListVariantImportJobsCommandOutput | ListVariantStoresCommandOutput | ListWorkflowsCommandOutput | StartAnnotationImportJobCommandOutput | StartReadSetActivationJobCommandOutput | StartReadSetExportJobCommandOutput | StartReadSetImportJobCommandOutput | StartReferenceImportJobCommandOutput | StartRunCommandOutput | StartVariantImportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnnotationStoreCommandOutput | UpdateAnnotationStoreVersionCommandOutput | UpdateRunCacheCommandOutput | UpdateRunGroupCommandOutput | UpdateVariantStoreCommandOutput | UpdateWorkflowCommandOutput | UploadReadSetPartCommandOutput;
|
|
111
|
+
export type ServiceOutputTypes = AbortMultipartReadSetUploadCommandOutput | AcceptShareCommandOutput | BatchDeleteReadSetCommandOutput | CancelAnnotationImportJobCommandOutput | CancelRunCommandOutput | CancelVariantImportJobCommandOutput | CompleteMultipartReadSetUploadCommandOutput | CreateAnnotationStoreCommandOutput | CreateAnnotationStoreVersionCommandOutput | CreateMultipartReadSetUploadCommandOutput | CreateReferenceStoreCommandOutput | CreateRunCacheCommandOutput | CreateRunGroupCommandOutput | CreateSequenceStoreCommandOutput | CreateShareCommandOutput | CreateVariantStoreCommandOutput | CreateWorkflowCommandOutput | DeleteAnnotationStoreCommandOutput | DeleteAnnotationStoreVersionsCommandOutput | DeleteReferenceCommandOutput | DeleteReferenceStoreCommandOutput | DeleteRunCacheCommandOutput | DeleteRunCommandOutput | DeleteRunGroupCommandOutput | DeleteS3AccessPolicyCommandOutput | DeleteSequenceStoreCommandOutput | DeleteShareCommandOutput | DeleteVariantStoreCommandOutput | DeleteWorkflowCommandOutput | GetAnnotationImportJobCommandOutput | GetAnnotationStoreCommandOutput | GetAnnotationStoreVersionCommandOutput | GetReadSetActivationJobCommandOutput | GetReadSetCommandOutput | GetReadSetExportJobCommandOutput | GetReadSetImportJobCommandOutput | GetReadSetMetadataCommandOutput | GetReferenceCommandOutput | GetReferenceImportJobCommandOutput | GetReferenceMetadataCommandOutput | GetReferenceStoreCommandOutput | GetRunCacheCommandOutput | GetRunCommandOutput | GetRunGroupCommandOutput | GetRunTaskCommandOutput | GetS3AccessPolicyCommandOutput | GetSequenceStoreCommandOutput | GetShareCommandOutput | GetVariantImportJobCommandOutput | GetVariantStoreCommandOutput | GetWorkflowCommandOutput | ListAnnotationImportJobsCommandOutput | ListAnnotationStoreVersionsCommandOutput | ListAnnotationStoresCommandOutput | ListMultipartReadSetUploadsCommandOutput | ListReadSetActivationJobsCommandOutput | ListReadSetExportJobsCommandOutput | ListReadSetImportJobsCommandOutput | ListReadSetUploadPartsCommandOutput | ListReadSetsCommandOutput | ListReferenceImportJobsCommandOutput | ListReferenceStoresCommandOutput | ListReferencesCommandOutput | ListRunCachesCommandOutput | ListRunGroupsCommandOutput | ListRunTasksCommandOutput | ListRunsCommandOutput | ListSequenceStoresCommandOutput | ListSharesCommandOutput | ListTagsForResourceCommandOutput | ListVariantImportJobsCommandOutput | ListVariantStoresCommandOutput | ListWorkflowsCommandOutput | PutS3AccessPolicyCommandOutput | StartAnnotationImportJobCommandOutput | StartReadSetActivationJobCommandOutput | StartReadSetExportJobCommandOutput | StartReadSetImportJobCommandOutput | StartReferenceImportJobCommandOutput | StartRunCommandOutput | StartVariantImportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnnotationStoreCommandOutput | UpdateAnnotationStoreVersionCommandOutput | UpdateRunCacheCommandOutput | UpdateRunGroupCommandOutput | UpdateSequenceStoreCommandOutput | UpdateVariantStoreCommandOutput | UpdateWorkflowCommandOutput | UploadReadSetPartCommandOutput;
|
|
108
112
|
/**
|
|
109
113
|
* @public
|
|
110
114
|
*/
|
|
@@ -47,6 +47,12 @@ declare const CreateSequenceStoreCommand_base: {
|
|
|
47
47
|
* clientToken: "STRING_VALUE",
|
|
48
48
|
* fallbackLocation: "STRING_VALUE",
|
|
49
49
|
* eTagAlgorithmFamily: "STRING_VALUE",
|
|
50
|
+
* propagatedSetLevelTags: [ // PropagatedSetLevelTags
|
|
51
|
+
* "STRING_VALUE",
|
|
52
|
+
* ],
|
|
53
|
+
* s3AccessConfig: { // S3AccessConfig
|
|
54
|
+
* accessLogLocation: "STRING_VALUE",
|
|
55
|
+
* },
|
|
50
56
|
* };
|
|
51
57
|
* const command = new CreateSequenceStoreCommand(input);
|
|
52
58
|
* const response = await client.send(command);
|
|
@@ -62,6 +68,16 @@ declare const CreateSequenceStoreCommand_base: {
|
|
|
62
68
|
* // creationTime: new Date("TIMESTAMP"), // required
|
|
63
69
|
* // fallbackLocation: "STRING_VALUE",
|
|
64
70
|
* // eTagAlgorithmFamily: "STRING_VALUE",
|
|
71
|
+
* // status: "STRING_VALUE",
|
|
72
|
+
* // statusMessage: "STRING_VALUE",
|
|
73
|
+
* // propagatedSetLevelTags: [ // PropagatedSetLevelTags
|
|
74
|
+
* // "STRING_VALUE",
|
|
75
|
+
* // ],
|
|
76
|
+
* // s3Access: { // SequenceStoreS3Access
|
|
77
|
+
* // s3Uri: "STRING_VALUE",
|
|
78
|
+
* // s3AccessPointArn: "STRING_VALUE",
|
|
79
|
+
* // accessLogLocation: "STRING_VALUE",
|
|
80
|
+
* // },
|
|
65
81
|
* // };
|
|
66
82
|
*
|
|
67
83
|
* ```
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteS3AccessPolicyRequest, DeleteS3AccessPolicyResponse } from "../models/models_0";
|
|
4
|
+
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteS3AccessPolicyCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteS3AccessPolicyCommandInput extends DeleteS3AccessPolicyRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteS3AccessPolicyCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteS3AccessPolicyCommandOutput extends DeleteS3AccessPolicyResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteS3AccessPolicyCommand_base: {
|
|
25
|
+
new (input: DeleteS3AccessPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteS3AccessPolicyCommandInput, DeleteS3AccessPolicyCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteS3AccessPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteS3AccessPolicyCommandInput, DeleteS3AccessPolicyCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes an access policy for the specified store.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { OmicsClient, DeleteS3AccessPolicyCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
35
|
+
* // const { OmicsClient, DeleteS3AccessPolicyCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
36
|
+
* const client = new OmicsClient(config);
|
|
37
|
+
* const input = { // DeleteS3AccessPolicyRequest
|
|
38
|
+
* s3AccessPointArn: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new DeleteS3AccessPolicyCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* @param DeleteS3AccessPolicyCommandInput - {@link DeleteS3AccessPolicyCommandInput}
|
|
47
|
+
* @returns {@link DeleteS3AccessPolicyCommandOutput}
|
|
48
|
+
* @see {@link DeleteS3AccessPolicyCommandInput} for command's `input` shape.
|
|
49
|
+
* @see {@link DeleteS3AccessPolicyCommandOutput} for command's `response` shape.
|
|
50
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
53
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InternalServerException} (server fault)
|
|
56
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link NotSupportedOperationException} (client fault)
|
|
59
|
+
* <p>
|
|
60
|
+
* The operation is not supported by Amazon Omics, or the API does not exist.
|
|
61
|
+
* </p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
64
|
+
* <p>The request timed out.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
67
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
70
|
+
* <p>The request was denied due to request throttling.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ValidationException} (client fault)
|
|
73
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link OmicsServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
77
|
+
*
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export declare class DeleteS3AccessPolicyCommand extends DeleteS3AccessPolicyCommand_base {
|
|
81
|
+
/** @internal type navigation helper, not in runtime. */
|
|
82
|
+
protected static __types: {
|
|
83
|
+
api: {
|
|
84
|
+
input: DeleteS3AccessPolicyRequest;
|
|
85
|
+
output: {};
|
|
86
|
+
};
|
|
87
|
+
sdk: {
|
|
88
|
+
input: DeleteS3AccessPolicyCommandInput;
|
|
89
|
+
output: DeleteS3AccessPolicyCommandOutput;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
}
|