From a89794721b53cdbde20df9f345c00e4d3ce8c422 Mon Sep 17 00:00:00 2001 From: Ivan Liu Date: Fri, 19 Jun 2020 14:27:21 +0800 Subject: [PATCH] add AzPowerShellSetup and its TypeProperties --- .../entityTypes/IntegrationRuntime.json | 35 +++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/IntegrationRuntime.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/IntegrationRuntime.json index e5891b041cba..9b29bdf7d439 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/IntegrationRuntime.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/IntegrationRuntime.json @@ -408,8 +408,39 @@ } }, "required": [ - "componentName", - "licenseKey" + "componentName" + ] + }, + "AzPowerShellSetup": { + "description": "The express custom setup of installing Azure PowerShell.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/CustomSetupBase" + } + ], + "properties": { + "typeProperties": { + "description": "Install Azure PowerShell type properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/AzPowerShellSetupTypeProperties" + } + }, + "required": [ + "typeProperties" + ] + }, + "AzPowerShellSetupTypeProperties": { + "description": "Installation of Azure PowerShell type properties.", + "type": "object", + "properties": { + "version": { + "description": "The required version of Azure PowerShell to install.", + "type": "string" + } + }, + "required": [ + "version" ] }, "EntityReference": {