Argo CD · JSON Structure

Argo Cd V1Alpha1 Scm Provider Generator Filter Structure

SCMProviderGeneratorFilter is a single repository filter. If multiple filter types are set on a single struct, they will be AND'd together. All filters must pass for a repo to be included.

Type: object Properties: 5
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

v1alpha1SCMProviderGeneratorFilter 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

branchMatch labelMatch pathsDoNotExist pathsExist repositoryMatch

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-scm-provider-generator-filter-structure.json",
  "name": "v1alpha1SCMProviderGeneratorFilter",
  "description": "SCMProviderGeneratorFilter is a single repository filter.\nIf multiple filter types are set on a single struct, they will be AND'd together. All filters must\npass for a repo to be included.",
  "type": "object",
  "properties": {
    "branchMatch": {
      "description": "A regex which must match the branch name.",
      "type": "string"
    },
    "labelMatch": {
      "description": "A regex which must match at least one label.",
      "type": "string"
    },
    "pathsDoNotExist": {
      "description": "An array of paths, all of which must not exist.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "pathsExist": {
      "description": "An array of paths, all of which must exist.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "repositoryMatch": {
      "description": "A regex for repo names.",
      "type": "string"
    }
  }
}