Argo CD · Schema

v1alpha1PullRequestGeneratorBitbucket

PullRequestGeneratorBitbucket defines connection info specific to Bitbucket.

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
api string The Bitbucket REST API URL to talk to. If blank, uses https://api.bitbucket.org/2.0.
basicAuth object
bearerToken object
owner string Workspace to scan. Required.
repo string Repo name to scan. Required.
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-pull-request-generator-bitbucket-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-pull-request-generator-bitbucket-schema.json",
  "title": "v1alpha1PullRequestGeneratorBitbucket",
  "description": "PullRequestGeneratorBitbucket defines connection info specific to Bitbucket.",
  "type": "object",
  "properties": {
    "api": {
      "description": "The Bitbucket REST API URL to talk to. If blank, uses https://api.bitbucket.org/2.0.",
      "type": "string"
    },
    "basicAuth": {
      "$ref": "#/definitions/v1alpha1BasicAuthBitbucketServer"
    },
    "bearerToken": {
      "$ref": "#/definitions/v1alpha1BearerTokenBitbucketCloud"
    },
    "owner": {
      "description": "Workspace to scan. Required.",
      "type": "string"
    },
    "repo": {
      "description": "Repo name to scan. Required.",
      "type": "string"
    }
  }
}