get_application_details
Retrieve detailed information about a specific ArgoCD application by providing its name, with optional filters for project, namespace, and refresh settings.
Instructions
Get details for a specific application
Args:
name: The application name (required)
project: The project name (optional filter)
refresh: Forces application reconciliation if set to 'hard' or 'normal'
namespace: Filter by application namespace
Returns:
Application details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
namespace | No | ||
project | No | ||
refresh | No |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"namespace": {
"default": "",
"title": "Namespace",
"type": "string"
},
"project": {
"default": "",
"title": "Project",
"type": "string"
},
"refresh": {
"default": "",
"title": "Refresh",
"type": "string"
}
},
"required": [
"name"
],
"title": "get_application_detailsArguments",
"type": "object"
}