Skip to content

Commit 591d372

Browse files
author
Haoran Sun
committed
add logSettings and upgrade Concur linked service
1 parent 60eff1b commit 591d372

File tree

2 files changed

+62
-2
lines changed

2 files changed

+62
-2
lines changed

specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/LinkedService.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3244,6 +3244,10 @@
32443244
"ConcurLinkedServiceTypeProperties": {
32453245
"description": "Concur Service linked service properties.",
32463246
"properties": {
3247+
"connectionProperties": {
3248+
"description": "Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.",
3249+
"type": "object"
3250+
},
32473251
"clientId": {
32483252
"description": "Application client_id supplied by Concur App Management.",
32493253
"type": "object"

specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json

Lines changed: 58 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1475,9 +1475,13 @@
14751475
"$ref": "#/definitions/RedirectIncompatibleRowSettings"
14761476
},
14771477
"logStorageSettings": {
1478-
"description": "Log storage settings customer need to provide when enabling session log.",
1478+
"description": "(Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.",
14791479
"$ref": "#/definitions/LogStorageSettings"
14801480
},
1481+
"logSettings": {
1482+
"description": "Log settings customer needs provide when enabling log.",
1483+
"$ref": "#/definitions/LogSettings"
1484+
},
14811485
"preserveRules": {
14821486
"type": "array",
14831487
"items": {
@@ -4298,7 +4302,7 @@
42984302
}
42994303
},
43004304
"LogStorageSettings": {
4301-
"description": "Log storage settings.",
4305+
"description": "(Deprecated. Please use LogSettings) Log storage settings.",
43024306
"type": "object",
43034307
"properties": {
43044308
"linkedServiceName": {
@@ -4325,6 +4329,58 @@
43254329
"linkedServiceName"
43264330
]
43274331
},
4332+
"LogSettings": {
4333+
"description": "Log settings.",
4334+
"type": "object",
4335+
"properties": {
4336+
"enableCopyActivityLog": {
4337+
"type": "object",
4338+
"description": "Specifies whether to enable copy activity log. Type: boolean (or Expression with resultType boolean)."
4339+
},
4340+
"copyActivityLogSettings": {
4341+
"description": "Specifies settings for copy activity log.",
4342+
"$ref": "#/definitions/CopyActivityLogSettings"
4343+
},
4344+
"logLocationSettings": {
4345+
"description": "Log location settings customer needs to provide when enabling log.",
4346+
"$ref": "#/definitions/LogLocationSettings"
4347+
}
4348+
},
4349+
"required": [
4350+
"logLocationSettings"
4351+
]
4352+
},
4353+
"LogLocationSettings": {
4354+
"description": "Log location settings.",
4355+
"type": "object",
4356+
"properties": {
4357+
"linkedServiceName": {
4358+
"description": "Log storage linked service reference.",
4359+
"$ref": "../datafactory.json#/definitions/LinkedServiceReference"
4360+
},
4361+
"path": {
4362+
"type": "object",
4363+
"description": "The path to storage for storing detailed logs of activity execution. Type: string (or Expression with resultType string)."
4364+
}
4365+
},
4366+
"required": [
4367+
"linkedServiceName"
4368+
]
4369+
},
4370+
"CopyActivityLogSettings": {
4371+
"description": "Settings for copy activity log.",
4372+
"type": "object",
4373+
"properties": {
4374+
"logLevel": {
4375+
"type": "object",
4376+
"description": "Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string)."
4377+
},
4378+
"enableReliableLogging": {
4379+
"type": "object",
4380+
"description": "Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean)."
4381+
}
4382+
}
4383+
},
43284384
"StagingSettings": {
43294385
"description": "Staging settings.",
43304386
"type": "object",

0 commit comments

Comments
 (0)