pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn publish(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
runbook_name: impl Into<String>,
) -> RequestBuilder
pub fn publish( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, runbook_name: impl Into<String>, ) -> RequestBuilder
Publish runbook draft.
Arguments:
subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.runbook_name: The parameters supplied to the publish runbook operation.
Sourcepub fn get_content(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
runbook_name: impl Into<String>,
) -> RequestBuilder
pub fn get_content( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, runbook_name: impl Into<String>, ) -> RequestBuilder
Retrieve the content of runbook identified by runbook name.
Arguments:
subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.runbook_name: The runbook name.
Sourcepub fn get(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
runbook_name: impl Into<String>,
) -> RequestBuilder
pub fn get( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, runbook_name: impl Into<String>, ) -> RequestBuilder
Retrieve the runbook identified by runbook name.
Arguments:
subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.runbook_name: The runbook name.
Sourcepub fn create_or_update(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
runbook_name: impl Into<String>,
parameters: impl Into<RunbookCreateOrUpdateParameters>,
) -> RequestBuilder
pub fn create_or_update( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, runbook_name: impl Into<String>, parameters: impl Into<RunbookCreateOrUpdateParameters>, ) -> RequestBuilder
Create the runbook identified by runbook name.
Arguments:
subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.runbook_name: The runbook name.parameters: The create or update parameters for runbook. Provide either content link for a published runbook or draft, not both.
Sourcepub fn update(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
runbook_name: impl Into<String>,
parameters: impl Into<RunbookUpdateParameters>,
) -> RequestBuilder
pub fn update( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, runbook_name: impl Into<String>, parameters: impl Into<RunbookUpdateParameters>, ) -> RequestBuilder
Update the runbook identified by runbook name.
Arguments:
subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.runbook_name: The runbook name.parameters: The update parameters for runbook.
Sourcepub fn delete(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
runbook_name: impl Into<String>,
) -> RequestBuilder
pub fn delete( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, runbook_name: impl Into<String>, ) -> RequestBuilder
Delete the runbook by name.
Arguments:
subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.runbook_name: The runbook name.
Sourcepub fn list_by_automation_account(
&self,
subscription_id: impl Into<String>,
resource_group_name: impl Into<String>,
automation_account_name: impl Into<String>,
) -> RequestBuilder
pub fn list_by_automation_account( &self, subscription_id: impl Into<String>, resource_group_name: impl Into<String>, automation_account_name: impl Into<String>, ) -> RequestBuilder
Retrieve a list of runbooks.
Arguments:
subscription_id: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.resource_group_name: Name of an Azure Resource group.automation_account_name: The name of the automation account.
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