Share via


RunbookOperationsExtensions.Content Method (IRunbookOperations, String, String)

 

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

Parameters

  • automationAccount
    Type: System.String

    Required. The automation account name.

Return Value

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

The response model for the runbook content operation.

See Also

RunbookOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top