-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Support UAMI in ADF IR/LS/Activity #14589
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 19 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
6153505
Merge pull request #1 from Azure/master
yuzhangyi 0a89a8c
Merge pull request #2 from Azure/master
yuzhangyi 090b0d9
Enable excel in public swagger
zhanyu2024 c14e13a
Merge pull request #3 from Azure/master
yuzhangyi 5f992bf
update
zhanyu2024 08ec7ff
Merge pull request #4 from Azure/master
yuzhangyi bbafcb2
rollback dataflow change
zhanyu2024 c10ec23
Merge pull request #5 from Azure/master
yuzhangyi 361ac0a
Merge pull request #6 from Azure/master
yuzhangyi f17df3b
Merge pull request #7 from Azure/master
yuzhangyi 51be4b9
Merge pull request #8 from Azure/master
yuzhangyi 5719e90
Support UAMI in ADF IR/LS/Activity
zhanyu2024 9f0d2f8
update
zhanyu2024 a68d961
update 0609
zhanyu2024 54d65af
update
zhanyu2024 cb7583b
update
zhanyu2024 ed7f728
Merge pull request #9 from Azure/master
yuzhangyi 149077a
Merge remote-tracking branch 'refs/remotes/origin/master'
zhanyu2024 8b44b81
solve spell issue
zhanyu2024 6b7f7f4
Update custom-words.txt
leniatgh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -291,6 +291,8 @@ BYOK | |
| BYOL | ||
| BYOS | ||
| bzip | ||
| byoaSecretAkvUrl | ||
| byoaSecretName | ||
| cacerts | ||
| calculatebaseline | ||
| canadacentral | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
103 changes: 103 additions & 0 deletions
103
...tory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Credential.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,103 @@ | ||
| { | ||
| "swagger": "2.0", | ||
| "info": { | ||
| "title": "DataFactoryManagementClient", | ||
| "version": "2018-06-01" | ||
| }, | ||
| "paths": {}, | ||
| "definitions": { | ||
| "Credential": { | ||
| "description": "The Azure Data Factory nested object which contains the information and credential which can be used to connect with related store or compute resource.", | ||
| "type": "object", | ||
| "discriminator": "type", | ||
| "properties": { | ||
| "type": { | ||
| "type": "string", | ||
| "description": "Type of credential." | ||
| }, | ||
| "description": { | ||
| "description": "Credential description.", | ||
| "type": "string" | ||
| }, | ||
| "annotations": { | ||
| "description": "List of tags that can be used for describing the Credential.", | ||
| "type": "array", | ||
| "items": { | ||
| "type": "object" | ||
| } | ||
| } | ||
| }, | ||
| "additionalProperties": { | ||
| "type": "object" | ||
| }, | ||
| "required": [ | ||
| "type" | ||
| ] | ||
| }, | ||
| "ServicePrincipalCredential": { | ||
| "x-ms-discriminator-value": "ServicePrincipal", | ||
| "description": "Service principal credential.", | ||
| "type": "object", | ||
| "allOf": [ | ||
| { | ||
| "$ref": "#/definitions/Credential" | ||
| } | ||
| ], | ||
| "properties": { | ||
| "typeProperties": { | ||
| "description": "Service Principal credential properties.", | ||
| "x-ms-client-flatten": true, | ||
| "$ref": "#/definitions/ServicePrincipalCredentialTypeProperties" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "typeProperties" | ||
| ] | ||
| }, | ||
| "ServicePrincipalCredentialTypeProperties": { | ||
| "description": "Service Principal credential type properties.", | ||
| "type": "object", | ||
| "properties": { | ||
| "servicePrincipalId": { | ||
| "type": "object", | ||
| "description": "The app ID of the service principal used to authenticate" | ||
| }, | ||
| "servicePrincipalKey": { | ||
| "$ref": "../datafactory.json#/definitions/AzureKeyVaultSecretReference", | ||
| "description": "The key of the service principal used to authenticate." | ||
| }, | ||
| "tenant": { | ||
| "type": "object", | ||
| "description": "The ID of the tenant to which the service principal belongs" | ||
| } | ||
| } | ||
| }, | ||
| "ManagedIdentityCredential": { | ||
| "x-ms-discriminator-value": "ManagedIdentity", | ||
| "description": "Managed identity credential.", | ||
| "type": "object", | ||
| "allOf": [ | ||
| { | ||
| "$ref": "#/definitions/Credential" | ||
| } | ||
| ], | ||
| "properties": { | ||
| "typeProperties": { | ||
| "description": "Managed identity credential properties.", | ||
| "x-ms-client-flatten": true, | ||
| "$ref": "#/definitions/ManagedIdentityTypeProperties" | ||
| } | ||
| } | ||
| }, | ||
| "ManagedIdentityTypeProperties": { | ||
| "description": "Managed identity type properties.", | ||
| "type": "object", | ||
| "properties": { | ||
| "resourceId": { | ||
| "type": "string", | ||
| "description": "The resource id of user assigned managed identity" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.