Skip to content

Commit a6d5127

Browse files
author
awstools
committed
feat(client-omics): This release adds support for retrieval of S3 direct access metadata on sequence stores and read sets, and adds support for SHA256up and SHA512up HealthOmics ETags.
1 parent b937f44 commit a6d5127

14 files changed

+429
-348
lines changed

clients/client-omics/src/commands/AbortMultipartReadSetUploadCommand.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ export interface AbortMultipartReadSetUploadCommandOutput
3232
__MetadataBearer {}
3333

3434
/**
35-
* <p>
36-
* Stops a multipart upload.
37-
* </p>
35+
* <p>Stops a multipart upload.</p>
3836
* @example
3937
* Use a bare-bones client and the command you need to make an API call.
4038
* ```javascript

clients/client-omics/src/commands/CompleteMultipartReadSetUploadCommand.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ export interface CompleteMultipartReadSetUploadCommandOutput
3232
__MetadataBearer {}
3333

3434
/**
35-
* <p>
36-
* Concludes a multipart upload once you have uploaded all the components.
37-
* </p>
35+
* <p>Concludes a multipart upload once you have uploaded all the components.</p>
3836
* @example
3937
* Use a bare-bones client and the command you need to make an API call.
4038
* ```javascript

clients/client-omics/src/commands/CreateMultipartReadSetUploadCommand.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ export interface CreateMultipartReadSetUploadCommandOutput
3232
__MetadataBearer {}
3333

3434
/**
35-
* <p>
36-
* Begins a multipart read set upload.
37-
* </p>
35+
* <p>Begins a multipart read set upload.</p>
3836
* @example
3937
* Use a bare-bones client and the command you need to make an API call.
4038
* ```javascript

clients/client-omics/src/commands/CreateSequenceStoreCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export interface CreateSequenceStoreCommandOutput extends CreateSequenceStoreRes
4646
* },
4747
* clientToken: "STRING_VALUE",
4848
* fallbackLocation: "STRING_VALUE",
49+
* eTagAlgorithmFamily: "STRING_VALUE",
4950
* };
5051
* const command = new CreateSequenceStoreCommand(input);
5152
* const response = await client.send(command);
@@ -60,6 +61,7 @@ export interface CreateSequenceStoreCommandOutput extends CreateSequenceStoreRes
6061
* // },
6162
* // creationTime: new Date("TIMESTAMP"), // required
6263
* // fallbackLocation: "STRING_VALUE",
64+
* // eTagAlgorithmFamily: "STRING_VALUE",
6365
* // };
6466
*
6567
* ```

clients/client-omics/src/commands/GetReadSetMetadataCommand.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,16 +63,25 @@ export interface GetReadSetMetadataCommandOutput extends GetReadSetMetadataRespo
6363
* // totalParts: Number("int"),
6464
* // partSize: Number("long"),
6565
* // contentLength: Number("long"),
66+
* // s3Access: { // ReadSetS3Access
67+
* // s3Uri: "STRING_VALUE",
68+
* // },
6669
* // },
6770
* // source2: {
6871
* // totalParts: Number("int"),
6972
* // partSize: Number("long"),
7073
* // contentLength: Number("long"),
74+
* // s3Access: {
75+
* // s3Uri: "STRING_VALUE",
76+
* // },
7177
* // },
7278
* // index: {
7379
* // totalParts: Number("int"),
7480
* // partSize: Number("long"),
7581
* // contentLength: Number("long"),
82+
* // s3Access: {
83+
* // s3Uri: "STRING_VALUE",
84+
* // },
7685
* // },
7786
* // },
7887
* // statusMessage: "STRING_VALUE",

clients/client-omics/src/commands/GetReferenceMetadataCommand.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,17 @@ export interface GetReferenceMetadataCommandOutput extends GetReferenceMetadataR
5555
* // totalParts: Number("int"),
5656
* // partSize: Number("long"),
5757
* // contentLength: Number("long"),
58+
* // s3Access: { // ReadSetS3Access
59+
* // s3Uri: "STRING_VALUE",
60+
* // },
5861
* // },
5962
* // index: {
6063
* // totalParts: Number("int"),
6164
* // partSize: Number("long"),
6265
* // contentLength: Number("long"),
66+
* // s3Access: {
67+
* // s3Uri: "STRING_VALUE",
68+
* // },
6369
* // },
6470
* // },
6571
* // };

clients/client-omics/src/commands/GetSequenceStoreCommand.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ export interface GetSequenceStoreCommandOutput extends GetSequenceStoreResponse,
5050
* // },
5151
* // creationTime: new Date("TIMESTAMP"), // required
5252
* // fallbackLocation: "STRING_VALUE",
53+
* // s3Access: { // SequenceStoreS3Access
54+
* // s3Uri: "STRING_VALUE",
55+
* // s3AccessPointArn: "STRING_VALUE",
56+
* // },
57+
* // eTagAlgorithmFamily: "STRING_VALUE",
5358
* // };
5459
*
5560
* ```

clients/client-omics/src/commands/ListMultipartReadSetUploadsCommand.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ export interface ListMultipartReadSetUploadsCommandOutput
3232
__MetadataBearer {}
3333

3434
/**
35-
* <p>
36-
* Lists multipart read set uploads and for in progress uploads. Once the upload is completed, a read set is created and the upload will no longer be returned in the respone.
37-
* </p>
35+
* <p>Lists multipart read set uploads and for in progress uploads.
36+
* Once the upload is completed, a read set is created and the upload will no longer be returned in the response.</p>
3837
* @example
3938
* Use a bare-bones client and the command you need to make an API call.
4039
* ```javascript

clients/client-omics/src/commands/ListReadSetUploadPartsCommand.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ export interface ListReadSetUploadPartsCommandInput extends ListReadSetUploadPar
2727
export interface ListReadSetUploadPartsCommandOutput extends ListReadSetUploadPartsResponse, __MetadataBearer {}
2828

2929
/**
30-
* <p>
31-
* This operation will list all parts in a requested multipart upload for a sequence store.
32-
* </p>
30+
* <p>This operation will list all parts in a requested multipart upload for a sequence store.</p>
3331
* @example
3432
* Use a bare-bones client and the command you need to make an API call.
3533
* ```javascript

clients/client-omics/src/commands/ListSequenceStoresCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ export interface ListSequenceStoresCommandOutput extends ListSequenceStoresRespo
5959
* // },
6060
* // creationTime: new Date("TIMESTAMP"), // required
6161
* // fallbackLocation: "STRING_VALUE",
62+
* // eTagAlgorithmFamily: "STRING_VALUE",
6263
* // },
6364
* // ],
6465
* // };

clients/client-omics/src/commands/UploadReadSetPartCommand.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@ export interface UploadReadSetPartCommandInput extends Omit<UploadReadSetPartReq
3434
export interface UploadReadSetPartCommandOutput extends UploadReadSetPartResponse, __MetadataBearer {}
3535

3636
/**
37-
* <p>
38-
* This operation uploads a specific part of a read set. If you upload a new part using a previously used part number, the previously uploaded part will be overwritten.
39-
* </p>
37+
* <p>This operation uploads a specific part of a read set. If you upload a new part using a previously used part number,
38+
* the previously uploaded part will be overwritten.</p>
4039
* @example
4140
* Use a bare-bones client and the command you need to make an API call.
4241
* ```javascript

0 commit comments

Comments
 (0)