Compartilhar via


Método JobStreamOperationsExtensions.GetAsync (IJobStreamOperations, String, Guid, String)

 

Recupere o fluxo de trabalho identificado pela id de fluxo de trabalho. (consulte https://aka.ms/azureautomationsdk/jobstreamoperations para obter mais informações)

Namespace:   Microsoft.WindowsAzure.Management.Automation
Assembly:  Microsoft.WindowsAzure.Management.Automation (em Microsoft.WindowsAzure.Management.Automation.dll)

Sintaxe

public static Task<JobStreamGetResponse> GetAsync(
    this IJobStreamOperations operations,
    string automationAccount,
    Guid jobId,
    string jobStreamId
)
public:
[ExtensionAttribute]
static Task<JobStreamGetResponse^>^ GetAsync(
    IJobStreamOperations^ operations,
    String^ automationAccount,
    Guid jobId,
    String^ jobStreamId
)
static member GetAsync : 
        operations:IJobStreamOperations *
        automationAccount:string *
        jobId:Guid *
        jobStreamId:string -> Task<JobStreamGetResponse>
<ExtensionAttribute>
Public Shared Function GetAsync (
    operations As IJobStreamOperations,
    automationAccount As String,
    jobId As Guid,
    jobStreamId As String
) As Task(Of JobStreamGetResponse)

Parâmetros

  • automationAccount
    Type: System.String

    Obrigatório. O nome da conta de automação.

  • jobId
    Type: System.Guid

    Obrigatório. A id do trabalho.

  • jobStreamId
    Type: System.String

    Obrigatório. A id do fluxo de trabalho.

Valor de retorno

Type: System.Threading.Tasks.Task<JobStreamGetResponse>

O modelo de resposta para a operação get de fluxo de trabalho.

Consulte também

Classe JobStreamOperationsExtensions
Namespace Microsoft.WindowsAzure.Management.Automation

Retornar ao topo