aws-sdk-eks 1.1.0 → 1.2.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
  SHA1:
3
- metadata.gz: 787ce63329c1655cc47c5e8ad9bf8ec4499b2c91
4
- data.tar.gz: 3d0970e73be9ac6709d341e9ce7a0c2685821218
3
+ metadata.gz: 72f603777fe681dadc9ca3d9232c3262f6663525
4
+ data.tar.gz: 8a405943bfa81bb3340f040387ee38d7d88e98f9
5
5
  SHA512:
6
- metadata.gz: 40aea82869c8e0940524872eda4ed593dd3824c238ec3604db06a9ca5c1a7babfa1e7aab30ea477230dc4e9b71e470138e5603a7bfe7c3a768d0ef3743d62026
7
- data.tar.gz: 886ea673471c73092e4021c7c15a81849cc52706e4f9e3fda2dde666585790f98f3dc8b20af6942f8bf0aa9841a69ab9a889c2d75d034e7e3429e14e4775c95d
6
+ metadata.gz: 31c7a796f207c395057ac0d7bc4bc8ab378f68ab9ca5bed6fcdf1072e8b44fe7325287368fb6699b76e3925dee51712f160e2d70f1426d9ac6cc0fad3da04fef
7
+ data.tar.gz: 69935846dfd16d3961b4af65bf33f210b4f2f2f4db0a0060fe9b1e3793e7682a86e26a479dab44448e9ac994f8f4eb1d3a420c8d950e001bb55340ee0928d613
data/lib/aws-sdk-eks.rb CHANGED
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-eks/customizations'
42
42
  # @service
43
43
  module Aws::EKS
44
44
 
45
- GEM_VERSION = '1.1.0'
45
+ GEM_VERSION = '1.2.0'
46
46
 
47
47
  end
@@ -196,7 +196,7 @@ module Aws::EKS
196
196
  # The Amazon Resource Name (ARN) of the IAM role that provides
197
197
  # permissions for Amazon EKS to make calls to other AWS API operations
198
198
  # on your behalf. For more information, see [Amazon EKS Service IAM
199
- # Role][1] in the <i> <i>Amazon EKS User Guide</i> </i>
199
+ # Role][1] in the <i> <i>Amazon EKS User Guide</i> </i>.
200
200
  #
201
201
  #
202
202
  #
@@ -207,7 +207,9 @@ module Aws::EKS
207
207
  # Amazon EKS VPC resources have specific requirements to work properly
208
208
  # with Kubernetes. For more information, see [Cluster VPC
209
209
  # Considerations][1] and [Cluster Security Group Considerations][2] in
210
- # the *Amazon EKS User Guide*.
210
+ # the *Amazon EKS User Guide*. You must specify at least two subnets.
211
+ # You may specify up to 5 security groups, but we recommend that you use
212
+ # a dedicated security group for your cluster control plane.
211
213
  #
212
214
  #
213
215
  #
@@ -279,6 +281,7 @@ module Aws::EKS
279
281
  # resp.cluster.status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
280
282
  # resp.cluster.certificate_authority.data #=> String
281
283
  # resp.cluster.client_request_token #=> String
284
+ # resp.cluster.platform_version #=> String
282
285
  #
283
286
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateCluster AWS API Documentation
284
287
  #
@@ -346,6 +349,7 @@ module Aws::EKS
346
349
  # resp.cluster.status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
347
350
  # resp.cluster.certificate_authority.data #=> String
348
351
  # resp.cluster.client_request_token #=> String
352
+ # resp.cluster.platform_version #=> String
349
353
  #
350
354
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteCluster AWS API Documentation
351
355
  #
@@ -436,6 +440,7 @@ module Aws::EKS
436
440
  # resp.cluster.status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
437
441
  # resp.cluster.certificate_authority.data #=> String
438
442
  # resp.cluster.client_request_token #=> String
443
+ # resp.cluster.platform_version #=> String
439
444
  #
440
445
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeCluster AWS API Documentation
441
446
  #
@@ -447,7 +452,7 @@ module Aws::EKS
447
452
  end
448
453
 
449
454
  # Lists the Amazon EKS clusters in your AWS account in the specified
450
- # region.
455
+ # Region.
451
456
  #
452
457
  # @option params [Integer] :max_results
453
458
  # The maximum number of cluster results returned by `ListClusters` in
@@ -527,7 +532,7 @@ module Aws::EKS
527
532
  params: params,
528
533
  config: config)
529
534
  context[:gem_name] = 'aws-sdk-eks'
530
- context[:gem_version] = '1.1.0'
535
+ context[:gem_version] = '1.2.0'
531
536
  Seahorse::Client::Request.new(handlers, context)
532
537
  end
533
538
 
@@ -51,6 +51,7 @@ module Aws::EKS
51
51
  Cluster.add_member(:status, Shapes::ShapeRef.new(shape: ClusterStatus, location_name: "status"))
52
52
  Cluster.add_member(:certificate_authority, Shapes::ShapeRef.new(shape: Certificate, location_name: "certificateAuthority"))
53
53
  Cluster.add_member(:client_request_token, Shapes::ShapeRef.new(shape: String, location_name: "clientRequestToken"))
54
+ Cluster.add_member(:platform_version, Shapes::ShapeRef.new(shape: String, location_name: "platformVersion"))
54
55
  Cluster.struct_class = Types::Cluster
55
56
 
56
57
  CreateClusterRequest.add_member(:name, Shapes::ShapeRef.new(shape: ClusterName, required: true, location_name: "name"))
@@ -79,6 +79,13 @@ module Aws::EKS
79
79
  # idempotency of the request.
80
80
  # @return [String]
81
81
  #
82
+ # @!attribute [rw] platform_version
83
+ # The platform version of your Amazon EKS cluster. For more
84
+ # information, see [Platform
85
+ # Versions](eks/latest/userguide/platform-versions.html) in the <i>
86
+ # <i>Amazon EKS User Guide</i> </i>.
87
+ # @return [String]
88
+ #
82
89
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Cluster AWS API Documentation
83
90
  #
84
91
  class Cluster < Struct.new(
@@ -91,7 +98,8 @@ module Aws::EKS
91
98
  :resources_vpc_config,
92
99
  :status,
93
100
  :certificate_authority,
94
- :client_request_token)
101
+ :client_request_token,
102
+ :platform_version)
95
103
  include Aws::Structure
96
104
  end
97
105
 
@@ -123,7 +131,7 @@ module Aws::EKS
123
131
  # The Amazon Resource Name (ARN) of the IAM role that provides
124
132
  # permissions for Amazon EKS to make calls to other AWS API operations
125
133
  # on your behalf. For more information, see [Amazon EKS Service IAM
126
- # Role][1] in the <i> <i>Amazon EKS User Guide</i> </i>
134
+ # Role][1] in the <i> <i>Amazon EKS User Guide</i> </i>.
127
135
  #
128
136
  #
129
137
  #
@@ -135,7 +143,9 @@ module Aws::EKS
135
143
  # plane. Amazon EKS VPC resources have specific requirements to work
136
144
  # properly with Kubernetes. For more information, see [Cluster VPC
137
145
  # Considerations][1] and [Cluster Security Group Considerations][2] in
138
- # the *Amazon EKS User Guide*.
146
+ # the *Amazon EKS User Guide*. You must specify at least two subnets.
147
+ # You may specify up to 5 security groups, but we recommend that you
148
+ # use a dedicated security group for your cluster control plane.
139
149
  #
140
150
  #
141
151
  #
@@ -273,7 +283,7 @@ module Aws::EKS
273
283
 
274
284
  # @!attribute [rw] clusters
275
285
  # A list of all of the clusters for your account in the specified
276
- # region.
286
+ # Region.
277
287
  # @return [Array<String>]
278
288
  #
279
289
  # @!attribute [rw] next_token
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-eks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.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: 2018-06-26 00:00:00.000000000 Z
11
+ date: 2018-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core