Skip to main content

WorkflowRunHandleScope

Type Alias WorkflowRunHandleScope 

Source
pub type WorkflowRunHandleScope = WorkflowRunReadScope;
Expand description

Compatibility alias for the former handle-only scope name.

Handles now use WorkflowRunReadScope so their status, run, and result reads share the same visibility model as the public workflow read APIs.

Aliased Type§

pub enum WorkflowRunHandleScope {
    Global,
    Organization(Uuid),
    Admin,
}

Variants§

§

Global

Match only a workflow run whose organization_id is NULL.

§

Organization(Uuid)

Match only workflow runs owned by this exact organization.

§

Admin

Match workflow runs regardless of organization ownership.