【发布时间】:2021-07-03 04:59:47
【问题描述】:
我想创建一个带有托管虚拟网络的 Azure 托管集成运行时。 我可以使用 ADF 界面创建它,但是我想编写它的脚本。
这是我正在使用的代码。
Set-AzDataFactoryV2IntegrationRuntime -Name $adfIntegrationRuntimeName `
-ResourceGroupName $adf.ResourceGroupName `
-DataFactoryName $adf.DataFactoryName `
-Type Managed `
-Description $adfIntegrationRuntimeDescription `
-Location $adf.Location `
-DataFlowTimeToLive 10 `
-DataFlowComputeType General `
-DataFlowCoreCount 8
这是使用 UI 的结果:
这是使用 PowerShell 代码的结果:
您知道如何使用 PowerShell 预配托管在 Azure 上的 IR 子类型为“托管虚拟网络”吗?
【问题讨论】:
标签: azure-powershell azure-data-factory-2