aws-sdk-eks 1.24.0 → 1.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 92ffb3343c38925450b25a2c070103044e66d765
4
- data.tar.gz: d77dd1d4d5190a4d21dfefdfe9a5154daa3d2e87
3
+ metadata.gz: bf9361b5310f3fb3e4598e1d09cadc4e9e480894
4
+ data.tar.gz: 1bff16e8812e3a4f56ae6c099408cfaf80d72e9b
5
5
  SHA512:
6
- metadata.gz: f19542f5dca32f1e9b888f94def5cfa7092bf4e40ce63f0fcb5c84dcbc76c5f4d65abb279323ea6757cf5f9b5619dcbfc49a9b7bb1d6cc429c6731a562667cd7
7
- data.tar.gz: b84d2e4648fdef95d02226802ef4140ad799b2e7c6b685078ff780a5c94bef73541435830238541ae8a6cab46e8f915552c0d5a192253b3de1bcad368aef663c
6
+ metadata.gz: 3ba5917724a7537fbc6873072c6810e2bd28697846b14e95718432a0976ae8320ef00232cfeae76de88605552cf5d9f5f99f11866c450ba1fbcbb0e813d442d8
7
+ data.tar.gz: 20104cedb7a09a55807340202d3946fb8df089a0a6f976913a7db3b04e92f57f51db13139a5c9d499acd084e752e9003f43a82498b3372d0e6a00eb26994f986
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-eks/customizations'
43
43
  # @service
44
44
  module Aws::EKS
45
45
 
46
- GEM_VERSION = '1.24.0'
46
+ GEM_VERSION = '1.25.0'
47
47
 
48
48
  end
@@ -435,6 +435,7 @@ module Aws::EKS
435
435
  # resp.cluster.logging.cluster_logging[0].types #=> Array
436
436
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
437
437
  # resp.cluster.logging.cluster_logging[0].enabled #=> Boolean
438
+ # resp.cluster.identity.oidc.issuer #=> String
438
439
  # resp.cluster.status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
439
440
  # resp.cluster.certificate_authority.data #=> String
440
441
  # resp.cluster.client_request_token #=> String
@@ -509,6 +510,7 @@ module Aws::EKS
509
510
  # resp.cluster.logging.cluster_logging[0].types #=> Array
510
511
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
511
512
  # resp.cluster.logging.cluster_logging[0].enabled #=> Boolean
513
+ # resp.cluster.identity.oidc.issuer #=> String
512
514
  # resp.cluster.status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
513
515
  # resp.cluster.certificate_authority.data #=> String
514
516
  # resp.cluster.client_request_token #=> String
@@ -606,6 +608,7 @@ module Aws::EKS
606
608
  # resp.cluster.logging.cluster_logging[0].types #=> Array
607
609
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
608
610
  # resp.cluster.logging.cluster_logging[0].enabled #=> Boolean
611
+ # resp.cluster.identity.oidc.issuer #=> String
609
612
  # resp.cluster.status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
610
613
  # resp.cluster.certificate_authority.data #=> String
611
614
  # resp.cluster.client_request_token #=> String
@@ -978,7 +981,7 @@ module Aws::EKS
978
981
  params: params,
979
982
  config: config)
980
983
  context[:gem_name] = 'aws-sdk-eks'
981
- context[:gem_version] = '1.24.0'
984
+ context[:gem_version] = '1.25.0'
982
985
  Seahorse::Client::Request.new(handlers, context)
983
986
  end
984
987
 
@@ -29,6 +29,7 @@ module Aws::EKS
29
29
  ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
30
30
  ErrorDetail = Shapes::StructureShape.new(name: 'ErrorDetail')
31
31
  ErrorDetails = Shapes::ListShape.new(name: 'ErrorDetails')
32
+ Identity = Shapes::StructureShape.new(name: 'Identity')
32
33
  InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
33
34
  InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
34
35
  ListClustersRequest = Shapes::StructureShape.new(name: 'ListClustersRequest')
@@ -42,6 +43,7 @@ module Aws::EKS
42
43
  LogType = Shapes::StringShape.new(name: 'LogType')
43
44
  LogTypes = Shapes::ListShape.new(name: 'LogTypes')
44
45
  Logging = Shapes::StructureShape.new(name: 'Logging')
46
+ OIDC = Shapes::StructureShape.new(name: 'OIDC')
45
47
  ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
46
48
  ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
47
49
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
@@ -79,6 +81,7 @@ module Aws::EKS
79
81
  Cluster.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, location_name: "roleArn"))
80
82
  Cluster.add_member(:resources_vpc_config, Shapes::ShapeRef.new(shape: VpcConfigResponse, location_name: "resourcesVpcConfig"))
81
83
  Cluster.add_member(:logging, Shapes::ShapeRef.new(shape: Logging, location_name: "logging"))
84
+ Cluster.add_member(:identity, Shapes::ShapeRef.new(shape: Identity, location_name: "identity"))
82
85
  Cluster.add_member(:status, Shapes::ShapeRef.new(shape: ClusterStatus, location_name: "status"))
83
86
  Cluster.add_member(:certificate_authority, Shapes::ShapeRef.new(shape: Certificate, location_name: "certificateAuthority"))
84
87
  Cluster.add_member(:client_request_token, Shapes::ShapeRef.new(shape: String, location_name: "clientRequestToken"))
@@ -122,6 +125,9 @@ module Aws::EKS
122
125
 
123
126
  ErrorDetails.member = Shapes::ShapeRef.new(shape: ErrorDetail)
124
127
 
128
+ Identity.add_member(:oidc, Shapes::ShapeRef.new(shape: OIDC, location_name: "oidc"))
129
+ Identity.struct_class = Types::Identity
130
+
125
131
  InvalidParameterException.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, location_name: "clusterName"))
126
132
  InvalidParameterException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
127
133
  InvalidParameterException.struct_class = Types::InvalidParameterException
@@ -158,6 +164,9 @@ module Aws::EKS
158
164
  Logging.add_member(:cluster_logging, Shapes::ShapeRef.new(shape: LogSetups, location_name: "clusterLogging"))
159
165
  Logging.struct_class = Types::Logging
160
166
 
167
+ OIDC.add_member(:issuer, Shapes::ShapeRef.new(shape: String, location_name: "issuer"))
168
+ OIDC.struct_class = Types::OIDC
169
+
161
170
  ResourceInUseException.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, location_name: "clusterName"))
162
171
  ResourceInUseException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
163
172
  ResourceInUseException.struct_class = Types::ResourceInUseException
@@ -309,6 +318,12 @@ module Aws::EKS
309
318
  o.errors << Shapes::ShapeRef.new(shape: ClientException)
310
319
  o.errors << Shapes::ShapeRef.new(shape: ServerException)
311
320
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
321
+ o[:pager] = Aws::Pager.new(
322
+ limit_key: "max_results",
323
+ tokens: {
324
+ "next_token" => "next_token"
325
+ }
326
+ )
312
327
  end)
313
328
 
314
329
  api.add_operation(:list_updates, Seahorse::Model::Operation.new.tap do |o|
@@ -321,6 +336,12 @@ module Aws::EKS
321
336
  o.errors << Shapes::ShapeRef.new(shape: ClientException)
322
337
  o.errors << Shapes::ShapeRef.new(shape: ServerException)
323
338
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
339
+ o[:pager] = Aws::Pager.new(
340
+ limit_key: "max_results",
341
+ tokens: {
342
+ "next_token" => "next_token"
343
+ }
344
+ )
324
345
  end)
325
346
 
326
347
  api.add_operation(:update_cluster_config, Seahorse::Model::Operation.new.tap do |o|
@@ -90,6 +90,10 @@ module Aws::EKS
90
90
  # The logging configuration for your cluster.
91
91
  # @return [Types::Logging]
92
92
  #
93
+ # @!attribute [rw] identity
94
+ # The identity provider information for the cluster.
95
+ # @return [Types::Identity]
96
+ #
93
97
  # @!attribute [rw] status
94
98
  # The current status of the cluster.
95
99
  # @return [String]
@@ -124,6 +128,7 @@ module Aws::EKS
124
128
  :role_arn,
125
129
  :resources_vpc_config,
126
130
  :logging,
131
+ :identity,
127
132
  :status,
128
133
  :certificate_authority,
129
134
  :client_request_token,
@@ -380,6 +385,25 @@ module Aws::EKS
380
385
  include Aws::Structure
381
386
  end
382
387
 
388
+ # An object representing an identity provider for authentication
389
+ # credentials.
390
+ #
391
+ # @!attribute [rw] oidc
392
+ # The [OpenID Connect][1] identity provider information for the
393
+ # cluster.
394
+ #
395
+ #
396
+ #
397
+ # [1]: https://openid.net/connect/
398
+ # @return [Types::OIDC]
399
+ #
400
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Identity AWS API Documentation
401
+ #
402
+ class Identity < Struct.new(
403
+ :oidc)
404
+ include Aws::Structure
405
+ end
406
+
383
407
  # The specified parameter is invalid. Review the available parameters
384
408
  # for the API request.
385
409
  #
@@ -591,6 +615,24 @@ module Aws::EKS
591
615
  include Aws::Structure
592
616
  end
593
617
 
618
+ # An object representing the [OpenID Connect][1] identity provider
619
+ # information for the cluster.
620
+ #
621
+ #
622
+ #
623
+ # [1]: https://openid.net/connect/
624
+ #
625
+ # @!attribute [rw] issuer
626
+ # The issuer URL for the OpenID Connect identity provider.
627
+ # @return [String]
628
+ #
629
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/OIDC AWS API Documentation
630
+ #
631
+ class OIDC < Struct.new(
632
+ :issuer)
633
+ include Aws::Structure
634
+ end
635
+
594
636
  # The specified resource is in use.
595
637
  #
596
638
  # @!attribute [rw] cluster_name
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.24.0
4
+ version: 1.25.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: 2019-07-25 00:00:00.000000000 Z
11
+ date: 2019-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core