Amazon Storage Gateway · JSON Structure

Amazon Storage Gateway Describe Working Storage Output Structure

A JSON object containing the following fields:

Type: object Properties: 4
BackupFile StorageGatewayHybrid CloudStorage

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

Properties

GatewayARN DiskIds WorkingStorageUsedInBytes WorkingStorageAllocatedInBytes

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

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-storage-gateway/refs/heads/main/json-structure/amazon-storage-gateway-describe-working-storage-output-structure.json",
  "name": "DescribeWorkingStorageOutput",
  "description": "A JSON object containing the following fields:",
  "properties": {
    "GatewayARN": {
      "$ref": "#/components/schemas/GatewayARN"
    },
    "DiskIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DiskIds"
        },
        {
          "description": "An array of the gateway's local disk IDs that are configured as working storage. Each local disk ID is specified as a string (minimum length of 1 and maximum length of 300). If no local disks are configured as working storage, then the DiskIds array is empty."
        }
      ]
    },
    "WorkingStorageUsedInBytes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/long"
        },
        {
          "description": "The total working storage in bytes in use by the gateway. If no working storage is configured for the gateway, this field returns 0."
        }
      ]
    },
    "WorkingStorageAllocatedInBytes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/long"
        },
        {
          "description": "The total working storage in bytes allocated for the gateway. If no working storage is configured for the gateway, this field returns 0."
        }
      ]
    }
  }
}