Skip to content

Commit

Permalink
Added RehydratePriority response header to GetBlobProperties and List…
Browse files Browse the repository at this point in the history
…Blobs (#9951)
  • Loading branch information
seanmcc-msft authored Jun 24, 2020
1 parent 68ea130 commit 3f7b81c
Showing 1 changed file with 23 additions and 0 deletions.
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

0 comments on commit 3f7b81c

Please sign in to comment.