如何获取 Azure 数据工厂数据集、触发器、管道和链接服务的计数?

How to get the count of Azure Data Factory datasets, triggers, pipelines and linked services?

我创建了 Azure 数据工厂,然后向其中添加了数据集、触发器、管道和链接服务。我想知道使用 PowerShell 或任何其他替代方式的数据集、触发器、管道和链接服务的数量。

计数数据集

PS /home/abhishek> $datasets = Get-AzDataFactoryV2Dataset -ResourceGroupName "rg_name" -DataFactoryName "df_name"
PS /home/abhishek> $datasets.count
3

计数触发器

PS /home/abhishek> $triggers = Get-AzDataFactoryV2Trigger -ResourceGroupName "rg_name" -DataFactoryName "df_name"
PS /home/abhishek> $triggers.count
0

计数管道

PS /home/abhishek> $pipelines = Get-AzDataFactoryV2Pipeline -ResourceGroupName "rg_name" -DataFactoryName "df_name"
PS /home/abhishek> $pipelines.count
3

计数链接服务

PS /home/abhishek> $linkedservice = Get-AzDataFactoryV2LinkedService -ResourceGroupName "rg_name" -DataFactoryName "df_name"
PS /home/abhishek> $linkedservice.count
3