Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeWorkingStorageOutput

import type { DescribeWorkingStorageOutput } from "https://aws-api.deno.dev/v0.4/services/storagegateway.ts?docs=full";

A JSON object containing the following fields:

interface DescribeWorkingStorageOutput {
DiskIds?: string[] | null;
GatewayARN?: string | null;
WorkingStorageAllocatedInBytes?: number | null;
WorkingStorageUsedInBytes?: number | null;
}

§Properties

§
DiskIds?: string[] | null
[src]

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.

§
GatewayARN?: string | null
[src]
§
WorkingStorageAllocatedInBytes?: number | null
[src]

The total working storage in bytes allocated for the gateway. If no working storage is configured for the gateway, this field returns 0.

§
WorkingStorageUsedInBytes?: number | null
[src]

The total working storage in bytes in use by the gateway. If no working storage is configured for the gateway, this field returns 0.