Module netapp_ontap.resources.disk

Copyright © 2020 NetApp Inc. All rights reserved.

Retrieving storage disk information

The storage disk GET API retrieves all of the disks in the cluster.


Examples

1) Retrieve a list of disks from the cluster

The following example shows the response with a list of disks in the cluster:


from netapp_ontap import HostConnection
from netapp_ontap.resources import Disk

with HostConnection("<mgmt-ip>", username="admin", password="password", verify=False):
    print(list(Disk.get_collection()))

[
    Disk({"name": "1.24.4"}),
    Disk({"name": "1.24.3"}),
    Disk({"name": "1.24.5"}),
    Disk({"name": "1.24.0"}),
    Disk({"name": "1.24.2"}),
    Disk({"name": "1.24.1"}),
]


2) Retrieve a specific disk from the cluster

The following example shows the response of the requested disk. If there is no disk with the requested name, an error is returned.


from netapp_ontap import HostConnection
from netapp_ontap.resources import Disk

with HostConnection("<mgmt-ip>", username="admin", password="password", verify=False):
    resource = Disk(name="1.24.3")
    resource.get()
    print(resource)

Disk(
    {
        "uid": "50000394:0808AA88:00000000:00000000:00000000:00000000:00000000:00000000:00000000:00000000",
        "shelf": {"uid": "10318311901725526608"},
        "class": "performance",
        "model": "X421_FAL12450A10",
        "state": "present",
        "bay": 3,
        "aggregates": [
            {
                "name": "node_2_SAS_1",
                "_links": {
                    "self": {
                        "href": "/api/storage/aggregates/3fd9c345-ba91-4949-a7b1-6e2b898d74e3"
                    }
                },
                "uuid": "3fd9c345-ba91-4949-a7b1-6e2b898d74e3",
            }
        ],
        "serial_number": "EC47PC5021SW",
        "container_type": "aggregate",
        "pool": "pool0",
        "vendor": "NETAPP",
        "node": {
            "_links": {
                "self": {
                    "href": "/api/cluster/nodes/3a89ed49-8c6d-11e8-93bc-00a0985a64b6"
                }
            },
            "uuid": "3a89ed49-8c6d-11e8-93bc-00a0985a64b6",
            "name": "node-2",
        },
        "home_node": {
            "_links": {
                "self": {
                    "href": "/api/cluster/nodes/3a89ed49-8c6d-11e8-93bc-00a0985a64b6"
                }
            },
            "uuid": "3a89ed49-8c6d-11e8-93bc-00a0985a64b6",
            "name": "node-2",
        },
        "firmware_version": "NA02",
        "usable_size": 438304768000,
        "type": "sas",
        "rpm": 10000,
        "name": "1.24.3",
    }
)


3) Rekey the data authentication key (AK) of all encrypting drives to an AK

created and maintained by the system.


from netapp_ontap import HostConnection
from netapp_ontap.resources import Disk

with HostConnection("<mgmt-ip>", username="admin", password="password", verify=False):
    resource = Disk()
    resource.patch(name="*", encrypt_operation="rekey_data_auto_id")

Classes

class Disk (*args, **kwargs)

Allows interaction with Disk objects on the host

Initialize the instance of the resource.

Any keyword arguments are set on the instance as properties. For example, if the class was named 'MyResource', then this statement would be true:

MyResource(name='foo').name == 'foo'

Args

*args
Each positional argument represents a parent key as used in the URL of the object. That is, each value will be used to fill in a segment of the URL which refers to some parent object. The order of these arguments must match the order they are specified in the URL, from left to right.
**kwargs
each entry will have its key set as an attribute name on the instance and its value will be the value of that attribute.

Ancestors

Static methods

def count_collection(*args, connection: HostConnection = None, **kwargs) -> int

Retrieves a collection of disks.

  • storage disk show

Learn more


Fetch a count of all objects of this type from the host.

This calls GET on the object to determine the number of records. It is more efficient than calling get_collection() because it will not construct any objects. Query parameters can be passed in as kwargs to determine a count of objects that match some filtered criteria.

Args

*args
Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to get the count of bars for a particular foo, the foo.name value should be passed.
connection
The HostConnection object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context.
**kwargs
Any key/value pairs passed will be sent as query parameters to the host. These query parameters can affect the count. A return_records query param will be ignored.

Returns

On success, returns an integer count of the objects of this type. On failure, returns -1.

Raises

NetAppRestError: If the API call returned a status code >= 400, or if there is no connection available to use either passed in or on the library.

def find(*args, connection: HostConnection = None, **kwargs) -> Resource

Retrieves a collection of disks.

  • storage disk show

Learn more


Find an instance of an object on the host given a query.

The host will be queried with the provided key/value pairs to find a matching resource. If 0 are found, None will be returned. If more than 1 is found, an error will be raised or returned. If there is exactly 1 matching record, then it will be returned.

Args

*args
Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to find a bar for a particular foo, the foo.name value should be passed.
connection
The HostConnection object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context.
**kwargs
Any key/value pairs passed will be sent as query parameters to the host.

Returns

A Resource object containing the details of the object or None if no matches were found.

Raises

NetAppRestError: If the API call returned more than 1 matching resource.

def get_collection(*args, connection: HostConnection = None, max_records: int = None, **kwargs) -> typing.Iterable

Retrieves a collection of disks.

  • storage disk show

Learn more


Fetch a list of all objects of this type from the host.

This is a lazy fetch, making API calls only as necessary when the result of this call is iterated over. For instance, if max_records is set to 5, then iterating over the collection causes an API call to be sent to the server once for every 5 records. If the client stops iterating before getting to the 6th record, then no additional API calls are made.

Args

*args
Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to get the collection of bars for a particular foo, the foo.name value should be passed.
connection
The HostConnection object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context.
max_records
The maximum number of records to return per call
**kwargs
Any key/value pairs passed will be sent as query parameters to the host.

Returns

A list of Resource objects

Raises

NetAppRestError: If there is no connection available to use either passed in or on the library. This would be not be raised when get_collection() is called, but rather when the result is iterated.

def patch_collection(body: dict, *args, connection: HostConnection = None, **kwargs) -> NetAppResponse

Updates the encryption controls of self-encrypting disks.

  • storage encryption disk modify -data-key-id
  • security key-manager key query -key-type NSE-AK

Learn more


Patch all objects in a collection which match the given query.

All records on the host which match the query will be patched with the provided body.

Args

body
A dictionary of name/value pairs to set on all matching members of the collection.
*args
Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to patch the collection of bars for a particular foo, the foo.name value should be passed.
connection
The HostConnection object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context.
**kwargs
Any key/value pairs passed will be sent as query parameters to the host. Only resources matching this query will be patched.

Returns

A NetAppResponse object containing the details of the HTTP response.

Raises

NetAppRestError: If the API call returned a status code >= 400

Methods

def disk_show(bay: cliche.arg_types.choices.Choices.define.._Choices = None, class_: cliche.arg_types.choices.Choices.define.._Choices = None, container_type: cliche.arg_types.choices.Choices.define.._Choices = None, encryption_operation: cliche.arg_types.choices.Choices.define.._Choices = None, fips_certified: cliche.arg_types.choices.Choices.define.._Choices = None, firmware_version: cliche.arg_types.choices.Choices.define.._Choices = None, model: cliche.arg_types.choices.Choices.define.._Choices = None, name: cliche.arg_types.choices.Choices.define.._Choices = None, pool: cliche.arg_types.choices.Choices.define.._Choices = None, protection_mode: cliche.arg_types.choices.Choices.define.._Choices = None, rated_life_used_percent: cliche.arg_types.choices.Choices.define.._Choices = None, rpm: cliche.arg_types.choices.Choices.define.._Choices = None, self_encrypting: cliche.arg_types.choices.Choices.define.._Choices = None, serial_number: cliche.arg_types.choices.Choices.define.._Choices = None, state: cliche.arg_types.choices.Choices.define.._Choices = None, type: cliche.arg_types.choices.Choices.define.._Choices = None, uid: cliche.arg_types.choices.Choices.define.._Choices = None, usable_size: cliche.arg_types.choices.Choices.define.._Choices = None, vendor: cliche.arg_types.choices.Choices.define.._Choices = None, fields: typing.List = None) -> netapp_ontap.resource_table.ResourceTable

Fetch a list of Disk resources

Args

bay
Disk shelf bay
class_
Disk class
container_type
Type of overlying disk container
encryption_operation
Encryption operation to apply to the drives. Possible values are: - rekey_data_default - rekey_data_auto_id
fips_certified
 
firmware_version
 
model
 
name
Cluster-wide disk name
pool
Pool to which disk is assigned
protection_mode
Mode of drive data protection and FIPS compliance. Possible values are: - open - Disk is unprotected - data - Data protection only without FIPS compliance - part - Partial protection with FIPS compliance only - full - Full data and FIPS compliance protection
rated_life_used_percent
Percentage of rated life used
rpm
Revolutions per minute
self_encrypting
 
serial_number
 
state
State
type
Disk interface type
uid
The unique identifier for a disk
usable_size
 

vendor:

def get(self, **kwargs) -> NetAppResponse

Retrieves a specific disk.

  • storage disk show

Learn more


Fetch the details of the object from the host.

Requires the keys to be set (if any). After returning, new or changed properties from the host will be set on the instance.

Returns

A NetAppResponse object containing the details of the HTTP response.

Raises

NetAppRestError: If the API call returned a status code >= 400

Inherited members

class DiskSchema (*, only: typing.Union = None, exclude: typing.Union = (), many: bool = False, context: typing.Dict = None, load_only: typing.Union = (), dump_only: typing.Union = (), partial: typing.Union = False, unknown: str = None)

The fields of the Disk object

Ancestors

  • netapp_ontap.resource.ResourceSchema
  • marshmallow.schema.Schema
  • marshmallow.base.SchemaABC

Class variables

aggregates GET POST PATCH

List of aggregates sharing this disk

bay GET POST PATCH

Disk shelf bay

Example: 1

class_ GET POST PATCH

Disk class

Valid choices:

  • unknown
  • capacity
  • performance
  • archive
  • solid_state
  • array
  • virtual
container_type GET POST PATCH

Type of overlying disk container

Valid choices:

  • aggregate
  • broken
  • foreign
  • labelmaint
  • maintenance
  • shared
  • spare
  • unassigned
  • unknown
  • unsupported
  • remote
  • mediator
dr_node GET POST PATCH

The dr_node field of the disk.

drawer GET POST PATCH

The drawer field of the disk.

encryption_operation PATCH

Encryption operation to apply to the drives. Possible values are: - rekey_data_default - rekey_data_auto_id

fips_certified GET POST PATCH

The fips_certified field of the disk.

firmware_version GET POST PATCH

The firmware_version field of the disk.

Example: NA51

home_node GET POST PATCH

The home_node field of the disk.

key_id GET POST PATCH

The key_id field of the disk.

model GET POST PATCH

The model field of the disk.

Example: X421_HCOBE450A10

name GET POST PATCH

Cluster-wide disk name

Example: 1.0.1

node GET POST PATCH

The node field of the disk.

pool GET POST PATCH

Pool to which disk is assigned

Valid choices:

  • pool0
  • pool1
  • failed
  • none
protection_mode GET POST PATCH

Mode of drive data protection and FIPS compliance. Possible values are: - open - Disk is unprotected - data - Data protection only without FIPS compliance - part - Partial protection with FIPS compliance only - full - Full data and FIPS compliance protection

Valid choices:

  • open
  • data
  • part
  • full
rated_life_used_percent GET POST PATCH

Percentage of rated life used

Example: 10

rpm GET POST PATCH

Revolutions per minute

Example: 15000

self_encrypting GET POST PATCH

The self_encrypting field of the disk.

serial_number GET POST PATCH

The serial_number field of the disk.

Example: KHG2VX8R

shelf GET POST PATCH

The shelf field of the disk.

state GET POST PATCH

State

Valid choices:

  • broken
  • copy
  • maintenance
  • partner
  • pending
  • present
  • reconstructing
  • removed
  • spare
  • unfail
  • zeroing
type GET POST PATCH

Disk interface type

Valid choices:

  • ata
  • bsas
  • fcal
  • fsas
  • lun
  • sas
  • msata
  • ssd
  • vmdisk
  • unknown
  • ssd_nvm
uid GET POST PATCH

The unique identifier for a disk

Example: 002538E5:71B00B2F:00000000:00000000:00000000:00000000:00000000:00000000:00000000:00000000

usable_size GET POST PATCH

The usable_size field of the disk.

Example: 959934889984

vendor GET POST PATCH

The vendor field of the disk.

Example: NETAPP