For the complete documentation index, see llms.txt. This page is also available as Markdown.

credential

Represents all possible credential types that can be used for authentication.

Examples

union Credential = 
  | UserPasswordOnlyCredentials
  | TokenCredentials
  | UserPasswordCredentials
  | UrlOnlyCredentials
  | TokenAndUserCredentials
  | JiraServiceAccountCredentials
  | JiraServiceAccountOAuth2Credentials
  | ClientIdSecretKeyCredentials
  | AWSAssumeRoleCredentials
  | AWSAssumeRoleCredentialsOnprem
  | UserPasswordAndTenantCredentials
  | TokenAndProjectIdCredentials
  | TenantClientsubscriptionIdSecretCredentials
  | TenantIdClientIdClientSecretCredentials
  | GitHubAppCredentials
  | BitbucketAppCredentials
  | APISecretAndAccessKeyCredentials
  | OrganizationIdAndApiKeyCredentials
  | ClientIdSecretApiUrlCredentials
  | OrganizationIdAndClientIdSecretApiUrlCredentials
  | TokenOnlyCredentials
  | AWSEKSCredentials
  | ClientIdClientSecretCredentials
  | ClientIdClientSecretNoHostCredentials
  | AzureCloudCredentials
  | AppIdAndTokenCredentials
  | WebhookCredentials
  | AksCredentials
  | GKECredentials
  | ServicePrincipalCredentials
  | IdentityProvider
  | BrokerCredentials
  | K8sInspectorCredentials
  | RuntimeSensor
  | BotIdentityProvider
  | AzureOpenAIApiCredentials
  | GcpWorkloadIdentityFederationCredentials

Types

Type
Description

Credentials using username and password only

Credentials using a token for authentication

Credentials using username and password with additional fields

Credentials using only a URL

Credentials using token and username

Credentials for Jira service account authentication

Credentials for Jira service account authentication via OAuth 2.0 client_credentials

Credentials using client ID and secret key

Credentials for AWS role assumption

Credentials for AWS role assumption in on-premises environments

Credentials using username, password and tenant information

Credentials using token and project ID

Credentials using tenant, client, subscription ID and secret

Credentials using tenant ID, client ID and client secret

Credentials for GitHub App authentication

Credentials using API secret and access key

Credentials using organization ID and API key

Credentials using client ID, secret, and API URL

Credentials using Organization ID, client ID, client Secret, and API URL

Credentials using only a token

Credentials for AWS EKS authentication

Credentials using client ID and client secret

Credentials using client ID and client secret without host URL

Credentials for Azure Cloud authentication

Credentials using application ID and token

Credentials using webhook URL

Credentials for Azure Kubernetes Service authentication

Credentials for Google Kubernetes Engine authentication

Credentials for service principal authentication

Credentials for identity provider authentication

Credentials for broker authentication

Credentials for Kubernetes inspector

Credentials for Runtime Sensor

Credentials for bot identity provider authentication

Credentials for Azure OpenAI API (token, endpoint, deployment name)

Keyless GCP Workload Identity Federation credentials (token is a non-secret ox_oidc_wif envelope)

References

Fields with this object:

Last updated