jfrog_list_runtime_clusters
Retrieve a paginated list of all runtime clusters on the JFrog Platform, with options to set limits and manage pagination for efficient cluster management.
Instructions
return a list of all my runtime clusters in the jfrog platform
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | The maximum number of clusters to return | |
next_key | No | The next key to use for pagination |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 50,
"description": "The maximum number of clusters to return",
"type": "integer"
},
"next_key": {
"description": "The next key to use for pagination",
"type": "string"
}
},
"type": "object"
}