RunbookOperationsExtensions.CreateOrUpdate Method

Definition

Overloads

CreateOrUpdate(IRunbookOperations, String, String, RunbookCreateOrUpdateParameters)
CreateOrUpdate(IRunbookOperations, String, String, String, RunbookCreateOrUpdateParameters)

Create the runbook identified by runbook name. http://aka.ms/azureautomationsdk/runbookoperations

CreateOrUpdate(IRunbookOperations, String, String, RunbookCreateOrUpdateParameters)

public static Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateResponse CreateOrUpdate (this Microsoft.Azure.Management.Automation.IRunbookOperations operations, string resourceGroupName, string automationAccount, Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateParameters parameters);
static member CreateOrUpdate : Microsoft.Azure.Management.Automation.IRunbookOperations * string * string * Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateParameters -> Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateResponse
<Extension()>
Public Function CreateOrUpdate (operations As IRunbookOperations, resourceGroupName As String, automationAccount As String, parameters As RunbookCreateOrUpdateParameters) As RunbookCreateOrUpdateResponse

Parameters

operations
IRunbookOperations
resourceGroupName
String
automationAccount
String

Returns

Applies to

CreateOrUpdate(IRunbookOperations, String, String, String, RunbookCreateOrUpdateParameters)

Create the runbook identified by runbook name. http://aka.ms/azureautomationsdk/runbookoperations

public static Microsoft.Azure.Management.Automation.Models.Runbook CreateOrUpdate (this Microsoft.Azure.Management.Automation.IRunbookOperations operations, string resourceGroupName, string automationAccountName, string runbookName, Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateParameters parameters);
static member CreateOrUpdate : Microsoft.Azure.Management.Automation.IRunbookOperations * string * string * string * Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateParameters -> Microsoft.Azure.Management.Automation.Models.Runbook
<Extension()>
Public Function CreateOrUpdate (operations As IRunbookOperations, resourceGroupName As String, automationAccountName As String, runbookName As String, parameters As RunbookCreateOrUpdateParameters) As Runbook

Parameters

operations
IRunbookOperations

The operations group for this extension method.

resourceGroupName
String

Name of an Azure Resource group.

automationAccountName
String

The name of the automation account.

runbookName
String

The runbook name.

parameters
RunbookCreateOrUpdateParameters

The create or update parameters for runbook. Provide either content link for a published runbook or draft, not both.

Returns

Applies to