< Back

Get-AzureRmDataFactoryV2Dataset

Tue Jan 29, 2019 9:41 pm

NAME Get-AzureRmDataFactoryV2Dataset



SYNOPSIS

Gets information about datasets in Data Factory.





SYNTAX

Get-AzureRmDataFactoryV2Dataset [-DataFactory] <PSDataFactory> [[-Name] <String>] [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]



Get-AzureRmDataFactoryV2Dataset [-ResourceGroupName] <String> [-DataFactoryName] <String> [[-Name] <String>] [-DefaultProfile

<IAzureContextContainer>] [<CommonParameters>]



Get-AzureRmDataFactoryV2Dataset [-DefaultProfile <IAzureContextContainer>] -ResourceId <String> [<CommonParameters>]





DESCRIPTION

The Get-AzureRmDataFactoryV2Dataset cmdlet gets information about datasets in Azure Data Factory. If you specify the name of a dataset, this

cmdlet gets information about that dataset. If you do not specify a name, this cmdlet gets information about all the datasets in the data factory.





PARAMETERS

-DataFactory <PSDataFactory>

Specifies a PSDataFactory object. This cmdlet gets datasets that belong to the data factory that this parameter specifies.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByValue)

Accept wildcard characters? false



-DataFactoryName <String>

Specifies the name of a data factory. This cmdlet gets datasets that belong to the data factory that this parameter specifies.



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



-Name <String>

Specifies the name of the dataset about which to get information.



Required? false

Position? 2

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ResourceGroupName <String>

Specifies the name of an Azure resource group. This cmdlet gets datasets that belong to the group that this parameter specifies.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ResourceId <String>

The Azure resource ID.



Required? true

Position? named

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

System.String

Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory





OUTPUTS

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

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

Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset





NOTES





Keywords: azure, azurerm, arm, resource, management, manager, data, factories



Example 1: Get information about all datasets



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



DatasetName : DACuratedWikiData

ResourceGroupName : ADF

DataFactoryName : WikiADF

Structure :

Properties : Microsoft.Azure.Management.DataFactory.Models.AzureBlobDataset



DatasetName : DAWikipediaClickEvents

ResourceGroupName : ADF

DataFactoryName : WikiADF

Structure :

Properties : Microsoft.Azure.Management.DataFactory.Models.AzureBlobDataset



DatasetName : DAWikiAggregatedData

ResourceGroupName : ADF

DataFactoryName : WikiADF

Structure :

Properties : Microsoft.Azure.Management.DataFactory.Models.AzureBlobDataset



This command gets information about all datasets in the data factory named WikiADF.





Example 2: Get information about a specific dataset



PS C:\\> Get-AzureRmDataFactoryV2Dataset -ResourceGroupName "ADF" -DataFactoryName "WikiADF" -Name "DAWikipediaClickEvents"



DatasetName : DAWikipediaClickEvents

ResourceGroupName : ADF

DataFactoryName : WikiADF

Structure :

Properties : Microsoft.Azure.Management.DataFactory.Models.AzureBlobDataset



This command gets information about the dataset named DAWikipediaClickEvents in the data factory named WikiADF.







RELATED LINKS

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

Set-AzureRmDataFactoryV2Dataset

Remove-AzureRmDataFactoryV2Dataset