Skip to content

Commit

Permalink
Refactor delete activity payload (#4747)
Browse files Browse the repository at this point in the history
* Enable delete activity

* Enable delete activity.

* Update

* Refactor delete activity content

* Update
  • Loading branch information
yuzhangyi authored and sarangan12 committed Dec 6, 2018
1 parent 8c2199d commit 8e9ff04
Showing 1 changed file with 34 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1455,6 +1455,26 @@
"modelAsString": true
}
},
"LogStorageSettings": {
"description": "Log storage settings.",
"type": "object",
"properties": {
"linkedServiceName": {
"description": "Log storage linked service reference.",
"$ref": "../datafactory.json#/definitions/LinkedServiceReference"
},
"path": {
"type": "object",
"description": "The path to storage for storing detailed logs of activity execution. Type: string (or Expression with resultType string)."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"linkedServiceName"
]
},
"StagingSettings": {
"description": "Staging settings.",
"type": "object",
Expand Down Expand Up @@ -2348,7 +2368,20 @@
"properties": {
"recursive": {
"type": "object",
"description": "If true, files under the folder path will be deleted recursively. Default is true. Type: boolean (or Expression with resultType boolean)."
"description": "If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean)."
},
"maxConcurrentConnections":{
"type": "integer",
"minimum": 1,
"description": "The max concurrent connections to connect data source at the same time."
},
"enableLogging":{
"type":"object",
"description": "Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean)."
},
"logStorageSettings":{
"description": "Log storage settings customer need to provide when enableLogging is true.",
"$ref": "#/definitions/LogStorageSettings"
},
"dataset": {
"description": "Delete activity dataset reference.",
Expand Down

0 comments on commit 8e9ff04

Please sign in to comment.