Argo CD · Schema

v1alpha1SCMProviderGeneratorAzureDevOps

SCMProviderGeneratorAzureDevOps defines connection info specific to Azure DevOps.

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
accessTokenRef object
allBranches boolean Scan all branches instead of just the default branch.
api string The URL to Azure DevOps. If blank, use https://dev.azure.com.
organization string Azure Devops organization. Required. E.g. "my-organization".
teamProject string Azure Devops team project. Required. E.g. "my-team".
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-scm-provider-generator-azure-dev-ops-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-schema/argo-cd-v1alpha1-scm-provider-generator-azure-dev-ops-schema.json",
  "title": "v1alpha1SCMProviderGeneratorAzureDevOps",
  "description": "SCMProviderGeneratorAzureDevOps defines connection info specific to Azure DevOps.",
  "type": "object",
  "properties": {
    "accessTokenRef": {
      "$ref": "#/definitions/v1alpha1SecretRef"
    },
    "allBranches": {
      "description": "Scan all branches instead of just the default branch.",
      "type": "boolean"
    },
    "api": {
      "description": "The URL to Azure DevOps. If blank, use https://dev.azure.com.",
      "type": "string"
    },
    "organization": {
      "description": "Azure Devops organization. Required. E.g. \"my-organization\".",
      "type": "string"
    },
    "teamProject": {
      "description": "Azure Devops team project. Required. E.g. \"my-team\".",
      "type": "string"
    }
  }
}