pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn get(
&self,
subscription_id: impl Into<String>,
application_id: impl Into<String>,
) -> RequestBuilder
pub fn get( &self, subscription_id: impl Into<String>, application_id: impl Into<String>, ) -> RequestBuilder
Get a specific application for the requested scope by applicationId
Arguments:
subscription_id: Azure subscription IDapplication_id: The security Application key - unique key for the standard application
Sourcepub fn create_or_update(
&self,
subscription_id: impl Into<String>,
application_id: impl Into<String>,
application: impl Into<Application>,
) -> RequestBuilder
pub fn create_or_update( &self, subscription_id: impl Into<String>, application_id: impl Into<String>, application: impl Into<Application>, ) -> RequestBuilder
Creates or update a security application on the given subscription.
Arguments:
subscription_id: Azure subscription IDapplication_id: The security Application key - unique key for the standard applicationapplication: Application over a subscription scope
Auto Trait Implementations§
impl !RefUnwindSafe for Client
impl !UnwindSafe for Client
impl Freeze for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl UnsafeUnpin 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