Argo Workflows · Schema

io.argoproj.workflow.v1alpha1.OAuth2Auth

OAuth2Auth holds all information for client authentication via OAuth2 tokens

CNCFContainersData ProcessingKubernetesMachine-LearningOpen-SourceWorkflow Engine

Properties

Name Type Description
clientIDSecret object
clientSecretSecret object
endpointParams array
scopes array
tokenURLSecret object
View JSON Schema on GitHub

JSON Schema

argo-workflows-io-argoproj-workflow-v1alpha1-o-auth2-auth-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-schema/argo-workflows-io-argoproj-workflow-v1alpha1-o-auth2-auth-schema.json",
  "title": "io.argoproj.workflow.v1alpha1.OAuth2Auth",
  "description": "OAuth2Auth holds all information for client authentication via OAuth2 tokens",
  "type": "object",
  "properties": {
    "clientIDSecret": {
      "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector"
    },
    "clientSecretSecret": {
      "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector"
    },
    "endpointParams": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/io.argoproj.workflow.v1alpha1.OAuth2EndpointParam"
      }
    },
    "scopes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "tokenURLSecret": {
      "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector"
    }
  }
}