Skip to content

ManagementAction

type ManagementAction = 
  | "read"
  | "cancel"
  | "cancelBulk"
  | "retry"
  | "retryBulk"
  | "reschedule"
  | "delete"
  | "deleteBulk";

Defined in: surface/types.ts:41

Authorization action names used by the management surface.

read covers all read endpoints. Single-job and bulk-job mutations use distinct action names so scheduler support and authorization can be reported independently.