aws-sdk-eks 1.97.0 → 1.98.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,989 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module EKS
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _AssociateAccessPolicyResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateAccessPolicyResponse]
77
+ def cluster_name: () -> ::String
78
+ def principal_arn: () -> ::String
79
+ def associated_access_policy: () -> Types::AssociatedAccessPolicy
80
+ end
81
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#associate_access_policy-instance_method
82
+ def associate_access_policy: (
83
+ cluster_name: ::String,
84
+ principal_arn: ::String,
85
+ policy_arn: ::String,
86
+ access_scope: {
87
+ type: ("cluster" | "namespace")?,
88
+ namespaces: Array[::String]?
89
+ }
90
+ ) -> _AssociateAccessPolicyResponseSuccess
91
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateAccessPolicyResponseSuccess
92
+
93
+ interface _AssociateEncryptionConfigResponseSuccess
94
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateEncryptionConfigResponse]
95
+ def update: () -> Types::Update
96
+ end
97
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#associate_encryption_config-instance_method
98
+ def associate_encryption_config: (
99
+ cluster_name: ::String,
100
+ encryption_config: Array[
101
+ {
102
+ resources: Array[::String]?,
103
+ provider: {
104
+ key_arn: ::String?
105
+ }?
106
+ },
107
+ ],
108
+ ?client_request_token: ::String
109
+ ) -> _AssociateEncryptionConfigResponseSuccess
110
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateEncryptionConfigResponseSuccess
111
+
112
+ interface _AssociateIdentityProviderConfigResponseSuccess
113
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateIdentityProviderConfigResponse]
114
+ def update: () -> Types::Update
115
+ def tags: () -> ::Hash[::String, ::String]
116
+ end
117
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#associate_identity_provider_config-instance_method
118
+ def associate_identity_provider_config: (
119
+ cluster_name: ::String,
120
+ oidc: {
121
+ identity_provider_config_name: ::String,
122
+ issuer_url: ::String,
123
+ client_id: ::String,
124
+ username_claim: ::String?,
125
+ username_prefix: ::String?,
126
+ groups_claim: ::String?,
127
+ groups_prefix: ::String?,
128
+ required_claims: Hash[::String, ::String]?
129
+ },
130
+ ?tags: Hash[::String, ::String],
131
+ ?client_request_token: ::String
132
+ ) -> _AssociateIdentityProviderConfigResponseSuccess
133
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateIdentityProviderConfigResponseSuccess
134
+
135
+ interface _CreateAccessEntryResponseSuccess
136
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAccessEntryResponse]
137
+ def access_entry: () -> Types::AccessEntry
138
+ end
139
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#create_access_entry-instance_method
140
+ def create_access_entry: (
141
+ cluster_name: ::String,
142
+ principal_arn: ::String,
143
+ ?kubernetes_groups: Array[::String],
144
+ ?tags: Hash[::String, ::String],
145
+ ?client_request_token: ::String,
146
+ ?username: ::String,
147
+ ?type: ::String
148
+ ) -> _CreateAccessEntryResponseSuccess
149
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccessEntryResponseSuccess
150
+
151
+ interface _CreateAddonResponseSuccess
152
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAddonResponse]
153
+ def addon: () -> Types::Addon
154
+ end
155
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#create_addon-instance_method
156
+ def create_addon: (
157
+ cluster_name: ::String,
158
+ addon_name: ::String,
159
+ ?addon_version: ::String,
160
+ ?service_account_role_arn: ::String,
161
+ ?resolve_conflicts: ("OVERWRITE" | "NONE" | "PRESERVE"),
162
+ ?client_request_token: ::String,
163
+ ?tags: Hash[::String, ::String],
164
+ ?configuration_values: ::String
165
+ ) -> _CreateAddonResponseSuccess
166
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAddonResponseSuccess
167
+
168
+ interface _CreateClusterResponseSuccess
169
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateClusterResponse]
170
+ def cluster: () -> Types::Cluster
171
+ end
172
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#create_cluster-instance_method
173
+ def create_cluster: (
174
+ name: ::String,
175
+ ?version: ::String,
176
+ role_arn: ::String,
177
+ resources_vpc_config: {
178
+ subnet_ids: Array[::String]?,
179
+ security_group_ids: Array[::String]?,
180
+ endpoint_public_access: bool?,
181
+ endpoint_private_access: bool?,
182
+ public_access_cidrs: Array[::String]?
183
+ },
184
+ ?kubernetes_network_config: {
185
+ service_ipv_4_cidr: ::String?,
186
+ ip_family: ("ipv4" | "ipv6")?
187
+ },
188
+ ?logging: {
189
+ cluster_logging: Array[
190
+ {
191
+ types: Array[("api" | "audit" | "authenticator" | "controllerManager" | "scheduler")]?,
192
+ enabled: bool?
193
+ },
194
+ ]?
195
+ },
196
+ ?client_request_token: ::String,
197
+ ?tags: Hash[::String, ::String],
198
+ ?encryption_config: Array[
199
+ {
200
+ resources: Array[::String]?,
201
+ provider: {
202
+ key_arn: ::String?
203
+ }?
204
+ },
205
+ ],
206
+ ?outpost_config: {
207
+ outpost_arns: Array[::String],
208
+ control_plane_instance_type: ::String,
209
+ control_plane_placement: {
210
+ group_name: ::String?
211
+ }?
212
+ },
213
+ ?access_config: {
214
+ bootstrap_cluster_creator_admin_permissions: bool?,
215
+ authentication_mode: ("API" | "API_AND_CONFIG_MAP" | "CONFIG_MAP")?
216
+ }
217
+ ) -> _CreateClusterResponseSuccess
218
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
219
+
220
+ interface _CreateEksAnywhereSubscriptionResponseSuccess
221
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEksAnywhereSubscriptionResponse]
222
+ def subscription: () -> Types::EksAnywhereSubscription
223
+ end
224
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#create_eks_anywhere_subscription-instance_method
225
+ def create_eks_anywhere_subscription: (
226
+ name: ::String,
227
+ term: {
228
+ duration: ::Integer?,
229
+ unit: ("MONTHS")?
230
+ },
231
+ ?license_quantity: ::Integer,
232
+ ?license_type: ("Cluster"),
233
+ ?auto_renew: bool,
234
+ ?client_request_token: ::String,
235
+ ?tags: Hash[::String, ::String]
236
+ ) -> _CreateEksAnywhereSubscriptionResponseSuccess
237
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEksAnywhereSubscriptionResponseSuccess
238
+
239
+ interface _CreateFargateProfileResponseSuccess
240
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateFargateProfileResponse]
241
+ def fargate_profile: () -> Types::FargateProfile
242
+ end
243
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#create_fargate_profile-instance_method
244
+ def create_fargate_profile: (
245
+ fargate_profile_name: ::String,
246
+ cluster_name: ::String,
247
+ pod_execution_role_arn: ::String,
248
+ ?subnets: Array[::String],
249
+ ?selectors: Array[
250
+ {
251
+ namespace: ::String?,
252
+ labels: Hash[::String, ::String]?
253
+ },
254
+ ],
255
+ ?client_request_token: ::String,
256
+ ?tags: Hash[::String, ::String]
257
+ ) -> _CreateFargateProfileResponseSuccess
258
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFargateProfileResponseSuccess
259
+
260
+ interface _CreateNodegroupResponseSuccess
261
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateNodegroupResponse]
262
+ def nodegroup: () -> Types::Nodegroup
263
+ end
264
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#create_nodegroup-instance_method
265
+ def create_nodegroup: (
266
+ cluster_name: ::String,
267
+ nodegroup_name: ::String,
268
+ ?scaling_config: {
269
+ min_size: ::Integer?,
270
+ max_size: ::Integer?,
271
+ desired_size: ::Integer?
272
+ },
273
+ ?disk_size: ::Integer,
274
+ subnets: Array[::String],
275
+ ?instance_types: Array[::String],
276
+ ?ami_type: ("AL2_x86_64" | "AL2_x86_64_GPU" | "AL2_ARM_64" | "CUSTOM" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_x86_64" | "BOTTLEROCKET_ARM_64_NVIDIA" | "BOTTLEROCKET_x86_64_NVIDIA" | "WINDOWS_CORE_2019_x86_64" | "WINDOWS_FULL_2019_x86_64" | "WINDOWS_CORE_2022_x86_64" | "WINDOWS_FULL_2022_x86_64"),
277
+ ?remote_access: {
278
+ ec2_ssh_key: ::String?,
279
+ source_security_groups: Array[::String]?
280
+ },
281
+ node_role: ::String,
282
+ ?labels: Hash[::String, ::String],
283
+ ?taints: Array[
284
+ {
285
+ key: ::String?,
286
+ value: ::String?,
287
+ effect: ("NO_SCHEDULE" | "NO_EXECUTE" | "PREFER_NO_SCHEDULE")?
288
+ },
289
+ ],
290
+ ?tags: Hash[::String, ::String],
291
+ ?client_request_token: ::String,
292
+ ?launch_template: {
293
+ name: ::String?,
294
+ version: ::String?,
295
+ id: ::String?
296
+ },
297
+ ?update_config: {
298
+ max_unavailable: ::Integer?,
299
+ max_unavailable_percentage: ::Integer?
300
+ },
301
+ ?capacity_type: ("ON_DEMAND" | "SPOT"),
302
+ ?version: ::String,
303
+ ?release_version: ::String
304
+ ) -> _CreateNodegroupResponseSuccess
305
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateNodegroupResponseSuccess
306
+
307
+ interface _CreatePodIdentityAssociationResponseSuccess
308
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePodIdentityAssociationResponse]
309
+ def association: () -> Types::PodIdentityAssociation
310
+ end
311
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#create_pod_identity_association-instance_method
312
+ def create_pod_identity_association: (
313
+ cluster_name: ::String,
314
+ namespace: ::String,
315
+ service_account: ::String,
316
+ role_arn: ::String,
317
+ ?client_request_token: ::String,
318
+ ?tags: Hash[::String, ::String]
319
+ ) -> _CreatePodIdentityAssociationResponseSuccess
320
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePodIdentityAssociationResponseSuccess
321
+
322
+ interface _DeleteAccessEntryResponseSuccess
323
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAccessEntryResponse]
324
+ end
325
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#delete_access_entry-instance_method
326
+ def delete_access_entry: (
327
+ cluster_name: ::String,
328
+ principal_arn: ::String
329
+ ) -> _DeleteAccessEntryResponseSuccess
330
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAccessEntryResponseSuccess
331
+
332
+ interface _DeleteAddonResponseSuccess
333
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAddonResponse]
334
+ def addon: () -> Types::Addon
335
+ end
336
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#delete_addon-instance_method
337
+ def delete_addon: (
338
+ cluster_name: ::String,
339
+ addon_name: ::String,
340
+ ?preserve: bool
341
+ ) -> _DeleteAddonResponseSuccess
342
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAddonResponseSuccess
343
+
344
+ interface _DeleteClusterResponseSuccess
345
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteClusterResponse]
346
+ def cluster: () -> Types::Cluster
347
+ end
348
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#delete_cluster-instance_method
349
+ def delete_cluster: (
350
+ name: ::String
351
+ ) -> _DeleteClusterResponseSuccess
352
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteClusterResponseSuccess
353
+
354
+ interface _DeleteEksAnywhereSubscriptionResponseSuccess
355
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEksAnywhereSubscriptionResponse]
356
+ def subscription: () -> Types::EksAnywhereSubscription
357
+ end
358
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#delete_eks_anywhere_subscription-instance_method
359
+ def delete_eks_anywhere_subscription: (
360
+ id: ::String
361
+ ) -> _DeleteEksAnywhereSubscriptionResponseSuccess
362
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEksAnywhereSubscriptionResponseSuccess
363
+
364
+ interface _DeleteFargateProfileResponseSuccess
365
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFargateProfileResponse]
366
+ def fargate_profile: () -> Types::FargateProfile
367
+ end
368
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#delete_fargate_profile-instance_method
369
+ def delete_fargate_profile: (
370
+ cluster_name: ::String,
371
+ fargate_profile_name: ::String
372
+ ) -> _DeleteFargateProfileResponseSuccess
373
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteFargateProfileResponseSuccess
374
+
375
+ interface _DeleteNodegroupResponseSuccess
376
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteNodegroupResponse]
377
+ def nodegroup: () -> Types::Nodegroup
378
+ end
379
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#delete_nodegroup-instance_method
380
+ def delete_nodegroup: (
381
+ cluster_name: ::String,
382
+ nodegroup_name: ::String
383
+ ) -> _DeleteNodegroupResponseSuccess
384
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteNodegroupResponseSuccess
385
+
386
+ interface _DeletePodIdentityAssociationResponseSuccess
387
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePodIdentityAssociationResponse]
388
+ def association: () -> Types::PodIdentityAssociation
389
+ end
390
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#delete_pod_identity_association-instance_method
391
+ def delete_pod_identity_association: (
392
+ cluster_name: ::String,
393
+ association_id: ::String
394
+ ) -> _DeletePodIdentityAssociationResponseSuccess
395
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePodIdentityAssociationResponseSuccess
396
+
397
+ interface _DeregisterClusterResponseSuccess
398
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterClusterResponse]
399
+ def cluster: () -> Types::Cluster
400
+ end
401
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#deregister_cluster-instance_method
402
+ def deregister_cluster: (
403
+ name: ::String
404
+ ) -> _DeregisterClusterResponseSuccess
405
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterClusterResponseSuccess
406
+
407
+ interface _DescribeAccessEntryResponseSuccess
408
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAccessEntryResponse]
409
+ def access_entry: () -> Types::AccessEntry
410
+ end
411
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_access_entry-instance_method
412
+ def describe_access_entry: (
413
+ cluster_name: ::String,
414
+ principal_arn: ::String
415
+ ) -> _DescribeAccessEntryResponseSuccess
416
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAccessEntryResponseSuccess
417
+
418
+ interface _DescribeAddonResponseSuccess
419
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAddonResponse]
420
+ def addon: () -> Types::Addon
421
+ end
422
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_addon-instance_method
423
+ def describe_addon: (
424
+ cluster_name: ::String,
425
+ addon_name: ::String
426
+ ) -> _DescribeAddonResponseSuccess
427
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAddonResponseSuccess
428
+
429
+ interface _DescribeAddonConfigurationResponseSuccess
430
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAddonConfigurationResponse]
431
+ def addon_name: () -> ::String
432
+ def addon_version: () -> ::String
433
+ def configuration_schema: () -> ::String
434
+ end
435
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_addon_configuration-instance_method
436
+ def describe_addon_configuration: (
437
+ addon_name: ::String,
438
+ addon_version: ::String
439
+ ) -> _DescribeAddonConfigurationResponseSuccess
440
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAddonConfigurationResponseSuccess
441
+
442
+ interface _DescribeAddonVersionsResponseSuccess
443
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAddonVersionsResponse]
444
+ def addons: () -> ::Array[Types::AddonInfo]
445
+ def next_token: () -> ::String
446
+ end
447
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_addon_versions-instance_method
448
+ def describe_addon_versions: (
449
+ ?kubernetes_version: ::String,
450
+ ?max_results: ::Integer,
451
+ ?next_token: ::String,
452
+ ?addon_name: ::String,
453
+ ?types: Array[::String],
454
+ ?publishers: Array[::String],
455
+ ?owners: Array[::String]
456
+ ) -> _DescribeAddonVersionsResponseSuccess
457
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAddonVersionsResponseSuccess
458
+
459
+ interface _DescribeClusterResponseSuccess
460
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterResponse]
461
+ def cluster: () -> Types::Cluster
462
+ end
463
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_cluster-instance_method
464
+ def describe_cluster: (
465
+ name: ::String
466
+ ) -> _DescribeClusterResponseSuccess
467
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterResponseSuccess
468
+
469
+ interface _DescribeEksAnywhereSubscriptionResponseSuccess
470
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEksAnywhereSubscriptionResponse]
471
+ def subscription: () -> Types::EksAnywhereSubscription
472
+ end
473
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_eks_anywhere_subscription-instance_method
474
+ def describe_eks_anywhere_subscription: (
475
+ id: ::String
476
+ ) -> _DescribeEksAnywhereSubscriptionResponseSuccess
477
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEksAnywhereSubscriptionResponseSuccess
478
+
479
+ interface _DescribeFargateProfileResponseSuccess
480
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFargateProfileResponse]
481
+ def fargate_profile: () -> Types::FargateProfile
482
+ end
483
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_fargate_profile-instance_method
484
+ def describe_fargate_profile: (
485
+ cluster_name: ::String,
486
+ fargate_profile_name: ::String
487
+ ) -> _DescribeFargateProfileResponseSuccess
488
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFargateProfileResponseSuccess
489
+
490
+ interface _DescribeIdentityProviderConfigResponseSuccess
491
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeIdentityProviderConfigResponse]
492
+ def identity_provider_config: () -> Types::IdentityProviderConfigResponse
493
+ end
494
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_identity_provider_config-instance_method
495
+ def describe_identity_provider_config: (
496
+ cluster_name: ::String,
497
+ identity_provider_config: {
498
+ type: ::String,
499
+ name: ::String
500
+ }
501
+ ) -> _DescribeIdentityProviderConfigResponseSuccess
502
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeIdentityProviderConfigResponseSuccess
503
+
504
+ interface _DescribeInsightResponseSuccess
505
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInsightResponse]
506
+ def insight: () -> Types::Insight
507
+ end
508
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_insight-instance_method
509
+ def describe_insight: (
510
+ cluster_name: ::String,
511
+ id: ::String
512
+ ) -> _DescribeInsightResponseSuccess
513
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInsightResponseSuccess
514
+
515
+ interface _DescribeNodegroupResponseSuccess
516
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeNodegroupResponse]
517
+ def nodegroup: () -> Types::Nodegroup
518
+ end
519
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_nodegroup-instance_method
520
+ def describe_nodegroup: (
521
+ cluster_name: ::String,
522
+ nodegroup_name: ::String
523
+ ) -> _DescribeNodegroupResponseSuccess
524
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeNodegroupResponseSuccess
525
+
526
+ interface _DescribePodIdentityAssociationResponseSuccess
527
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribePodIdentityAssociationResponse]
528
+ def association: () -> Types::PodIdentityAssociation
529
+ end
530
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_pod_identity_association-instance_method
531
+ def describe_pod_identity_association: (
532
+ cluster_name: ::String,
533
+ association_id: ::String
534
+ ) -> _DescribePodIdentityAssociationResponseSuccess
535
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePodIdentityAssociationResponseSuccess
536
+
537
+ interface _DescribeUpdateResponseSuccess
538
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeUpdateResponse]
539
+ def update: () -> Types::Update
540
+ end
541
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_update-instance_method
542
+ def describe_update: (
543
+ name: ::String,
544
+ update_id: ::String,
545
+ ?nodegroup_name: ::String,
546
+ ?addon_name: ::String
547
+ ) -> _DescribeUpdateResponseSuccess
548
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeUpdateResponseSuccess
549
+
550
+ interface _DisassociateAccessPolicyResponseSuccess
551
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateAccessPolicyResponse]
552
+ end
553
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#disassociate_access_policy-instance_method
554
+ def disassociate_access_policy: (
555
+ cluster_name: ::String,
556
+ principal_arn: ::String,
557
+ policy_arn: ::String
558
+ ) -> _DisassociateAccessPolicyResponseSuccess
559
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateAccessPolicyResponseSuccess
560
+
561
+ interface _DisassociateIdentityProviderConfigResponseSuccess
562
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateIdentityProviderConfigResponse]
563
+ def update: () -> Types::Update
564
+ end
565
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#disassociate_identity_provider_config-instance_method
566
+ def disassociate_identity_provider_config: (
567
+ cluster_name: ::String,
568
+ identity_provider_config: {
569
+ type: ::String,
570
+ name: ::String
571
+ },
572
+ ?client_request_token: ::String
573
+ ) -> _DisassociateIdentityProviderConfigResponseSuccess
574
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateIdentityProviderConfigResponseSuccess
575
+
576
+ interface _ListAccessEntriesResponseSuccess
577
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAccessEntriesResponse]
578
+ def access_entries: () -> ::Array[::String]
579
+ def next_token: () -> ::String
580
+ end
581
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_access_entries-instance_method
582
+ def list_access_entries: (
583
+ cluster_name: ::String,
584
+ ?associated_policy_arn: ::String,
585
+ ?max_results: ::Integer,
586
+ ?next_token: ::String
587
+ ) -> _ListAccessEntriesResponseSuccess
588
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccessEntriesResponseSuccess
589
+
590
+ interface _ListAccessPoliciesResponseSuccess
591
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAccessPoliciesResponse]
592
+ def access_policies: () -> ::Array[Types::AccessPolicy]
593
+ def next_token: () -> ::String
594
+ end
595
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_access_policies-instance_method
596
+ def list_access_policies: (
597
+ ?max_results: ::Integer,
598
+ ?next_token: ::String
599
+ ) -> _ListAccessPoliciesResponseSuccess
600
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccessPoliciesResponseSuccess
601
+
602
+ interface _ListAddonsResponseSuccess
603
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAddonsResponse]
604
+ def addons: () -> ::Array[::String]
605
+ def next_token: () -> ::String
606
+ end
607
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_addons-instance_method
608
+ def list_addons: (
609
+ cluster_name: ::String,
610
+ ?max_results: ::Integer,
611
+ ?next_token: ::String
612
+ ) -> _ListAddonsResponseSuccess
613
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAddonsResponseSuccess
614
+
615
+ interface _ListAssociatedAccessPoliciesResponseSuccess
616
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAssociatedAccessPoliciesResponse]
617
+ def cluster_name: () -> ::String
618
+ def principal_arn: () -> ::String
619
+ def next_token: () -> ::String
620
+ def associated_access_policies: () -> ::Array[Types::AssociatedAccessPolicy]
621
+ end
622
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_associated_access_policies-instance_method
623
+ def list_associated_access_policies: (
624
+ cluster_name: ::String,
625
+ principal_arn: ::String,
626
+ ?max_results: ::Integer,
627
+ ?next_token: ::String
628
+ ) -> _ListAssociatedAccessPoliciesResponseSuccess
629
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssociatedAccessPoliciesResponseSuccess
630
+
631
+ interface _ListClustersResponseSuccess
632
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListClustersResponse]
633
+ def clusters: () -> ::Array[::String]
634
+ def next_token: () -> ::String
635
+ end
636
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_clusters-instance_method
637
+ def list_clusters: (
638
+ ?max_results: ::Integer,
639
+ ?next_token: ::String,
640
+ ?include: Array[::String]
641
+ ) -> _ListClustersResponseSuccess
642
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClustersResponseSuccess
643
+
644
+ interface _ListEksAnywhereSubscriptionsResponseSuccess
645
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEksAnywhereSubscriptionsResponse]
646
+ def subscriptions: () -> ::Array[Types::EksAnywhereSubscription]
647
+ def next_token: () -> ::String
648
+ end
649
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_eks_anywhere_subscriptions-instance_method
650
+ def list_eks_anywhere_subscriptions: (
651
+ ?max_results: ::Integer,
652
+ ?next_token: ::String,
653
+ ?include_status: Array[("CREATING" | "ACTIVE" | "UPDATING" | "EXPIRING" | "EXPIRED" | "DELETING")]
654
+ ) -> _ListEksAnywhereSubscriptionsResponseSuccess
655
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEksAnywhereSubscriptionsResponseSuccess
656
+
657
+ interface _ListFargateProfilesResponseSuccess
658
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFargateProfilesResponse]
659
+ def fargate_profile_names: () -> ::Array[::String]
660
+ def next_token: () -> ::String
661
+ end
662
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_fargate_profiles-instance_method
663
+ def list_fargate_profiles: (
664
+ cluster_name: ::String,
665
+ ?max_results: ::Integer,
666
+ ?next_token: ::String
667
+ ) -> _ListFargateProfilesResponseSuccess
668
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFargateProfilesResponseSuccess
669
+
670
+ interface _ListIdentityProviderConfigsResponseSuccess
671
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListIdentityProviderConfigsResponse]
672
+ def identity_provider_configs: () -> ::Array[Types::IdentityProviderConfig]
673
+ def next_token: () -> ::String
674
+ end
675
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_identity_provider_configs-instance_method
676
+ def list_identity_provider_configs: (
677
+ cluster_name: ::String,
678
+ ?max_results: ::Integer,
679
+ ?next_token: ::String
680
+ ) -> _ListIdentityProviderConfigsResponseSuccess
681
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIdentityProviderConfigsResponseSuccess
682
+
683
+ interface _ListInsightsResponseSuccess
684
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListInsightsResponse]
685
+ def insights: () -> ::Array[Types::InsightSummary]
686
+ def next_token: () -> ::String
687
+ end
688
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_insights-instance_method
689
+ def list_insights: (
690
+ cluster_name: ::String,
691
+ ?filter: {
692
+ categories: Array[("UPGRADE_READINESS")]?,
693
+ kubernetes_versions: Array[::String]?,
694
+ statuses: Array[("PASSING" | "WARNING" | "ERROR" | "UNKNOWN")]?
695
+ },
696
+ ?max_results: ::Integer,
697
+ ?next_token: ::String
698
+ ) -> _ListInsightsResponseSuccess
699
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInsightsResponseSuccess
700
+
701
+ interface _ListNodegroupsResponseSuccess
702
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListNodegroupsResponse]
703
+ def nodegroups: () -> ::Array[::String]
704
+ def next_token: () -> ::String
705
+ end
706
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_nodegroups-instance_method
707
+ def list_nodegroups: (
708
+ cluster_name: ::String,
709
+ ?max_results: ::Integer,
710
+ ?next_token: ::String
711
+ ) -> _ListNodegroupsResponseSuccess
712
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNodegroupsResponseSuccess
713
+
714
+ interface _ListPodIdentityAssociationsResponseSuccess
715
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPodIdentityAssociationsResponse]
716
+ def associations: () -> ::Array[Types::PodIdentityAssociationSummary]
717
+ def next_token: () -> ::String
718
+ end
719
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_pod_identity_associations-instance_method
720
+ def list_pod_identity_associations: (
721
+ cluster_name: ::String,
722
+ ?namespace: ::String,
723
+ ?service_account: ::String,
724
+ ?max_results: ::Integer,
725
+ ?next_token: ::String
726
+ ) -> _ListPodIdentityAssociationsResponseSuccess
727
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPodIdentityAssociationsResponseSuccess
728
+
729
+ interface _ListTagsForResourceResponseSuccess
730
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
731
+ def tags: () -> ::Hash[::String, ::String]
732
+ end
733
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_tags_for_resource-instance_method
734
+ def list_tags_for_resource: (
735
+ resource_arn: ::String
736
+ ) -> _ListTagsForResourceResponseSuccess
737
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
738
+
739
+ interface _ListUpdatesResponseSuccess
740
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListUpdatesResponse]
741
+ def update_ids: () -> ::Array[::String]
742
+ def next_token: () -> ::String
743
+ end
744
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#list_updates-instance_method
745
+ def list_updates: (
746
+ name: ::String,
747
+ ?nodegroup_name: ::String,
748
+ ?addon_name: ::String,
749
+ ?next_token: ::String,
750
+ ?max_results: ::Integer
751
+ ) -> _ListUpdatesResponseSuccess
752
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUpdatesResponseSuccess
753
+
754
+ interface _RegisterClusterResponseSuccess
755
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterClusterResponse]
756
+ def cluster: () -> Types::Cluster
757
+ end
758
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#register_cluster-instance_method
759
+ def register_cluster: (
760
+ name: ::String,
761
+ connector_config: {
762
+ role_arn: ::String,
763
+ provider: ("EKS_ANYWHERE" | "ANTHOS" | "GKE" | "AKS" | "OPENSHIFT" | "TANZU" | "RANCHER" | "EC2" | "OTHER")
764
+ },
765
+ ?client_request_token: ::String,
766
+ ?tags: Hash[::String, ::String]
767
+ ) -> _RegisterClusterResponseSuccess
768
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterClusterResponseSuccess
769
+
770
+ interface _TagResourceResponseSuccess
771
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
772
+ end
773
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#tag_resource-instance_method
774
+ def tag_resource: (
775
+ resource_arn: ::String,
776
+ tags: Hash[::String, ::String]
777
+ ) -> _TagResourceResponseSuccess
778
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
779
+
780
+ interface _UntagResourceResponseSuccess
781
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
782
+ end
783
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#untag_resource-instance_method
784
+ def untag_resource: (
785
+ resource_arn: ::String,
786
+ tag_keys: Array[::String]
787
+ ) -> _UntagResourceResponseSuccess
788
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
789
+
790
+ interface _UpdateAccessEntryResponseSuccess
791
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAccessEntryResponse]
792
+ def access_entry: () -> Types::AccessEntry
793
+ end
794
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#update_access_entry-instance_method
795
+ def update_access_entry: (
796
+ cluster_name: ::String,
797
+ principal_arn: ::String,
798
+ ?kubernetes_groups: Array[::String],
799
+ ?client_request_token: ::String,
800
+ ?username: ::String
801
+ ) -> _UpdateAccessEntryResponseSuccess
802
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAccessEntryResponseSuccess
803
+
804
+ interface _UpdateAddonResponseSuccess
805
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAddonResponse]
806
+ def update: () -> Types::Update
807
+ end
808
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#update_addon-instance_method
809
+ def update_addon: (
810
+ cluster_name: ::String,
811
+ addon_name: ::String,
812
+ ?addon_version: ::String,
813
+ ?service_account_role_arn: ::String,
814
+ ?resolve_conflicts: ("OVERWRITE" | "NONE" | "PRESERVE"),
815
+ ?client_request_token: ::String,
816
+ ?configuration_values: ::String
817
+ ) -> _UpdateAddonResponseSuccess
818
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAddonResponseSuccess
819
+
820
+ interface _UpdateClusterConfigResponseSuccess
821
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateClusterConfigResponse]
822
+ def update: () -> Types::Update
823
+ end
824
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#update_cluster_config-instance_method
825
+ def update_cluster_config: (
826
+ name: ::String,
827
+ ?resources_vpc_config: {
828
+ subnet_ids: Array[::String]?,
829
+ security_group_ids: Array[::String]?,
830
+ endpoint_public_access: bool?,
831
+ endpoint_private_access: bool?,
832
+ public_access_cidrs: Array[::String]?
833
+ },
834
+ ?logging: {
835
+ cluster_logging: Array[
836
+ {
837
+ types: Array[("api" | "audit" | "authenticator" | "controllerManager" | "scheduler")]?,
838
+ enabled: bool?
839
+ },
840
+ ]?
841
+ },
842
+ ?client_request_token: ::String,
843
+ ?access_config: {
844
+ authentication_mode: ("API" | "API_AND_CONFIG_MAP" | "CONFIG_MAP")?
845
+ }
846
+ ) -> _UpdateClusterConfigResponseSuccess
847
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterConfigResponseSuccess
848
+
849
+ interface _UpdateClusterVersionResponseSuccess
850
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateClusterVersionResponse]
851
+ def update: () -> Types::Update
852
+ end
853
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#update_cluster_version-instance_method
854
+ def update_cluster_version: (
855
+ name: ::String,
856
+ version: ::String,
857
+ ?client_request_token: ::String
858
+ ) -> _UpdateClusterVersionResponseSuccess
859
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterVersionResponseSuccess
860
+
861
+ interface _UpdateEksAnywhereSubscriptionResponseSuccess
862
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEksAnywhereSubscriptionResponse]
863
+ def subscription: () -> Types::EksAnywhereSubscription
864
+ end
865
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#update_eks_anywhere_subscription-instance_method
866
+ def update_eks_anywhere_subscription: (
867
+ id: ::String,
868
+ auto_renew: bool,
869
+ ?client_request_token: ::String
870
+ ) -> _UpdateEksAnywhereSubscriptionResponseSuccess
871
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEksAnywhereSubscriptionResponseSuccess
872
+
873
+ interface _UpdateNodegroupConfigResponseSuccess
874
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNodegroupConfigResponse]
875
+ def update: () -> Types::Update
876
+ end
877
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#update_nodegroup_config-instance_method
878
+ def update_nodegroup_config: (
879
+ cluster_name: ::String,
880
+ nodegroup_name: ::String,
881
+ ?labels: {
882
+ add_or_update_labels: Hash[::String, ::String]?,
883
+ remove_labels: Array[::String]?
884
+ },
885
+ ?taints: {
886
+ add_or_update_taints: Array[
887
+ {
888
+ key: ::String?,
889
+ value: ::String?,
890
+ effect: ("NO_SCHEDULE" | "NO_EXECUTE" | "PREFER_NO_SCHEDULE")?
891
+ },
892
+ ]?,
893
+ remove_taints: Array[
894
+ {
895
+ key: ::String?,
896
+ value: ::String?,
897
+ effect: ("NO_SCHEDULE" | "NO_EXECUTE" | "PREFER_NO_SCHEDULE")?
898
+ },
899
+ ]?
900
+ },
901
+ ?scaling_config: {
902
+ min_size: ::Integer?,
903
+ max_size: ::Integer?,
904
+ desired_size: ::Integer?
905
+ },
906
+ ?update_config: {
907
+ max_unavailable: ::Integer?,
908
+ max_unavailable_percentage: ::Integer?
909
+ },
910
+ ?client_request_token: ::String
911
+ ) -> _UpdateNodegroupConfigResponseSuccess
912
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNodegroupConfigResponseSuccess
913
+
914
+ interface _UpdateNodegroupVersionResponseSuccess
915
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNodegroupVersionResponse]
916
+ def update: () -> Types::Update
917
+ end
918
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#update_nodegroup_version-instance_method
919
+ def update_nodegroup_version: (
920
+ cluster_name: ::String,
921
+ nodegroup_name: ::String,
922
+ ?version: ::String,
923
+ ?release_version: ::String,
924
+ ?launch_template: {
925
+ name: ::String?,
926
+ version: ::String?,
927
+ id: ::String?
928
+ },
929
+ ?force: bool,
930
+ ?client_request_token: ::String
931
+ ) -> _UpdateNodegroupVersionResponseSuccess
932
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNodegroupVersionResponseSuccess
933
+
934
+ interface _UpdatePodIdentityAssociationResponseSuccess
935
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePodIdentityAssociationResponse]
936
+ def association: () -> Types::PodIdentityAssociation
937
+ end
938
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#update_pod_identity_association-instance_method
939
+ def update_pod_identity_association: (
940
+ cluster_name: ::String,
941
+ association_id: ::String,
942
+ ?role_arn: ::String,
943
+ ?client_request_token: ::String
944
+ ) -> _UpdatePodIdentityAssociationResponseSuccess
945
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePodIdentityAssociationResponseSuccess
946
+
947
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#wait_until-instance_method
948
+ def wait_until: (:addon_active waiter_name,
949
+ cluster_name: ::String,
950
+ addon_name: ::String
951
+ ) -> Client::_DescribeAddonResponseSuccess
952
+ | (:addon_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeAddonResponseSuccess
953
+ | (:addon_deleted waiter_name,
954
+ cluster_name: ::String,
955
+ addon_name: ::String
956
+ ) -> Client::_DescribeAddonResponseSuccess
957
+ | (:addon_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeAddonResponseSuccess
958
+ | (:cluster_active waiter_name,
959
+ name: ::String
960
+ ) -> Client::_DescribeClusterResponseSuccess
961
+ | (:cluster_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeClusterResponseSuccess
962
+ | (:cluster_deleted waiter_name,
963
+ name: ::String
964
+ ) -> Client::_DescribeClusterResponseSuccess
965
+ | (:cluster_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeClusterResponseSuccess
966
+ | (:fargate_profile_active waiter_name,
967
+ cluster_name: ::String,
968
+ fargate_profile_name: ::String
969
+ ) -> Client::_DescribeFargateProfileResponseSuccess
970
+ | (:fargate_profile_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeFargateProfileResponseSuccess
971
+ | (:fargate_profile_deleted waiter_name,
972
+ cluster_name: ::String,
973
+ fargate_profile_name: ::String
974
+ ) -> Client::_DescribeFargateProfileResponseSuccess
975
+ | (:fargate_profile_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeFargateProfileResponseSuccess
976
+ | (:nodegroup_active waiter_name,
977
+ cluster_name: ::String,
978
+ nodegroup_name: ::String
979
+ ) -> Client::_DescribeNodegroupResponseSuccess
980
+ | (:nodegroup_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeNodegroupResponseSuccess
981
+ | (:nodegroup_deleted waiter_name,
982
+ cluster_name: ::String,
983
+ nodegroup_name: ::String
984
+ ) -> Client::_DescribeNodegroupResponseSuccess
985
+ | (:nodegroup_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeNodegroupResponseSuccess
986
+ end
987
+ end
988
+ end
989
+