Argo CD · JSON Structure

Argo Cd V1Alpha1 Resource Action Structure

ResourceAction represents an individual action that can be performed on a resource. It includes parameters, an optional disabled flag, an icon for display, and a name for the action.

Type: object Properties: 5
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

v1alpha1ResourceAction is a JSON Structure definition published by Argo CD, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

disabled displayName iconClass name params

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-structure/argo-cd-v1alpha1-resource-action-structure.json",
  "name": "v1alpha1ResourceAction",
  "description": "ResourceAction represents an individual action that can be performed on a resource.\nIt includes parameters, an optional disabled flag, an icon for display, and a name for the action.",
  "type": "object",
  "properties": {
    "disabled": {
      "description": "Disabled indicates whether the action is disabled.",
      "type": "boolean"
    },
    "displayName": {
      "description": "DisplayName provides a user-friendly name for the action.",
      "type": "string"
    },
    "iconClass": {
      "description": "IconClass specifies the CSS class for the action's icon.",
      "type": "string"
    },
    "name": {
      "description": "Name is the name or identifier for the action.",
      "type": "string"
    },
    "params": {
      "description": "Params contains the parameters required to execute the action.",
      "type": "array",
      "items": {
        "$ref": "#/definitions/v1alpha1ResourceActionParam"
      }
    }
  }
}