cdk-lambda-subminute 2.0.258 → 2.0.259

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.
@@ -1,5 +1,15 @@
1
1
  {
2
2
  "pagination": {
3
+ "DescribeApplicationAssociations": {
4
+ "input_token": "NextToken",
5
+ "limit_key": "MaxResults",
6
+ "output_token": "NextToken"
7
+ },
8
+ "DescribeApplications": {
9
+ "input_token": "NextToken",
10
+ "limit_key": "MaxResults",
11
+ "output_token": "NextToken"
12
+ },
3
13
  "DescribeWorkspaceBundles": {
4
14
  "input_token": "NextToken",
5
15
  "output_token": "NextToken",
@@ -1739,6 +1739,21 @@ declare namespace Omics {
1739
1739
  id: WorkflowId;
1740
1740
  }
1741
1741
  export type Description = string;
1742
+ export interface ETag {
1743
+ /**
1744
+ * The algorithm used to calculate the read set’s ETag(s).
1745
+ */
1746
+ algorithm?: ETagAlgorithm;
1747
+ /**
1748
+ * The ETag hash calculated on Source1 of the read set.
1749
+ */
1750
+ source1?: String;
1751
+ /**
1752
+ * The ETag hash calculated on Source2 of the read set.
1753
+ */
1754
+ source2?: String;
1755
+ }
1756
+ export type ETagAlgorithm = "FASTQ_MD5up"|"BAM_MD5up"|"CRAM_MD5up"|string;
1742
1757
  export type Encoding = string;
1743
1758
  export type EncryptionType = "KMS"|string;
1744
1759
  export type EscapeChar = string;
@@ -2236,6 +2251,10 @@ declare namespace Omics {
2236
2251
  * The creation type of the read set.
2237
2252
  */
2238
2253
  creationType?: CreationType;
2254
+ /**
2255
+ * The entity tag (ETag) is a hash of the object meant to represent its semantic content.
2256
+ */
2257
+ etag?: ETag;
2239
2258
  }
2240
2259
  export interface GetReadSetRequest {
2241
2260
  /**
@@ -3907,6 +3926,10 @@ declare namespace Omics {
3907
3926
  * The creation type of the read set.
3908
3927
  */
3909
3928
  creationType?: CreationType;
3929
+ /**
3930
+ * The entity tag (ETag) is a hash of the object representing its semantic content.
3931
+ */
3932
+ etag?: ETag;
3910
3933
  }
3911
3934
  export type ReadSetName = string;
3912
3935
  export type ReadSetPartSource = "SOURCE1"|"SOURCE2"|string;