Azure Storage Account · JSON Structure

Azure Storage Account Blob Restore Status Structure

Blob restore status.

Type: object Properties: 4
AzureBlob StorageCloud StorageFile StorageMicrosoftStorage

BlobRestoreStatus is a JSON Structure definition published by Azure Storage Account, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

failureReason parameters restoreId status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-storage-account/refs/heads/main/json-structure/azure-storage-account-blob-restore-status-structure.json",
  "description": "Blob restore status.",
  "properties": {
    "failureReason": {
      "description": "Failure reason when blob restore is failed.",
      "readOnly": true,
      "type": "string"
    },
    "parameters": {
      "$ref": "#/definitions/BlobRestoreParameters",
      "description": "Blob restore request parameters.",
      "readOnly": true
    },
    "restoreId": {
      "description": "Id for tracking blob restore request.",
      "readOnly": true,
      "type": "string"
    },
    "status": {
      "description": "The status of blob restore progress. Possible values are: - InProgress: Indicates that blob restore is ongoing. - Complete: Indicates that blob restore has been completed successfully. - Failed: Indicates that blob restore is failed.",
      "enum": [
        "InProgress",
        "Complete",
        "Failed"
      ],
      "readOnly": true,
      "type": "string",
      "x-ms-enum": {
        "modelAsString": true,
        "name": "BlobRestoreProgressStatus"
      }
    }
  },
  "type": "object",
  "name": "BlobRestoreStatus"
}