aws-sdk-eks 1.95.0 → 1.97.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +1063 -318
- data/lib/aws-sdk-eks/client_api.rb +416 -0
- data/lib/aws-sdk-eks/endpoints.rb +154 -0
- data/lib/aws-sdk-eks/plugins/endpoints.rb +22 -0
- data/lib/aws-sdk-eks/types.rb +1569 -383
- data/lib/aws-sdk-eks.rb +2 -2
- metadata +2 -2
@@ -12,6 +12,20 @@ module Aws::EKS
|
|
12
12
|
# @api private
|
13
13
|
module Endpoints
|
14
14
|
|
15
|
+
class AssociateAccessPolicy
|
16
|
+
def self.build(context)
|
17
|
+
unless context.config.regional_endpoint
|
18
|
+
endpoint = context.config.endpoint.to_s
|
19
|
+
end
|
20
|
+
Aws::EKS::EndpointParameters.new(
|
21
|
+
region: context.config.region,
|
22
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
23
|
+
use_fips: context.config.use_fips_endpoint,
|
24
|
+
endpoint: endpoint,
|
25
|
+
)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
15
29
|
class AssociateEncryptionConfig
|
16
30
|
def self.build(context)
|
17
31
|
unless context.config.regional_endpoint
|
@@ -40,6 +54,20 @@ module Aws::EKS
|
|
40
54
|
end
|
41
55
|
end
|
42
56
|
|
57
|
+
class CreateAccessEntry
|
58
|
+
def self.build(context)
|
59
|
+
unless context.config.regional_endpoint
|
60
|
+
endpoint = context.config.endpoint.to_s
|
61
|
+
end
|
62
|
+
Aws::EKS::EndpointParameters.new(
|
63
|
+
region: context.config.region,
|
64
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
65
|
+
use_fips: context.config.use_fips_endpoint,
|
66
|
+
endpoint: endpoint,
|
67
|
+
)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
43
71
|
class CreateAddon
|
44
72
|
def self.build(context)
|
45
73
|
unless context.config.regional_endpoint
|
@@ -124,6 +152,20 @@ module Aws::EKS
|
|
124
152
|
end
|
125
153
|
end
|
126
154
|
|
155
|
+
class DeleteAccessEntry
|
156
|
+
def self.build(context)
|
157
|
+
unless context.config.regional_endpoint
|
158
|
+
endpoint = context.config.endpoint.to_s
|
159
|
+
end
|
160
|
+
Aws::EKS::EndpointParameters.new(
|
161
|
+
region: context.config.region,
|
162
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
163
|
+
use_fips: context.config.use_fips_endpoint,
|
164
|
+
endpoint: endpoint,
|
165
|
+
)
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
127
169
|
class DeleteAddon
|
128
170
|
def self.build(context)
|
129
171
|
unless context.config.regional_endpoint
|
@@ -222,6 +264,20 @@ module Aws::EKS
|
|
222
264
|
end
|
223
265
|
end
|
224
266
|
|
267
|
+
class DescribeAccessEntry
|
268
|
+
def self.build(context)
|
269
|
+
unless context.config.regional_endpoint
|
270
|
+
endpoint = context.config.endpoint.to_s
|
271
|
+
end
|
272
|
+
Aws::EKS::EndpointParameters.new(
|
273
|
+
region: context.config.region,
|
274
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
275
|
+
use_fips: context.config.use_fips_endpoint,
|
276
|
+
endpoint: endpoint,
|
277
|
+
)
|
278
|
+
end
|
279
|
+
end
|
280
|
+
|
225
281
|
class DescribeAddon
|
226
282
|
def self.build(context)
|
227
283
|
unless context.config.regional_endpoint
|
@@ -320,6 +376,20 @@ module Aws::EKS
|
|
320
376
|
end
|
321
377
|
end
|
322
378
|
|
379
|
+
class DescribeInsight
|
380
|
+
def self.build(context)
|
381
|
+
unless context.config.regional_endpoint
|
382
|
+
endpoint = context.config.endpoint.to_s
|
383
|
+
end
|
384
|
+
Aws::EKS::EndpointParameters.new(
|
385
|
+
region: context.config.region,
|
386
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
387
|
+
use_fips: context.config.use_fips_endpoint,
|
388
|
+
endpoint: endpoint,
|
389
|
+
)
|
390
|
+
end
|
391
|
+
end
|
392
|
+
|
323
393
|
class DescribeNodegroup
|
324
394
|
def self.build(context)
|
325
395
|
unless context.config.regional_endpoint
|
@@ -362,6 +432,20 @@ module Aws::EKS
|
|
362
432
|
end
|
363
433
|
end
|
364
434
|
|
435
|
+
class DisassociateAccessPolicy
|
436
|
+
def self.build(context)
|
437
|
+
unless context.config.regional_endpoint
|
438
|
+
endpoint = context.config.endpoint.to_s
|
439
|
+
end
|
440
|
+
Aws::EKS::EndpointParameters.new(
|
441
|
+
region: context.config.region,
|
442
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
443
|
+
use_fips: context.config.use_fips_endpoint,
|
444
|
+
endpoint: endpoint,
|
445
|
+
)
|
446
|
+
end
|
447
|
+
end
|
448
|
+
|
365
449
|
class DisassociateIdentityProviderConfig
|
366
450
|
def self.build(context)
|
367
451
|
unless context.config.regional_endpoint
|
@@ -376,6 +460,34 @@ module Aws::EKS
|
|
376
460
|
end
|
377
461
|
end
|
378
462
|
|
463
|
+
class ListAccessEntries
|
464
|
+
def self.build(context)
|
465
|
+
unless context.config.regional_endpoint
|
466
|
+
endpoint = context.config.endpoint.to_s
|
467
|
+
end
|
468
|
+
Aws::EKS::EndpointParameters.new(
|
469
|
+
region: context.config.region,
|
470
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
471
|
+
use_fips: context.config.use_fips_endpoint,
|
472
|
+
endpoint: endpoint,
|
473
|
+
)
|
474
|
+
end
|
475
|
+
end
|
476
|
+
|
477
|
+
class ListAccessPolicies
|
478
|
+
def self.build(context)
|
479
|
+
unless context.config.regional_endpoint
|
480
|
+
endpoint = context.config.endpoint.to_s
|
481
|
+
end
|
482
|
+
Aws::EKS::EndpointParameters.new(
|
483
|
+
region: context.config.region,
|
484
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
485
|
+
use_fips: context.config.use_fips_endpoint,
|
486
|
+
endpoint: endpoint,
|
487
|
+
)
|
488
|
+
end
|
489
|
+
end
|
490
|
+
|
379
491
|
class ListAddons
|
380
492
|
def self.build(context)
|
381
493
|
unless context.config.regional_endpoint
|
@@ -390,6 +502,20 @@ module Aws::EKS
|
|
390
502
|
end
|
391
503
|
end
|
392
504
|
|
505
|
+
class ListAssociatedAccessPolicies
|
506
|
+
def self.build(context)
|
507
|
+
unless context.config.regional_endpoint
|
508
|
+
endpoint = context.config.endpoint.to_s
|
509
|
+
end
|
510
|
+
Aws::EKS::EndpointParameters.new(
|
511
|
+
region: context.config.region,
|
512
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
513
|
+
use_fips: context.config.use_fips_endpoint,
|
514
|
+
endpoint: endpoint,
|
515
|
+
)
|
516
|
+
end
|
517
|
+
end
|
518
|
+
|
393
519
|
class ListClusters
|
394
520
|
def self.build(context)
|
395
521
|
unless context.config.regional_endpoint
|
@@ -446,6 +572,20 @@ module Aws::EKS
|
|
446
572
|
end
|
447
573
|
end
|
448
574
|
|
575
|
+
class ListInsights
|
576
|
+
def self.build(context)
|
577
|
+
unless context.config.regional_endpoint
|
578
|
+
endpoint = context.config.endpoint.to_s
|
579
|
+
end
|
580
|
+
Aws::EKS::EndpointParameters.new(
|
581
|
+
region: context.config.region,
|
582
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
583
|
+
use_fips: context.config.use_fips_endpoint,
|
584
|
+
endpoint: endpoint,
|
585
|
+
)
|
586
|
+
end
|
587
|
+
end
|
588
|
+
|
449
589
|
class ListNodegroups
|
450
590
|
def self.build(context)
|
451
591
|
unless context.config.regional_endpoint
|
@@ -544,6 +684,20 @@ module Aws::EKS
|
|
544
684
|
end
|
545
685
|
end
|
546
686
|
|
687
|
+
class UpdateAccessEntry
|
688
|
+
def self.build(context)
|
689
|
+
unless context.config.regional_endpoint
|
690
|
+
endpoint = context.config.endpoint.to_s
|
691
|
+
end
|
692
|
+
Aws::EKS::EndpointParameters.new(
|
693
|
+
region: context.config.region,
|
694
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
695
|
+
use_fips: context.config.use_fips_endpoint,
|
696
|
+
endpoint: endpoint,
|
697
|
+
)
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
547
701
|
class UpdateAddon
|
548
702
|
def self.build(context)
|
549
703
|
unless context.config.regional_endpoint
|
@@ -57,10 +57,14 @@ module Aws::EKS
|
|
57
57
|
|
58
58
|
def parameters_for_operation(context)
|
59
59
|
case context.operation_name
|
60
|
+
when :associate_access_policy
|
61
|
+
Aws::EKS::Endpoints::AssociateAccessPolicy.build(context)
|
60
62
|
when :associate_encryption_config
|
61
63
|
Aws::EKS::Endpoints::AssociateEncryptionConfig.build(context)
|
62
64
|
when :associate_identity_provider_config
|
63
65
|
Aws::EKS::Endpoints::AssociateIdentityProviderConfig.build(context)
|
66
|
+
when :create_access_entry
|
67
|
+
Aws::EKS::Endpoints::CreateAccessEntry.build(context)
|
64
68
|
when :create_addon
|
65
69
|
Aws::EKS::Endpoints::CreateAddon.build(context)
|
66
70
|
when :create_cluster
|
@@ -73,6 +77,8 @@ module Aws::EKS
|
|
73
77
|
Aws::EKS::Endpoints::CreateNodegroup.build(context)
|
74
78
|
when :create_pod_identity_association
|
75
79
|
Aws::EKS::Endpoints::CreatePodIdentityAssociation.build(context)
|
80
|
+
when :delete_access_entry
|
81
|
+
Aws::EKS::Endpoints::DeleteAccessEntry.build(context)
|
76
82
|
when :delete_addon
|
77
83
|
Aws::EKS::Endpoints::DeleteAddon.build(context)
|
78
84
|
when :delete_cluster
|
@@ -87,6 +93,8 @@ module Aws::EKS
|
|
87
93
|
Aws::EKS::Endpoints::DeletePodIdentityAssociation.build(context)
|
88
94
|
when :deregister_cluster
|
89
95
|
Aws::EKS::Endpoints::DeregisterCluster.build(context)
|
96
|
+
when :describe_access_entry
|
97
|
+
Aws::EKS::Endpoints::DescribeAccessEntry.build(context)
|
90
98
|
when :describe_addon
|
91
99
|
Aws::EKS::Endpoints::DescribeAddon.build(context)
|
92
100
|
when :describe_addon_configuration
|
@@ -101,16 +109,26 @@ module Aws::EKS
|
|
101
109
|
Aws::EKS::Endpoints::DescribeFargateProfile.build(context)
|
102
110
|
when :describe_identity_provider_config
|
103
111
|
Aws::EKS::Endpoints::DescribeIdentityProviderConfig.build(context)
|
112
|
+
when :describe_insight
|
113
|
+
Aws::EKS::Endpoints::DescribeInsight.build(context)
|
104
114
|
when :describe_nodegroup
|
105
115
|
Aws::EKS::Endpoints::DescribeNodegroup.build(context)
|
106
116
|
when :describe_pod_identity_association
|
107
117
|
Aws::EKS::Endpoints::DescribePodIdentityAssociation.build(context)
|
108
118
|
when :describe_update
|
109
119
|
Aws::EKS::Endpoints::DescribeUpdate.build(context)
|
120
|
+
when :disassociate_access_policy
|
121
|
+
Aws::EKS::Endpoints::DisassociateAccessPolicy.build(context)
|
110
122
|
when :disassociate_identity_provider_config
|
111
123
|
Aws::EKS::Endpoints::DisassociateIdentityProviderConfig.build(context)
|
124
|
+
when :list_access_entries
|
125
|
+
Aws::EKS::Endpoints::ListAccessEntries.build(context)
|
126
|
+
when :list_access_policies
|
127
|
+
Aws::EKS::Endpoints::ListAccessPolicies.build(context)
|
112
128
|
when :list_addons
|
113
129
|
Aws::EKS::Endpoints::ListAddons.build(context)
|
130
|
+
when :list_associated_access_policies
|
131
|
+
Aws::EKS::Endpoints::ListAssociatedAccessPolicies.build(context)
|
114
132
|
when :list_clusters
|
115
133
|
Aws::EKS::Endpoints::ListClusters.build(context)
|
116
134
|
when :list_eks_anywhere_subscriptions
|
@@ -119,6 +137,8 @@ module Aws::EKS
|
|
119
137
|
Aws::EKS::Endpoints::ListFargateProfiles.build(context)
|
120
138
|
when :list_identity_provider_configs
|
121
139
|
Aws::EKS::Endpoints::ListIdentityProviderConfigs.build(context)
|
140
|
+
when :list_insights
|
141
|
+
Aws::EKS::Endpoints::ListInsights.build(context)
|
122
142
|
when :list_nodegroups
|
123
143
|
Aws::EKS::Endpoints::ListNodegroups.build(context)
|
124
144
|
when :list_pod_identity_associations
|
@@ -133,6 +153,8 @@ module Aws::EKS
|
|
133
153
|
Aws::EKS::Endpoints::TagResource.build(context)
|
134
154
|
when :untag_resource
|
135
155
|
Aws::EKS::Endpoints::UntagResource.build(context)
|
156
|
+
when :update_access_entry
|
157
|
+
Aws::EKS::Endpoints::UpdateAccessEntry.build(context)
|
136
158
|
when :update_addon
|
137
159
|
Aws::EKS::Endpoints::UpdateAddon.build(context)
|
138
160
|
when :update_cluster_config
|