BlobRestoreRange

Blob range

AzureBlob StorageCloud StorageFile StorageQueue StorageStorageTable Storage

Properties

Name Type Description
endRange string Blob end range. Empty means account end.
startRange string Blob start range. Empty means account start.
View JSON Schema on GitHub

JSON Schema

azure-storage-accounts-blob-restore-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-storage-accounts/refs/heads/main/json-schema/azure-storage-accounts-blob-restore-range-schema.json",
  "title": "BlobRestoreRange",
  "description": "Blob range",
  "properties": {
    "endRange": {
      "description": "Blob end range. Empty means account end.",
      "type": "string"
    },
    "startRange": {
      "description": "Blob start range. Empty means account start.",
      "type": "string"
    }
  },
  "type": "object",
  "required": [
    "startRange",
    "endRange"
  ]
}