pub struct Client(/* private fields */);Implementations§
source§impl Client
impl Client
sourcepub fn execute_service_endpoint_request(
&self,
organization: impl Into<String>,
body: impl Into<ServiceEndpointRequest>,
project: impl Into<String>,
endpoint_id: impl Into<String>
) -> RequestBuilder
pub fn execute_service_endpoint_request( &self, organization: impl Into<String>, body: impl Into<ServiceEndpointRequest>, project: impl Into<String>, endpoint_id: impl Into<String> ) -> RequestBuilder
Proxy for a GET request defined by a service endpoint.
Arguments:
organization: The name of the Azure DevOps organization.body: Service endpoint request.project: Project ID or project nameendpoint_id: Id of the service endpoint.
sourcepub fn query(
&self,
organization: impl Into<String>,
body: impl Into<DataSourceBinding>,
project: impl Into<String>
) -> RequestBuilder
pub fn query( &self, organization: impl Into<String>, body: impl Into<DataSourceBinding>, project: impl Into<String> ) -> RequestBuilder
Use ExecuteServiceEndpointRequest API Instead
Arguments:
organization: The name of the Azure DevOps organization.body: Describes the data source to fetch.project: Project ID or project name
Auto Trait Implementations§
impl Freeze for Client
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