RunbookOperationsExtensions.Create Method (IRunbookOperations, String, RunbookCreateParameters)
Create the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)
Namespace: Microsoft.WindowsAzure.Management.Automation
Assembly: Microsoft.WindowsAzure.Management.Automation (in Microsoft.WindowsAzure.Management.Automation.dll)
Syntax
public static RunbookCreateResponse Create(
this IRunbookOperations operations,
string automationAccount,
RunbookCreateParameters parameters
)
public:
[ExtensionAttribute]
static RunbookCreateResponse^ Create(
IRunbookOperations^ operations,
String^ automationAccount,
RunbookCreateParameters^ parameters
)
static member Create :
operations:IRunbookOperations *
automationAccount:string *
parameters:RunbookCreateParameters -> RunbookCreateResponse
<ExtensionAttribute>
Public Shared Function Create (
operations As IRunbookOperations,
automationAccount As String,
parameters As RunbookCreateParameters
) As RunbookCreateResponse
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Automation.IRunbookOperationsReference to the Microsoft.WindowsAzure.Management.Automation.IRunbookOperations.
automationAccount
Type: System.StringRequired. The automation account name.
parameters
Type: Microsoft.WindowsAzure.Management.Automation.Models.RunbookCreateParametersRequired. The create parameters for runbook.
Return Value
Type: Microsoft.WindowsAzure.Management.Automation.Models.RunbookCreateResponse
The response model for the runbook create response.
See Also
RunbookOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace
Return to top