aws-sdk-eks 1.143.0 → 1.144.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 +12 -1
- data/lib/aws-sdk-eks/client_api.rb +12 -0
- data/lib/aws-sdk-eks/types.rb +52 -3
- data/lib/aws-sdk-eks.rb +1 -1
- data/sig/client.rbs +4 -1
- data/sig/types.rbs +13 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd9c6d42473643866cd639460213d80fbd86cdd1f02c9bbf1673a94ccb16be2b
|
4
|
+
data.tar.gz: a87522b95cff41e8920e7a7e8d93e2da2a02fb760a5d1f01b801ef80e96d1a9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6040f0a225a467dfb4c1e16cd72fb7f0765ac3c33c9ca85187f06f66b344bd4422c3a58dd9c971940128910e40bbea5503a09275e766afc01739f78ba1d8631
|
7
|
+
data.tar.gz: 6ed1ae84e52e6d03259aeef5596a524f482212a4c4b754301bb13db02b772afca72e42ca152aa1b010e5fb843c6a5a02dfab75d44371e898c87fc6bf491e5238
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.144.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -944,6 +944,10 @@ module Aws::EKS
|
|
944
944
|
#
|
945
945
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html
|
946
946
|
#
|
947
|
+
# @option params [Types::AddonNamespaceConfigRequest] :namespace_config
|
948
|
+
# The namespace configuration for the addon. If specified, this will
|
949
|
+
# override the default namespace for the addon.
|
950
|
+
#
|
947
951
|
# @return [Types::CreateAddonResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
948
952
|
#
|
949
953
|
# * {Types::CreateAddonResponse#addon #addon} => Types::Addon
|
@@ -967,6 +971,9 @@ module Aws::EKS
|
|
967
971
|
# role_arn: "String", # required
|
968
972
|
# },
|
969
973
|
# ],
|
974
|
+
# namespace_config: {
|
975
|
+
# namespace: "namespace",
|
976
|
+
# },
|
970
977
|
# })
|
971
978
|
#
|
972
979
|
# @example Response structure
|
@@ -993,6 +1000,7 @@ module Aws::EKS
|
|
993
1000
|
# resp.addon.configuration_values #=> String
|
994
1001
|
# resp.addon.pod_identity_associations #=> Array
|
995
1002
|
# resp.addon.pod_identity_associations[0] #=> String
|
1003
|
+
# resp.addon.namespace_config.namespace #=> String
|
996
1004
|
#
|
997
1005
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateAddon AWS API Documentation
|
998
1006
|
#
|
@@ -2236,6 +2244,7 @@ module Aws::EKS
|
|
2236
2244
|
# resp.addon.configuration_values #=> String
|
2237
2245
|
# resp.addon.pod_identity_associations #=> Array
|
2238
2246
|
# resp.addon.pod_identity_associations[0] #=> String
|
2247
|
+
# resp.addon.namespace_config.namespace #=> String
|
2239
2248
|
#
|
2240
2249
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteAddon AWS API Documentation
|
2241
2250
|
#
|
@@ -2793,6 +2802,7 @@ module Aws::EKS
|
|
2793
2802
|
# resp.addon.configuration_values #=> String
|
2794
2803
|
# resp.addon.pod_identity_associations #=> Array
|
2795
2804
|
# resp.addon.pod_identity_associations[0] #=> String
|
2805
|
+
# resp.addon.namespace_config.namespace #=> String
|
2796
2806
|
#
|
2797
2807
|
#
|
2798
2808
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -2948,6 +2958,7 @@ module Aws::EKS
|
|
2948
2958
|
# resp.addons[0].owner #=> String
|
2949
2959
|
# resp.addons[0].marketplace_information.product_id #=> String
|
2950
2960
|
# resp.addons[0].marketplace_information.product_url #=> String
|
2961
|
+
# resp.addons[0].default_namespace #=> String
|
2951
2962
|
# resp.next_token #=> String
|
2952
2963
|
#
|
2953
2964
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonVersions AWS API Documentation
|
@@ -5711,7 +5722,7 @@ module Aws::EKS
|
|
5711
5722
|
tracer: tracer
|
5712
5723
|
)
|
5713
5724
|
context[:gem_name] = 'aws-sdk-eks'
|
5714
|
-
context[:gem_version] = '1.
|
5725
|
+
context[:gem_version] = '1.144.0'
|
5715
5726
|
Seahorse::Client::Request.new(handlers, context)
|
5716
5727
|
end
|
5717
5728
|
|
@@ -31,6 +31,8 @@ module Aws::EKS
|
|
31
31
|
AddonIssue = Shapes::StructureShape.new(name: 'AddonIssue')
|
32
32
|
AddonIssueCode = Shapes::StringShape.new(name: 'AddonIssueCode')
|
33
33
|
AddonIssueList = Shapes::ListShape.new(name: 'AddonIssueList')
|
34
|
+
AddonNamespaceConfigRequest = Shapes::StructureShape.new(name: 'AddonNamespaceConfigRequest')
|
35
|
+
AddonNamespaceConfigResponse = Shapes::StructureShape.new(name: 'AddonNamespaceConfigResponse')
|
34
36
|
AddonPodIdentityAssociations = Shapes::StructureShape.new(name: 'AddonPodIdentityAssociations')
|
35
37
|
AddonPodIdentityAssociationsList = Shapes::ListShape.new(name: 'AddonPodIdentityAssociationsList')
|
36
38
|
AddonPodIdentityConfiguration = Shapes::StructureShape.new(name: 'AddonPodIdentityConfiguration')
|
@@ -335,6 +337,7 @@ module Aws::EKS
|
|
335
337
|
labelValue = Shapes::StringShape.new(name: 'labelValue')
|
336
338
|
labelsKeyList = Shapes::ListShape.new(name: 'labelsKeyList')
|
337
339
|
labelsMap = Shapes::MapShape.new(name: 'labelsMap')
|
340
|
+
namespace = Shapes::StringShape.new(name: 'namespace')
|
338
341
|
requiredClaimsKey = Shapes::StringShape.new(name: 'requiredClaimsKey')
|
339
342
|
requiredClaimsMap = Shapes::MapShape.new(name: 'requiredClaimsMap')
|
340
343
|
requiredClaimsValue = Shapes::StringShape.new(name: 'requiredClaimsValue')
|
@@ -388,6 +391,7 @@ module Aws::EKS
|
|
388
391
|
Addon.add_member(:marketplace_information, Shapes::ShapeRef.new(shape: MarketplaceInformation, location_name: "marketplaceInformation"))
|
389
392
|
Addon.add_member(:configuration_values, Shapes::ShapeRef.new(shape: String, location_name: "configurationValues"))
|
390
393
|
Addon.add_member(:pod_identity_associations, Shapes::ShapeRef.new(shape: StringList, location_name: "podIdentityAssociations"))
|
394
|
+
Addon.add_member(:namespace_config, Shapes::ShapeRef.new(shape: AddonNamespaceConfigResponse, location_name: "namespaceConfig"))
|
391
395
|
Addon.struct_class = Types::Addon
|
392
396
|
|
393
397
|
AddonCompatibilityDetail.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
@@ -405,6 +409,7 @@ module Aws::EKS
|
|
405
409
|
AddonInfo.add_member(:publisher, Shapes::ShapeRef.new(shape: String, location_name: "publisher"))
|
406
410
|
AddonInfo.add_member(:owner, Shapes::ShapeRef.new(shape: String, location_name: "owner"))
|
407
411
|
AddonInfo.add_member(:marketplace_information, Shapes::ShapeRef.new(shape: MarketplaceInformation, location_name: "marketplaceInformation"))
|
412
|
+
AddonInfo.add_member(:default_namespace, Shapes::ShapeRef.new(shape: String, location_name: "defaultNamespace"))
|
408
413
|
AddonInfo.struct_class = Types::AddonInfo
|
409
414
|
|
410
415
|
AddonIssue.add_member(:code, Shapes::ShapeRef.new(shape: AddonIssueCode, location_name: "code"))
|
@@ -414,6 +419,12 @@ module Aws::EKS
|
|
414
419
|
|
415
420
|
AddonIssueList.member = Shapes::ShapeRef.new(shape: AddonIssue)
|
416
421
|
|
422
|
+
AddonNamespaceConfigRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: namespace, location_name: "namespace"))
|
423
|
+
AddonNamespaceConfigRequest.struct_class = Types::AddonNamespaceConfigRequest
|
424
|
+
|
425
|
+
AddonNamespaceConfigResponse.add_member(:namespace, Shapes::ShapeRef.new(shape: namespace, location_name: "namespace"))
|
426
|
+
AddonNamespaceConfigResponse.struct_class = Types::AddonNamespaceConfigResponse
|
427
|
+
|
417
428
|
AddonPodIdentityAssociations.add_member(:service_account, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceAccount"))
|
418
429
|
AddonPodIdentityAssociations.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "roleArn"))
|
419
430
|
AddonPodIdentityAssociations.struct_class = Types::AddonPodIdentityAssociations
|
@@ -617,6 +628,7 @@ module Aws::EKS
|
|
617
628
|
CreateAddonRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
618
629
|
CreateAddonRequest.add_member(:configuration_values, Shapes::ShapeRef.new(shape: String, location_name: "configurationValues"))
|
619
630
|
CreateAddonRequest.add_member(:pod_identity_associations, Shapes::ShapeRef.new(shape: AddonPodIdentityAssociationsList, location_name: "podIdentityAssociations"))
|
631
|
+
CreateAddonRequest.add_member(:namespace_config, Shapes::ShapeRef.new(shape: AddonNamespaceConfigRequest, location_name: "namespaceConfig"))
|
620
632
|
CreateAddonRequest.struct_class = Types::CreateAddonRequest
|
621
633
|
|
622
634
|
CreateAddonResponse.add_member(:addon, Shapes::ShapeRef.new(shape: Addon, location_name: "addon"))
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -264,6 +264,11 @@ module Aws::EKS
|
|
264
264
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html
|
265
265
|
# @return [Array<String>]
|
266
266
|
#
|
267
|
+
# @!attribute [rw] namespace_config
|
268
|
+
# The namespace configuration for the addon. This specifies the
|
269
|
+
# Kubernetes namespace where the addon is installed.
|
270
|
+
# @return [Types::AddonNamespaceConfigResponse]
|
271
|
+
#
|
267
272
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Addon AWS API Documentation
|
268
273
|
#
|
269
274
|
class Addon < Struct.new(
|
@@ -281,7 +286,8 @@ module Aws::EKS
|
|
281
286
|
:owner,
|
282
287
|
:marketplace_information,
|
283
288
|
:configuration_values,
|
284
|
-
:pod_identity_associations
|
289
|
+
:pod_identity_associations,
|
290
|
+
:namespace_config)
|
285
291
|
SENSITIVE = []
|
286
292
|
include Aws::Structure
|
287
293
|
end
|
@@ -350,6 +356,11 @@ module Aws::EKS
|
|
350
356
|
# Marketplace.
|
351
357
|
# @return [Types::MarketplaceInformation]
|
352
358
|
#
|
359
|
+
# @!attribute [rw] default_namespace
|
360
|
+
# The default Kubernetes namespace where this addon is typically
|
361
|
+
# installed if no custom namespace is specified.
|
362
|
+
# @return [String]
|
363
|
+
#
|
353
364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonInfo AWS API Documentation
|
354
365
|
#
|
355
366
|
class AddonInfo < Struct.new(
|
@@ -358,7 +369,8 @@ module Aws::EKS
|
|
358
369
|
:addon_versions,
|
359
370
|
:publisher,
|
360
371
|
:owner,
|
361
|
-
:marketplace_information
|
372
|
+
:marketplace_information,
|
373
|
+
:default_namespace)
|
362
374
|
SENSITIVE = []
|
363
375
|
include Aws::Structure
|
364
376
|
end
|
@@ -388,6 +400,37 @@ module Aws::EKS
|
|
388
400
|
include Aws::Structure
|
389
401
|
end
|
390
402
|
|
403
|
+
# The namespace configuration request object for specifying a custom
|
404
|
+
# namespace when creating an addon.
|
405
|
+
#
|
406
|
+
# @!attribute [rw] namespace
|
407
|
+
# The name of the Kubernetes namespace to install the addon in. Must
|
408
|
+
# be a valid RFC 1123 DNS label.
|
409
|
+
# @return [String]
|
410
|
+
#
|
411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonNamespaceConfigRequest AWS API Documentation
|
412
|
+
#
|
413
|
+
class AddonNamespaceConfigRequest < Struct.new(
|
414
|
+
:namespace)
|
415
|
+
SENSITIVE = []
|
416
|
+
include Aws::Structure
|
417
|
+
end
|
418
|
+
|
419
|
+
# The namespace configuration response object containing information
|
420
|
+
# about the namespace where an addon is installed.
|
421
|
+
#
|
422
|
+
# @!attribute [rw] namespace
|
423
|
+
# The name of the Kubernetes namespace where the addon is installed.
|
424
|
+
# @return [String]
|
425
|
+
#
|
426
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonNamespaceConfigResponse AWS API Documentation
|
427
|
+
#
|
428
|
+
class AddonNamespaceConfigResponse < Struct.new(
|
429
|
+
:namespace)
|
430
|
+
SENSITIVE = []
|
431
|
+
include Aws::Structure
|
432
|
+
end
|
433
|
+
|
391
434
|
# A type of EKS Pod Identity association owned by an Amazon EKS add-on.
|
392
435
|
#
|
393
436
|
# Each association maps a role to a service account in a namespace in
|
@@ -1545,6 +1588,11 @@ module Aws::EKS
|
|
1545
1588
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html
|
1546
1589
|
# @return [Array<Types::AddonPodIdentityAssociations>]
|
1547
1590
|
#
|
1591
|
+
# @!attribute [rw] namespace_config
|
1592
|
+
# The namespace configuration for the addon. If specified, this will
|
1593
|
+
# override the default namespace for the addon.
|
1594
|
+
# @return [Types::AddonNamespaceConfigRequest]
|
1595
|
+
#
|
1548
1596
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateAddonRequest AWS API Documentation
|
1549
1597
|
#
|
1550
1598
|
class CreateAddonRequest < Struct.new(
|
@@ -1556,7 +1604,8 @@ module Aws::EKS
|
|
1556
1604
|
:client_request_token,
|
1557
1605
|
:tags,
|
1558
1606
|
:configuration_values,
|
1559
|
-
:pod_identity_associations
|
1607
|
+
:pod_identity_associations,
|
1608
|
+
:namespace_config)
|
1560
1609
|
SENSITIVE = []
|
1561
1610
|
include Aws::Structure
|
1562
1611
|
end
|
data/lib/aws-sdk-eks.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -173,7 +173,10 @@ module Aws
|
|
173
173
|
service_account: ::String,
|
174
174
|
role_arn: ::String
|
175
175
|
},
|
176
|
-
]
|
176
|
+
],
|
177
|
+
?namespace_config: {
|
178
|
+
namespace: ::String?
|
179
|
+
}
|
177
180
|
) -> _CreateAddonResponseSuccess
|
178
181
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAddonResponseSuccess
|
179
182
|
|
data/sig/types.rbs
CHANGED
@@ -60,6 +60,7 @@ module Aws::EKS
|
|
60
60
|
attr_accessor marketplace_information: Types::MarketplaceInformation
|
61
61
|
attr_accessor configuration_values: ::String
|
62
62
|
attr_accessor pod_identity_associations: ::Array[::String]
|
63
|
+
attr_accessor namespace_config: Types::AddonNamespaceConfigResponse
|
63
64
|
SENSITIVE: []
|
64
65
|
end
|
65
66
|
|
@@ -81,6 +82,7 @@ module Aws::EKS
|
|
81
82
|
attr_accessor publisher: ::String
|
82
83
|
attr_accessor owner: ::String
|
83
84
|
attr_accessor marketplace_information: Types::MarketplaceInformation
|
85
|
+
attr_accessor default_namespace: ::String
|
84
86
|
SENSITIVE: []
|
85
87
|
end
|
86
88
|
|
@@ -91,6 +93,16 @@ module Aws::EKS
|
|
91
93
|
SENSITIVE: []
|
92
94
|
end
|
93
95
|
|
96
|
+
class AddonNamespaceConfigRequest
|
97
|
+
attr_accessor namespace: ::String
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class AddonNamespaceConfigResponse
|
102
|
+
attr_accessor namespace: ::String
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
94
106
|
class AddonPodIdentityAssociations
|
95
107
|
attr_accessor service_account: ::String
|
96
108
|
attr_accessor role_arn: ::String
|
@@ -333,6 +345,7 @@ module Aws::EKS
|
|
333
345
|
attr_accessor tags: ::Hash[::String, ::String]
|
334
346
|
attr_accessor configuration_values: ::String
|
335
347
|
attr_accessor pod_identity_associations: ::Array[Types::AddonPodIdentityAssociations]
|
348
|
+
attr_accessor namespace_config: Types::AddonNamespaceConfigRequest
|
336
349
|
SENSITIVE: []
|
337
350
|
end
|
338
351
|
|