Struct azure_devops_rust_api::release::manual_interventions::Client
source · pub struct Client(/* private fields */);
Implementations§
source§impl Client
impl Client
sourcepub fn list(
&self,
organization: impl Into<String>,
project: impl Into<String>,
release_id: i32
) -> RequestBuilder
pub fn list( &self, organization: impl Into<String>, project: impl Into<String>, release_id: i32 ) -> RequestBuilder
List all manual interventions for a given release.
Arguments:
organization
: The name of the Azure DevOps organization.project
: Project ID or project namerelease_id
: Id of the release.
sourcepub fn get(
&self,
organization: impl Into<String>,
project: impl Into<String>,
release_id: i32,
manual_intervention_id: i32
) -> RequestBuilder
pub fn get( &self, organization: impl Into<String>, project: impl Into<String>, release_id: i32, manual_intervention_id: i32 ) -> RequestBuilder
Get manual intervention for a given release and manual intervention id.
Arguments:
organization
: The name of the Azure DevOps organization.project
: Project ID or project namerelease_id
: Id of the release.manual_intervention_id
: Id of the manual intervention.
sourcepub fn update(
&self,
organization: impl Into<String>,
body: impl Into<ManualInterventionUpdateMetadata>,
project: impl Into<String>,
release_id: i32,
manual_intervention_id: i32
) -> RequestBuilder
pub fn update( &self, organization: impl Into<String>, body: impl Into<ManualInterventionUpdateMetadata>, project: impl Into<String>, release_id: i32, manual_intervention_id: i32 ) -> RequestBuilder
Update manual intervention.
Arguments:
organization
: The name of the Azure DevOps organization.body
: Meta data to update manual intervention.project
: Project ID or project namerelease_id
: Id of the release.manual_intervention_id
: Id of the manual intervention.
Auto Trait Implementations§
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
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