pub struct SetStatusInput {
pub object_ids: Vec<String>,
pub pipeline_id: String,
pub status: String,
}
Expand description
Contains the parameters for SetStatus.
Fields§
§object_ids: Vec<String>
The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.
pipeline_id: String
The ID of the pipeline that contains the objects.
status: String
The status to be set on all the objects specified in objectIds
. For components, use PAUSE
or RESUME
. For instances, use TRY_CANCEL
, RERUN
, or MARK_FINISHED
.
Trait Implementations§
Source§impl Clone for SetStatusInput
impl Clone for SetStatusInput
Source§fn clone(&self) -> SetStatusInput
fn clone(&self) -> SetStatusInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SetStatusInput
impl Debug for SetStatusInput
Source§impl Default for SetStatusInput
impl Default for SetStatusInput
Source§fn default() -> SetStatusInput
fn default() -> SetStatusInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for SetStatusInput
impl PartialEq for SetStatusInput
Source§impl Serialize for SetStatusInput
impl Serialize for SetStatusInput
impl StructuralPartialEq for SetStatusInput
Auto Trait Implementations§
impl Freeze for SetStatusInput
impl RefUnwindSafe for SetStatusInput
impl Send for SetStatusInput
impl Sync for SetStatusInput
impl Unpin for SetStatusInput
impl UnwindSafe for SetStatusInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more