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

[Synapse] - library_append API adds comp parameter #13841

Merged
merged 2 commits into from
Apr 12, 2021
Merged
Show file tree
Hide file tree
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 @@ -2,6 +2,7 @@
"parameters": {
"endpoint": "exampleWorkspace.dev.azuresynapse.net",
"libraryName": "exampleLibraryName.jar",
"comp": "appendblock",
"api-version": "2019-06-01-preview",
"content": "file binary chunk",
"x-ms-blob-condition-appendpos": 12324
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@
},
{
"name": "x-ms-blob-condition-appendpos",
"x-ms-client-name": "blobConditionAppendPosition",
"in": "header",
"description": "Set this header to a byte offset at which the block is expected to be appended. The request succeeds only if the current offset matches this value. Otherwise, the request fails with the AppendPositionConditionNotMet error (HTTP status code 412 – Precondition Failed)",
"required": false,
Expand All @@ -313,7 +314,18 @@
}
}
}
}
},
"parameters": [
{
"name": "comp",
"in": "query",
"required": true,
"type": "string",
"enum": [
"appendblock"
]
}
]
}
},
"definitions": {
Expand Down