< Back

Get-AzureRmDataFactory

Tue Jan 29, 2019 9:41 pm

NAME Get-AzureRmDataFactory



SYNOPSIS

Gets information about Data Factories.





SYNTAX

Get-AzureRmDataFactory [-ResourceGroupName] <String> [[-Name] <String>] [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]





DESCRIPTION

The Get-AzureRmDataFactory cmdlet gets information about data factories in an Azure resource group. If you specify the name of a data factory,

this cmdlet gets information about that data factory. If you do not specify a name, this cmdlet gets information about all of the data factories

in an Azure resource group.





PARAMETERS

-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 data factory about which to get information.



Required? false

Position? 1

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 information about data factories 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



<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

None

This cmdlet does not accept any input.





OUTPUTS

System.Collections.Generic.List`1[[Microsoft.WindowsAzure.Commands.Utilities.PSDataFactory, Microsoft.WindowsAzure.Commands.Utilities,

Version=0.8.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] Microsoft.WindowsAzure.Commands.Utilities.PSDataFactory







NOTES





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



Example 1: Get all data factories



PS C:\\>Get-AzureRmDataFactory -ResourceGroupName "ADF"

DataFactoryName : WikiADF

ResourceGroupName : ADF

Location : WestUS

Tags : {}

Properties : Microsoft.WindowsAzure.Commands.Utilities.PSDataFactoryConfiguration



DataFactoryName : WikiADF2

ResourceGroupName : ADF

Location : westus

Tags : {}

Properties : Microsoft.WindowsAzure.Commands.Utilities.PSDataFactoryConfiguration



This command displays information about all data factories in the Azure subscription.





Example 2: Get a specific data factory



PS C:\\>$DataFactory = Get-AzureRmDataFactory -ResourceGroupName "ADF" -Name "WikiADF"

DataFactoryName : WikiADF

ResourceGroupName : ADF

Location : westus

Tags : {}

Properties : Microsoft.WindowsAzure.Commands.Utilities.PSDataFactoryConfiguration



This command displays information about the data factory named WikiADF in the subscription for the resource group named ADF, and then stores it in

the $DataFactory variable. Specify the DataFactory parameter in subsequent cmdlets to use the data factory stored in $DataFactory.







RELATED LINKS

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

New-AzureRmDataFactory

Remove-AzureRmDataFactory