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>,
deployment_name: impl Into<String>,
certificate_name: impl Into<String>,
) -> RequestBuilder
pub fn get( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, deployment_name: impl Into<String>, certificate_name: impl Into<String>, ) -> RequestBuilder
Get a certificate of given Nginx deployment
Arguments:
subscription_id: The ID of the target subscription.resource_group_name: The name of the resource group. The name is case insensitive.deployment_name: The name of targeted Nginx deploymentcertificate_name: The name of certificate
Sourcepub fn create_or_update(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
deployment_name: impl Into<String>,
certificate_name: impl Into<String>,
) -> RequestBuilder
pub fn create_or_update( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, deployment_name: impl Into<String>, certificate_name: impl Into<String>, ) -> RequestBuilder
Create or update the Nginx certificates for given Nginx deployment
Arguments:
subscription_id: The ID of the target subscription.resource_group_name: The name of the resource group. The name is case insensitive.deployment_name: The name of targeted Nginx deploymentcertificate_name: The name of certificate
Sourcepub fn delete(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
deployment_name: impl Into<String>,
certificate_name: impl Into<String>,
) -> RequestBuilder
pub fn delete( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, deployment_name: impl Into<String>, certificate_name: impl Into<String>, ) -> RequestBuilder
Deletes a certificate from the nginx deployment
Arguments:
subscription_id: The ID of the target subscription.resource_group_name: The name of the resource group. The name is case insensitive.deployment_name: The name of targeted Nginx deploymentcertificate_name: The name of certificate
Sourcepub fn list(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
deployment_name: impl Into<String>,
) -> RequestBuilder
pub fn list( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, deployment_name: impl Into<String>, ) -> RequestBuilder
List all certificates of given Nginx deployment
Arguments:
subscription_id: The ID of the target subscription.resource_group_name: The name of the resource group. The name is case insensitive.deployment_name: The name of targeted Nginx deployment
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