describe_addon_versions
(**kwargs)¶Describes the versions for an add-on. Information such as the Kubernetes versions that you can use the add-on with, the owner
, publisher
, and the type
of the add-on are returned.
See also: AWS API Documentation
Request Syntax
response = client.describe_addon_versions(
kubernetesVersion='string',
maxResults=123,
nextToken='string',
addonName='string',
types=[
'string',
],
publishers=[
'string',
],
owners=[
'string',
]
)
The nextToken
value returned from a previous paginated DescribeAddonVersionsRequest
where maxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken
value.
Note
This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
The type of the add-on. For valid types
, don't specify a value for this property.
The publisher of the add-on. For valid publishers
, don't specify a value for this property.
The owner of the add-on. For valid owners
, don't specify a value for this property.
dict
Response Syntax
{
'addons': [
{
'addonName': 'string',
'type': 'string',
'addonVersions': [
{
'addonVersion': 'string',
'architecture': [
'string',
],
'compatibilities': [
{
'clusterVersion': 'string',
'platformVersions': [
'string',
],
'defaultVersion': True|False
},
],
'requiresConfiguration': True|False
},
],
'publisher': 'string',
'owner': 'string',
'marketplaceInformation': {
'productId': 'string',
'productUrl': 'string'
}
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
addons (list) --
The list of available versions with Kubernetes version compatibility and other properties.
(dict) --
Information about an add-on.
addonName (string) --
The name of the add-on.
type (string) --
The type of the add-on.
addonVersions (list) --
An object representing information about available add-on versions and compatible Kubernetes versions.
(dict) --
Information about an add-on version.
addonVersion (string) --
The version of the add-on.
architecture (list) --
The architectures that the version supports.
compatibilities (list) --
An object representing the compatibilities of a version.
(dict) --
Compatibility information.
clusterVersion (string) --
The supported Kubernetes version of the cluster.
platformVersions (list) --
The supported compute platform.
defaultVersion (boolean) --
The supported default version.
requiresConfiguration (boolean) --
Whether the add-on requires configuration.
publisher (string) --
The publisher of the add-on.
owner (string) --
The owner of the add-on.
marketplaceInformation (dict) --
Information about the add-on from the Amazon Web Services Marketplace.
productId (string) --
The product ID from the Amazon Web Services Marketplace.
productUrl (string) --
The product URL from the Amazon Web Services Marketplace.
nextToken (string) --
The nextToken
value returned from a previous paginated DescribeAddonVersionsResponse
where maxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken
value.
Note
This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
Exceptions
EKS.Client.exceptions.ServerException
EKS.Client.exceptions.ResourceNotFoundException
EKS.Client.exceptions.InvalidParameterException