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 non-plaintext source can be added as an additional variant without a breaking change; secret_reference is that variant, and further sources can follow the same way. --)

    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 enclosing secret object remains present to indicate that a secret is configured.