olai-http 0.0.5

Cloud provider credential abstraction for AWS, Azure, and GCP
Documentation
//! Databricks Unified Auth implementation.
//!
//! Supports PAT, OAuth M2M (service principal client_credentials), notebook context auth,
//! Azure MSI fallback, GCP SA token exchange, env-oidc, file-oidc, and `.databrickscfg` profile
//! loading — following the Databricks Unified Auth spec.
//!
//! # Auth resolution order (in [`DatabricksBuilder::build`])
//!
//! 1. Explicit `with_credentials(provider)` override.
//! 2. PAT / static token (`DATABRICKS_TOKEN` / `with_token()`).
//!    Also covers: notebook context auth (≥ 13.3 LTS injects `DATABRICKS_TOKEN`
//!    automatically) and self-hosted UC static tokens.
//! 3. OAuth M2M — `DATABRICKS_CLIENT_ID` + `DATABRICKS_CLIENT_SECRET` →
//!    POST `{host}/oidc/v1/token` with `grant_type=client_credentials`.
//! 4. `env-oidc` — reads OIDC JWT from an environment variable
//!    (`DATABRICKS_OIDC_TOKEN_ENV` names the var; defaults to `DATABRICKS_OIDC_TOKEN`).
//!    JWT `exp` claim is decoded to drive token refresh.
//! 5. `file-oidc` — reads OIDC JWT from a file (`DATABRICKS_OIDC_TOKEN_FILEPATH`).
//!    File is re-read on each fetch so kubelet-rotated tokens are picked up automatically.
//!    JWT `exp` claim is decoded to drive token refresh.
//! 6. Azure MSI fallback — if `DATABRICKS_AZURE_RESOURCE_ID` is set, uses
//!    Azure IMDS to obtain an Azure AD token for the Databricks App ID
//!    (`2ff814a6-3304-4ab8-85cb-cd0e6f879c1d`) and uses it directly as the
//!    Databricks bearer token.
//! 7. GCP SA token exchange — if `GOOGLE_APPLICATION_CREDENTIALS` is set,
//!    exchanges a GCP service-account JWT for a Databricks OIDC token via
//!    `{host}/oidc/v1/token` with
//!    `grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer`.
//!
//! Set `DATABRICKS_AUTH_TYPE` (or call `with_auth_type()`) to force a specific auth method.
//! `.databrickscfg` profile values are loaded as the lowest-priority source via
//! `DATABRICKS_CONFIG_FILE` / `DATABRICKS_CONFIG_PROFILE`.

mod builder;
pub(crate) mod cfg_file;
pub(crate) mod credential;

pub use builder::{DatabricksBuilder, DatabricksConfig, DatabricksConfigKey};
pub use credential::DatabricksCredential;