AWS Storage Gateway

2018/12/03 - AWS Storage Gateway - 1 updated api methods

Changes  API list-local-disks returns a list of the gateway's local disks. This release adds a field DiskAttributeList to these disks.

ListLocalDisks (updated) Link ΒΆ
Changes (response)
{'Disks': {'DiskAttributeList': ['string']}}

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).

See also: AWS API Documentation

Request Syntax

client.list_local_disks(
    GatewayARN='string'
)
type GatewayARN

string

param GatewayARN

[REQUIRED]

The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region.

rtype

dict

returns

Response Syntax

{
    'GatewayARN': 'string',
    'Disks': [
        {
            'DiskId': 'string',
            'DiskPath': 'string',
            'DiskNode': 'string',
            'DiskStatus': 'string',
            'DiskSizeInBytes': 123,
            'DiskAllocationType': 'string',
            'DiskAllocationResource': 'string',
            'DiskAttributeList': [
                'string',
            ]
        },
    ]
}

Response Structure

  • (dict) --

    • GatewayARN (string) --

      The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region.

    • Disks (list) --

      • (dict) --

        Represents a gateway's local disk.

        • DiskId (string) --

          The unique device ID or other distinguishing data that identifies a local disk.

        • DiskPath (string) --

          The path of a local disk in the gateway virtual machine (VM).

        • DiskNode (string) --

          The device node of a local disk as assigned by the virtualization environment.

        • DiskStatus (string) --

          A value that represents the status of a local disk.

        • DiskSizeInBytes (integer) --

          The local disk size in bytes.

        • DiskAllocationType (string) --

          One of the DiskAllocationType enumeration values that identifies how a local disk is used. Valid values: "UPLOAD_BUFFER", "CACHE_STORAGE".

        • DiskAllocationResource (string) --

          The iSCSI Qualified Name (IQN) that is defined for a disk. This field is not included in the response if the local disk is not defined as an iSCSI target. The format of this field is targetIqn::LUNNumber::region-volumeId .

        • DiskAttributeList (list) --

          A list of values that represents attributes of a local disk.

          • (string) --