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

More Append Seal stuff #9059

Merged
merged 1 commit into from
Apr 14, 2020
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 @@ -3163,7 +3163,7 @@
"description": "The number of tags associated with the blob"
},
"x-ms-blob-sealed": {
"x-ms-client-name": "BlobSealed",
"x-ms-client-name": "IsSealed",
"type": "boolean",
"description": "If this blob has been sealed"
}
Expand Down Expand Up @@ -3391,7 +3391,7 @@
"description": "The number of tags associated with the blob"
},
"x-ms-blob-sealed": {
"x-ms-client-name": "BlobSealed",
"x-ms-client-name": "IsSealed",
"type": "boolean",
"description": "If this blob has been sealed"
}
Expand Down Expand Up @@ -3712,7 +3712,7 @@
"description": "The number of tags associated with the blob"
},
"x-ms-blob-sealed": {
"x-ms-client-name": "BlobSealed",
"x-ms-client-name": "IsSealed",
"type": "boolean",
"description": "If this blob has been sealed"
}
Expand Down Expand Up @@ -5803,6 +5803,9 @@
},
{
"$ref": "#/parameters/BlobTagsHeader"
},
{
"$ref": "#/parameters/SealBlob"
}
],
"responses": {
Expand Down Expand Up @@ -5940,6 +5943,9 @@
},
{
"$ref": "#/parameters/BlobTagsHeader"
},
{
"$ref": "#/parameters/SealBlob"
}
],
"responses": {
Expand Down Expand Up @@ -8355,7 +8361,7 @@
"description": "UTC date/time value generated by the service that indicates the time at which the response was initiated"
},
"x-ms-blob-sealed": {
"x-ms-client-name": "BlobSealed",
"x-ms-client-name": "IsSealed",
"type": "boolean",
"description": "If this blob has been sealed"
}
Expand Down Expand Up @@ -9415,6 +9421,9 @@
"AccessTierChangeTime": {
"type": "string",
"format": "date-time-rfc1123"
},
"IsSealed": {
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -11482,6 +11491,15 @@
"x-ms-parameter-location": "method",
"description": "The version id parameter is an opaque DateTime value that, when present, specifies the version of the blob to operate on. It's for service version 2019-10-10 and newer."
},
"SealBlob": {
"name": "x-ms-seal-blob",
"x-ms-client-name": "SealBlob",
"in": "header",
"required": false,
"type": "boolean",
"x-ms-parameter-location": "method",
"description": "Overrides the sealed state of the destination blob. Service version 2019-12-12 and newer."
},
"SourceContentMD5": {
"name": "x-ms-source-content-md5",
"x-ms-client-name": "sourceContentMD5",
Expand Down