Skip to content

Commit

Permalink
Yuliu2/add purview configuration (#18858)
Browse files Browse the repository at this point in the history
* Defining the APIs for the new NSP resource

* Add PurviewConfiguration property in ADF

Add PurviewConfiguration property in ADF

* Fix discriminator

Fix discriminator

* Remove discriminator

Remove discriminator

* Update datafactory.json

Make it consistent with Synapse

* Rename PurviewConfiguration

Co-authored-by: Hari Prasad Perabattula <harics24@users.noreply.github.com>
Co-authored-by: Hari Prasad Perabattula <haperaba@microsoft.com>
  • Loading branch information
3 people committed May 11, 2022
1 parent a41d05d commit ac286e0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4987,6 +4987,16 @@
"type": "object"
}
},
"PurviewConfiguration": {
"description": "Purview configuration.",
"type": "object",
"properties": {
"purviewResourceId": {
"description": "Purview resource id.",
"type": "string"
}
}
},
"FactoryRepoConfiguration": {
"description": "Factory's git repo information.",
"type": "object",
Expand Down Expand Up @@ -5194,6 +5204,10 @@
"type": "string",
"readOnly": true
},
"purviewConfiguration": {
"$ref": "#/definitions/PurviewConfiguration",
"description": "Purview information of the factory."
},
"repoConfiguration": {
"$ref": "#/definitions/FactoryRepoConfiguration",
"description": "Git repo information of the factory."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
"provisioningState": "Succeeded",
"createTime": "2018-06-19T05:41:50.0041314Z",
"version": "2018-06-01",
"purviewConfiguration": {
"purviewResourceId": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.Purview/accounts/examplePurview"
},
"repoConfiguration": {
"type": "FactoryVSTSConfiguration",
"projectName": "project",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@
"provisioningState": "Succeeded",
"createTime": "2018-06-19T05:41:50.0041314Z",
"version": "2018-06-01",
"purviewConfiguration": {
"purviewResourceId": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.Purview/accounts/examplePurview"
},
"repoConfiguration": {
"type": "FactoryVSTSConfiguration",
"projectName": "project",
Expand Down Expand Up @@ -181,6 +184,9 @@
"provisioningState": "Succeeded",
"createTime": "2018-06-19T05:41:50.0041314Z",
"version": "2018-06-01",
"purviewConfiguration": {
"purviewResourceId": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.Purview/accounts/examplePurview"
},
"repoConfiguration": {
"type": "FactoryVSTSConfiguration",
"projectName": "project",
Expand Down

0 comments on commit ac286e0

Please sign in to comment.