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