Describe Addon Versions
eks_describe_addon_versions | R Documentation |
Describes the versions for an add-on¶
Description¶
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.
Usage¶
eks_describe_addon_versions(kubernetesVersion, maxResults, nextToken,
addonName, types, publishers, owners)
Arguments¶
kubernetesVersion |
The Kubernetes versions that you can use the add-on with. |
maxResults |
The maximum number of results, returned in paginated output. You
receive |
nextToken |
The 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. |
addonName |
The name of the add-on. The name must match one of the names
returned by |
types |
The type of the add-on. For valid |
publishers |
The publisher of the add-on. For valid |
owners |
The owner of the add-on. For valid |
Value¶
A list with the following syntax:
list(
addons = list(
list(
addonName = "string",
type = "string",
addonVersions = list(
list(
addonVersion = "string",
architecture = list(
"string"
),
computeTypes = list(
"string"
),
compatibilities = list(
list(
clusterVersion = "string",
platformVersions = list(
"string"
),
defaultVersion = TRUE|FALSE
)
),
requiresConfiguration = TRUE|FALSE,
requiresIamPermissions = TRUE|FALSE
)
),
publisher = "string",
owner = "string",
marketplaceInformation = list(
productId = "string",
productUrl = "string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_addon_versions(
kubernetesVersion = "string",
maxResults = 123,
nextToken = "string",
addonName = "string",
types = list(
"string"
),
publishers = list(
"string"
),
owners = list(
"string"
)
)