Learn R Programming

paws.storage (version 0.1.12)

storagegateway_list_local_disks: Returns a list of the gateway's local disks

Description

Returns a list of the gateway's local disks. To specify which gateway to describe, you use the Amazon Resource Name (ARN) of the gateway in the body of the request.

The request returns a list of all disks, specifying which are configured as working storage, cache storage, or stored volume or not configured at all. The response includes a DiskStatus field. This field can have a value of present (the disk is available to use), missing (the disk is no longer connected to the gateway), or mismatch (the disk node is occupied by a disk that has incorrect metadata or the disk content is corrupted).

Usage

storagegateway_list_local_disks(GatewayARN)

Value

A list with the following syntax:

list(
  GatewayARN = "string",
  Disks = list(
    list(
      DiskId = "string",
      DiskPath = "string",
      DiskNode = "string",
      DiskStatus = "string",
      DiskSizeInBytes = 123,
      DiskAllocationType = "string",
      DiskAllocationResource = "string",
      DiskAttributeList = list(
        "string"
      )
    )
  )
)

Arguments

GatewayARN

[required]

Request syntax

svc$list_local_disks(
  GatewayARN = "string"
)

Examples

Run this code
if (FALSE) {
# The request returns a list of all disks, specifying which are configured
# as working storage, cache storage, or stored volume or not configured at
# all.
svc$list_local_disks(
  GatewayARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
)
}

Run the code above in your browser using DataLab