@aws-sdk/client-omics 3.299.0 → 3.300.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/BatchDeleteReadSetCommand.d.ts +6 -0
- package/dist-types/commands/CancelAnnotationImportJobCommand.d.ts +3 -0
- package/dist-types/commands/CancelRunCommand.d.ts +3 -0
- package/dist-types/commands/CancelVariantImportJobCommand.d.ts +3 -0
- package/dist-types/commands/CreateAnnotationStoreCommand.d.ts +28 -0
- package/dist-types/commands/CreateReferenceStoreCommand.d.ts +12 -0
- package/dist-types/commands/CreateRunGroupCommand.d.ts +10 -0
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +12 -0
- package/dist-types/commands/CreateVariantStoreCommand.d.ts +14 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +19 -0
- package/dist-types/commands/DeleteAnnotationStoreCommand.d.ts +4 -0
- package/dist-types/commands/DeleteReferenceCommand.d.ts +4 -0
- package/dist-types/commands/DeleteReferenceStoreCommand.d.ts +3 -0
- package/dist-types/commands/DeleteRunCommand.d.ts +3 -0
- package/dist-types/commands/DeleteRunGroupCommand.d.ts +3 -0
- package/dist-types/commands/DeleteSequenceStoreCommand.d.ts +3 -0
- package/dist-types/commands/DeleteVariantStoreCommand.d.ts +4 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +3 -0
- package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +3 -0
- package/dist-types/commands/GetAnnotationStoreCommand.d.ts +3 -0
- package/dist-types/commands/GetReadSetActivationJobCommand.d.ts +4 -0
- package/dist-types/commands/GetReadSetCommand.d.ts +6 -0
- package/dist-types/commands/GetReadSetExportJobCommand.d.ts +4 -0
- package/dist-types/commands/GetReadSetImportJobCommand.d.ts +4 -0
- package/dist-types/commands/GetReadSetMetadataCommand.d.ts +4 -0
- package/dist-types/commands/GetReferenceCommand.d.ts +7 -0
- package/dist-types/commands/GetReferenceImportJobCommand.d.ts +4 -0
- package/dist-types/commands/GetReferenceMetadataCommand.d.ts +4 -0
- package/dist-types/commands/GetReferenceStoreCommand.d.ts +3 -0
- package/dist-types/commands/GetRunCommand.d.ts +6 -0
- package/dist-types/commands/GetRunGroupCommand.d.ts +3 -0
- package/dist-types/commands/GetRunTaskCommand.d.ts +4 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +3 -0
- package/dist-types/commands/GetVariantImportJobCommand.d.ts +3 -0
- package/dist-types/commands/GetVariantStoreCommand.d.ts +3 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +7 -0
- package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +11 -0
- package/dist-types/commands/ListAnnotationStoresCommand.d.ts +10 -0
- package/dist-types/commands/ListReadSetActivationJobsCommand.d.ts +10 -0
- package/dist-types/commands/ListReadSetExportJobsCommand.d.ts +10 -0
- package/dist-types/commands/ListReadSetImportJobsCommand.d.ts +10 -0
- package/dist-types/commands/ListReadSetsCommand.d.ts +12 -0
- package/dist-types/commands/ListReferenceImportJobsCommand.d.ts +10 -0
- package/dist-types/commands/ListReferenceStoresCommand.d.ts +9 -0
- package/dist-types/commands/ListReferencesCommand.d.ts +11 -0
- package/dist-types/commands/ListRunGroupsCommand.d.ts +5 -0
- package/dist-types/commands/ListRunTasksCommand.d.ts +6 -0
- package/dist-types/commands/ListRunsCommand.d.ts +6 -0
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +9 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ListVariantImportJobsCommand.d.ts +11 -0
- package/dist-types/commands/ListVariantStoresCommand.d.ts +10 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +6 -0
- package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +29 -0
- package/dist-types/commands/StartReadSetActivationJobCommand.d.ts +9 -0
- package/dist-types/commands/StartReadSetExportJobCommand.d.ts +11 -0
- package/dist-types/commands/StartReadSetImportJobCommand.d.ts +23 -0
- package/dist-types/commands/StartReferenceImportJobCommand.d.ts +15 -0
- package/dist-types/commands/StartRunCommand.d.ts +17 -0
- package/dist-types/commands/StartVariantImportJobCommand.d.ts +10 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAnnotationStoreCommand.d.ts +4 -0
- package/dist-types/commands/UpdateRunGroupCommand.d.ts +7 -0
- package/dist-types/commands/UpdateVariantStoreCommand.d.ts +4 -0
- package/dist-types/commands/UpdateWorkflowCommand.d.ts +5 -0
- package/package.json +8 -8
|
@@ -26,6 +26,12 @@ export interface BatchDeleteReadSetCommandOutput extends BatchDeleteReadSetRespo
|
|
|
26
26
|
* import { OmicsClient, BatchDeleteReadSetCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, BatchDeleteReadSetCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ids: [ // required
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
29
35
|
* const command = new BatchDeleteReadSetCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface CancelAnnotationImportJobCommandOutput extends CancelAnnotation
|
|
|
26
26
|
* import { OmicsClient, CancelAnnotationImportJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, CancelAnnotationImportJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* jobId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new CancelAnnotationImportJobCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface CancelRunCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { OmicsClient, CancelRunCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, CancelRunCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new CancelRunCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface CancelVariantImportJobCommandOutput extends CancelVariantImport
|
|
|
26
26
|
* import { OmicsClient, CancelVariantImportJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, CancelVariantImportJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* jobId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new CancelVariantImportJobCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,34 @@ export interface CreateAnnotationStoreCommandOutput extends CreateAnnotationStor
|
|
|
26
26
|
* import { OmicsClient, CreateAnnotationStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, CreateAnnotationStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* reference: { // Union: only one key present
|
|
31
|
+
* referenceArn: "STRING_VALUE",
|
|
32
|
+
* },
|
|
33
|
+
* name: "STRING_VALUE",
|
|
34
|
+
* description: "STRING_VALUE",
|
|
35
|
+
* tags: {
|
|
36
|
+
* "<keys>": "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* sseConfig: {
|
|
39
|
+
* type: "STRING_VALUE", // required
|
|
40
|
+
* keyArn: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* storeFormat: "STRING_VALUE", // required
|
|
43
|
+
* storeOptions: { // Union: only one key present
|
|
44
|
+
* tsvStoreOptions: {
|
|
45
|
+
* annotationType: "STRING_VALUE",
|
|
46
|
+
* formatToHeader: {
|
|
47
|
+
* "<keys>": "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* schema: [
|
|
50
|
+
* {
|
|
51
|
+
* "<keys>": "STRING_VALUE",
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* },
|
|
56
|
+
* };
|
|
29
57
|
* const command = new CreateAnnotationStoreCommand(input);
|
|
30
58
|
* const response = await client.send(command);
|
|
31
59
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface CreateReferenceStoreCommandOutput extends CreateReferenceStoreR
|
|
|
26
26
|
* import { OmicsClient, CreateReferenceStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, CreateReferenceStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* description: "STRING_VALUE",
|
|
32
|
+
* sseConfig: {
|
|
33
|
+
* type: "STRING_VALUE", // required
|
|
34
|
+
* keyArn: "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* tags: {
|
|
37
|
+
* "<keys>": "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* clientToken: "STRING_VALUE",
|
|
40
|
+
* };
|
|
29
41
|
* const command = new CreateReferenceStoreCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface CreateRunGroupCommandOutput extends CreateRunGroupResponse, __M
|
|
|
26
26
|
* import { OmicsClient, CreateRunGroupCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, CreateRunGroupCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE",
|
|
31
|
+
* maxCpus: Number("int"),
|
|
32
|
+
* maxRuns: Number("int"),
|
|
33
|
+
* maxDuration: Number("int"),
|
|
34
|
+
* tags: {
|
|
35
|
+
* "<keys>": "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* requestId: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
29
39
|
* const command = new CreateRunGroupCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface CreateSequenceStoreCommandOutput extends CreateSequenceStoreRes
|
|
|
26
26
|
* import { OmicsClient, CreateSequenceStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, CreateSequenceStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* description: "STRING_VALUE",
|
|
32
|
+
* sseConfig: {
|
|
33
|
+
* type: "STRING_VALUE", // required
|
|
34
|
+
* keyArn: "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* tags: {
|
|
37
|
+
* "<keys>": "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* clientToken: "STRING_VALUE",
|
|
40
|
+
* };
|
|
29
41
|
* const command = new CreateSequenceStoreCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,20 @@ export interface CreateVariantStoreCommandOutput extends CreateVariantStoreRespo
|
|
|
26
26
|
* import { OmicsClient, CreateVariantStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, CreateVariantStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* reference: { // Union: only one key present
|
|
31
|
+
* referenceArn: "STRING_VALUE",
|
|
32
|
+
* },
|
|
33
|
+
* name: "STRING_VALUE",
|
|
34
|
+
* description: "STRING_VALUE",
|
|
35
|
+
* tags: {
|
|
36
|
+
* "<keys>": "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* sseConfig: {
|
|
39
|
+
* type: "STRING_VALUE", // required
|
|
40
|
+
* keyArn: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* };
|
|
29
43
|
* const command = new CreateVariantStoreCommand(input);
|
|
30
44
|
* const response = await client.send(command);
|
|
31
45
|
* ```
|
|
@@ -26,6 +26,25 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M
|
|
|
26
26
|
* import { OmicsClient, CreateWorkflowCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, CreateWorkflowCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE",
|
|
31
|
+
* description: "STRING_VALUE",
|
|
32
|
+
* engine: "STRING_VALUE",
|
|
33
|
+
* definitionZip: "BLOB_VALUE",
|
|
34
|
+
* definitionUri: "STRING_VALUE",
|
|
35
|
+
* main: "STRING_VALUE",
|
|
36
|
+
* parameterTemplate: {
|
|
37
|
+
* "<keys>": {
|
|
38
|
+
* description: "STRING_VALUE",
|
|
39
|
+
* optional: true || false,
|
|
40
|
+
* },
|
|
41
|
+
* },
|
|
42
|
+
* storageCapacity: Number("int"),
|
|
43
|
+
* tags: {
|
|
44
|
+
* "<keys>": "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* requestId: "STRING_VALUE", // required
|
|
47
|
+
* };
|
|
29
48
|
* const command = new CreateWorkflowCommand(input);
|
|
30
49
|
* const response = await client.send(command);
|
|
31
50
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DeleteAnnotationStoreCommandOutput extends DeleteAnnotationStor
|
|
|
26
26
|
* import { OmicsClient, DeleteAnnotationStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, DeleteAnnotationStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* force: true || false,
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeleteAnnotationStoreCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DeleteReferenceCommandOutput extends DeleteReferenceResponse, _
|
|
|
26
26
|
* import { OmicsClient, DeleteReferenceCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, DeleteReferenceCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* referenceStoreId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeleteReferenceCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteReferenceStoreCommandOutput extends DeleteReferenceStoreR
|
|
|
26
26
|
* import { OmicsClient, DeleteReferenceStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, DeleteReferenceStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteReferenceStoreCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteRunCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { OmicsClient, DeleteRunCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, DeleteRunCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteRunCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteRunGroupCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { OmicsClient, DeleteRunGroupCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, DeleteRunGroupCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteRunGroupCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteSequenceStoreCommandOutput extends DeleteSequenceStoreRes
|
|
|
26
26
|
* import { OmicsClient, DeleteSequenceStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, DeleteSequenceStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteSequenceStoreCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DeleteVariantStoreCommandOutput extends DeleteVariantStoreRespo
|
|
|
26
26
|
* import { OmicsClient, DeleteVariantStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, DeleteVariantStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* force: true || false,
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeleteVariantStoreCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteWorkflowCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { OmicsClient, DeleteWorkflowCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, DeleteWorkflowCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteWorkflowCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetAnnotationImportJobCommandOutput extends GetAnnotationImport
|
|
|
26
26
|
* import { OmicsClient, GetAnnotationImportJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetAnnotationImportJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* jobId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetAnnotationImportJobCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetAnnotationStoreCommandOutput extends GetAnnotationStoreRespo
|
|
|
26
26
|
* import { OmicsClient, GetAnnotationStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetAnnotationStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetAnnotationStoreCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetReadSetActivationJobCommandOutput extends GetReadSetActivati
|
|
|
26
26
|
* import { OmicsClient, GetReadSetActivationJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetReadSetActivationJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetReadSetActivationJobCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface GetReadSetCommandOutput extends __WithSdkStreamMixin<GetReadSet
|
|
|
26
26
|
* import { OmicsClient, GetReadSetCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetReadSetCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
32
|
+
* file: "STRING_VALUE",
|
|
33
|
+
* partNumber: Number("int"), // required
|
|
34
|
+
* };
|
|
29
35
|
* const command = new GetReadSetCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetReadSetExportJobCommandOutput extends GetReadSetExportJobRes
|
|
|
26
26
|
* import { OmicsClient, GetReadSetExportJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetReadSetExportJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
31
|
+
* id: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetReadSetExportJobCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetReadSetImportJobCommandOutput extends GetReadSetImportJobRes
|
|
|
26
26
|
* import { OmicsClient, GetReadSetImportJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetReadSetImportJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetReadSetImportJobCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetReadSetMetadataCommandOutput extends GetReadSetMetadataRespo
|
|
|
26
26
|
* import { OmicsClient, GetReadSetMetadataCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetReadSetMetadataCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetReadSetMetadataCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface GetReferenceCommandOutput extends __WithSdkStreamMixin<GetRefer
|
|
|
26
26
|
* import { OmicsClient, GetReferenceCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetReferenceCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* referenceStoreId: "STRING_VALUE", // required
|
|
32
|
+
* range: "STRING_VALUE",
|
|
33
|
+
* partNumber: Number("int"), // required
|
|
34
|
+
* file: "STRING_VALUE",
|
|
35
|
+
* };
|
|
29
36
|
* const command = new GetReferenceCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetReferenceImportJobCommandOutput extends GetReferenceImportJo
|
|
|
26
26
|
* import { OmicsClient, GetReferenceImportJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetReferenceImportJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* referenceStoreId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetReferenceImportJobCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetReferenceMetadataCommandOutput extends GetReferenceMetadataR
|
|
|
26
26
|
* import { OmicsClient, GetReferenceMetadataCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetReferenceMetadataCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* referenceStoreId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetReferenceMetadataCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetReferenceStoreCommandOutput extends GetReferenceStoreRespons
|
|
|
26
26
|
* import { OmicsClient, GetReferenceStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetReferenceStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetReferenceStoreCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface GetRunCommandOutput extends GetRunResponse, __MetadataBearer {
|
|
|
26
26
|
* import { OmicsClient, GetRunCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetRunCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* export: [
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new GetRunCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetRunGroupCommandOutput extends GetRunGroupResponse, __Metadat
|
|
|
26
26
|
* import { OmicsClient, GetRunGroupCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetRunGroupCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetRunGroupCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetRunTaskCommandOutput extends GetRunTaskResponse, __MetadataB
|
|
|
26
26
|
* import { OmicsClient, GetRunTaskCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetRunTaskCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* taskId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetRunTaskCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetSequenceStoreCommandOutput extends GetSequenceStoreResponse,
|
|
|
26
26
|
* import { OmicsClient, GetSequenceStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetSequenceStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetSequenceStoreCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetVariantImportJobCommandOutput extends GetVariantImportRespon
|
|
|
26
26
|
* import { OmicsClient, GetVariantImportJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetVariantImportJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* jobId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetVariantImportJobCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetVariantStoreCommandOutput extends GetVariantStoreResponse, _
|
|
|
26
26
|
* import { OmicsClient, GetVariantStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetVariantStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetVariantStoreCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface GetWorkflowCommandOutput extends GetWorkflowResponse, __Metadat
|
|
|
26
26
|
* import { OmicsClient, GetWorkflowCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, GetWorkflowCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* type: "STRING_VALUE",
|
|
32
|
+
* export: [
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* };
|
|
29
36
|
* const command = new GetWorkflowCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface ListAnnotationImportJobsCommandOutput extends ListAnnotationImp
|
|
|
26
26
|
* import { OmicsClient, ListAnnotationImportJobsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListAnnotationImportJobsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* ids: [
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* nextToken: "STRING_VALUE",
|
|
35
|
+
* filter: {
|
|
36
|
+
* status: "STRING_VALUE",
|
|
37
|
+
* storeName: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* };
|
|
29
40
|
* const command = new ListAnnotationImportJobsCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface ListAnnotationStoresCommandOutput extends ListAnnotationStoresR
|
|
|
26
26
|
* import { OmicsClient, ListAnnotationStoresCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListAnnotationStoresCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ids: [
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* maxResults: Number("int"),
|
|
34
|
+
* nextToken: "STRING_VALUE",
|
|
35
|
+
* filter: {
|
|
36
|
+
* status: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* };
|
|
29
39
|
* const command = new ListAnnotationStoresCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface ListReadSetActivationJobsCommandOutput extends ListReadSetActiv
|
|
|
26
26
|
* import { OmicsClient, ListReadSetActivationJobsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListReadSetActivationJobsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* filter: {
|
|
34
|
+
* status: "STRING_VALUE",
|
|
35
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
36
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
37
|
+
* },
|
|
38
|
+
* };
|
|
29
39
|
* const command = new ListReadSetActivationJobsCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface ListReadSetExportJobsCommandOutput extends ListReadSetExportJob
|
|
|
26
26
|
* import { OmicsClient, ListReadSetExportJobsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListReadSetExportJobsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* filter: {
|
|
34
|
+
* status: "STRING_VALUE",
|
|
35
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
36
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
37
|
+
* },
|
|
38
|
+
* };
|
|
29
39
|
* const command = new ListReadSetExportJobsCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface ListReadSetImportJobsCommandOutput extends ListReadSetImportJob
|
|
|
26
26
|
* import { OmicsClient, ListReadSetImportJobsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListReadSetImportJobsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
33
|
+
* filter: {
|
|
34
|
+
* status: "STRING_VALUE",
|
|
35
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
36
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
37
|
+
* },
|
|
38
|
+
* };
|
|
29
39
|
* const command = new ListReadSetImportJobsCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface ListReadSetsCommandOutput extends ListReadSetsResponse, __Metad
|
|
|
26
26
|
* import { OmicsClient, ListReadSetsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListReadSetsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* filter: {
|
|
34
|
+
* name: "STRING_VALUE",
|
|
35
|
+
* status: "STRING_VALUE",
|
|
36
|
+
* referenceArn: "STRING_VALUE",
|
|
37
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
38
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
39
|
+
* },
|
|
40
|
+
* };
|
|
29
41
|
* const command = new ListReadSetsCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface ListReferenceImportJobsCommandOutput extends ListReferenceImpor
|
|
|
26
26
|
* import { OmicsClient, ListReferenceImportJobsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListReferenceImportJobsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* referenceStoreId: "STRING_VALUE", // required
|
|
33
|
+
* filter: {
|
|
34
|
+
* status: "STRING_VALUE",
|
|
35
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
36
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
37
|
+
* },
|
|
38
|
+
* };
|
|
29
39
|
* const command = new ListReferenceImportJobsCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface ListReferenceStoresCommandOutput extends ListReferenceStoresRes
|
|
|
26
26
|
* import { OmicsClient, ListReferenceStoresCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListReferenceStoresCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* filter: {
|
|
33
|
+
* name: "STRING_VALUE",
|
|
34
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
35
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
36
|
+
* },
|
|
37
|
+
* };
|
|
29
38
|
* const command = new ListReferenceStoresCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface ListReferencesCommandOutput extends ListReferencesResponse, __M
|
|
|
26
26
|
* import { OmicsClient, ListReferencesCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListReferencesCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* referenceStoreId: "STRING_VALUE", // required
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* filter: {
|
|
34
|
+
* name: "STRING_VALUE",
|
|
35
|
+
* md5: "STRING_VALUE",
|
|
36
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
37
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
38
|
+
* },
|
|
39
|
+
* };
|
|
29
40
|
* const command = new ListReferencesCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListRunGroupsCommandOutput extends ListRunGroupsResponse, __Met
|
|
|
26
26
|
* import { OmicsClient, ListRunGroupsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListRunGroupsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE",
|
|
31
|
+
* startingToken: "STRING_VALUE",
|
|
32
|
+
* maxResults: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListRunGroupsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListRunTasksCommandOutput extends ListRunTasksResponse, __Metad
|
|
|
26
26
|
* import { OmicsClient, ListRunTasksCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListRunTasksCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* status: "STRING_VALUE",
|
|
32
|
+
* startingToken: "STRING_VALUE",
|
|
33
|
+
* maxResults: Number("int"),
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListRunTasksCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListRunsCommandOutput extends ListRunsResponse, __MetadataBeare
|
|
|
26
26
|
* import { OmicsClient, ListRunsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListRunsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE",
|
|
31
|
+
* runGroupId: "STRING_VALUE",
|
|
32
|
+
* startingToken: "STRING_VALUE",
|
|
33
|
+
* maxResults: Number("int"),
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListRunsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface ListSequenceStoresCommandOutput extends ListSequenceStoresRespo
|
|
|
26
26
|
* import { OmicsClient, ListSequenceStoresCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListSequenceStoresCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* filter: {
|
|
33
|
+
* name: "STRING_VALUE",
|
|
34
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
35
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
36
|
+
* },
|
|
37
|
+
* };
|
|
29
38
|
* const command = new ListSequenceStoresCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { OmicsClient, ListTagsForResourceCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface ListVariantImportJobsCommandOutput extends ListVariantImportJob
|
|
|
26
26
|
* import { OmicsClient, ListVariantImportJobsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListVariantImportJobsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* ids: [
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* nextToken: "STRING_VALUE",
|
|
35
|
+
* filter: {
|
|
36
|
+
* status: "STRING_VALUE",
|
|
37
|
+
* storeName: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* };
|
|
29
40
|
* const command = new ListVariantImportJobsCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface ListVariantStoresCommandOutput extends ListVariantStoresRespons
|
|
|
26
26
|
* import { OmicsClient, ListVariantStoresCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListVariantStoresCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* ids: [
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* nextToken: "STRING_VALUE",
|
|
35
|
+
* filter: {
|
|
36
|
+
* status: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* };
|
|
29
39
|
* const command = new ListVariantStoresCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met
|
|
|
26
26
|
* import { OmicsClient, ListWorkflowsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, ListWorkflowsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* type: "STRING_VALUE",
|
|
31
|
+
* name: "STRING_VALUE",
|
|
32
|
+
* startingToken: "STRING_VALUE",
|
|
33
|
+
* maxResults: Number("int"),
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListWorkflowsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,35 @@ export interface StartAnnotationImportJobCommandOutput extends StartAnnotationIm
|
|
|
26
26
|
* import { OmicsClient, StartAnnotationImportJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, StartAnnotationImportJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* destinationName: "STRING_VALUE", // required
|
|
31
|
+
* roleArn: "STRING_VALUE", // required
|
|
32
|
+
* items: [ // required
|
|
33
|
+
* {
|
|
34
|
+
* source: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* formatOptions: { // Union: only one key present
|
|
38
|
+
* tsvOptions: {
|
|
39
|
+
* readOptions: {
|
|
40
|
+
* sep: "STRING_VALUE",
|
|
41
|
+
* encoding: "STRING_VALUE",
|
|
42
|
+
* quote: "STRING_VALUE",
|
|
43
|
+
* quoteAll: true || false,
|
|
44
|
+
* escape: "STRING_VALUE",
|
|
45
|
+
* escapeQuotes: true || false,
|
|
46
|
+
* comment: "STRING_VALUE",
|
|
47
|
+
* header: true || false,
|
|
48
|
+
* lineSep: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* },
|
|
51
|
+
* vcfOptions: {
|
|
52
|
+
* ignoreQualField: true || false,
|
|
53
|
+
* ignoreFilterField: true || false,
|
|
54
|
+
* },
|
|
55
|
+
* },
|
|
56
|
+
* runLeftNormalization: true || false,
|
|
57
|
+
* };
|
|
29
58
|
* const command = new StartAnnotationImportJobCommand(input);
|
|
30
59
|
* const response = await client.send(command);
|
|
31
60
|
* ```
|
|
@@ -27,6 +27,15 @@ export interface StartReadSetActivationJobCommandOutput extends StartReadSetActi
|
|
|
27
27
|
* import { OmicsClient, StartReadSetActivationJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
28
28
|
* // const { OmicsClient, StartReadSetActivationJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
29
29
|
* const client = new OmicsClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
32
|
+
* clientToken: "STRING_VALUE",
|
|
33
|
+
* sources: [ // required
|
|
34
|
+
* {
|
|
35
|
+
* readSetId: "STRING_VALUE", // required
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
30
39
|
* const command = new StartReadSetActivationJobCommand(input);
|
|
31
40
|
* const response = await client.send(command);
|
|
32
41
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface StartReadSetExportJobCommandOutput extends StartReadSetExportJo
|
|
|
26
26
|
* import { OmicsClient, StartReadSetExportJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, StartReadSetExportJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
31
|
+
* destination: "STRING_VALUE", // required
|
|
32
|
+
* roleArn: "STRING_VALUE", // required
|
|
33
|
+
* clientToken: "STRING_VALUE",
|
|
34
|
+
* sources: [ // required
|
|
35
|
+
* {
|
|
36
|
+
* readSetId: "STRING_VALUE", // required
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
29
40
|
* const command = new StartReadSetExportJobCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,29 @@ export interface StartReadSetImportJobCommandOutput extends StartReadSetImportJo
|
|
|
26
26
|
* import { OmicsClient, StartReadSetImportJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, StartReadSetImportJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
31
|
+
* roleArn: "STRING_VALUE", // required
|
|
32
|
+
* clientToken: "STRING_VALUE",
|
|
33
|
+
* sources: [ // required
|
|
34
|
+
* {
|
|
35
|
+
* sourceFiles: {
|
|
36
|
+
* source1: "STRING_VALUE", // required
|
|
37
|
+
* source2: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* sourceFileType: "STRING_VALUE", // required
|
|
40
|
+
* subjectId: "STRING_VALUE", // required
|
|
41
|
+
* sampleId: "STRING_VALUE", // required
|
|
42
|
+
* generatedFrom: "STRING_VALUE",
|
|
43
|
+
* referenceArn: "STRING_VALUE", // required
|
|
44
|
+
* name: "STRING_VALUE",
|
|
45
|
+
* description: "STRING_VALUE",
|
|
46
|
+
* tags: {
|
|
47
|
+
* "<keys>": "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* };
|
|
29
52
|
* const command = new StartReadSetImportJobCommand(input);
|
|
30
53
|
* const response = await client.send(command);
|
|
31
54
|
* ```
|
|
@@ -26,6 +26,21 @@ export interface StartReferenceImportJobCommandOutput extends StartReferenceImpo
|
|
|
26
26
|
* import { OmicsClient, StartReferenceImportJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, StartReferenceImportJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* referenceStoreId: "STRING_VALUE", // required
|
|
31
|
+
* roleArn: "STRING_VALUE", // required
|
|
32
|
+
* clientToken: "STRING_VALUE",
|
|
33
|
+
* sources: [ // required
|
|
34
|
+
* {
|
|
35
|
+
* sourceFile: "STRING_VALUE", // required
|
|
36
|
+
* name: "STRING_VALUE", // required
|
|
37
|
+
* description: "STRING_VALUE",
|
|
38
|
+
* tags: {
|
|
39
|
+
* "<keys>": "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
29
44
|
* const command = new StartReferenceImportJobCommand(input);
|
|
30
45
|
* const response = await client.send(command);
|
|
31
46
|
* ```
|
|
@@ -26,6 +26,23 @@ export interface StartRunCommandOutput extends StartRunResponse, __MetadataBeare
|
|
|
26
26
|
* import { OmicsClient, StartRunCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, StartRunCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* workflowId: "STRING_VALUE",
|
|
31
|
+
* workflowType: "STRING_VALUE",
|
|
32
|
+
* runId: "STRING_VALUE",
|
|
33
|
+
* roleArn: "STRING_VALUE", // required
|
|
34
|
+
* name: "STRING_VALUE",
|
|
35
|
+
* runGroupId: "STRING_VALUE",
|
|
36
|
+
* priority: Number("int"),
|
|
37
|
+
* parameters: "DOCUMENT_VALUE",
|
|
38
|
+
* storageCapacity: Number("int"),
|
|
39
|
+
* outputUri: "STRING_VALUE",
|
|
40
|
+
* logLevel: "STRING_VALUE",
|
|
41
|
+
* tags: {
|
|
42
|
+
* "<keys>": "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* requestId: "STRING_VALUE", // required
|
|
45
|
+
* };
|
|
29
46
|
* const command = new StartRunCommand(input);
|
|
30
47
|
* const response = await client.send(command);
|
|
31
48
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface StartVariantImportJobCommandOutput extends StartVariantImportRe
|
|
|
26
26
|
* import { OmicsClient, StartVariantImportJobCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, StartVariantImportJobCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* destinationName: "STRING_VALUE", // required
|
|
31
|
+
* roleArn: "STRING_VALUE", // required
|
|
32
|
+
* items: [ // required
|
|
33
|
+
* {
|
|
34
|
+
* source: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* runLeftNormalization: true || false,
|
|
38
|
+
* };
|
|
29
39
|
* const command = new StartVariantImportJobCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { OmicsClient, TagResourceCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, TagResourceCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tags: { // required
|
|
32
|
+
* "<keys>": "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* };
|
|
29
35
|
* const command = new TagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { OmicsClient, UntagResourceCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, UntagResourceCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface UpdateAnnotationStoreCommandOutput extends UpdateAnnotationStor
|
|
|
26
26
|
* import { OmicsClient, UpdateAnnotationStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, UpdateAnnotationStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* description: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new UpdateAnnotationStoreCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface UpdateRunGroupCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { OmicsClient, UpdateRunGroupCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, UpdateRunGroupCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* name: "STRING_VALUE",
|
|
32
|
+
* maxCpus: Number("int"),
|
|
33
|
+
* maxRuns: Number("int"),
|
|
34
|
+
* maxDuration: Number("int"),
|
|
35
|
+
* };
|
|
29
36
|
* const command = new UpdateRunGroupCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface UpdateVariantStoreCommandOutput extends UpdateVariantStoreRespo
|
|
|
26
26
|
* import { OmicsClient, UpdateVariantStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, UpdateVariantStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* description: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new UpdateVariantStoreCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface UpdateWorkflowCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { OmicsClient, UpdateWorkflowCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
27
27
|
* // const { OmicsClient, UpdateWorkflowCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
28
28
|
* const client = new OmicsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* name: "STRING_VALUE",
|
|
32
|
+
* description: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new UpdateWorkflowCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-omics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-stream-browser": "3.296.0",
|
|
54
54
|
"@aws-sdk/util-stream-node": "3.296.0",
|
|
55
55
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
56
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
56
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
57
57
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
58
58
|
"@aws-sdk/util-waiter": "3.296.0",
|
|
59
59
|
"tslib": "^2.5.0",
|