Databricks SDK for JavaScript
    Preparing search index...

    Interface ModelProviderServiceConfig_ProviderSecret

    A secret value supplied as part of an inline provider config. The caller supplies the value as inline plaintext on writes; the platform stores it encrypted. The plaintext field is INPUT_ONLY and never round-trips on reads.

    interface ModelProviderServiceConfig_ProviderSecret {
        value?: { $case: "plaintext"; plaintext: string };
    }
    Index

    Properties

    Properties

    value?: { $case: "plaintext"; plaintext: string }

    How the credential value is supplied. Exactly one variant may be set. (-- Wrapped in a oneof so a future non-plaintext source (e.g. a Databricks secret reference {{secrets/<scope>/<key>}}, mirroring AIGW v2's ProviderSecret) can be added as an additional variant without a breaking change. --)

    Type Declaration

    • $case: "plaintext"
    • plaintext: string

      Inline plaintext credential. INPUT_ONLY: the value never round-trips on reads. Get and List responses omit plaintext; the field's presence in the read shape only indicates that a secret is configured.