Struct azure_devops_rust_api::distributed_task::nodes::Client   
source · pub struct Client(/* private fields */);Implementations§
source§impl Client
 
impl Client
sourcepub fn list(
    &self,
    organization: impl Into<String>,
    pool_id: i32
) -> RequestBuilder
 
pub fn list( &self, organization: impl Into<String>, pool_id: i32 ) -> RequestBuilder
Get a list of ElasticNodes currently in the ElasticPool
Arguments:
- organization: The name of the Azure DevOps organization.
- pool_id: Pool id of the ElasticPool
sourcepub fn update(
    &self,
    organization: impl Into<String>,
    body: impl Into<ElasticNodeSettings>,
    pool_id: i32,
    elastic_node_id: i32
) -> RequestBuilder
 
pub fn update( &self, organization: impl Into<String>, body: impl Into<ElasticNodeSettings>, pool_id: i32, elastic_node_id: i32 ) -> RequestBuilder
Update properties on a specified ElasticNode
Arguments:
- organization: The name of the Azure DevOps organization.
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