@aws-sdk/client-omics 3.1014.0 → 3.1015.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 +56 -7
- package/dist-cjs/index.js +141 -14
- package/dist-cjs/schemas/schemas_0.js +230 -32
- package/dist-es/Omics.js +18 -0
- package/dist-es/commands/CancelRunBatchCommand.js +16 -0
- package/dist-es/commands/DeleteBatchCommand.js +16 -0
- package/dist-es/commands/DeleteRunBatchCommand.js +16 -0
- package/dist-es/commands/GetBatchCommand.js +16 -0
- package/dist-es/commands/ListBatchCommand.js +16 -0
- package/dist-es/commands/ListRunsInBatchCommand.js +16 -0
- package/dist-es/commands/StartRunBatchCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/enums.js +33 -14
- package/dist-es/pagination/ListBatchPaginator.js +4 -0
- package/dist-es/pagination/ListRunsInBatchPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +222 -24
- package/dist-types/Omics.d.ts +64 -0
- package/dist-types/OmicsClient.d.ts +9 -2
- package/dist-types/commands/CancelAnnotationImportJobCommand.d.ts +1 -1
- package/dist-types/commands/CancelRunBatchCommand.d.ts +96 -0
- package/dist-types/commands/CancelVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/CreateVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBatchCommand.d.ts +96 -0
- package/dist-types/commands/DeleteRunBatchCommand.d.ts +96 -0
- package/dist-types/commands/DeleteVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetBatchCommand.d.ts +146 -0
- package/dist-types/commands/GetRunCommand.d.ts +1 -0
- package/dist-types/commands/GetVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListAnnotationStoresCommand.d.ts +1 -1
- package/dist-types/commands/ListBatchCommand.d.ts +103 -0
- package/dist-types/commands/ListRunsCommand.d.ts +2 -0
- package/dist-types/commands/ListRunsInBatchCommand.d.ts +114 -0
- package/dist-types/commands/ListVariantImportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListVariantStoresCommand.d.ts +1 -1
- package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartRunBatchCommand.d.ts +144 -0
- package/dist-types/commands/StartVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +73 -38
- package/dist-types/models/models_0.d.ts +648 -2
- package/dist-types/pagination/ListBatchPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRunsInBatchPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +27 -0
- package/dist-types/ts3.4/Omics.d.ts +134 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelRunBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteBatchCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteRunBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetBatchCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListBatchCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListRunsInBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartRunBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/enums.d.ts +40 -18
- package/dist-types/ts3.4/models/models_0.d.ts +164 -0
- package/dist-types/ts3.4/pagination/ListBatchPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRunsInBatchPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/package.json +5 -5
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteBatchRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
OmicsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../OmicsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteBatchCommandInput extends DeleteBatchRequest {}
|
|
12
|
+
export interface DeleteBatchCommandOutput extends __MetadataBearer {}
|
|
13
|
+
declare const DeleteBatchCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: DeleteBatchCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
DeleteBatchCommandInput,
|
|
18
|
+
DeleteBatchCommandOutput,
|
|
19
|
+
OmicsClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
input: DeleteBatchCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
DeleteBatchCommandInput,
|
|
27
|
+
DeleteBatchCommandOutput,
|
|
28
|
+
OmicsClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class DeleteBatchCommand extends DeleteBatchCommand_base {
|
|
35
|
+
protected static __types: {
|
|
36
|
+
api: {
|
|
37
|
+
input: DeleteBatchRequest;
|
|
38
|
+
output: {};
|
|
39
|
+
};
|
|
40
|
+
sdk: {
|
|
41
|
+
input: DeleteBatchCommandInput;
|
|
42
|
+
output: DeleteBatchCommandOutput;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteRunBatchRequest,
|
|
5
|
+
DeleteRunBatchResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OmicsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OmicsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteRunBatchCommandInput extends DeleteRunBatchRequest {}
|
|
15
|
+
export interface DeleteRunBatchCommandOutput
|
|
16
|
+
extends DeleteRunBatchResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeleteRunBatchCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteRunBatchCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteRunBatchCommandInput,
|
|
23
|
+
DeleteRunBatchCommandOutput,
|
|
24
|
+
OmicsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: DeleteRunBatchCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteRunBatchCommandInput,
|
|
32
|
+
DeleteRunBatchCommandOutput,
|
|
33
|
+
OmicsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeleteRunBatchCommand extends DeleteRunBatchCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DeleteRunBatchRequest;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DeleteRunBatchCommandInput;
|
|
47
|
+
output: DeleteRunBatchCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetBatchRequest, GetBatchResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
OmicsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../OmicsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetBatchCommandInput extends GetBatchRequest {}
|
|
12
|
+
export interface GetBatchCommandOutput
|
|
13
|
+
extends GetBatchResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetBatchCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetBatchCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetBatchCommandInput,
|
|
20
|
+
GetBatchCommandOutput,
|
|
21
|
+
OmicsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: GetBatchCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetBatchCommandInput,
|
|
29
|
+
GetBatchCommandOutput,
|
|
30
|
+
OmicsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetBatchCommand extends GetBatchCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetBatchRequest;
|
|
40
|
+
output: GetBatchResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetBatchCommandInput;
|
|
44
|
+
output: GetBatchCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListBatchRequest, ListBatchResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
OmicsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../OmicsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListBatchCommandInput extends ListBatchRequest {}
|
|
12
|
+
export interface ListBatchCommandOutput
|
|
13
|
+
extends ListBatchResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListBatchCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListBatchCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListBatchCommandInput,
|
|
20
|
+
ListBatchCommandOutput,
|
|
21
|
+
OmicsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListBatchCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListBatchCommandInput,
|
|
29
|
+
ListBatchCommandOutput,
|
|
30
|
+
OmicsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListBatchCommand extends ListBatchCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListBatchRequest;
|
|
40
|
+
output: ListBatchResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListBatchCommandInput;
|
|
44
|
+
output: ListBatchCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListRunsInBatchRequest,
|
|
5
|
+
ListRunsInBatchResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OmicsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OmicsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListRunsInBatchCommandInput extends ListRunsInBatchRequest {}
|
|
15
|
+
export interface ListRunsInBatchCommandOutput
|
|
16
|
+
extends ListRunsInBatchResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListRunsInBatchCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListRunsInBatchCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListRunsInBatchCommandInput,
|
|
23
|
+
ListRunsInBatchCommandOutput,
|
|
24
|
+
OmicsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: ListRunsInBatchCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListRunsInBatchCommandInput,
|
|
32
|
+
ListRunsInBatchCommandOutput,
|
|
33
|
+
OmicsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListRunsInBatchCommand extends ListRunsInBatchCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListRunsInBatchRequest;
|
|
43
|
+
output: ListRunsInBatchResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListRunsInBatchCommandInput;
|
|
47
|
+
output: ListRunsInBatchCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
StartRunBatchRequest,
|
|
5
|
+
StartRunBatchResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OmicsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OmicsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartRunBatchCommandInput extends StartRunBatchRequest {}
|
|
15
|
+
export interface StartRunBatchCommandOutput
|
|
16
|
+
extends StartRunBatchResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const StartRunBatchCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: StartRunBatchCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
StartRunBatchCommandInput,
|
|
23
|
+
StartRunBatchCommandOutput,
|
|
24
|
+
OmicsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: StartRunBatchCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StartRunBatchCommandInput,
|
|
32
|
+
StartRunBatchCommandOutput,
|
|
33
|
+
OmicsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class StartRunBatchCommand extends StartRunBatchCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: StartRunBatchRequest;
|
|
43
|
+
output: StartRunBatchResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: StartRunBatchCommandInput;
|
|
47
|
+
output: StartRunBatchCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -2,6 +2,7 @@ export * from "./AbortMultipartReadSetUploadCommand";
|
|
|
2
2
|
export * from "./AcceptShareCommand";
|
|
3
3
|
export * from "./BatchDeleteReadSetCommand";
|
|
4
4
|
export * from "./CancelAnnotationImportJobCommand";
|
|
5
|
+
export * from "./CancelRunBatchCommand";
|
|
5
6
|
export * from "./CancelRunCommand";
|
|
6
7
|
export * from "./CancelVariantImportJobCommand";
|
|
7
8
|
export * from "./CompleteMultipartReadSetUploadCommand";
|
|
@@ -18,8 +19,10 @@ export * from "./CreateWorkflowCommand";
|
|
|
18
19
|
export * from "./CreateWorkflowVersionCommand";
|
|
19
20
|
export * from "./DeleteAnnotationStoreCommand";
|
|
20
21
|
export * from "./DeleteAnnotationStoreVersionsCommand";
|
|
22
|
+
export * from "./DeleteBatchCommand";
|
|
21
23
|
export * from "./DeleteReferenceCommand";
|
|
22
24
|
export * from "./DeleteReferenceStoreCommand";
|
|
25
|
+
export * from "./DeleteRunBatchCommand";
|
|
23
26
|
export * from "./DeleteRunCacheCommand";
|
|
24
27
|
export * from "./DeleteRunCommand";
|
|
25
28
|
export * from "./DeleteRunGroupCommand";
|
|
@@ -32,6 +35,7 @@ export * from "./DeleteWorkflowVersionCommand";
|
|
|
32
35
|
export * from "./GetAnnotationImportJobCommand";
|
|
33
36
|
export * from "./GetAnnotationStoreCommand";
|
|
34
37
|
export * from "./GetAnnotationStoreVersionCommand";
|
|
38
|
+
export * from "./GetBatchCommand";
|
|
35
39
|
export * from "./GetReadSetActivationJobCommand";
|
|
36
40
|
export * from "./GetReadSetCommand";
|
|
37
41
|
export * from "./GetReadSetExportJobCommand";
|
|
@@ -55,6 +59,7 @@ export * from "./GetWorkflowVersionCommand";
|
|
|
55
59
|
export * from "./ListAnnotationImportJobsCommand";
|
|
56
60
|
export * from "./ListAnnotationStoreVersionsCommand";
|
|
57
61
|
export * from "./ListAnnotationStoresCommand";
|
|
62
|
+
export * from "./ListBatchCommand";
|
|
58
63
|
export * from "./ListMultipartReadSetUploadsCommand";
|
|
59
64
|
export * from "./ListReadSetActivationJobsCommand";
|
|
60
65
|
export * from "./ListReadSetExportJobsCommand";
|
|
@@ -68,6 +73,7 @@ export * from "./ListRunCachesCommand";
|
|
|
68
73
|
export * from "./ListRunGroupsCommand";
|
|
69
74
|
export * from "./ListRunTasksCommand";
|
|
70
75
|
export * from "./ListRunsCommand";
|
|
76
|
+
export * from "./ListRunsInBatchCommand";
|
|
71
77
|
export * from "./ListSequenceStoresCommand";
|
|
72
78
|
export * from "./ListSharesCommand";
|
|
73
79
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -81,6 +87,7 @@ export * from "./StartReadSetActivationJobCommand";
|
|
|
81
87
|
export * from "./StartReadSetExportJobCommand";
|
|
82
88
|
export * from "./StartReadSetImportJobCommand";
|
|
83
89
|
export * from "./StartReferenceImportJobCommand";
|
|
90
|
+
export * from "./StartRunBatchCommand";
|
|
84
91
|
export * from "./StartRunCommand";
|
|
85
92
|
export * from "./StartVariantImportJobCommand";
|
|
86
93
|
export * from "./TagResourceCommand";
|
|
@@ -97,6 +97,18 @@ export declare const VersionStatus: {
|
|
|
97
97
|
readonly UPDATING: "UPDATING";
|
|
98
98
|
};
|
|
99
99
|
export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus];
|
|
100
|
+
export declare const BatchStatus: {
|
|
101
|
+
readonly CANCELLED: "CANCELLED";
|
|
102
|
+
readonly FAILED: "FAILED";
|
|
103
|
+
readonly INPROGRESS: "INPROGRESS";
|
|
104
|
+
readonly PENDING: "PENDING";
|
|
105
|
+
readonly PROCESSED: "PROCESSED";
|
|
106
|
+
readonly RUNS_DELETED: "RUNS_DELETED";
|
|
107
|
+
readonly RUNS_DELETING: "RUNS_DELETING";
|
|
108
|
+
readonly STOPPING: "STOPPING";
|
|
109
|
+
readonly SUBMITTING: "SUBMITTING";
|
|
110
|
+
};
|
|
111
|
+
export type BatchStatus = (typeof BatchStatus)[keyof typeof BatchStatus];
|
|
100
112
|
export declare const CacheBehavior: {
|
|
101
113
|
readonly CACHE_ALWAYS: "CACHE_ALWAYS";
|
|
102
114
|
readonly CACHE_ON_FAILURE: "CACHE_ON_FAILURE";
|
|
@@ -173,6 +185,24 @@ export declare const CreationType: {
|
|
|
173
185
|
readonly UPLOAD: "UPLOAD";
|
|
174
186
|
};
|
|
175
187
|
export type CreationType = (typeof CreationType)[keyof typeof CreationType];
|
|
188
|
+
export declare const RunLogLevel: {
|
|
189
|
+
readonly ALL: "ALL";
|
|
190
|
+
readonly ERROR: "ERROR";
|
|
191
|
+
readonly FATAL: "FATAL";
|
|
192
|
+
readonly OFF: "OFF";
|
|
193
|
+
};
|
|
194
|
+
export type RunLogLevel = (typeof RunLogLevel)[keyof typeof RunLogLevel];
|
|
195
|
+
export declare const RunRetentionMode: {
|
|
196
|
+
readonly REMOVE: "REMOVE";
|
|
197
|
+
readonly RETAIN: "RETAIN";
|
|
198
|
+
};
|
|
199
|
+
export type RunRetentionMode =
|
|
200
|
+
(typeof RunRetentionMode)[keyof typeof RunRetentionMode];
|
|
201
|
+
export declare const WorkflowType: {
|
|
202
|
+
readonly PRIVATE: "PRIVATE";
|
|
203
|
+
readonly READY2RUN: "READY2RUN";
|
|
204
|
+
};
|
|
205
|
+
export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
|
|
176
206
|
export declare const ETagAlgorithm: {
|
|
177
207
|
readonly BAM_MD5UP: "BAM_MD5up";
|
|
178
208
|
readonly BAM_SHA256UP: "BAM_SHA256up";
|
|
@@ -286,19 +316,6 @@ export declare const RunExport: {
|
|
|
286
316
|
readonly DEFINITION: "DEFINITION";
|
|
287
317
|
};
|
|
288
318
|
export type RunExport = (typeof RunExport)[keyof typeof RunExport];
|
|
289
|
-
export declare const RunLogLevel: {
|
|
290
|
-
readonly ALL: "ALL";
|
|
291
|
-
readonly ERROR: "ERROR";
|
|
292
|
-
readonly FATAL: "FATAL";
|
|
293
|
-
readonly OFF: "OFF";
|
|
294
|
-
};
|
|
295
|
-
export type RunLogLevel = (typeof RunLogLevel)[keyof typeof RunLogLevel];
|
|
296
|
-
export declare const RunRetentionMode: {
|
|
297
|
-
readonly REMOVE: "REMOVE";
|
|
298
|
-
readonly RETAIN: "RETAIN";
|
|
299
|
-
};
|
|
300
|
-
export type RunRetentionMode =
|
|
301
|
-
(typeof RunRetentionMode)[keyof typeof RunRetentionMode];
|
|
302
319
|
export declare const RunStatus: {
|
|
303
320
|
readonly CANCELLED: "CANCELLED";
|
|
304
321
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -310,11 +327,6 @@ export declare const RunStatus: {
|
|
|
310
327
|
readonly STOPPING: "STOPPING";
|
|
311
328
|
};
|
|
312
329
|
export type RunStatus = (typeof RunStatus)[keyof typeof RunStatus];
|
|
313
|
-
export declare const WorkflowType: {
|
|
314
|
-
readonly PRIVATE: "PRIVATE";
|
|
315
|
-
readonly READY2RUN: "READY2RUN";
|
|
316
|
-
};
|
|
317
|
-
export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
|
|
318
330
|
export declare const TaskStatus: {
|
|
319
331
|
readonly CANCELLED: "CANCELLED";
|
|
320
332
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -336,6 +348,16 @@ export declare const WorkflowExport: {
|
|
|
336
348
|
};
|
|
337
349
|
export type WorkflowExport =
|
|
338
350
|
(typeof WorkflowExport)[keyof typeof WorkflowExport];
|
|
351
|
+
export declare const SubmissionStatus: {
|
|
352
|
+
readonly CANCEL_FAILED: "CANCEL_FAILED";
|
|
353
|
+
readonly CANCEL_SUCCESS: "CANCEL_SUCCESS";
|
|
354
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
355
|
+
readonly DELETE_SUCCESS: "DELETE_SUCCESS";
|
|
356
|
+
readonly FAILED: "FAILED";
|
|
357
|
+
readonly SUCCESS: "SUCCESS";
|
|
358
|
+
};
|
|
359
|
+
export type SubmissionStatus =
|
|
360
|
+
(typeof SubmissionStatus)[keyof typeof SubmissionStatus];
|
|
339
361
|
export declare const ResourceOwner: {
|
|
340
362
|
readonly OTHER: "OTHER";
|
|
341
363
|
readonly SELF: "SELF";
|
|
@@ -6,6 +6,7 @@ import {
|
|
|
6
6
|
import {
|
|
7
7
|
Accelerators,
|
|
8
8
|
AnnotationType,
|
|
9
|
+
BatchStatus,
|
|
9
10
|
CacheBehavior,
|
|
10
11
|
CreationType,
|
|
11
12
|
EncryptionType,
|
|
@@ -43,6 +44,7 @@ import {
|
|
|
43
44
|
StoreFormat,
|
|
44
45
|
StoreStatus,
|
|
45
46
|
StoreType,
|
|
47
|
+
SubmissionStatus,
|
|
46
48
|
TaskStatus,
|
|
47
49
|
VersionStatus,
|
|
48
50
|
WorkflowEngine,
|
|
@@ -443,9 +445,56 @@ export interface ReadSetBatchError {
|
|
|
443
445
|
export interface BatchDeleteReadSetResponse {
|
|
444
446
|
errors?: ReadSetBatchError[] | undefined;
|
|
445
447
|
}
|
|
448
|
+
export interface BatchListItem {
|
|
449
|
+
id?: string | undefined;
|
|
450
|
+
name?: string | undefined;
|
|
451
|
+
status?: BatchStatus | undefined;
|
|
452
|
+
createdAt?: Date | undefined;
|
|
453
|
+
totalRuns?: number | undefined;
|
|
454
|
+
workflowId?: string | undefined;
|
|
455
|
+
}
|
|
456
|
+
export interface InlineSetting {
|
|
457
|
+
runSettingId: string | undefined;
|
|
458
|
+
name?: string | undefined;
|
|
459
|
+
outputUri?: string | undefined;
|
|
460
|
+
priority?: number | undefined;
|
|
461
|
+
parameters?: __DocumentType | undefined;
|
|
462
|
+
outputBucketOwnerId?: string | undefined;
|
|
463
|
+
runTags?: Record<string, string> | undefined;
|
|
464
|
+
}
|
|
465
|
+
export type BatchRunSettings =
|
|
466
|
+
| BatchRunSettings.InlineSettingsMember
|
|
467
|
+
| BatchRunSettings.S3UriSettingsMember
|
|
468
|
+
| BatchRunSettings.$UnknownMember;
|
|
469
|
+
export declare namespace BatchRunSettings {
|
|
470
|
+
interface InlineSettingsMember {
|
|
471
|
+
inlineSettings: InlineSetting[];
|
|
472
|
+
s3UriSettings?: never;
|
|
473
|
+
$unknown?: never;
|
|
474
|
+
}
|
|
475
|
+
interface S3UriSettingsMember {
|
|
476
|
+
inlineSettings?: never;
|
|
477
|
+
s3UriSettings: string;
|
|
478
|
+
$unknown?: never;
|
|
479
|
+
}
|
|
480
|
+
interface $UnknownMember {
|
|
481
|
+
inlineSettings?: never;
|
|
482
|
+
s3UriSettings?: never;
|
|
483
|
+
$unknown: [string, any];
|
|
484
|
+
}
|
|
485
|
+
interface Visitor<T> {
|
|
486
|
+
inlineSettings: (value: InlineSetting[]) => T;
|
|
487
|
+
s3UriSettings: (value: string) => T;
|
|
488
|
+
_: (name: string, value: any) => T;
|
|
489
|
+
}
|
|
490
|
+
}
|
|
446
491
|
export interface CancelRunRequest {
|
|
447
492
|
id: string | undefined;
|
|
448
493
|
}
|
|
494
|
+
export interface CancelRunBatchRequest {
|
|
495
|
+
batchId: string | undefined;
|
|
496
|
+
}
|
|
497
|
+
export interface CancelRunBatchResponse {}
|
|
449
498
|
export interface CancelVariantImportRequest {
|
|
450
499
|
jobId: string | undefined;
|
|
451
500
|
}
|
|
@@ -677,6 +726,26 @@ export interface CreateWorkflowVersionResponse {
|
|
|
677
726
|
tags?: Record<string, string> | undefined;
|
|
678
727
|
uuid?: string | undefined;
|
|
679
728
|
}
|
|
729
|
+
export interface DefaultRunSetting {
|
|
730
|
+
workflowId: string | undefined;
|
|
731
|
+
workflowType?: WorkflowType | undefined;
|
|
732
|
+
roleArn: string | undefined;
|
|
733
|
+
name?: string | undefined;
|
|
734
|
+
cacheId?: string | undefined;
|
|
735
|
+
cacheBehavior?: CacheBehavior | undefined;
|
|
736
|
+
runGroupId?: string | undefined;
|
|
737
|
+
priority?: number | undefined;
|
|
738
|
+
parameters?: __DocumentType | undefined;
|
|
739
|
+
storageCapacity?: number | undefined;
|
|
740
|
+
outputUri?: string | undefined;
|
|
741
|
+
logLevel?: RunLogLevel | undefined;
|
|
742
|
+
runTags?: Record<string, string> | undefined;
|
|
743
|
+
retentionMode?: RunRetentionMode | undefined;
|
|
744
|
+
storageType?: StorageType | undefined;
|
|
745
|
+
workflowOwnerId?: string | undefined;
|
|
746
|
+
outputBucketOwnerId?: string | undefined;
|
|
747
|
+
workflowVersionName?: string | undefined;
|
|
748
|
+
}
|
|
680
749
|
export interface DefinitionRepositoryDetails {
|
|
681
750
|
connectionArn?: string | undefined;
|
|
682
751
|
fullRepositoryId?: string | undefined;
|
|
@@ -684,6 +753,9 @@ export interface DefinitionRepositoryDetails {
|
|
|
684
753
|
providerType?: string | undefined;
|
|
685
754
|
providerEndpoint?: string | undefined;
|
|
686
755
|
}
|
|
756
|
+
export interface DeleteBatchRequest {
|
|
757
|
+
batchId: string | undefined;
|
|
758
|
+
}
|
|
687
759
|
export interface DeleteReferenceRequest {
|
|
688
760
|
id: string | undefined;
|
|
689
761
|
referenceStoreId: string | undefined;
|
|
@@ -696,6 +768,10 @@ export interface DeleteReferenceStoreResponse {}
|
|
|
696
768
|
export interface DeleteRunRequest {
|
|
697
769
|
id: string | undefined;
|
|
698
770
|
}
|
|
771
|
+
export interface DeleteRunBatchRequest {
|
|
772
|
+
batchId: string | undefined;
|
|
773
|
+
}
|
|
774
|
+
export interface DeleteRunBatchResponse {}
|
|
699
775
|
export interface DeleteRunCacheRequest {
|
|
700
776
|
id: string | undefined;
|
|
701
777
|
}
|
|
@@ -770,6 +846,45 @@ export interface Filter {
|
|
|
770
846
|
status?: ShareStatus[] | undefined;
|
|
771
847
|
type?: ShareResourceType[] | undefined;
|
|
772
848
|
}
|
|
849
|
+
export interface GetBatchRequest {
|
|
850
|
+
batchId: string | undefined;
|
|
851
|
+
}
|
|
852
|
+
export interface RunSummary {
|
|
853
|
+
pendingRunCount?: number | undefined;
|
|
854
|
+
startingRunCount?: number | undefined;
|
|
855
|
+
runningRunCount?: number | undefined;
|
|
856
|
+
stoppingRunCount?: number | undefined;
|
|
857
|
+
completedRunCount?: number | undefined;
|
|
858
|
+
deletedRunCount?: number | undefined;
|
|
859
|
+
failedRunCount?: number | undefined;
|
|
860
|
+
cancelledRunCount?: number | undefined;
|
|
861
|
+
}
|
|
862
|
+
export interface SubmissionSummary {
|
|
863
|
+
successfulStartSubmissionCount?: number | undefined;
|
|
864
|
+
failedStartSubmissionCount?: number | undefined;
|
|
865
|
+
pendingStartSubmissionCount?: number | undefined;
|
|
866
|
+
successfulCancelSubmissionCount?: number | undefined;
|
|
867
|
+
failedCancelSubmissionCount?: number | undefined;
|
|
868
|
+
successfulDeleteSubmissionCount?: number | undefined;
|
|
869
|
+
failedDeleteSubmissionCount?: number | undefined;
|
|
870
|
+
}
|
|
871
|
+
export interface GetBatchResponse {
|
|
872
|
+
id?: string | undefined;
|
|
873
|
+
arn?: string | undefined;
|
|
874
|
+
uuid?: string | undefined;
|
|
875
|
+
name?: string | undefined;
|
|
876
|
+
status?: BatchStatus | undefined;
|
|
877
|
+
tags?: Record<string, string> | undefined;
|
|
878
|
+
totalRuns?: number | undefined;
|
|
879
|
+
defaultRunSetting?: DefaultRunSetting | undefined;
|
|
880
|
+
submissionSummary?: SubmissionSummary | undefined;
|
|
881
|
+
runSummary?: RunSummary | undefined;
|
|
882
|
+
creationTime?: Date | undefined;
|
|
883
|
+
submittedTime?: Date | undefined;
|
|
884
|
+
processedTime?: Date | undefined;
|
|
885
|
+
failedTime?: Date | undefined;
|
|
886
|
+
failureReason?: string | undefined;
|
|
887
|
+
}
|
|
773
888
|
export interface GetReadSetRequest {
|
|
774
889
|
id: string | undefined;
|
|
775
890
|
sequenceStoreId: string | undefined;
|
|
@@ -959,6 +1074,7 @@ export interface GetRunResponse {
|
|
|
959
1074
|
roleArn?: string | undefined;
|
|
960
1075
|
name?: string | undefined;
|
|
961
1076
|
runGroupId?: string | undefined;
|
|
1077
|
+
batchId?: string | undefined;
|
|
962
1078
|
priority?: number | undefined;
|
|
963
1079
|
definition?: string | undefined;
|
|
964
1080
|
digest?: string | undefined;
|
|
@@ -1214,6 +1330,17 @@ export interface ImportReferenceJobItem {
|
|
|
1214
1330
|
creationTime: Date | undefined;
|
|
1215
1331
|
completionTime?: Date | undefined;
|
|
1216
1332
|
}
|
|
1333
|
+
export interface ListBatchRequest {
|
|
1334
|
+
maxItems?: number | undefined;
|
|
1335
|
+
startingToken?: string | undefined;
|
|
1336
|
+
status?: BatchStatus | undefined;
|
|
1337
|
+
name?: string | undefined;
|
|
1338
|
+
runGroupId?: string | undefined;
|
|
1339
|
+
}
|
|
1340
|
+
export interface ListBatchResponse {
|
|
1341
|
+
items?: BatchListItem[] | undefined;
|
|
1342
|
+
nextToken?: string | undefined;
|
|
1343
|
+
}
|
|
1217
1344
|
export interface ListMultipartReadSetUploadsRequest {
|
|
1218
1345
|
sequenceStoreId: string | undefined;
|
|
1219
1346
|
maxResults?: number | undefined;
|
|
@@ -1426,6 +1553,7 @@ export interface ListRunGroupsResponse {
|
|
|
1426
1553
|
export interface ListRunsRequest {
|
|
1427
1554
|
name?: string | undefined;
|
|
1428
1555
|
runGroupId?: string | undefined;
|
|
1556
|
+
batchId?: string | undefined;
|
|
1429
1557
|
startingToken?: string | undefined;
|
|
1430
1558
|
maxResults?: number | undefined;
|
|
1431
1559
|
status?: RunStatus | undefined;
|
|
@@ -1435,6 +1563,7 @@ export interface RunListItem {
|
|
|
1435
1563
|
id?: string | undefined;
|
|
1436
1564
|
status?: RunStatus | undefined;
|
|
1437
1565
|
workflowId?: string | undefined;
|
|
1566
|
+
batchId?: string | undefined;
|
|
1438
1567
|
name?: string | undefined;
|
|
1439
1568
|
priority?: number | undefined;
|
|
1440
1569
|
storageCapacity?: number | undefined;
|
|
@@ -1448,6 +1577,27 @@ export interface ListRunsResponse {
|
|
|
1448
1577
|
items?: RunListItem[] | undefined;
|
|
1449
1578
|
nextToken?: string | undefined;
|
|
1450
1579
|
}
|
|
1580
|
+
export interface ListRunsInBatchRequest {
|
|
1581
|
+
batchId: string | undefined;
|
|
1582
|
+
maxItems?: number | undefined;
|
|
1583
|
+
startingToken?: string | undefined;
|
|
1584
|
+
submissionStatus?: SubmissionStatus | undefined;
|
|
1585
|
+
runSettingId?: string | undefined;
|
|
1586
|
+
runId?: string | undefined;
|
|
1587
|
+
}
|
|
1588
|
+
export interface RunBatchListItem {
|
|
1589
|
+
runSettingId?: string | undefined;
|
|
1590
|
+
runId?: string | undefined;
|
|
1591
|
+
runInternalUuid?: string | undefined;
|
|
1592
|
+
runArn?: string | undefined;
|
|
1593
|
+
submissionStatus?: SubmissionStatus | undefined;
|
|
1594
|
+
submissionFailureReason?: string | undefined;
|
|
1595
|
+
submissionFailureMessage?: string | undefined;
|
|
1596
|
+
}
|
|
1597
|
+
export interface ListRunsInBatchResponse {
|
|
1598
|
+
runs?: RunBatchListItem[] | undefined;
|
|
1599
|
+
nextToken?: string | undefined;
|
|
1600
|
+
}
|
|
1451
1601
|
export interface ListRunTasksRequest {
|
|
1452
1602
|
id: string | undefined;
|
|
1453
1603
|
status?: TaskStatus | undefined;
|
|
@@ -1639,6 +1789,20 @@ export interface StartReferenceImportJobResponse {
|
|
|
1639
1789
|
status: ReferenceImportJobStatus | undefined;
|
|
1640
1790
|
creationTime: Date | undefined;
|
|
1641
1791
|
}
|
|
1792
|
+
export interface StartRunBatchRequest {
|
|
1793
|
+
batchName?: string | undefined;
|
|
1794
|
+
requestId?: string | undefined;
|
|
1795
|
+
tags?: Record<string, string> | undefined;
|
|
1796
|
+
defaultRunSetting: DefaultRunSetting | undefined;
|
|
1797
|
+
batchRunSettings: BatchRunSettings | undefined;
|
|
1798
|
+
}
|
|
1799
|
+
export interface StartRunBatchResponse {
|
|
1800
|
+
id?: string | undefined;
|
|
1801
|
+
arn?: string | undefined;
|
|
1802
|
+
status?: BatchStatus | undefined;
|
|
1803
|
+
uuid?: string | undefined;
|
|
1804
|
+
tags?: Record<string, string> | undefined;
|
|
1805
|
+
}
|
|
1642
1806
|
export interface UpdateRunCacheRequest {
|
|
1643
1807
|
cacheBehavior?: CacheBehavior | undefined;
|
|
1644
1808
|
description?: string | undefined;
|