aws-sdk-omics 1.36.0 → 1.38.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: fefa7556be4c2c6eee0761b93f5573555ebab6ced99af4a850a0964f953efab2
4
- data.tar.gz: 466214f0849f75fd9c0060c0261cccd88bdf3a8f452d028338b4eafe93726a27
3
+ metadata.gz: e2014aa515d75e420065a68829ce56e45e643d4c565fca9f681726f20030da9f
4
+ data.tar.gz: 3a59b96cca9ede7bc9fdc5c4565c927b4a752859571b30c9c8b06cf224408085
5
5
  SHA512:
6
- metadata.gz: 10c38374589c96d513f8b70e6d5b2d152c0527f0190b0d5faa3f2aee1446e2b83aad237260f03b203b8e33ae63b015789c10c9223fdf413eccd1e2ffd5bc1e77
7
- data.tar.gz: e2ec453443398dd6e37bdc3c0d64dfc4347b79d0207bd6a6611584f7542d81deccc099907a01ba341afec6dd1dd41ff2ae2041435c59fe009bdd9380028d718c
6
+ metadata.gz: 972989fc451f4405fccb40b6551b102d458b37e61cb65493d59b0a4d95fdf5c9b6eb82fc5b268db2b65017b96804a1e9bdd7e1755798d52fca6397e220d8fdfa
7
+ data.tar.gz: 4ca41bab3dc41af8d3dc1068232d10ba4107fcf36fdb65a45fd2e2128721a70c5dd4c218b0da164a0edcbc034cd4c6e62b6e814f1fd66b967c8583a0e075c25d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.38.0 (2024-09-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.37.0 (2024-09-23)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.36.0 (2024-09-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.38.0
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
36
36
  require 'aws-sdk-core/plugins/sign.rb'
37
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
38
38
 
39
- Aws::Plugins::GlobalConfiguration.add_identifier(:omics)
40
-
41
39
  module Aws::Omics
42
40
  # An API client for Omics. To construct a client, you need to configure a `:region` and `:credentials`.
43
41
  #
@@ -4783,7 +4781,7 @@ module Aws::Omics
4783
4781
  tracer: tracer
4784
4782
  )
4785
4783
  context[:gem_name] = 'aws-sdk-omics'
4786
- context[:gem_version] = '1.36.0'
4784
+ context[:gem_version] = '1.38.0'
4787
4785
  Seahorse::Client::Request.new(handlers, context)
4788
4786
  end
4789
4787
 
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  module Aws::Omics
11
12
  # @api private
12
13
  module ClientApi
@@ -6850,3 +6850,4 @@ module Aws::Omics
6850
6850
 
6851
6851
  end
6852
6852
  end
6853
+
data/lib/aws-sdk-omics.rb CHANGED
@@ -11,17 +11,7 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
- require_relative 'aws-sdk-omics/types'
15
- require_relative 'aws-sdk-omics/client_api'
16
- require_relative 'aws-sdk-omics/plugins/endpoints.rb'
17
- require_relative 'aws-sdk-omics/client'
18
- require_relative 'aws-sdk-omics/errors'
19
- require_relative 'aws-sdk-omics/waiters'
20
- require_relative 'aws-sdk-omics/resource'
21
- require_relative 'aws-sdk-omics/endpoint_parameters'
22
- require_relative 'aws-sdk-omics/endpoint_provider'
23
- require_relative 'aws-sdk-omics/endpoints'
24
- require_relative 'aws-sdk-omics/customizations'
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:omics)
25
15
 
26
16
  # This module provides support for Amazon Omics. This module is available in the
27
17
  # `aws-sdk-omics` gem.
@@ -52,7 +42,21 @@ require_relative 'aws-sdk-omics/customizations'
52
42
  #
53
43
  # @!group service
54
44
  module Aws::Omics
45
+ autoload :Types, 'aws-sdk-omics/types'
46
+ autoload :ClientApi, 'aws-sdk-omics/client_api'
47
+ module Plugins
48
+ autoload :Endpoints, 'aws-sdk-omics/plugins/endpoints.rb'
49
+ end
50
+ autoload :Client, 'aws-sdk-omics/client'
51
+ autoload :Errors, 'aws-sdk-omics/errors'
52
+ autoload :Waiters, 'aws-sdk-omics/waiters'
53
+ autoload :Resource, 'aws-sdk-omics/resource'
54
+ autoload :EndpointParameters, 'aws-sdk-omics/endpoint_parameters'
55
+ autoload :EndpointProvider, 'aws-sdk-omics/endpoint_provider'
56
+ autoload :Endpoints, 'aws-sdk-omics/endpoints'
55
57
 
56
- GEM_VERSION = '1.36.0'
58
+ GEM_VERSION = '1.38.0'
57
59
 
58
60
  end
61
+
62
+ require_relative 'aws-sdk-omics/customizations'
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.36.0
4
+ version: 1.38.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: 2024-09-20 00:00:00.000000000 Z
11
+ date: 2024-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core