aws-sdk-eks 1.15.0 → 1.16.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 +4 -4
- data/lib/aws-sdk-eks.rb +1 -1
- data/lib/aws-sdk-eks/client.rb +48 -45
- data/lib/aws-sdk-eks/types.rb +45 -45
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe67c7421b4be492498a0899818bfbc65af13b7f
|
4
|
+
data.tar.gz: cf8f73643c7ee68f51c1aa608adddcd7b2b57997
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6fc9d147c8180deaa08dbb571306d6eb26ebf9d37f51b4b6420ab6930ebaab01083924d3ea0d5ec336390d16e28f2ca9c0a2a9304348fc8009287d394799607
|
7
|
+
data.tar.gz: ea6ad8e26197f45a4f9258384f13fe858ad282bfbec20caaa4181b48c08223cb72b1efabb375326aafcbf6e2e42fdf5062ed8626aa5e452506a08588b7857659
|
data/lib/aws-sdk-eks.rb
CHANGED
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -251,10 +251,10 @@ module Aws::EKS
|
|
251
251
|
# Creates an Amazon EKS control plane.
|
252
252
|
#
|
253
253
|
# The Amazon EKS control plane consists of control plane instances that
|
254
|
-
# run the Kubernetes software,
|
254
|
+
# run the Kubernetes software, such as `etcd` and the API server. The
|
255
255
|
# control plane runs in an account managed by AWS, and the Kubernetes
|
256
256
|
# API is exposed via the Amazon EKS API server endpoint. Each Amazon EKS
|
257
|
-
# cluster control plane is single-tenant and unique
|
257
|
+
# cluster control plane is single-tenant and unique and runs on its own
|
258
258
|
# set of Amazon EC2 instances.
|
259
259
|
#
|
260
260
|
# The cluster control plane is provisioned across multiple Availability
|
@@ -271,13 +271,13 @@ module Aws::EKS
|
|
271
271
|
# You can use the `endpointPublicAccess` and `endpointPrivateAccess`
|
272
272
|
# parameters to enable or disable public and private access to your
|
273
273
|
# cluster's Kubernetes API server endpoint. By default, public access
|
274
|
-
# is enabled and private access is disabled. For more information, see
|
274
|
+
# is enabled, and private access is disabled. For more information, see
|
275
275
|
# [Amazon EKS Cluster Endpoint Access Control][1] in the <i> <i>Amazon
|
276
276
|
# EKS User Guide</i> </i>.
|
277
277
|
#
|
278
278
|
# You can use the `logging` parameter to enable or disable exporting the
|
279
279
|
# Kubernetes control plane logs for your cluster to CloudWatch Logs. By
|
280
|
-
# default, cluster control plane logs
|
280
|
+
# default, cluster control plane logs aren't exported to CloudWatch
|
281
281
|
# Logs. For more information, see [Amazon EKS Cluster Control Plane
|
282
282
|
# Logs][2] in the <i> <i>Amazon EKS User Guide</i> </i>.
|
283
283
|
#
|
@@ -306,7 +306,7 @@ module Aws::EKS
|
|
306
306
|
# The unique name to give to your cluster.
|
307
307
|
#
|
308
308
|
# @option params [String] :version
|
309
|
-
# The desired Kubernetes version for your cluster. If you
|
309
|
+
# The desired Kubernetes version for your cluster. If you don't specify
|
310
310
|
# a value here, the latest version available in Amazon EKS is used.
|
311
311
|
#
|
312
312
|
# @option params [required, String] :role_arn
|
@@ -324,7 +324,7 @@ module Aws::EKS
|
|
324
324
|
# VPC resources have specific requirements to work properly with
|
325
325
|
# Kubernetes. For more information, see [Cluster VPC Considerations][1]
|
326
326
|
# and [Cluster Security Group Considerations][2] in the *Amazon EKS User
|
327
|
-
# Guide*. You must specify at least two subnets. You
|
327
|
+
# Guide*. You must specify at least two subnets. You can specify up to
|
328
328
|
# five security groups, but we recommend that you use a dedicated
|
329
329
|
# security group for your cluster control plane.
|
330
330
|
#
|
@@ -335,10 +335,10 @@ module Aws::EKS
|
|
335
335
|
#
|
336
336
|
# @option params [Types::Logging] :logging
|
337
337
|
# Enable or disable exporting the Kubernetes control plane logs for your
|
338
|
-
# cluster to CloudWatch Logs. By default, cluster control plane logs
|
339
|
-
#
|
340
|
-
# Cluster Control Plane Logs][1] in the <i> <i>Amazon EKS User
|
341
|
-
# </i>.
|
338
|
+
# cluster to CloudWatch Logs. By default, cluster control plane logs
|
339
|
+
# aren't exported to CloudWatch Logs. For more information, see [Amazon
|
340
|
+
# EKS Cluster Control Plane Logs][1] in the <i> <i>Amazon EKS User
|
341
|
+
# Guide</i> </i>.
|
342
342
|
#
|
343
343
|
# <note markdown="1"> CloudWatch Logs ingestion, archive storage, and data scanning rates
|
344
344
|
# apply to exported control plane logs. For more information, see
|
@@ -524,7 +524,7 @@ module Aws::EKS
|
|
524
524
|
# with your Kubernetes API server. For more information, see [Create a
|
525
525
|
# kubeconfig for Amazon EKS][1].
|
526
526
|
#
|
527
|
-
# <note markdown="1"> The API server endpoint and certificate authority data
|
527
|
+
# <note markdown="1"> The API server endpoint and certificate authority data aren't
|
528
528
|
# available until the cluster reaches the `ACTIVE` state.
|
529
529
|
#
|
530
530
|
# </note>
|
@@ -667,13 +667,13 @@ module Aws::EKS
|
|
667
667
|
#
|
668
668
|
# @option params [Integer] :max_results
|
669
669
|
# The maximum number of cluster results returned by `ListClusters` in
|
670
|
-
# paginated output. When this parameter
|
671
|
-
#
|
672
|
-
# response element.
|
673
|
-
#
|
674
|
-
# `nextToken` value. This value can be between 1 and 100. If
|
675
|
-
#
|
676
|
-
#
|
670
|
+
# paginated output. When you use this parameter, `ListClusters` returns
|
671
|
+
# only `maxResults` results in a single page along with a `nextToken`
|
672
|
+
# response element. You can see the remaining results of the initial
|
673
|
+
# request by sending another `ListClusters` request with the returned
|
674
|
+
# `nextToken` value. This value can be between 1 and 100. If you don't
|
675
|
+
# use this parameter, `ListClusters` returns up to 100 results and a
|
676
|
+
# `nextToken` value if applicable.
|
677
677
|
#
|
678
678
|
# @option params [String] :next_token
|
679
679
|
# The `nextToken` value returned from a previous paginated
|
@@ -681,7 +681,7 @@ module Aws::EKS
|
|
681
681
|
# exceeded the value of that parameter. Pagination continues from the
|
682
682
|
# end of the previous results that returned the `nextToken` value.
|
683
683
|
#
|
684
|
-
# <note markdown="1"> This token should be treated as an opaque identifier that is only
|
684
|
+
# <note markdown="1"> This token should be treated as an opaque identifier that is used only
|
685
685
|
# to retrieve the next items in a list and not for other programmatic
|
686
686
|
# purposes.
|
687
687
|
#
|
@@ -734,7 +734,7 @@ module Aws::EKS
|
|
734
734
|
# account, in the specified Region.
|
735
735
|
#
|
736
736
|
# @option params [required, String] :name
|
737
|
-
# The name of the Amazon EKS cluster
|
737
|
+
# The name of the Amazon EKS cluster to list updates for.
|
738
738
|
#
|
739
739
|
# @option params [String] :next_token
|
740
740
|
# The `nextToken` value returned from a previous paginated `ListUpdates`
|
@@ -744,13 +744,13 @@ module Aws::EKS
|
|
744
744
|
#
|
745
745
|
# @option params [Integer] :max_results
|
746
746
|
# The maximum number of update results returned by `ListUpdates` in
|
747
|
-
# paginated output. When this parameter
|
748
|
-
#
|
749
|
-
# response element.
|
750
|
-
#
|
751
|
-
# `nextToken` value. This value can be between 1 and 100. If
|
752
|
-
#
|
753
|
-
#
|
747
|
+
# paginated output. When you use this parameter, `ListUpdates` returns
|
748
|
+
# only `maxResults` results in a single page along with a `nextToken`
|
749
|
+
# response element. You can see the remaining results of the initial
|
750
|
+
# request by sending another `ListUpdates` request with the returned
|
751
|
+
# `nextToken` value. This value can be between 1 and 100. If you don't
|
752
|
+
# use this parameter, `ListUpdates` returns up to 100 results and a
|
753
|
+
# `nextToken` value if applicable.
|
754
754
|
#
|
755
755
|
# @return [Types::ListUpdatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
756
756
|
#
|
@@ -785,24 +785,27 @@ module Aws::EKS
|
|
785
785
|
# that you can use to track the status of your cluster update with the
|
786
786
|
# DescribeUpdate API operation.
|
787
787
|
#
|
788
|
-
# You can use this API operation to enable or disable
|
789
|
-
# access to your cluster's Kubernetes API server endpoint. By default,
|
790
|
-
# public access is enabled and private access is disabled. For more
|
791
|
-
# information, see [Amazon EKS Cluster Endpoint Access Control][1] in
|
792
|
-
# the <i> <i>Amazon EKS User Guide</i> </i>.
|
793
|
-
#
|
794
|
-
# You can also use this API operation to enable or disable exporting the
|
788
|
+
# You can use this API operation to enable or disable exporting the
|
795
789
|
# Kubernetes control plane logs for your cluster to CloudWatch Logs. By
|
796
|
-
# default, cluster control plane logs
|
790
|
+
# default, cluster control plane logs aren't exported to CloudWatch
|
797
791
|
# Logs. For more information, see [Amazon EKS Cluster Control Plane
|
798
|
-
# Logs][
|
792
|
+
# Logs][1] in the <i> <i>Amazon EKS User Guide</i> </i>.
|
799
793
|
#
|
800
794
|
# <note markdown="1"> CloudWatch Logs ingestion, archive storage, and data scanning rates
|
801
795
|
# apply to exported control plane logs. For more information, see
|
802
|
-
# [Amazon CloudWatch Pricing][
|
796
|
+
# [Amazon CloudWatch Pricing][2].
|
803
797
|
#
|
804
798
|
# </note>
|
805
799
|
#
|
800
|
+
# You can also use this API operation to enable or disable public and
|
801
|
+
# private access to your cluster's Kubernetes API server endpoint. By
|
802
|
+
# default, public access is enabled, and private access is disabled. For
|
803
|
+
# more information, see [Amazon EKS Cluster Endpoint Access Control][3]
|
804
|
+
# in the <i> <i>Amazon EKS User Guide</i> </i>.
|
805
|
+
#
|
806
|
+
# At this time, you can not update the subnets or security group IDs for
|
807
|
+
# an existing cluster.
|
808
|
+
#
|
806
809
|
# Cluster updates are asynchronous, and they should finish within a few
|
807
810
|
# minutes. During an update, the cluster status moves to `UPDATING`
|
808
811
|
# (this status transition is eventually consistent). When the update is
|
@@ -811,9 +814,9 @@ module Aws::EKS
|
|
811
814
|
#
|
812
815
|
#
|
813
816
|
#
|
814
|
-
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/
|
815
|
-
# [2]:
|
816
|
-
# [3]:
|
817
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html
|
818
|
+
# [2]: http://aws.amazon.com/cloudwatch/pricing/
|
819
|
+
# [3]: https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html
|
817
820
|
#
|
818
821
|
# @option params [required, String] :name
|
819
822
|
# The name of the Amazon EKS cluster to update.
|
@@ -824,10 +827,10 @@ module Aws::EKS
|
|
824
827
|
#
|
825
828
|
# @option params [Types::Logging] :logging
|
826
829
|
# Enable or disable exporting the Kubernetes control plane logs for your
|
827
|
-
# cluster to CloudWatch Logs. By default, cluster control plane logs
|
828
|
-
#
|
829
|
-
# Cluster Control Plane Logs][1] in the <i> <i>Amazon EKS User
|
830
|
-
# </i>.
|
830
|
+
# cluster to CloudWatch Logs. By default, cluster control plane logs
|
831
|
+
# aren't exported to CloudWatch Logs. For more information, see [Amazon
|
832
|
+
# EKS Cluster Control Plane Logs][1] in the <i> <i>Amazon EKS User
|
833
|
+
# Guide</i> </i>.
|
831
834
|
#
|
832
835
|
# <note markdown="1"> CloudWatch Logs ingestion, archive storage, and data scanning rates
|
833
836
|
# apply to exported control plane logs. For more information, see
|
@@ -969,7 +972,7 @@ module Aws::EKS
|
|
969
972
|
params: params,
|
970
973
|
config: config)
|
971
974
|
context[:gem_name] = 'aws-sdk-eks'
|
972
|
-
context[:gem_version] = '1.
|
975
|
+
context[:gem_version] = '1.16.0'
|
973
976
|
Seahorse::Client::Request.new(handlers, context)
|
974
977
|
end
|
975
978
|
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -12,7 +12,7 @@ module Aws::EKS
|
|
12
12
|
# cluster.
|
13
13
|
#
|
14
14
|
# @!attribute [rw] data
|
15
|
-
# The
|
15
|
+
# The Base64-encoded certificate data required to communicate with
|
16
16
|
# your cluster. Add this to the `certificate-authority-data` section
|
17
17
|
# of the `kubeconfig` file for your cluster.
|
18
18
|
# @return [String]
|
@@ -140,7 +140,7 @@ module Aws::EKS
|
|
140
140
|
# @return [String]
|
141
141
|
#
|
142
142
|
# @!attribute [rw] version
|
143
|
-
# The desired Kubernetes version for your cluster. If you
|
143
|
+
# The desired Kubernetes version for your cluster. If you don't
|
144
144
|
# specify a value here, the latest version available in Amazon EKS is
|
145
145
|
# used.
|
146
146
|
# @return [String]
|
@@ -162,7 +162,7 @@ module Aws::EKS
|
|
162
162
|
# Kubernetes. For more information, see [Cluster VPC
|
163
163
|
# Considerations][1] and [Cluster Security Group Considerations][2] in
|
164
164
|
# the *Amazon EKS User Guide*. You must specify at least two subnets.
|
165
|
-
# You
|
165
|
+
# You can specify up to five security groups, but we recommend that
|
166
166
|
# you use a dedicated security group for your cluster control plane.
|
167
167
|
#
|
168
168
|
#
|
@@ -174,7 +174,7 @@ module Aws::EKS
|
|
174
174
|
# @!attribute [rw] logging
|
175
175
|
# Enable or disable exporting the Kubernetes control plane logs for
|
176
176
|
# your cluster to CloudWatch Logs. By default, cluster control plane
|
177
|
-
# logs
|
177
|
+
# logs aren't exported to CloudWatch Logs. For more information, see
|
178
178
|
# [Amazon EKS Cluster Control Plane Logs][1] in the <i> <i>Amazon EKS
|
179
179
|
# User Guide</i> </i>.
|
180
180
|
#
|
@@ -319,27 +319,27 @@ module Aws::EKS
|
|
319
319
|
# @!attribute [rw] error_code
|
320
320
|
# A brief description of the error.
|
321
321
|
#
|
322
|
-
# * **SubnetNotFound**\:
|
323
|
-
#
|
322
|
+
# * **SubnetNotFound**\: We couldn't find one of the subnets
|
323
|
+
# associated with the cluster.
|
324
324
|
#
|
325
|
-
# * **SecurityGroupNotFound**\:
|
326
|
-
# with the cluster
|
325
|
+
# * **SecurityGroupNotFound**\: We couldn't find one of the security
|
326
|
+
# groups associated with the cluster.
|
327
327
|
#
|
328
328
|
# * **EniLimitReached**\: You have reached the elastic network
|
329
329
|
# interface limit for your account.
|
330
330
|
#
|
331
|
-
# * **IpNotAvailable**\: A subnet associated with the cluster
|
331
|
+
# * **IpNotAvailable**\: A subnet associated with the cluster doesn't
|
332
332
|
# have any free IP addresses.
|
333
333
|
#
|
334
|
-
# * **AccessDenied**\: You
|
334
|
+
# * **AccessDenied**\: You don't have permissions to perform the
|
335
335
|
# specified operation.
|
336
336
|
#
|
337
337
|
# * **OperationNotPermitted**\: The service role associated with the
|
338
|
-
# cluster
|
338
|
+
# cluster doesn't have the required access permissions for Amazon
|
339
339
|
# EKS.
|
340
340
|
#
|
341
|
-
# * **VpcIdNotFound**\:
|
342
|
-
#
|
341
|
+
# * **VpcIdNotFound**\: We couldn't find the VPC associated with the
|
342
|
+
# cluster.
|
343
343
|
# @return [String]
|
344
344
|
#
|
345
345
|
# @!attribute [rw] error_message
|
@@ -370,12 +370,12 @@ module Aws::EKS
|
|
370
370
|
#
|
371
371
|
# @!attribute [rw] max_results
|
372
372
|
# The maximum number of cluster results returned by `ListClusters` in
|
373
|
-
# paginated output. When this parameter
|
374
|
-
# returns `maxResults` results in a single page along with a
|
375
|
-
# `nextToken` response element.
|
376
|
-
#
|
373
|
+
# paginated output. When you use this parameter, `ListClusters`
|
374
|
+
# returns only `maxResults` results in a single page along with a
|
375
|
+
# `nextToken` response element. You can see the remaining results of
|
376
|
+
# the initial request by sending another `ListClusters` request with
|
377
377
|
# the returned `nextToken` value. This value can be between 1 and 100.
|
378
|
-
# If
|
378
|
+
# If you don't use this parameter, `ListClusters` returns up to 100
|
379
379
|
# results and a `nextToken` value if applicable.
|
380
380
|
# @return [Integer]
|
381
381
|
#
|
@@ -385,8 +385,8 @@ module Aws::EKS
|
|
385
385
|
# exceeded the value of that parameter. Pagination continues from the
|
386
386
|
# end of the previous results that returned the `nextToken` value.
|
387
387
|
#
|
388
|
-
# <note markdown="1"> This token should be treated as an opaque identifier that is
|
389
|
-
#
|
388
|
+
# <note markdown="1"> This token should be treated as an opaque identifier that is used
|
389
|
+
# only to retrieve the next items in a list and not for other
|
390
390
|
# programmatic purposes.
|
391
391
|
#
|
392
392
|
# </note>
|
@@ -408,7 +408,7 @@ module Aws::EKS
|
|
408
408
|
# @!attribute [rw] next_token
|
409
409
|
# The `nextToken` value to include in a future `ListClusters` request.
|
410
410
|
# When the results of a `ListClusters` request exceed `maxResults`,
|
411
|
-
#
|
411
|
+
# you can use this value to retrieve the next page of results. This
|
412
412
|
# value is `null` when there are no more results to return.
|
413
413
|
# @return [String]
|
414
414
|
#
|
@@ -430,7 +430,7 @@ module Aws::EKS
|
|
430
430
|
# }
|
431
431
|
#
|
432
432
|
# @!attribute [rw] name
|
433
|
-
# The name of the Amazon EKS cluster
|
433
|
+
# The name of the Amazon EKS cluster to list updates for.
|
434
434
|
# @return [String]
|
435
435
|
#
|
436
436
|
# @!attribute [rw] next_token
|
@@ -442,13 +442,13 @@ module Aws::EKS
|
|
442
442
|
#
|
443
443
|
# @!attribute [rw] max_results
|
444
444
|
# The maximum number of update results returned by `ListUpdates` in
|
445
|
-
# paginated output. When this parameter
|
446
|
-
#
|
447
|
-
#
|
448
|
-
# request
|
449
|
-
#
|
450
|
-
#
|
451
|
-
#
|
445
|
+
# paginated output. When you use this parameter, `ListUpdates` returns
|
446
|
+
# only `maxResults` results in a single page along with a `nextToken`
|
447
|
+
# response element. You can see the remaining results of the initial
|
448
|
+
# request by sending another `ListUpdates` request with the returned
|
449
|
+
# `nextToken` value. This value can be between 1 and 100. If you
|
450
|
+
# don't use this parameter, `ListUpdates` returns up to 100 results
|
451
|
+
# and a `nextToken` value if applicable.
|
452
452
|
# @return [Integer]
|
453
453
|
#
|
454
454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ListUpdatesRequest AWS API Documentation
|
@@ -466,9 +466,9 @@ module Aws::EKS
|
|
466
466
|
#
|
467
467
|
# @!attribute [rw] next_token
|
468
468
|
# The `nextToken` value to include in a future `ListUpdates` request.
|
469
|
-
# When the results of a `ListUpdates` request exceed `maxResults`,
|
470
|
-
# this value
|
471
|
-
#
|
469
|
+
# When the results of a `ListUpdates` request exceed `maxResults`, you
|
470
|
+
# can use this value to retrieve the next page of results. This value
|
471
|
+
# is `null` when there are no more results to return.
|
472
472
|
# @return [String]
|
473
473
|
#
|
474
474
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ListUpdatesResponse AWS API Documentation
|
@@ -495,10 +495,10 @@ module Aws::EKS
|
|
495
495
|
# @return [Array<String>]
|
496
496
|
#
|
497
497
|
# @!attribute [rw] enabled
|
498
|
-
# If a log type is enabled,
|
499
|
-
#
|
500
|
-
#
|
501
|
-
#
|
498
|
+
# If a log type is enabled, that log type exports its control plane
|
499
|
+
# logs to CloudWatch Logs. If a log type isn't enabled, that log type
|
500
|
+
# doesn't export its control plane logs. Each individual log type can
|
501
|
+
# be enabled or disabled independently.
|
502
502
|
# @return [Boolean]
|
503
503
|
#
|
504
504
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/LogSetup AWS API Documentation
|
@@ -608,7 +608,7 @@ module Aws::EKS
|
|
608
608
|
# @!attribute [rw] logging
|
609
609
|
# Enable or disable exporting the Kubernetes control plane logs for
|
610
610
|
# your cluster to CloudWatch Logs. By default, cluster control plane
|
611
|
-
# logs
|
611
|
+
# logs aren't exported to CloudWatch Logs. For more information, see
|
612
612
|
# [Amazon EKS Cluster Control Plane Logs][1] in the <i> <i>Amazon EKS
|
613
613
|
# User Guide</i> </i>.
|
614
614
|
#
|
@@ -740,14 +740,14 @@ module Aws::EKS
|
|
740
740
|
# Specify one or more security groups for the cross-account elastic
|
741
741
|
# network interfaces that Amazon EKS creates to use to allow
|
742
742
|
# communication between your worker nodes and the Kubernetes control
|
743
|
-
# plane. If you
|
743
|
+
# plane. If you don't specify a security group, the default security
|
744
744
|
# group for your VPC is used.
|
745
745
|
# @return [Array<String>]
|
746
746
|
#
|
747
747
|
# @!attribute [rw] endpoint_public_access
|
748
748
|
# Set this value to `false` to disable public access for your
|
749
749
|
# cluster's Kubernetes API server endpoint. If you disable public
|
750
|
-
# access, your cluster's Kubernetes API server can only
|
750
|
+
# access, your cluster's Kubernetes API server can receive only
|
751
751
|
# requests from within the cluster VPC. The default value for this
|
752
752
|
# parameter is `true`, which enables public access for your Kubernetes
|
753
753
|
# API server. For more information, see [Amazon EKS Cluster Endpoint
|
@@ -761,9 +761,9 @@ module Aws::EKS
|
|
761
761
|
# @!attribute [rw] endpoint_private_access
|
762
762
|
# Set this value to `true` to enable private access for your
|
763
763
|
# cluster's Kubernetes API server endpoint. If you enable private
|
764
|
-
# access, Kubernetes API requests from within your cluster's VPC
|
765
|
-
#
|
766
|
-
#
|
764
|
+
# access, Kubernetes API requests from within your cluster's VPC use
|
765
|
+
# the private VPC endpoint. The default value for this parameter is
|
766
|
+
# `false`, which disables private access for your Kubernetes API
|
767
767
|
# server. For more information, see [Amazon EKS Cluster Endpoint
|
768
768
|
# Access Control][1] in the <i> <i>Amazon EKS User Guide</i> </i>.
|
769
769
|
#
|
@@ -802,7 +802,7 @@ module Aws::EKS
|
|
802
802
|
# @!attribute [rw] endpoint_public_access
|
803
803
|
# This parameter indicates whether the Amazon EKS public API server
|
804
804
|
# endpoint is enabled. If the Amazon EKS public API server endpoint is
|
805
|
-
# disabled, your cluster's Kubernetes API server can only
|
805
|
+
# disabled, your cluster's Kubernetes API server can receive only
|
806
806
|
# requests that originate from within the cluster VPC.
|
807
807
|
# @return [Boolean]
|
808
808
|
#
|
@@ -810,8 +810,8 @@ module Aws::EKS
|
|
810
810
|
# This parameter indicates whether the Amazon EKS private API server
|
811
811
|
# endpoint is enabled. If the Amazon EKS private API server endpoint
|
812
812
|
# is enabled, Kubernetes API requests that originate from within your
|
813
|
-
# cluster's VPC
|
814
|
-
#
|
813
|
+
# cluster's VPC use the private VPC endpoint instead of traversing
|
814
|
+
# the internet.
|
815
815
|
# @return [Boolean]
|
816
816
|
#
|
817
817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/VpcConfigResponse AWS API Documentation
|
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.
|
4
|
+
version: 1.16.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-
|
11
|
+
date: 2019-05-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -60,7 +60,7 @@ files:
|
|
60
60
|
- lib/aws-sdk-eks/resource.rb
|
61
61
|
- lib/aws-sdk-eks/types.rb
|
62
62
|
- lib/aws-sdk-eks/waiters.rb
|
63
|
-
homepage:
|
63
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
64
64
|
licenses:
|
65
65
|
- Apache-2.0
|
66
66
|
metadata:
|