diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json index 8d8fb656f65e..45b5b1b4f848 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json @@ -5012,6 +5012,14 @@ "hostName": { "description": "GitHub Enterprise host name. For example: https://github.mydomain.com", "type": "string" + }, + "clientId": { + "description": "GitHub bring your own app client id.", + "type": "string" + }, + "clientSecret": { + "$ref": "#/definitions/GitHubClientSecret", + "description": "GitHub bring your own app client secret information." } } }, diff --git a/specification/synapse/resource-manager/Microsoft.Synapse/preview/2019-06-01-preview/workspace.json b/specification/synapse/resource-manager/Microsoft.Synapse/preview/2019-06-01-preview/workspace.json index 589d37a2954b..0f5c7ab4bc34 100644 --- a/specification/synapse/resource-manager/Microsoft.Synapse/preview/2019-06-01-preview/workspace.json +++ b/specification/synapse/resource-manager/Microsoft.Synapse/preview/2019-06-01-preview/workspace.json @@ -1050,6 +1050,20 @@ } } }, + "GitHubClientSecret": { + "description": "Client secret information for factory's bring your own app repository configuration", + "type": "object", + "properties": { + "byoaSecretAkvUrl": { + "description": "Bring your own app client secret AKV URL", + "type": "string" + }, + "byoaSecretName": { + "description": "Bring your own app client secret name in AKV", + "type": "string" + } + } + }, "WorkspaceRepositoryConfiguration": { "description": "Git integration settings", "type": "object", @@ -1090,6 +1104,14 @@ "description": "The VSTS tenant ID", "type": "string", "format": "uuid" + }, + "clientId": { + "description": "GitHub bring your own app client id", + "type": "string" + }, + "clientSecret": { + "$ref": "#/definitions/GitHubClientSecret", + "description": "GitHub bring your own app client secret information." } } },