Share via


RunbookOperationsExtensions.Get Method (IRunbookOperations, String, String)

 

Retrieve 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 RunbookGetResponse Get(
    this IRunbookOperations operations,
    string automationAccount,
    string runbookName
)
public:
[ExtensionAttribute]
static RunbookGetResponse^ Get(
    IRunbookOperations^ operations,
    String^ automationAccount,
    String^ runbookName
)
static member Get : 
        operations:IRunbookOperations *
        automationAccount:string *
        runbookName:string -> RunbookGetResponse
<ExtensionAttribute>
Public Shared Function Get (
    operations As IRunbookOperations,
    automationAccount As String,
    runbookName As String
) As RunbookGetResponse

Parameters

  • automationAccount
    Type: System.String

    Required. The automation account name.

Return Value

Type: Microsoft.WindowsAzure.Management.Automation.Models.RunbookGetResponse

The response model for the get runbook operation.

See Also

RunbookOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top