Skip to content

Latest commit

 

History

History
155 lines (113 loc) · 4.07 KB

Get-AzureRmDataLakeAnalyticsDataSource.md

File metadata and controls

155 lines (113 loc) · 4.07 KB
external help file Module Name ms.assetid online version schema
Microsoft.Azure.Commands.DataLakeAnalytics.dll-Help.xml
AzureRM.DataLakeAnalytics
0377C4E9-C1DC-49BA-BBC4-5598C83234F8
2.0.0

Get-AzureRmDataLakeAnalyticsDataSource

SYNOPSIS

Gets a Data Lake Analytics data source.

SYNTAX

GetAllDataSources (Default)

Get-AzureRmDataLakeAnalyticsDataSource [-Account] <String> [[-ResourceGroupName] <String>]
 [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]

GetDataLakeStoreAccount

Get-AzureRmDataLakeAnalyticsDataSource [-Account] <String> [-DataLakeStore] <String>
 [[-ResourceGroupName] <String>] [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]

GetBlobStorageAccount

Get-AzureRmDataLakeAnalyticsDataSource [-Account] <String> [-Blob] <String> [[-ResourceGroupName] <String>]
 [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]

DESCRIPTION

The Get-AzureRmDataLakeAnalyticsDataSource cmdlet gets an Azure Data Lake Analytics data source.

EXAMPLES

Example 1: Get a data source from an account

PS C:\>Get-AzureRmDataLakeAnalyticsDataSource -AccountName "ContosoAdlA" -DataLakeStore "ContosoAdls"

This command gets a Data Lake Store data source named ContosoAdls from a Data Lake Analytics account.

Example 2: Get the list of Data Lake Store accounts in a Data Lake Analytics account

PS C:\>Get-AzureRmDataLakeAnalyticsDataSource -AccountName "ContosoAdlA" -DataSource "DataLakeStore"

This command gets all Data Lake Store accounts from a Data Lake Analytics account.

PARAMETERS

-Account

Specifies the Data Lake Analytics account that this cmdlet gets data sources.

Type: System.String
Parameter Sets: (All)
Aliases: AccountName

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-Blob

Specifies the name of the Azure Blob Storage data source.

Type: System.String
Parameter Sets: GetBlobStorageAccount
Aliases: AzureBlob

Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-DataLakeStore

Specifies the name of the Data Lake Store account.

Type: System.String
Parameter Sets: GetDataLakeStoreAccount
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-DefaultProfile

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

Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzureRmContext, AzureCredential

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ResourceGroupName

Specifies the resource group name that contains the data source.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: 2
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).

INPUTS

System.String

OUTPUTS

Microsoft.Azure.Commands.DataLakeAnalytics.Models.PSStorageAccountInfo

Microsoft.Azure.Commands.DataLakeAnalytics.Models.PSDataLakeStoreAccountInfo

Microsoft.Azure.Commands.DataLakeAnalytics.Models.AdlDataSource

NOTES

RELATED LINKS

Add-AzureRmDataLakeAnalyticsDataSource

Remove-AzureRmDataLakeAnalyticsDataSource

Set-AzureRmDataLakeAnalyticsDataSource