Skip to content
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 @@ -3760,6 +3760,11 @@
"x-ms-client-name": "IsSealed",
"type": "boolean",
"description": "If this blob has been sealed"
},
"x-ms-rehydrate-priority": {
"x-ms-client-name": "RehydratePriority",
"description": "If an object is in rehydrate pending state then this header is returned with priority of rehydrate. Valid values are High and Standard.",
"type": "string"
}
}
},
Expand Down Expand Up @@ -9642,6 +9647,9 @@
},
"IsSealed": {
"type": "boolean"
},
"RehydratePriority": {
"$ref": "#/definitions/RehydratePriority"
}
}
},
Expand Down Expand Up @@ -10576,6 +10584,21 @@
"name": "Type"
}
},
"RehydratePriority": {
"description": "If an object is in rehydrate pending state then this header is returned with priority of rehydrate. Valid values are High and Standard.",
"type": "string",
"enum": [
"High",
"Standard"
],
"x-ms-enum": {
"name": "RehydratePriority",
"modelAsString": false
},
"xml": {
"name": "RehydratePriority"
}
},
"RetentionPolicy": {
"description": "the retention policy which determines how long the associated data should persist",
"type": "object",
Expand Down