Databricks SDK for JavaScript
    Preparing search index...

    For activities, this contains the activity recorded for the action. For comments, this contains the comment details. For transition requests, this contains the transition request details.

    interface TransitionRequest {
        activityType?: ActivityType;
        availableActions?: ActivityAction[];
        comment?: string;
        creationTimestamp?: bigint;
        fromStage?: string;
        id?: string;
        lastUpdatedTimestamp?: bigint;
        systemComment?: string;
        toStage?: string;
        userId?: string;
    }
    Index

    Properties

    activityType?: ActivityType
    availableActions?: ActivityAction[]

    Array of actions on the activity allowed for the current viewer.

    comment?: string

    User-provided comment associated with the activity, comment, or transition request.

    creationTimestamp?: bigint

    Creation time of the object, as a Unix timestamp in milliseconds.

    fromStage?: string

    Source stage of the transition (if the activity is stage transition related). Valid values are:

    • None: The initial stage of a model version.

    • Staging: Staging or pre-production stage.

    • Production: Production stage.

    • Archived: Archived stage.

    id?: string

    Unique identifier for the object.

    lastUpdatedTimestamp?: bigint

    Time of the object at last update, as a Unix timestamp in milliseconds.

    systemComment?: string

    Comment made by system, for example explaining an activity of type SYSTEM_TRANSITION. It usually describes a side effect, such as a version being archived as part of another version's stage transition, and may not be returned for some activity types.

    toStage?: string

    Target stage of the transition (if the activity is stage transition related). Valid values are:

    • None: The initial stage of a model version.

    • Staging: Staging or pre-production stage.

    • Production: Production stage.

    • Archived: Archived stage.

    userId?: string

    The username of the user that created the object.