BlobRestoreParameters

Blob restore parameters

AzureBlob StorageCloud StorageFile StorageMicrosoftStorage

Properties

Name Type Description
blobRanges array Blob ranges to restore.
timeToRestore string Restore blob to the specified time.
View JSON Schema on GitHub

JSON Schema

azure-storage-account-blob-restore-parameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-storage-account/refs/heads/main/json-schema/azure-storage-account-blob-restore-parameters-schema.json",
  "title": "BlobRestoreParameters",
  "description": "Blob restore parameters",
  "properties": {
    "blobRanges": {
      "description": "Blob ranges to restore.",
      "items": {
        "$ref": "#/definitions/BlobRestoreRange"
      },
      "type": "array"
    },
    "timeToRestore": {
      "description": "Restore blob to the specified time.",
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object",
  "required": [
    "timeToRestore",
    "blobRanges"
  ]
}