Skip to content
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

[Hub Generated] Publish private branch 'datafactory/eldasilva/addExecutionInfoToSetVariable' #24306

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7696,6 +7696,10 @@
"description": "Set Variable activity properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/SetVariableActivityTypeProperties"
},
"policy": {
"$ref": "#/definitions/SecureInputOutputPolicy",
"description": "Activity policy."
}
},
"required": [
Expand All @@ -7720,6 +7724,20 @@
}
}
},
"SecureInputOutputPolicy": {
"description": "Execution policy for an activity that supports secure input and output.",
"type": "object",
"properties": {
"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."
}
}
},
"AppendVariableActivity": {
"x-ms-discriminator-value": "AppendVariable",
"description": "Append value for a Variable of type Array.",
Expand Down