Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor delete activity payload #4747

Merged
merged 6 commits into from
Dec 6, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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