aws-sdk-omics 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b0791e4b602ac2269a7790f89b7a057987123d5a11cd08f2749166e933481d1
4
- data.tar.gz: 39083baf75b0bd58f22573df3c181989060335576a09e085efd02fbf1997c972
3
+ metadata.gz: ed249392c0d803df8ca4198c1e750a8dc164a65110f791c41397619d6a1c86f4
4
+ data.tar.gz: 7941d17211c03dd3038dbad865a4b90cc79c10d91c6a1c0e03446d4b97a60c9c
5
5
  SHA512:
6
- metadata.gz: 2a8a6efece95aa42c7bb7c7370a13c82925c808d60d7b8077170901965dcd6baac0e68dabf39736b968cd79fa74f2ca3d3b461b895b4b77cffe54a09bd374a46
7
- data.tar.gz: 904f47cb3fb751a21a52c4dd521ee63c60c5f2567aff9b2fbbbac8b115a285c5f730ac5fdd65f6293b159b9f167c378e4704c414854ba913a8bb97eed4fe655e
6
+ metadata.gz: 65afeead16d78ad33eddc72f0422711966a59090d183258d09a9f9593dd8d906522e49c236d9f883508ba7aa159f691eed58e6db4357a6cf2d8249d5acac40cb
7
+ data.tar.gz: d15289a8f3e6e9f0ad8ed6375c3ad79cf40afd3d287b49b2511a46ebad2a9dcebb829e205939f47c90ee7dba397723a8494e3e0b31e901b99469c85290ef4c73
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2023-04-10)
5
+ ------------------
6
+
7
+ * Feature - Remove unexpected API changes.
8
+
4
9
  1.2.0 (2023-02-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.3.0
@@ -866,7 +866,7 @@ module Aws::Omics
866
866
  #
867
867
  # resp.arn #=> String
868
868
  # resp.id #=> String
869
- # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETED", "FAILED", "INACTIVE"
869
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETED", "FAILED"
870
870
  # resp.tags #=> Hash
871
871
  # resp.tags["TagKey"] #=> String
872
872
  #
@@ -1750,7 +1750,7 @@ module Aws::Omics
1750
1750
  # resp.tags #=> Hash
1751
1751
  # resp.tags["TagKey"] #=> String
1752
1752
  # resp.workflow_id #=> String
1753
- # resp.workflow_type #=> String, one of "PRIVATE", "SERVICE"
1753
+ # resp.workflow_type #=> String, one of "PRIVATE"
1754
1754
  #
1755
1755
  #
1756
1756
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2051,7 +2051,7 @@ module Aws::Omics
2051
2051
  # resp = client.get_workflow({
2052
2052
  # export: ["DEFINITION"], # accepts DEFINITION
2053
2053
  # id: "WorkflowId", # required
2054
- # type: "PRIVATE", # accepts PRIVATE, SERVICE
2054
+ # type: "PRIVATE", # accepts PRIVATE
2055
2055
  # })
2056
2056
  #
2057
2057
  # @example Response structure
@@ -2068,12 +2068,12 @@ module Aws::Omics
2068
2068
  # resp.parameter_template #=> Hash
2069
2069
  # resp.parameter_template["WorkflowParameterName"].description #=> String
2070
2070
  # resp.parameter_template["WorkflowParameterName"].optional #=> Boolean
2071
- # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETED", "FAILED", "INACTIVE"
2071
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETED", "FAILED"
2072
2072
  # resp.status_message #=> String
2073
2073
  # resp.storage_capacity #=> Integer
2074
2074
  # resp.tags #=> Hash
2075
2075
  # resp.tags["TagKey"] #=> String
2076
- # resp.type #=> String, one of "PRIVATE", "SERVICE"
2076
+ # resp.type #=> String, one of "PRIVATE"
2077
2077
  #
2078
2078
  #
2079
2079
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2982,7 +2982,7 @@ module Aws::Omics
2982
2982
  # max_results: 1,
2983
2983
  # name: "WorkflowName",
2984
2984
  # starting_token: "WorkflowListToken",
2985
- # type: "PRIVATE", # accepts PRIVATE, SERVICE
2985
+ # type: "PRIVATE", # accepts PRIVATE
2986
2986
  # })
2987
2987
  #
2988
2988
  # @example Response structure
@@ -2993,8 +2993,8 @@ module Aws::Omics
2993
2993
  # resp.items[0].digest #=> String
2994
2994
  # resp.items[0].id #=> String
2995
2995
  # resp.items[0].name #=> String
2996
- # resp.items[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETED", "FAILED", "INACTIVE"
2997
- # resp.items[0].type #=> String, one of "PRIVATE", "SERVICE"
2996
+ # resp.items[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETED", "FAILED"
2997
+ # resp.items[0].type #=> String, one of "PRIVATE"
2998
2998
  # resp.next_token #=> String
2999
2999
  #
3000
3000
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListWorkflows AWS API Documentation
@@ -3376,7 +3376,7 @@ module Aws::Omics
3376
3376
  # "TagKey" => "TagValue",
3377
3377
  # },
3378
3378
  # workflow_id: "WorkflowId",
3379
- # workflow_type: "PRIVATE", # accepts PRIVATE, SERVICE
3379
+ # workflow_type: "PRIVATE", # accepts PRIVATE
3380
3380
  # })
3381
3381
  #
3382
3382
  # @example Response structure
@@ -3672,7 +3672,7 @@ module Aws::Omics
3672
3672
  params: params,
3673
3673
  config: config)
3674
3674
  context[:gem_name] = 'aws-sdk-omics'
3675
- context[:gem_version] = '1.2.0'
3675
+ context[:gem_version] = '1.3.0'
3676
3676
  Seahorse::Client::Request.new(handlers, context)
3677
3677
  end
3678
3678
 
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.2.0'
56
+ GEM_VERSION = '1.3.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.2.0
4
+ version: 1.3.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-02-28 00:00:00.000000000 Z
11
+ date: 2023-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core