Databricks SDK for JavaScript
    Preparing search index...
    interface CreateBranchRequest {
        branch?: Branch;
        branchId?: string;
        parent?: string;
        replaceExisting?: boolean;
    }
    Index

    Properties

    branch?: Branch

    The Branch to create.

    branchId?: string

    The ID to use for the Branch. This becomes the final component of the branch'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, development becomes projects/my-app/branches/development.

    parent?: string

    The Project where this Branch will be created. Format: projects/{project_id}

    replaceExisting?: boolean

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