List Versions
managedgrafana_list_versions | R Documentation |
Lists available versions of Grafana¶
Description¶
Lists available versions of Grafana. These are available when calling
create_workspace
. Optionally, include a workspace to list the versions
to which it can be upgraded.
Usage¶
managedgrafana_list_versions(maxResults, nextToken, workspaceId)
Arguments¶
maxResults |
The maximum number of results to include in the response. |
nextToken |
The token to use when requesting the next set of results. You
receive this token from a previous |
workspaceId |
The ID of the workspace to list the available upgrade versions.
If not included, lists all versions of Grafana that are supported for
|
Value¶
A list with the following syntax:
list(
grafanaVersions = list(
"string"
),
nextToken = "string"
)
Request syntax¶
svc$list_versions(
maxResults = 123,
nextToken = "string",
workspaceId = "string"
)