aws-sdk-eks 1.80.0 → 1.81.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +70 -1
- data/lib/aws-sdk-eks/client_api.rb +25 -0
- data/lib/aws-sdk-eks/endpoint_provider.rb +64 -65
- data/lib/aws-sdk-eks/endpoints.rb +14 -0
- data/lib/aws-sdk-eks/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-eks/types.rb +88 -679
- data/lib/aws-sdk-eks.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2fe054621c8b049a49aa3248e491dc37056d6e93c40f83de186f8e5ea985d58a
|
4
|
+
data.tar.gz: 0dd44ecc385d4c081b9595079165f71049b37cf80a66dba50d9ec85ac299b529
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 328089401baf210311a9a7f02012e160e313bbdebb72ed97dc41621dd296570dc3269c014555617ace1c91b44496a16aee63b1606381d5211678cea1b0411beb
|
7
|
+
data.tar.gz: d44336fb5b0e330547fc3415a984ea80f91efba7cdd72849a501e5850442db1c5656bf8ee3a3d9eb061da72c5225af9575ab206b969976e1d0364ddd99e511ad
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.81.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -605,6 +605,15 @@ module Aws::EKS
|
|
605
605
|
# organization. Each tag consists of a key and an optional value. You
|
606
606
|
# define both.
|
607
607
|
#
|
608
|
+
# @option params [String] :configuration_values
|
609
|
+
# The set of configuration values for the add-on being created. Whatever
|
610
|
+
# values provided here are validated against the schema from [
|
611
|
+
# `DescribeAddonConfiguration` ][1].
|
612
|
+
#
|
613
|
+
#
|
614
|
+
#
|
615
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonConfiguration.html
|
616
|
+
#
|
608
617
|
# @return [Types::CreateAddonResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
609
618
|
#
|
610
619
|
# * {Types::CreateAddonResponse#addon #addon} => Types::Addon
|
@@ -621,6 +630,7 @@ module Aws::EKS
|
|
621
630
|
# tags: {
|
622
631
|
# "TagKey" => "TagValue",
|
623
632
|
# },
|
633
|
+
# configuration_values: "String",
|
624
634
|
# })
|
625
635
|
#
|
626
636
|
# @example Response structure
|
@@ -644,6 +654,7 @@ module Aws::EKS
|
|
644
654
|
# resp.addon.owner #=> String
|
645
655
|
# resp.addon.marketplace_information.product_id #=> String
|
646
656
|
# resp.addon.marketplace_information.product_url #=> String
|
657
|
+
# resp.addon.configuration_values #=> String
|
647
658
|
#
|
648
659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateAddon AWS API Documentation
|
649
660
|
#
|
@@ -1388,6 +1399,7 @@ module Aws::EKS
|
|
1388
1399
|
# resp.addon.owner #=> String
|
1389
1400
|
# resp.addon.marketplace_information.product_id #=> String
|
1390
1401
|
# resp.addon.marketplace_information.product_url #=> String
|
1402
|
+
# resp.addon.configuration_values #=> String
|
1391
1403
|
#
|
1392
1404
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteAddon AWS API Documentation
|
1393
1405
|
#
|
@@ -1755,6 +1767,7 @@ module Aws::EKS
|
|
1755
1767
|
# resp.addon.owner #=> String
|
1756
1768
|
# resp.addon.marketplace_information.product_id #=> String
|
1757
1769
|
# resp.addon.marketplace_information.product_url #=> String
|
1770
|
+
# resp.addon.configuration_values #=> String
|
1758
1771
|
#
|
1759
1772
|
#
|
1760
1773
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -1771,6 +1784,52 @@ module Aws::EKS
|
|
1771
1784
|
req.send_request(options)
|
1772
1785
|
end
|
1773
1786
|
|
1787
|
+
# Returns configuration options.
|
1788
|
+
#
|
1789
|
+
# @option params [required, String] :addon_name
|
1790
|
+
# The name of the add-on. The name must match one of the names returned
|
1791
|
+
# by [ `DescribeAddonVersions` ][1].
|
1792
|
+
#
|
1793
|
+
#
|
1794
|
+
#
|
1795
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
|
1796
|
+
#
|
1797
|
+
# @option params [required, String] :addon_version
|
1798
|
+
# The version of the add-on. The version must match one of the versions
|
1799
|
+
# returned by [ `DescribeAddonVersions` ][1].
|
1800
|
+
#
|
1801
|
+
#
|
1802
|
+
#
|
1803
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
|
1804
|
+
#
|
1805
|
+
# @return [Types::DescribeAddonConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1806
|
+
#
|
1807
|
+
# * {Types::DescribeAddonConfigurationResponse#addon_name #addon_name} => String
|
1808
|
+
# * {Types::DescribeAddonConfigurationResponse#addon_version #addon_version} => String
|
1809
|
+
# * {Types::DescribeAddonConfigurationResponse#configuration_schema #configuration_schema} => String
|
1810
|
+
#
|
1811
|
+
# @example Request syntax with placeholder values
|
1812
|
+
#
|
1813
|
+
# resp = client.describe_addon_configuration({
|
1814
|
+
# addon_name: "String", # required
|
1815
|
+
# addon_version: "String", # required
|
1816
|
+
# })
|
1817
|
+
#
|
1818
|
+
# @example Response structure
|
1819
|
+
#
|
1820
|
+
# resp.addon_name #=> String
|
1821
|
+
# resp.addon_version #=> String
|
1822
|
+
# resp.configuration_schema #=> String
|
1823
|
+
#
|
1824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonConfiguration AWS API Documentation
|
1825
|
+
#
|
1826
|
+
# @overload describe_addon_configuration(params = {})
|
1827
|
+
# @param [Hash] params ({})
|
1828
|
+
def describe_addon_configuration(params = {}, options = {})
|
1829
|
+
req = build_request(:describe_addon_configuration, params)
|
1830
|
+
req.send_request(options)
|
1831
|
+
end
|
1832
|
+
|
1774
1833
|
# Describes the versions for an add-on. Information such as the
|
1775
1834
|
# Kubernetes versions that you can use the add-on with, the `owner`,
|
1776
1835
|
# `publisher`, and the `type` of the add-on are returned.
|
@@ -2951,6 +3010,15 @@ module Aws::EKS
|
|
2951
3010
|
# **A suitable default value is auto-generated.** You should normally
|
2952
3011
|
# not need to pass this option.**
|
2953
3012
|
#
|
3013
|
+
# @option params [String] :configuration_values
|
3014
|
+
# The set of configuration values for the add-on being created. Whatever
|
3015
|
+
# values provided here are validated against the schema from
|
3016
|
+
# [DescribeAddonConfiguration][1]
|
3017
|
+
#
|
3018
|
+
#
|
3019
|
+
#
|
3020
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonConfiguration.html
|
3021
|
+
#
|
2954
3022
|
# @return [Types::UpdateAddonResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2955
3023
|
#
|
2956
3024
|
# * {Types::UpdateAddonResponse#update #update} => Types::Update
|
@@ -2964,6 +3032,7 @@ module Aws::EKS
|
|
2964
3032
|
# service_account_role_arn: "RoleArn",
|
2965
3033
|
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
2966
3034
|
# client_request_token: "String",
|
3035
|
+
# configuration_values: "String",
|
2967
3036
|
# })
|
2968
3037
|
#
|
2969
3038
|
# @example Response structure
|
@@ -3426,7 +3495,7 @@ module Aws::EKS
|
|
3426
3495
|
params: params,
|
3427
3496
|
config: config)
|
3428
3497
|
context[:gem_name] = 'aws-sdk-eks'
|
3429
|
-
context[:gem_version] = '1.
|
3498
|
+
context[:gem_version] = '1.81.0'
|
3430
3499
|
Seahorse::Client::Request.new(handlers, context)
|
3431
3500
|
end
|
3432
3501
|
|
@@ -71,6 +71,8 @@ module Aws::EKS
|
|
71
71
|
DeleteNodegroupResponse = Shapes::StructureShape.new(name: 'DeleteNodegroupResponse')
|
72
72
|
DeregisterClusterRequest = Shapes::StructureShape.new(name: 'DeregisterClusterRequest')
|
73
73
|
DeregisterClusterResponse = Shapes::StructureShape.new(name: 'DeregisterClusterResponse')
|
74
|
+
DescribeAddonConfigurationRequest = Shapes::StructureShape.new(name: 'DescribeAddonConfigurationRequest')
|
75
|
+
DescribeAddonConfigurationResponse = Shapes::StructureShape.new(name: 'DescribeAddonConfigurationResponse')
|
74
76
|
DescribeAddonRequest = Shapes::StructureShape.new(name: 'DescribeAddonRequest')
|
75
77
|
DescribeAddonResponse = Shapes::StructureShape.new(name: 'DescribeAddonResponse')
|
76
78
|
DescribeAddonVersionsRequest = Shapes::StructureShape.new(name: 'DescribeAddonVersionsRequest')
|
@@ -227,6 +229,7 @@ module Aws::EKS
|
|
227
229
|
Addon.add_member(:publisher, Shapes::ShapeRef.new(shape: String, location_name: "publisher"))
|
228
230
|
Addon.add_member(:owner, Shapes::ShapeRef.new(shape: String, location_name: "owner"))
|
229
231
|
Addon.add_member(:marketplace_information, Shapes::ShapeRef.new(shape: MarketplaceInformation, location_name: "marketplaceInformation"))
|
232
|
+
Addon.add_member(:configuration_values, Shapes::ShapeRef.new(shape: String, location_name: "configurationValues"))
|
230
233
|
Addon.struct_class = Types::Addon
|
231
234
|
|
232
235
|
AddonHealth.add_member(:issues, Shapes::ShapeRef.new(shape: AddonIssueList, location_name: "issues"))
|
@@ -355,6 +358,7 @@ module Aws::EKS
|
|
355
358
|
CreateAddonRequest.add_member(:resolve_conflicts, Shapes::ShapeRef.new(shape: ResolveConflicts, location_name: "resolveConflicts"))
|
356
359
|
CreateAddonRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: String, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
357
360
|
CreateAddonRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
361
|
+
CreateAddonRequest.add_member(:configuration_values, Shapes::ShapeRef.new(shape: String, location_name: "configurationValues"))
|
358
362
|
CreateAddonRequest.struct_class = Types::CreateAddonRequest
|
359
363
|
|
360
364
|
CreateAddonResponse.add_member(:addon, Shapes::ShapeRef.new(shape: Addon, location_name: "addon"))
|
@@ -444,6 +448,15 @@ module Aws::EKS
|
|
444
448
|
DeregisterClusterResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "cluster"))
|
445
449
|
DeregisterClusterResponse.struct_class = Types::DeregisterClusterResponse
|
446
450
|
|
451
|
+
DescribeAddonConfigurationRequest.add_member(:addon_name, Shapes::ShapeRef.new(shape: String, required: true, location: "querystring", location_name: "addonName"))
|
452
|
+
DescribeAddonConfigurationRequest.add_member(:addon_version, Shapes::ShapeRef.new(shape: String, required: true, location: "querystring", location_name: "addonVersion"))
|
453
|
+
DescribeAddonConfigurationRequest.struct_class = Types::DescribeAddonConfigurationRequest
|
454
|
+
|
455
|
+
DescribeAddonConfigurationResponse.add_member(:addon_name, Shapes::ShapeRef.new(shape: String, location_name: "addonName"))
|
456
|
+
DescribeAddonConfigurationResponse.add_member(:addon_version, Shapes::ShapeRef.new(shape: String, location_name: "addonVersion"))
|
457
|
+
DescribeAddonConfigurationResponse.add_member(:configuration_schema, Shapes::ShapeRef.new(shape: String, location_name: "configurationSchema"))
|
458
|
+
DescribeAddonConfigurationResponse.struct_class = Types::DescribeAddonConfigurationResponse
|
459
|
+
|
447
460
|
DescribeAddonRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterName, required: true, location: "uri", location_name: "name"))
|
448
461
|
DescribeAddonRequest.add_member(:addon_name, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "addonName"))
|
449
462
|
DescribeAddonRequest.struct_class = Types::DescribeAddonRequest
|
@@ -837,6 +850,7 @@ module Aws::EKS
|
|
837
850
|
UpdateAddonRequest.add_member(:service_account_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "serviceAccountRoleArn"))
|
838
851
|
UpdateAddonRequest.add_member(:resolve_conflicts, Shapes::ShapeRef.new(shape: ResolveConflicts, location_name: "resolveConflicts"))
|
839
852
|
UpdateAddonRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: String, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
853
|
+
UpdateAddonRequest.add_member(:configuration_values, Shapes::ShapeRef.new(shape: String, location_name: "configurationValues"))
|
840
854
|
UpdateAddonRequest.struct_class = Types::UpdateAddonRequest
|
841
855
|
|
842
856
|
UpdateAddonResponse.add_member(:update, Shapes::ShapeRef.new(shape: Update, location_name: "update"))
|
@@ -1107,6 +1121,17 @@ module Aws::EKS
|
|
1107
1121
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
1108
1122
|
end)
|
1109
1123
|
|
1124
|
+
api.add_operation(:describe_addon_configuration, Seahorse::Model::Operation.new.tap do |o|
|
1125
|
+
o.name = "DescribeAddonConfiguration"
|
1126
|
+
o.http_method = "GET"
|
1127
|
+
o.http_request_uri = "/addons/configuration-schemas"
|
1128
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeAddonConfigurationRequest)
|
1129
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeAddonConfigurationResponse)
|
1130
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
1131
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1132
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1133
|
+
end)
|
1134
|
+
|
1110
1135
|
api.add_operation(:describe_addon_versions, Seahorse::Model::Operation.new.tap do |o|
|
1111
1136
|
o.name = "DescribeAddonVersions"
|
1112
1137
|
o.http_method = "GET"
|
@@ -50,71 +50,70 @@ IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
|
|
50
50
|
b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
|
51
51
|
ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
|
52
52
|
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
|
53
|
+
c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfV0sInR5cGUiOiJ0
|
54
|
+
cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
|
55
|
+
dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJlcnJv
|
56
|
+
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9tIGVu
|
57
|
+
ZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJj
|
58
|
+
b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
59
|
+
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
|
60
|
+
VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZp
|
61
|
+
Z3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBu
|
62
|
+
b3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpb
|
63
|
+
XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
|
64
|
+
cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
|
65
|
+
fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
|
66
|
+
Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
|
67
|
+
bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
|
68
|
+
eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
|
69
|
+
b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
|
70
|
+
Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
|
71
|
+
XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
72
|
+
OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
|
73
|
+
InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
|
74
|
+
IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
|
75
|
+
Ly9la3MtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFj
|
76
|
+
a0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
|
77
|
+
eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
|
78
|
+
RklQUyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0
|
79
|
+
aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJl
|
80
|
+
cnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
81
|
+
LCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRy
|
82
|
+
ZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
|
83
|
+
YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJy
|
84
|
+
ZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0
|
85
|
+
eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6
|
86
|
+
InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdF
|
87
|
+
cXVhbHMiLCJhcmd2IjpbImF3cyIseyJmbiI6ImdldEF0dHIiLCJhcmd2Ijpb
|
88
|
+
eyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwibmFtZSJdfV19XSwiZW5kcG9p
|
89
|
+
bnQiOnsidXJsIjoiaHR0cHM6Ly9maXBzLmVrcy57UmVnaW9ufS57UGFydGl0
|
90
|
+
aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
|
91
|
+
cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMiOlt7ImZu
|
92
|
+
Ijoic3RyaW5nRXF1YWxzIiwiYXJndiI6WyJhd3MtdXMtZ292Iix7ImZuIjoi
|
93
|
+
Z2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJu
|
94
|
+
YW1lIl19XX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Vrcy57UmVn
|
95
|
+
aW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
|
96
|
+
Ijp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRp
|
97
|
+
dGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Vrcy1maXBz
|
98
|
+
LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
|
99
|
+
cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
|
100
|
+
fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBi
|
101
|
+
dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlw
|
102
|
+
ZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
|
103
|
+
dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0s
|
104
|
+
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
105
|
+
Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwi
|
106
|
+
YXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVh
|
107
|
+
bFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
|
108
|
+
b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9la3Mue1JlZ2lv
|
109
|
+
bn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJv
|
110
|
+
cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1d
|
111
|
+
fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFjayBpcyBlbmFi
|
112
|
+
bGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1YWxT
|
113
|
+
dGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5k
|
114
|
+
cG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9la3Mue1JlZ2lvbn0ue1BhcnRpdGlv
|
115
|
+
blJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMi
|
116
|
+
Ont9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
118
117
|
|
119
118
|
JSON
|
120
119
|
end
|
@@ -179,6 +179,20 @@ module Aws::EKS
|
|
179
179
|
end
|
180
180
|
end
|
181
181
|
|
182
|
+
class DescribeAddonConfiguration
|
183
|
+
def self.build(context)
|
184
|
+
unless context.config.regional_endpoint
|
185
|
+
endpoint = context.config.endpoint.to_s
|
186
|
+
end
|
187
|
+
Aws::EKS::EndpointParameters.new(
|
188
|
+
region: context.config.region,
|
189
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
190
|
+
use_fips: context.config.use_fips_endpoint,
|
191
|
+
endpoint: endpoint,
|
192
|
+
)
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
182
196
|
class DescribeAddonVersions
|
183
197
|
def self.build(context)
|
184
198
|
unless context.config.regional_endpoint
|
@@ -80,6 +80,8 @@ module Aws::EKS
|
|
80
80
|
Aws::EKS::Endpoints::DeregisterCluster.build(context)
|
81
81
|
when :describe_addon
|
82
82
|
Aws::EKS::Endpoints::DescribeAddon.build(context)
|
83
|
+
when :describe_addon_configuration
|
84
|
+
Aws::EKS::Endpoints::DescribeAddonConfiguration.build(context)
|
83
85
|
when :describe_addon_versions
|
84
86
|
Aws::EKS::Endpoints::DescribeAddonVersions.build(context)
|
85
87
|
when :describe_cluster
|