aws-sdk-emrcontainers 1.4.0 → 1.5.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: 271822e22572bdca00734d29fa8797fac0eea49a66ff4056c1f549b9736f3d19
4
+ data.tar.gz: a3b48133341d48a45bc7bdb34cd2eb0583e6e7f10e11a2a5d3f74a72f24949af
5
5
  SHA512:
6
- metadata.gz: 54bc0ed5341fd996bbec9f94fbde0b36186d108771f40a593fa6206563d7047ab1557313606007796ef9a58218c4b09e5de48fbf110580e0cf4d5345e5723725
7
- data.tar.gz: 518689aa2a329756f2a8f19a7d2d8b3b3360cfc88fb5b263fbca39c294be968a373f8a670ba5ca0f335042050b541668d8193078b2090ff8ad2e662ef96992c5
6
+ metadata.gz: 9b2527de3e6ff3ee2880b08318ae3c837831efd721760cea5779edfa30f759709a309735e28c210c5ce10fb8cb5cff75f7b8191a15e4591be42d7e4e8a572f8b
7
+ data.tar.gz: b7b6074f1b33a4a45cf794d43cdfd5c3f7d60278291c50d8a13667a9c2d8cfc92fda624884b9e33495f55dad39d675030628f7b17e131dc68ab9a13b2e8bf9c7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.5.0 (2021-07-28)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.4.0 (2021-07-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.5.0
@@ -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.5.0'
52
52
 
53
53
  end
@@ -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.5.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.
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.5.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-07-28 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.118.0
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.118.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement