aws-sdk-omics 1.10.0 → 1.11.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83d429c6396d9a64f28bb59aa2e7eeecefef198c6da2aa8ed9b057f08385317d
4
- data.tar.gz: f8e340a61e05f6b93b54b28a40d70badc951580cd81db6789c21c76d9b5355a0
3
+ metadata.gz: f14238900de68fd2d5795a66d9b5cf2c685e3ce81585f09f4de82c6991e3f4d6
4
+ data.tar.gz: d1f0f906ddffbaf2d8f562e3c4a9283a9a248a8cb2803db879c01c0bc7996763
5
5
  SHA512:
6
- metadata.gz: 4bc5940a6ee042fda7b8c3efc8e5f6198c0cf7e07ee93bfb82669ad87e383a257eb260ca9781fc8ae78967c2ae39bf201aec1768e2b7fee166c895f2feabf05e
7
- data.tar.gz: 24faf6489d39fd7f11d411e902b3b68c17ef71e93348e286d2647ecba9ec89e306fe81e3e7be801bb196d28779a33b31cf3b7c47c8c5a7d8f0c971eacf1d8311
6
+ metadata.gz: a2518d8082c81034fd8eb21d013150ca3559de6e168132c0b4f465f9e8a1b1bb6fc49a9e3227497a513297c78b32b7d81fd07c8e0f0e7e94ab1fac9caa2de72e
7
+ data.tar.gz: 47c0eb0650203c766f9afdb5726f64c703cd2cb2fa8d0b2fa30bfd147e29021972ee46555fce24b0672837bf481fa64a456f37c07c4ac28fca5995d404656535
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2023-07-31)
5
+ ------------------
6
+
7
+ * Feature - Add CreationType filter for ListReadSets
8
+
4
9
  1.10.0 (2023-07-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.11.0
@@ -1641,6 +1641,7 @@ module Aws::Omics
1641
1641
  # * {Types::GetReadSetMetadataResponse#reference_arn #reference_arn} => String
1642
1642
  # * {Types::GetReadSetMetadataResponse#files #files} => Types::ReadSetFiles
1643
1643
  # * {Types::GetReadSetMetadataResponse#status_message #status_message} => String
1644
+ # * {Types::GetReadSetMetadataResponse#creation_type #creation_type} => String
1644
1645
  #
1645
1646
  # @example Request syntax with placeholder values
1646
1647
  #
@@ -1676,6 +1677,7 @@ module Aws::Omics
1676
1677
  # resp.files.index.part_size #=> Integer
1677
1678
  # resp.files.index.content_length #=> Integer
1678
1679
  # resp.status_message #=> String
1680
+ # resp.creation_type #=> String, one of "IMPORT", "UPLOAD"
1679
1681
  #
1680
1682
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetReadSetMetadata AWS API Documentation
1681
1683
  #
@@ -2742,6 +2744,7 @@ module Aws::Omics
2742
2744
  # sample_id: "SampleId",
2743
2745
  # subject_id: "SubjectId",
2744
2746
  # generated_from: "GeneratedFrom",
2747
+ # creation_type: "IMPORT", # accepts IMPORT, UPLOAD
2745
2748
  # },
2746
2749
  # })
2747
2750
  #
@@ -2765,6 +2768,7 @@ module Aws::Omics
2765
2768
  # resp.read_sets[0].sequence_information.alignment #=> String
2766
2769
  # resp.read_sets[0].creation_time #=> Time
2767
2770
  # resp.read_sets[0].status_message #=> String
2771
+ # resp.read_sets[0].creation_type #=> String, one of "IMPORT", "UPLOAD"
2768
2772
  #
2769
2773
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListReadSets AWS API Documentation
2770
2774
  #
@@ -4084,7 +4088,7 @@ module Aws::Omics
4084
4088
  params: params,
4085
4089
  config: config)
4086
4090
  context[:gem_name] = 'aws-sdk-omics'
4087
- context[:gem_version] = '1.10.0'
4091
+ context[:gem_version] = '1.11.0'
4088
4092
  Seahorse::Client::Request.new(handlers, context)
4089
4093
  end
4090
4094
 
@@ -76,6 +76,7 @@ module Aws::Omics
76
76
  CreateWorkflowRequestStorageCapacityInteger = Shapes::IntegerShape.new(name: 'CreateWorkflowRequestStorageCapacityInteger')
77
77
  CreateWorkflowResponse = Shapes::StructureShape.new(name: 'CreateWorkflowResponse')
78
78
  CreationTime = Shapes::TimestampShape.new(name: 'CreationTime', timestampFormat: "iso8601")
79
+ CreationType = Shapes::StringShape.new(name: 'CreationType')
79
80
  DeleteAnnotationStoreRequest = Shapes::StructureShape.new(name: 'DeleteAnnotationStoreRequest')
80
81
  DeleteAnnotationStoreResponse = Shapes::StructureShape.new(name: 'DeleteAnnotationStoreResponse')
81
82
  DeleteReferenceRequest = Shapes::StructureShape.new(name: 'DeleteReferenceRequest')
@@ -880,6 +881,7 @@ module Aws::Omics
880
881
  GetReadSetMetadataResponse.add_member(:reference_arn, Shapes::ShapeRef.new(shape: ReferenceArn, location_name: "referenceArn"))
881
882
  GetReadSetMetadataResponse.add_member(:files, Shapes::ShapeRef.new(shape: ReadSetFiles, location_name: "files"))
882
883
  GetReadSetMetadataResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: ReadSetStatusMessage, location_name: "statusMessage"))
884
+ GetReadSetMetadataResponse.add_member(:creation_type, Shapes::ShapeRef.new(shape: CreationType, location_name: "creationType"))
883
885
  GetReadSetMetadataResponse.struct_class = Types::GetReadSetMetadataResponse
884
886
 
885
887
  GetReadSetRequest.add_member(:id, Shapes::ShapeRef.new(shape: ReadSetId, required: true, location: "uri", location_name: "id"))
@@ -1393,6 +1395,7 @@ module Aws::Omics
1393
1395
  ReadSetFilter.add_member(:sample_id, Shapes::ShapeRef.new(shape: SampleId, location_name: "sampleId"))
1394
1396
  ReadSetFilter.add_member(:subject_id, Shapes::ShapeRef.new(shape: SubjectId, location_name: "subjectId"))
1395
1397
  ReadSetFilter.add_member(:generated_from, Shapes::ShapeRef.new(shape: GeneratedFrom, location_name: "generatedFrom"))
1398
+ ReadSetFilter.add_member(:creation_type, Shapes::ShapeRef.new(shape: CreationType, location_name: "creationType"))
1396
1399
  ReadSetFilter.struct_class = Types::ReadSetFilter
1397
1400
 
1398
1401
  ReadSetIdList.member = Shapes::ShapeRef.new(shape: ReadSetId)
@@ -1412,6 +1415,7 @@ module Aws::Omics
1412
1415
  ReadSetListItem.add_member(:sequence_information, Shapes::ShapeRef.new(shape: SequenceInformation, location_name: "sequenceInformation"))
1413
1416
  ReadSetListItem.add_member(:creation_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "creationTime"))
1414
1417
  ReadSetListItem.add_member(:status_message, Shapes::ShapeRef.new(shape: ReadSetStatusMessage, location_name: "statusMessage"))
1418
+ ReadSetListItem.add_member(:creation_type, Shapes::ShapeRef.new(shape: CreationType, location_name: "creationType"))
1415
1419
  ReadSetListItem.struct_class = Types::ReadSetListItem
1416
1420
 
1417
1421
  ReadSetUploadPartList.member = Shapes::ShapeRef.new(shape: ReadSetUploadPartListItem)
@@ -1745,6 +1745,10 @@ module Aws::Omics
1745
1745
  # the read set has a status.
1746
1746
  # @return [String]
1747
1747
  #
1748
+ # @!attribute [rw] creation_type
1749
+ # The creation type of the read set.
1750
+ # @return [String]
1751
+ #
1748
1752
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetReadSetMetadataResponse AWS API Documentation
1749
1753
  #
1750
1754
  class GetReadSetMetadataResponse < Struct.new(
@@ -1761,7 +1765,8 @@ module Aws::Omics
1761
1765
  :sequence_information,
1762
1766
  :reference_arn,
1763
1767
  :files,
1764
- :status_message)
1768
+ :status_message,
1769
+ :creation_type)
1765
1770
  SENSITIVE = []
1766
1771
  include Aws::Structure
1767
1772
  end
@@ -4018,6 +4023,10 @@ module Aws::Omics
4018
4023
  # Where the source originated.
4019
4024
  # @return [String]
4020
4025
  #
4026
+ # @!attribute [rw] creation_type
4027
+ # The creation type of the read set.
4028
+ # @return [String]
4029
+ #
4021
4030
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ReadSetFilter AWS API Documentation
4022
4031
  #
4023
4032
  class ReadSetFilter < Struct.new(
@@ -4028,7 +4037,8 @@ module Aws::Omics
4028
4037
  :created_before,
4029
4038
  :sample_id,
4030
4039
  :subject_id,
4031
- :generated_from)
4040
+ :generated_from,
4041
+ :creation_type)
4032
4042
  SENSITIVE = []
4033
4043
  include Aws::Structure
4034
4044
  end
@@ -4088,6 +4098,10 @@ module Aws::Omics
4088
4098
  # read set has a status.
4089
4099
  # @return [String]
4090
4100
  #
4101
+ # @!attribute [rw] creation_type
4102
+ # The creation type of the read set.
4103
+ # @return [String]
4104
+ #
4091
4105
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ReadSetListItem AWS API Documentation
4092
4106
  #
4093
4107
  class ReadSetListItem < Struct.new(
@@ -4103,7 +4117,8 @@ module Aws::Omics
4103
4117
  :file_type,
4104
4118
  :sequence_information,
4105
4119
  :creation_time,
4106
- :status_message)
4120
+ :status_message,
4121
+ :creation_type)
4107
4122
  SENSITIVE = []
4108
4123
  include Aws::Structure
4109
4124
  end
data/lib/aws-sdk-omics.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-omics/customizations'
53
53
  # @!group service
54
54
  module Aws::Omics
55
55
 
56
- GEM_VERSION = '1.10.0'
56
+ GEM_VERSION = '1.11.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-omics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-26 00:00:00.000000000 Z
11
+ date: 2023-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core