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>,
) -> RequestBuilder
pub fn get( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, deployment_name: impl Into<String>, ) -> RequestBuilder
Get 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 deployment
Sourcepub fn create_or_update(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
deployment_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>, ) -> RequestBuilder
Create or update 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 deployment
Sourcepub fn update(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
deployment_name: impl Into<String>,
) -> RequestBuilder
pub fn update( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, deployment_name: impl Into<String>, ) -> RequestBuilder
Update 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 deployment
Sourcepub fn delete(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
deployment_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>, ) -> RequestBuilder
Delete the NGINX deployment resource
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
Sourcepub fn list(&self, subscription_id: impl Into<String>) -> RequestBuilder
pub fn list(&self, subscription_id: impl Into<String>) -> RequestBuilder
List the NGINX deployments resources
Arguments:
subscription_id: The ID of the target subscription.
Sourcepub fn list_by_resource_group(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
) -> RequestBuilder
pub fn list_by_resource_group( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, ) -> RequestBuilder
List all NGINX deployments under the specified resource group.
Arguments:
subscription_id: The ID of the target subscription.resource_group_name: The name of the resource group. The name is case insensitive.
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