pub struct ExternalLocationServiceClient { /* private fields */ }Expand description
HTTP client for service operations
Implementations§
Source§impl ExternalLocationServiceClient
impl ExternalLocationServiceClient
Sourcepub async fn list_external_locations(
&self,
request: &ListExternalLocationsRequest,
) -> Result<ListExternalLocationsResponse>
pub async fn list_external_locations( &self, request: &ListExternalLocationsRequest, ) -> Result<ListExternalLocationsResponse>
List external locations
Sourcepub async fn create_external_location(
&self,
request: &CreateExternalLocationRequest,
) -> Result<ExternalLocation>
pub async fn create_external_location( &self, request: &CreateExternalLocationRequest, ) -> Result<ExternalLocation>
Create a new external location
Sourcepub async fn get_external_location(
&self,
request: &GetExternalLocationRequest,
) -> Result<ExternalLocation>
pub async fn get_external_location( &self, request: &GetExternalLocationRequest, ) -> Result<ExternalLocation>
Get an external location
Sourcepub async fn update_external_location(
&self,
request: &UpdateExternalLocationRequest,
) -> Result<ExternalLocation>
pub async fn update_external_location( &self, request: &UpdateExternalLocationRequest, ) -> Result<ExternalLocation>
Update an external location
Sourcepub async fn delete_external_location(
&self,
request: &DeleteExternalLocationRequest,
) -> Result<()>
pub async fn delete_external_location( &self, request: &DeleteExternalLocationRequest, ) -> Result<()>
Delete an external location
Trait Implementations§
Source§impl Clone for ExternalLocationServiceClient
impl Clone for ExternalLocationServiceClient
Source§fn clone(&self) -> ExternalLocationServiceClient
fn clone(&self) -> ExternalLocationServiceClient
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for ExternalLocationServiceClient
impl !UnwindSafe for ExternalLocationServiceClient
impl Freeze for ExternalLocationServiceClient
impl Send for ExternalLocationServiceClient
impl Sync for ExternalLocationServiceClient
impl Unpin for ExternalLocationServiceClient
impl UnsafeUnpin for ExternalLocationServiceClient
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