v1

latestOpenAPI 3.0.0Apache 2.02026-07-174040133.9 KB
Masking views

List all storage host initiators.

get/v1/storages/{storage_id}/storage-host-initiators

Path parameters

storage_idstring required

Database ID created for a storage backend.

Query parameters

limitinteger

Requests a page size of items. Returns a number of items up to a limit value. Use the limit parameter to make an initial limited request and use the ID of the last-seen item from the response as the marker parameter value in a subsequent limited request.

offsetinteger

Used in conjunction with limit to return a slice of items. offset is where to start in the list.

sortstring
Example:sort=name:desc,id:asc

Comma-separated list of sort keys and optional sort directions in the form of key:val

namestring

The storage host initiator name

idstring

Database ID created for a storage host initiator.

descriptionstring

The storage host initiator description

aliasstring

The storage host initiator alias name

wwnstring

The storage host initiator worrld wide name

native_storage_host_initiator_idstring

Actual ID of the storage host initiator in the storage backend.

native_storage_host_idstring

Actual ID of the associated storage host in the storage backend if any.

status'normal' | 'offline' | 'abnormal' | 'unknown'

The storage host initiator status

Response

List storage host initiators query was success

Example response

{
  "storage_host_initiators": [
    {
      "id": "084bf71e-a102-11e7-88a8-e31fe6d52248",
      "created_at": "2017-07-10T14:36:58.014Z",
      "updated_at": "2017-07-10T14:36:58.014Z",
      "description": "storage host initiator",
      "alias": "storage host initiator",
      "wwn": "storage host initiator1",
      "storage_id": "084bf71e-a102-11e7-88a8-e31fe6d52248",
      "native_storage_host_initiator_id": "storage_host_initiator_0",
      "native_storage_host_id": "storage_host_0"
    }
  ]
}