pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn get(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
server_name: impl Into<String>,
backup_name: impl Into<String>,
) -> RequestBuilder
pub fn get( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, server_name: impl Into<String>, backup_name: impl Into<String>, ) -> RequestBuilder
Get specific backup for a given server.
Arguments:
subscription_id: The ID of the target subscription. The value must be an UUID.resource_group_name: The name of the resource group. The name is case insensitive.server_name: The name of the server.backup_name: The name of the backup.
Sourcepub fn list_by_server(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
server_name: impl Into<String>,
) -> RequestBuilder
pub fn list_by_server( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, server_name: impl Into<String>, ) -> RequestBuilder
List all the backups for a given server.
Arguments:
subscription_id: The ID of the target subscription. The value must be an UUID.resource_group_name: The name of the resource group. The name is case insensitive.server_name: The name of the server.
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