aws-sdk-emrcontainers 1.4.0 → 1.8.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: 2badb4ab4fb53e0939aa816831f3ce6abcd828abde9bfece89b824f99bbb36bc
4
- data.tar.gz: ef8d1d6fd9bd81f233b0210fca549342a24eaa4357b6477498eee7a7dfd50f73
3
+ metadata.gz: 27c29b358d811de31b2a898933cfd2c95c62a55c4eaae05bbd7e6d645266817d
4
+ data.tar.gz: 7995740aac8c02e04a833718dc99644642615da56ae911599577d2214c2afdde
5
5
  SHA512:
6
- metadata.gz: 54bc0ed5341fd996bbec9f94fbde0b36186d108771f40a593fa6206563d7047ab1557313606007796ef9a58218c4b09e5de48fbf110580e0cf4d5345e5723725
7
- data.tar.gz: 518689aa2a329756f2a8f19a7d2d8b3b3360cfc88fb5b263fbca39c294be968a373f8a670ba5ca0f335042050b541668d8193078b2090ff8ad2e662ef96992c5
6
+ metadata.gz: a7e3ee17e14168a5156712219b9be9293fcf4e4cc2d00fde11a7dbe41fafc8d84a902095606cdc20a5e485818637c0cd3c5f163a0b3ff2b1a5739ca4d7232877
7
+ data.tar.gz: b0c2e16bcc15613619eb2594aa681280783c4b8c15713c53eb4d396261a7794f64d2810a14eb81c3ab85008d803f5e6637ad3b1a2dcb4236e920e52008b57467
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2021-10-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.7.0 (2021-09-01)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.6.0 (2021-07-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.5.0 (2021-07-28)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.4.0 (2021-07-19)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.8.0
@@ -1200,7 +1200,7 @@ module Aws::EMRContainers
1200
1200
  params: params,
1201
1201
  config: config)
1202
1202
  context[:gem_name] = 'aws-sdk-emrcontainers'
1203
- context[:gem_version] = '1.4.0'
1203
+ context[:gem_version] = '1.8.0'
1204
1204
  Seahorse::Client::Request.new(handlers, context)
1205
1205
  end
1206
1206
 
@@ -22,7 +22,7 @@ module Aws::EMRContainers
22
22
  Configuration = Shapes::StructureShape.new(name: 'Configuration')
23
23
  ConfigurationList = Shapes::ListShape.new(name: 'ConfigurationList')
24
24
  ConfigurationOverrides = Shapes::StructureShape.new(name: 'ConfigurationOverrides')
25
- ContainerInfo = Shapes::StructureShape.new(name: 'ContainerInfo')
25
+ ContainerInfo = Shapes::UnionShape.new(name: 'ContainerInfo')
26
26
  ContainerProvider = Shapes::StructureShape.new(name: 'ContainerProvider')
27
27
  ContainerProviderType = Shapes::StringShape.new(name: 'ContainerProviderType')
28
28
  CreateManagedEndpointRequest = Shapes::StructureShape.new(name: 'CreateManagedEndpointRequest')
@@ -129,6 +129,9 @@ module Aws::EMRContainers
129
129
  ConfigurationOverrides.struct_class = Types::ConfigurationOverrides
130
130
 
131
131
  ContainerInfo.add_member(:eks_info, Shapes::ShapeRef.new(shape: EksInfo, location_name: "eksInfo"))
132
+ ContainerInfo.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
133
+ ContainerInfo.add_member_subclass(:eks_info, Types::ContainerInfo::EksInfo)
134
+ ContainerInfo.add_member_subclass(:unknown, Types::ContainerInfo::Unknown)
132
135
  ContainerInfo.struct_class = Types::ContainerInfo
133
136
 
134
137
  ContainerProvider.add_member(:type, Shapes::ShapeRef.new(shape: ContainerProviderType, required: true, location_name: "type"))
@@ -183,14 +183,9 @@ module Aws::EMRContainers
183
183
  # The information about the container used for a job run or a managed
184
184
  # endpoint.
185
185
  #
186
- # @note When making an API call, you may pass ContainerInfo
187
- # data as a hash:
186
+ # @note ContainerInfo is a union - when making an API calls you must set exactly one of the members.
188
187
  #
189
- # {
190
- # eks_info: {
191
- # namespace: "KubernetesNamespace",
192
- # },
193
- # }
188
+ # @note ContainerInfo is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ContainerInfo corresponding to the set member.
194
189
  #
195
190
  # @!attribute [rw] eks_info
196
191
  # The information about the EKS cluster.
@@ -199,9 +194,14 @@ module Aws::EMRContainers
199
194
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/ContainerInfo AWS API Documentation
200
195
  #
201
196
  class ContainerInfo < Struct.new(
202
- :eks_info)
197
+ :eks_info,
198
+ :unknown)
203
199
  SENSITIVE = []
204
200
  include Aws::Structure
201
+ include Aws::Structure::Union
202
+
203
+ class EksInfo < ContainerInfo; end
204
+ class Unknown < ContainerInfo; end
205
205
  end
206
206
 
207
207
  # The information about the container provider.
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-emrcontainers/customizations'
48
48
  # @!group service
49
49
  module Aws::EMRContainers
50
50
 
51
- GEM_VERSION = '1.4.0'
51
+ GEM_VERSION = '1.8.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emrcontainers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.8.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: 2021-07-19 00:00:00.000000000 Z
11
+ date: 2021-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.112.0
22
+ version: 3.121.2
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.112.0
32
+ version: 3.121.2
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="