共用方式為


Get-AzDataFactoryLinkedService

取得 Azure Data Factory 中連結服務的相關信息。

語法

Get-AzDataFactoryLinkedService
   [-DataFactoryName] <String>
   [[-Name] <String>]
   [-ResourceGroupName] <String>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Get-AzDataFactoryLinkedService
   [-DataFactory] <PSDataFactory>
   [[-Name] <String>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

Get-AzDataFactoryLinkedService Cmdlet 會取得 Azure Data Factory 中鏈接服務的相關信息。 如果您指定連結服務的名稱,此 Cmdlet 會取得該連結服務的相關信息。 如果您未指定名稱,此 Cmdlet 會取得數據處理站中所有連結服務的相關信息。

範例

範例 1:取得所有鏈接服務的相關信息

Get-AzDataFactoryLinkedService -ResourceGroupName "ADF" -DataFactoryName "WikiADF" | Format-List

此命令會取得名為WikiADF之數據處理站中所有連結服務的相關信息,然後使用管線運算符將連結的服務傳遞至 Format-List Cmdlet。 該 Cmdlet 會格式化結果。 如需詳細資訊,請輸入 Get-Help Format-List

範例 2:取得特定連結服務的相關信息

Get-AzDataFactoryLinkedService -ResourceGroupName "ADF" -DataFactoryName "WikiADF" -Name "HDILinkedService"

LinkedServiceName   ResourceGroupName     DataFactoryName              Properties
-----------------   -----------------     ---------------              ----------
HDILinkedService    ADF                   WikiADF                      Microsoft.DataFactories.HDInsightBYOCAsset

此命令會在名為WikiADF的數據處理站中取得名為HDILinkedService的連結服務相關信息。

範例 3:藉由指定 DataFactory 參數來取得特定鏈接服務的相關信息

$DataFactory = Get-AzDataFactory -ResourceGroupName "ADF" -Name "ContosoFactory"
Get-AzDataFactoryLinkedService -DataFactory $DataFactory | Format-Table -Property LinkedServiceName, DataFactoryName, ResourceGroupName

第一個命令會使用 Get-AzDataFactory Cmdlet 來取得名為 ContosoFactory 的數據處理站,然後將它儲存在$DataFactory變數中。 第二個命令會取得儲存在 $DataFactory 之數據處理站的連結服務相關信息,然後使用管線運算符將此資訊傳遞至 Format-Table Cmdlet。 Format-Table 會將輸出格式化為數據集,並將指定的屬性設定為數據集數據行。

參數

-DataFactory

指定 PSDataFactory 物件。 此 Cmdlet 會取得屬於此參數所指定之數據處理站的連結服務。

類型:PSDataFactory
Position:0
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-DataFactoryName

指定數據處理站的名稱。 此 Cmdlet 會取得屬於此參數所指定之數據處理站的連結服務。

類型:String
Position:1
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-DefaultProfile

用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶

類型:IAzureContextContainer
別名:AzContext, AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Name

指定要取得資訊的連結服務名稱。

類型:String
Position:2
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-ResourceGroupName

指定 Azure 資源群組的名稱。 此 Cmdlet 會取得屬於此參數所指定群組的連結服務。

類型:String
Position:0
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

輸入

PSDataFactory

String

輸出

PSLinkedService

備註

  • 關鍵詞:azure、azurerm、arm、resource、management、manager、data、factory