From 22c30bbffb4c7819081fe0d2ece71d13eb1b008a Mon Sep 17 00:00:00 2001 From: SDKAuto Date: Wed, 14 Dec 2022 08:32:00 +0000 Subject: [PATCH] CodeGen from PR 21888 in Azure/azure-rest-api-specs Merge f41a8e5e05c718909c7f50495bb9a55d0d9dd5b7 into 2647ee494ecbe4668bdf16486207fecd67843e57 --- schemas/2018-06-01/Microsoft.DataFactory.json | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/schemas/2018-06-01/Microsoft.DataFactory.json b/schemas/2018-06-01/Microsoft.DataFactory.json index c6970bf87a..8f4ed07b30 100644 --- a/schemas/2018-06-01/Microsoft.DataFactory.json +++ b/schemas/2018-06-01/Microsoft.DataFactory.json @@ -18523,6 +18523,9 @@ }, { "$ref": "#/definitions/AzureSynapseArtifactsLinkedService" + }, + { + "$ref": "#/definitions/PowerBILinkedService" } ], "properties": { @@ -22599,6 +22602,51 @@ }, "description": "PostgreSQL table dataset properties." }, + "PowerBILinkedService": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "PowerBI" + ] + }, + "typeProperties": { + "oneOf": [ + { + "$ref": "#/definitions/PowerBILinkedServiceTypeProperties" + }, + { + "$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" + } + ], + "description": "Power BI linked service properties." + } + }, + "required": [ + "type", + "typeProperties" + ], + "description": "Power BI linked service." + }, + "PowerBILinkedServiceTypeProperties": { + "type": "object", + "properties": { + "tenantId": { + "type": "string", + "description": "The tenant id to which the Power BI workspace belongs." + }, + "workspaceId": { + "type": "string", + "description": "The Power BI workspace id." + } + }, + "required": [ + "tenantId", + "workspaceId" + ], + "description": "Power BI linked service properties." + }, "PowerQuerySink": { "type": "object", "properties": {