From 649dc4a5393a22930cc9e9e0a686a1b4599e67f0 Mon Sep 17 00:00:00 2001 From: swagger-automation Date: Thu, 27 Apr 2023 01:51:34 +0000 Subject: [PATCH 1/2] [AutoSync] 2ae6357790 Make new policy generic --- .../2018-06-01/entityTypes/Pipeline.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json index 28247293504a..a7bc6e0ccf6a 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json @@ -7696,6 +7696,10 @@ "description": "Set Variable activity properties.", "x-ms-client-flatten": true, "$ref": "#/definitions/SetVariableActivityTypeProperties" + }, + "policy": { + "$ref": "#/definitions/SecureInputOuputPolicy", + "description": "Activity policy." } }, "required": [ @@ -7720,6 +7724,20 @@ } } }, + "SecureInputOuputPolicy": { + "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.", From 48b03bae5648ccd6d1c611efb36147710141aafc Mon Sep 17 00:00:00 2001 From: Elisa Uhura Pereira da Silva Date: Wed, 7 Jun 2023 10:59:57 -0700 Subject: [PATCH 2/2] Fix typo --- .../stable/2018-06-01/entityTypes/Pipeline.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json index a7bc6e0ccf6a..f5cff7077dae 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json @@ -7698,7 +7698,7 @@ "$ref": "#/definitions/SetVariableActivityTypeProperties" }, "policy": { - "$ref": "#/definitions/SecureInputOuputPolicy", + "$ref": "#/definitions/SecureInputOutputPolicy", "description": "Activity policy." } }, @@ -7724,7 +7724,7 @@ } } }, - "SecureInputOuputPolicy": { + "SecureInputOutputPolicy": { "description": "Execution policy for an activity that supports secure input and output.", "type": "object", "properties": {