Databricks SDK for JavaScript
    Preparing search index...
    interface CreateEndpointRequest {
        endpoint?: Endpoint;
        endpointId?: string;
        parent?: string;
        replaceExisting?: boolean;
    }
    Index

    Properties

    endpoint?: Endpoint

    The Endpoint to create.

    endpointId?: string

    The ID to use for the Endpoint. This becomes the final component of the endpoint's resource name. The ID is required and must be 1-63 characters long, start with a lowercase letter, and contain only lowercase letters, numbers, and hyphens. For example, primary becomes projects/my-app/branches/development/endpoints/primary.

    parent?: string

    The Branch where this Endpoint will be created. Format: projects/{project_id}/branches/{branch_id}

    replaceExisting?: boolean

    If true, update the endpoint if it already exists instead of returning an error.