Skip to content

Commit

Permalink
CodeGen from PR 24306 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
[Hub Generated] Publish private branch 'datafactory/eldasilva/addExecutionInfoToSetVariable' (#24306)

* [AutoSync] 2ae6357790 Make new policy generic

* Fix typo

---------

Co-authored-by: swagger-automation <[email protected]>
Co-authored-by: Elisa Uhura Pereira da Silva <[email protected]>
  • Loading branch information
3 people committed Jun 13, 2023
1 parent 4478a62 commit bb60a1a
Showing 1 changed file with 50 additions and 26 deletions.
76 changes: 50 additions & 26 deletions schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -4965,6 +4965,11 @@
"AzureMLServiceLinkedServiceTypeProperties": {
"type": "object",
"properties": {
"authentication": {
"type": "object",
"properties": {},
"description": "Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string)."
},
"encryptedCredential": {
"type": "string",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string."
Expand Down Expand Up @@ -25174,19 +25179,9 @@
"description": "Database query. Type: string (or Expression with resultType string)."
},
"readBehavior": {
"oneOf": [
{
"type": "string",
"enum": [
"Query",
"QueryAll"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The read behavior for the operation. Default is Query."
"type": "object",
"properties": {},
"description": "The read behavior for the operation. Default is Query. Allowed values: Query/QueryAll. Type: string (or Expression with resultType string)."
},
"type": {
"type": "string",
Expand Down Expand Up @@ -25249,19 +25244,9 @@
"description": "Database query. Type: string (or Expression with resultType string)."
},
"readBehavior": {
"oneOf": [
{
"type": "string",
"enum": [
"Query",
"QueryAll"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The read behavior for the operation. Default is Query."
"type": "object",
"properties": {},
"description": "The read behavior for the operation. Default is Query. Allowed values: Query/QueryAll. Type: string (or Expression with resultType string)."
},
"type": {
"type": "string",
Expand Down Expand Up @@ -26860,6 +26845,34 @@
"properties": {},
"description": "The base definition of a secret type."
},
"SecureInputOutputPolicy": {
"type": "object",
"properties": {
"secureInput": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "When set to true, Input from activity is considered as secure and will not be logged to monitoring."
},
"secureOutput": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "When set to true, Output from activity is considered as secure and will not be logged to monitoring."
}
},
"description": "Execution policy for an activity that supports secure input and output."
},
"SecureString": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -27124,6 +27137,17 @@
"SetVariableActivity": {
"type": "object",
"properties": {
"policy": {
"oneOf": [
{
"$ref": "#/definitions/SecureInputOutputPolicy"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Execution policy for an activity that supports secure input and output."
},
"type": {
"type": "string",
"enum": [
Expand Down

0 comments on commit bb60a1a

Please sign in to comment.