pub struct EditFlow {Show 15 fields
pub summary: String,
pub description: Option<String>,
pub value: Box<FlowValue>,
pub schema: Option<Value>,
pub on_behalf_of_email: Option<String>,
pub on_behalf_of: Option<String>,
pub path: Option<String>,
pub tag: Option<String>,
pub ws_error_handler_muted: Option<bool>,
pub priority: Option<i32>,
pub dedicated_worker: Option<bool>,
pub timeout: Option<f64>,
pub visible_to_runner_only: Option<bool>,
pub preserve_on_behalf_of: Option<bool>,
pub labels: Option<Vec<String>>,
}Fields§
§summary: StringShort description of what this flow does
description: Option<String>Detailed documentation for this flow
value: Box<FlowValue>§schema: Option<Value>JSON Schema for flow inputs. Use this to define input parameters, their types, defaults, and validation. For resource inputs, set type to ‘object’ and format to ‘resource-
on_behalf_of_email: Option<String>§on_behalf_of: Option<String>Authorization identity to run as: u/{username}, g/{group}, or a bare email when the username is itself email-shaped. Supply this or on_behalf_of_email; when only the address is given it is resolved to the account it names, and an address naming nobody is rejected. A pair that disagrees is rejected.
path: Option<String>§tag: Option<String>§ws_error_handler_muted: Option<bool>§priority: Option<i32>§dedicated_worker: Option<bool>§timeout: Option<f64>§visible_to_runner_only: Option<bool>§preserve_on_behalf_of: Option<bool>When true and the caller is a member of the ‘wm_deployers’ group, preserves the original on_behalf_of_email / on_behalf_of pair instead of overwriting it with the caller’s own identity.
labels: Option<Vec<String>>