< Back

Get-AzureRmDataFactoryV2PipelineRun

Tue Jan 29, 2019 9:42 pm

NAME Get-AzureRmDataFactoryV2PipelineRun



SYNOPSIS

Gets information about pipeline runs.





SYNTAX

Get-AzureRmDataFactoryV2PipelineRun [-DataFactory] <PSDataFactory> [-PipelineRunId] <String> [-DefaultProfile <IAzureContextContainer>]

[<CommonParameters>]



Get-AzureRmDataFactoryV2PipelineRun [-DataFactory] <PSDataFactory> [-LastUpdatedAfter] <DateTime> [-LastUpdatedBefore] <DateTime> [[-PipelineName]

<String>] [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]



Get-AzureRmDataFactoryV2PipelineRun [-ResourceGroupName] <String> [-DataFactoryName] <String> [-PipelineRunId] <String> [-DefaultProfile

<IAzureContextContainer>] [<CommonParameters>]



Get-AzureRmDataFactoryV2PipelineRun [-ResourceGroupName] <String> [-DataFactoryName] <String> [-LastUpdatedAfter] <DateTime> [-LastUpdatedBefore]

<DateTime> [[-PipelineName] <String>] [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]





DESCRIPTION

The Get-AzureRmDataFactoryV2PipelineRun command returns information about runs for the specified pipeline. If PipelineRunId is specified, it shows

details for the run with that ID. If the PipelineRunId is not specified, then it shows information about all runs for the specified pipeline that

happened between the values of LastUpdatedAfter and LastUpdatedBefore.





PARAMETERS

-DataFactory <PSDataFactory>

The data factory object.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByValue)

Accept wildcard characters? false



-DataFactoryName <String>

The data factory name.



Required? true

Position? 1

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-LastUpdatedAfter <DateTime>

The time at or after which the pipeline run was updated in ISO8601 format.



Required? true

Position? 1

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-LastUpdatedBefore <DateTime>

The time at or before which the pipeline run was updated in ISO8601 format.



Required? true

Position? 2

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-PipelineName <String>

The pipeline name.



Required? false

Position? 3

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-PipelineRunId <String>

The Run ID of the pipeline.



Required? true

Position? 1

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ResourceGroupName <String>

The resource group name.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory

System.String





OUTPUTS

System.Collections.Generic.List`1[[Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.Commands.DataFactoryV2,

Version=0.1.9.0, Culture=neutral, PublicKeyToken=null]]

Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun





NOTES









Example 1: Get information for a pipline run



PS C:\\> Get-AzureRmDataFactoryV2PipelineRun -ResourceGroupName "ADF" -DataFactoryName "WikiADF" -PipelineRunId

"61eb095a-fe23-4591-8a97-fade6c65ca72"



ResourceGroupName : ADF

DataFactoryName : WikiADF

RunId : 61eb095a-fe23-4591-8a97-fade6c65ca72

PipelineName : DPWikisample

LastUpdated : 9/14/2017 12:21:02 AM

Parameters : {[url, http://adfsamplewebapi.azurewebsites.ne ... ute/sample]}

RunStart : 9/14/2017 12:20:54 AM

RunEnd : 9/14/2017 12:21:02 AM

DurationInMs : 8246

Status : Succeeded

Message :



This command gets details about the pipeline run with ID "61eb095a-fe23-4591-8a97-fade6c65ca72".







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... ipelinerun

Invoke-AzureRmDataFactoryV2Pipeline

Get-AzureRmDataFactoryV2ActivityRun