Skip to content

Commit fd15880

Browse files
author
SDK Automation
committed
Generated from 591d372d03c66b2f814bd6e71d376676721fbd90
1 parent 54b5ec6 commit fd15880

File tree

1 file changed

+111
-3
lines changed

1 file changed

+111
-3
lines changed

schemas/2018-06-01/Microsoft.DataFactory.json

Lines changed: 111 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6239,6 +6239,11 @@
62396239
"properties": {},
62406240
"description": "Application client_id supplied by Concur App Management."
62416241
},
6242+
"connectionProperties": {
6243+
"type": "object",
6244+
"properties": {},
6245+
"description": "Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object."
6246+
},
62426247
"encryptedCredential": {
62436248
"type": "object",
62446249
"properties": {},
@@ -6438,6 +6443,22 @@
64386443
],
64396444
"description": "Copy activity."
64406445
},
6446+
"CopyActivityLogSettings": {
6447+
"type": "object",
6448+
"properties": {
6449+
"enableReliableLogging": {
6450+
"type": "object",
6451+
"properties": {},
6452+
"description": "Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean)."
6453+
},
6454+
"logLevel": {
6455+
"type": "object",
6456+
"properties": {},
6457+
"description": "Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string)."
6458+
}
6459+
},
6460+
"description": "Settings for copy activity log."
6461+
},
64416462
"CopyActivityTypeProperties": {
64426463
"type": "object",
64436464
"properties": {
@@ -6456,6 +6477,17 @@
64566477
"properties": {},
64576478
"description": "Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean)."
64586479
},
6480+
"logSettings": {
6481+
"oneOf": [
6482+
{
6483+
"$ref": "#/definitions/LogSettings"
6484+
},
6485+
{
6486+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
6487+
}
6488+
],
6489+
"description": "Log settings."
6490+
},
64596491
"logStorageSettings": {
64606492
"oneOf": [
64616493
{
@@ -6465,7 +6497,7 @@
64656497
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
64666498
}
64676499
],
6468-
"description": "Log storage settings."
6500+
"description": "(Deprecated. Please use LogSettings) Log storage settings."
64696501
},
64706502
"parallelCopies": {
64716503
"type": "object",
@@ -8947,7 +8979,7 @@
89478979
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
89488980
}
89498981
],
8950-
"description": "Log storage settings."
8982+
"description": "(Deprecated. Please use LogSettings) Log storage settings."
89518983
},
89528984
"maxConcurrentConnections": {
89538985
"oneOf": [
@@ -11481,6 +11513,21 @@
1148111513
],
1148211514
"description": "Definition of all parameters for an entity."
1148311515
},
11516+
"publicNetworkAccess": {
11517+
"oneOf": [
11518+
{
11519+
"type": "string",
11520+
"enum": [
11521+
"Enabled",
11522+
"Disabled"
11523+
]
11524+
},
11525+
{
11526+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
11527+
}
11528+
],
11529+
"description": "Whether or not public network access is allowed for the data factory."
11530+
},
1148411531
"repoConfiguration": {
1148511532
"oneOf": [
1148611533
{
@@ -16720,6 +16767,67 @@
1672016767
],
1672116768
"description": "Linked service reference type."
1672216769
},
16770+
"LogLocationSettings": {
16771+
"type": "object",
16772+
"properties": {
16773+
"linkedServiceName": {
16774+
"oneOf": [
16775+
{
16776+
"$ref": "#/definitions/LinkedServiceReference"
16777+
},
16778+
{
16779+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
16780+
}
16781+
],
16782+
"description": "Linked service reference type."
16783+
},
16784+
"path": {
16785+
"type": "object",
16786+
"properties": {},
16787+
"description": "The path to storage for storing detailed logs of activity execution. Type: string (or Expression with resultType string)."
16788+
}
16789+
},
16790+
"required": [
16791+
"linkedServiceName"
16792+
],
16793+
"description": "Log location settings."
16794+
},
16795+
"LogSettings": {
16796+
"type": "object",
16797+
"properties": {
16798+
"copyActivityLogSettings": {
16799+
"oneOf": [
16800+
{
16801+
"$ref": "#/definitions/CopyActivityLogSettings"
16802+
},
16803+
{
16804+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
16805+
}
16806+
],
16807+
"description": "Settings for copy activity log."
16808+
},
16809+
"enableCopyActivityLog": {
16810+
"type": "object",
16811+
"properties": {},
16812+
"description": "Specifies whether to enable copy activity log. Type: boolean (or Expression with resultType boolean)."
16813+
},
16814+
"logLocationSettings": {
16815+
"oneOf": [
16816+
{
16817+
"$ref": "#/definitions/LogLocationSettings"
16818+
},
16819+
{
16820+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
16821+
}
16822+
],
16823+
"description": "Log location settings."
16824+
}
16825+
},
16826+
"required": [
16827+
"logLocationSettings"
16828+
],
16829+
"description": "Log settings."
16830+
},
1672316831
"LogStorageSettings": {
1672416832
"type": "object",
1672516833
"properties": {
@@ -16769,7 +16877,7 @@
1676916877
"required": [
1677016878
"linkedServiceName"
1677116879
],
16772-
"description": "Log storage settings."
16880+
"description": "(Deprecated. Please use LogSettings) Log storage settings."
1677316881
},
1677416882
"LookupActivity": {
1677516883
"type": "object",

0 commit comments

Comments
 (0)