pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn get(
&self,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
configuration_name: impl Into<String>,
subscription_id: impl Into<String>,
) -> RequestBuilder
pub fn get( &self, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, configuration_name: impl Into<String>, subscription_id: impl Into<String>, ) -> RequestBuilder
Retrieve the configuration identified by configuration name.
Arguments:
resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.configuration_name: The configuration name.subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
Sourcepub fn create_or_update(
&self,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
configuration_name: impl Into<String>,
parameters: impl Into<DscConfigurationCreateOrUpdateParameters>,
subscription_id: impl Into<String>,
) -> RequestBuilder
pub fn create_or_update( &self, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, configuration_name: impl Into<String>, parameters: impl Into<DscConfigurationCreateOrUpdateParameters>, subscription_id: impl Into<String>, ) -> RequestBuilder
Create the configuration identified by configuration name.
Arguments:
resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.configuration_name: The create or update parameters for configuration.parameters: The create or update parameters for configuration.subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
Sourcepub fn update(
&self,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
configuration_name: impl Into<String>,
subscription_id: impl Into<String>,
) -> RequestBuilder
pub fn update( &self, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, configuration_name: impl Into<String>, subscription_id: impl Into<String>, ) -> RequestBuilder
Create the configuration identified by configuration name.
Arguments:
resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.configuration_name: The create or update parameters for configuration.subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
Sourcepub fn delete(
&self,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
configuration_name: impl Into<String>,
subscription_id: impl Into<String>,
) -> RequestBuilder
pub fn delete( &self, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, configuration_name: impl Into<String>, subscription_id: impl Into<String>, ) -> RequestBuilder
Delete the dsc configuration identified by configuration name.
Arguments:
resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.configuration_name: The configuration name.subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
Sourcepub fn get_content(
&self,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
configuration_name: impl Into<String>,
subscription_id: impl Into<String>,
) -> RequestBuilder
pub fn get_content( &self, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, configuration_name: impl Into<String>, subscription_id: impl Into<String>, ) -> RequestBuilder
Retrieve the configuration script identified by configuration name.
Arguments:
resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.configuration_name: The configuration name.subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
Sourcepub fn list_by_automation_account(
&self,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
subscription_id: impl Into<String>,
) -> RequestBuilder
pub fn list_by_automation_account( &self, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, subscription_id: impl Into<String>, ) -> RequestBuilder
Retrieve a list of configurations.
Arguments:
resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
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