Databricks SDK for JavaScript
    Preparing search index...

    Interface ModelProviderServiceConfig_GeminiEnterpriseProviderDirectConfig

    Direct form of Gemini Enterprise provider config.

    interface ModelProviderServiceConfig_GeminiEnterpriseProviderDirectConfig {
        authMode?: {
            $case: "apiKey";
            apiKey: ModelProviderServiceConfig_ProviderSecret;
        };
        projectId?: string;
        region?: string;
    }
    Index

    Properties

    authMode?: {
        $case: "apiKey";
        apiKey: ModelProviderServiceConfig_ProviderSecret;
    }

    Authentication mode. Exactly one variant may be set. (-- Wrapped in a oneof so future auth modes (e.g. a UC service credential) can be added as additional variants without a breaking change. --)

    Type Declaration

    projectId?: string

    GCP project ID hosting the Gemini Enterprise endpoint. Required on Create.

    region?: string

    GCP region of the Gemini Enterprise endpoint (e.g., us-central1). Required on Create.