Databricks SDK for JavaScript
    Preparing search index...

    AIP-133 conformant Create. The endpoint is nested under endpoint; parent carries the workspace path; endpoint_id is the user-supplied short name. The server composes Endpoint.name from parent and endpoint_id; any client-supplied endpoint.name is ignored.

    interface CreateEndpointRequest {
        endpoint?: Endpoint;
        endpointId?: string;
        parent?: string;
    }
    Index

    Properties

    endpoint?: Endpoint

    The Endpoint resource to create. Fields other than endpoint.name carry the desired configuration; endpoint.name is server-assigned from parent and endpoint_id.

    endpointId?: string

    The user-supplied short name for the Endpoint, per AIP-133. The server composes the full Endpoint.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpoint_id as a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE.

    parent?: string

    The Workspace where this Endpoint will be created. Format: workspaces/{workspace_id}