-
Notifications
You must be signed in to change notification settings - Fork 5.8k
[Datafactory] Add Variables, SecureInputs, and Set and Append activities to Pipeline. Add recursive option to cancel API #3828
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
Closed
Closed
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
9ac1030
Add Variables, Secure Input and Update Cancel API
haricr bd816e4
Update required property for isrecursive in cancel
haricr 2fc778b
Fix errors from Validation
haricr 682ee8d
Fix Names for Varaible Type
haricr 7a5bc14
Fix Typos
haricr 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
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 |
|---|---|---|
|
|
@@ -25,6 +25,10 @@ | |
| "$ref": "../datafactory.json#/definitions/ParameterDefinitionSpecification", | ||
| "description": "List of parameters for pipeline." | ||
| }, | ||
| "variables": { | ||
| "$ref": "../datafactory.json#/definitions/VariableDefinitionSpecification", | ||
| "description": "List of variables for pipeline." | ||
| }, | ||
| "concurrency": { | ||
| "type": "integer", | ||
| "minimum": 1, | ||
|
|
@@ -188,6 +192,10 @@ | |
| "minimum": 30, | ||
| "maximum": 86400 | ||
| }, | ||
| "secureInput": { | ||
| "type": "boolean", | ||
| "description": "When set to true, input from activity is considered as secure and will not be logged to monitoring." | ||
| }, | ||
| "secureOutput": { | ||
| "type": "boolean", | ||
| "description": "When set to true, Output from activity is considered as secure and will not be logged to monitoring." | ||
|
|
@@ -2854,7 +2862,7 @@ | |
| ] | ||
| }, | ||
| "FilterActivityTypeProperties": { | ||
| "description": "Fitler activity properties.", | ||
| "description": "Filter activity properties.", | ||
| "properties": { | ||
| "items": { | ||
| "description": "Input array on which filter should be applied.", | ||
|
|
@@ -2870,6 +2878,78 @@ | |
| "items" | ||
| ] | ||
| }, | ||
| "SetVaraibleActivity": { | ||
| "x-ms-discriminator-value": "SetVaraible", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo |
||
| "description": "Set value for a Variable.", | ||
| "allOf": [ | ||
| { | ||
| "$ref": "#/definitions/ControlActivity" | ||
| } | ||
| ], | ||
| "properties": { | ||
| "typeProperties": { | ||
| "description": "Set Variable activity properties.", | ||
| "x-ms-client-flatten": true, | ||
| "$ref": "#/definitions/SetVariableActivityTypeProperties" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "typeProperties" | ||
| ] | ||
| }, | ||
| "SetVariableActivityTypeProperties": { | ||
| "description": "SetVariable activity properties.", | ||
| "properties": { | ||
| "name": { | ||
| "description": "Name of the variable whose value needs to be set.", | ||
| "type": "string" | ||
| }, | ||
| "value": { | ||
| "description": "Value to be set. Could be a static value or Expression", | ||
| "type": "object" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "name", | ||
| "value" | ||
| ] | ||
| }, | ||
| "AppendVaraibleActivity": { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo |
||
| "x-ms-discriminator-value": "AppendVaraible", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo |
||
| "description": "Append value to a array Variable.", | ||
| "allOf": [ | ||
| { | ||
| "$ref": "#/definitions/ControlActivity" | ||
| } | ||
| ], | ||
| "properties": { | ||
| "typeProperties": { | ||
| "description": "Append Variable activity properties.", | ||
| "x-ms-client-flatten": true, | ||
| "$ref": "#/definitions/AppendVariableActivityTypeProperties" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "typeProperties" | ||
| ] | ||
| }, | ||
| "AppendVariableActivityTypeProperties": { | ||
| "description": "AppendVariable activity properties.", | ||
| "properties": { | ||
| "name": { | ||
| "description": "Name of the variable to which value needs to be appended.", | ||
| "type": "string" | ||
| }, | ||
| "value": { | ||
| "description": "Value to be appended. Could be a static value or Expression", | ||
| "type": "object" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "name", | ||
| "value" | ||
| ] | ||
| }, | ||
| "DatabricksNotebookActivity": { | ||
| "description": "DatabricksNotebook activity.", | ||
| "x-ms-discriminator-value": "DatabricksNotebook", | ||
|
|
||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo