Get-AzureRmDataLakeAnalyticsJobPipeline

Gets a Data Lake Analytics Job pipeline or pipelines.

Warning

The AzureRM PowerShell module has been officially deprecated as of February 29, 2024. Users are advised to migrate from AzureRM to the Az PowerShell module to ensure continued support and updates.

Although the AzureRM module may still function, it's no longer maintained or supported, placing any continued use at the user's discretion and risk. Please refer to our migration resources for guidance on transitioning to the Az module.

Syntax

Get-AzureRmDataLakeAnalyticsJobPipeline
   [-Account] <String>
   [-SubmittedAfter <DateTimeOffset>]
   [-SubmittedBefore <DateTimeOffset>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Get-AzureRmDataLakeAnalyticsJobPipeline
   [-Account] <String>
   [-PipelineId] <Guid>
   [-SubmittedAfter <DateTimeOffset>]
   [-SubmittedBefore <DateTimeOffset>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

The Get-AzureRmDataLakeAnalyticsJobPipeline gets a specified Azure Data Lake Analytics Job pipeline or a list of pipelines.

Examples

Example 1: Get a specified pipeline

PS C:\>Get-AzureRmDataLakeAnalyticsJobPipeline -Account "contosoadla" -PipelineId 83cb7ad2-3523-4b82-b909-d478b0d8aea3

This command gets the specified pipeline with id '83cb7ad2-3523-4b82-b909-d478b0d8aea3' in account 'contosoadla'.

Example 2: Get a list of all pipelines in the account

PS C:\>Get-AzureRmDataLakeAnalyticsJobPipeline -AccountName "contosoadla"

This command gets a list of all pipelines in the account "contosoadla"

Parameters

-Account

Name of the Data Lake Analytics account name under which want to retrieve the job pipeline.

Type:String
Aliases:AccountName
Position:0
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-DefaultProfile

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

Type:IAzureContextContainer
Aliases:AzureRmContext, AzureCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-PipelineId

ID of the specific job pipeline to return information for.

Type:Guid
Aliases:Id
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-SubmittedAfter

An optional filter which returns job pipeline(s) only submitted after the specified time.

Type:Nullable<T>[DateTimeOffset]
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-SubmittedBefore

An optional filter which returns job pipeline(s) only submitted before the specified time.

Type:Nullable<T>[DateTimeOffset]
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

Inputs

String

Guid

Nullable<T>[[System.DateTimeOffset, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]

Outputs

PSJobPipelineInformation