Cloud Enterprise Object Storage REST API

Search (SHIFT+S)




List All Temp Failed Zone

GET /tempfailedzone/allfailedzones

Gets all the configured temp failed zones.


Required Roles

Requires one of the following roles:

  • SYSTEM_MONITOR

  • SYSTEM_ADMIN


Response Body

List of all temp failed zones

Field Description Type Notes
tempfailedzonelist
tempfailedzone     0-* Elements
rgId Replication group id String
failedZoneList List of failed zone ids. String 0-* Elements
name Name assigned to this resource in ECS. The resource name is set by a user and can be changed at any time. It is not a unique identifier. String
id Identifier that is generated by ECS when the resource is created. The resource Id is guaranteed to be unique and immutable across all virtual data centers for all time. URI Valid Values:
  •  urn:storageos:resource-type:UUID:
link Hyperlink to the details for this resource
creation_time Timestamp that shows when this resource was created in ECS DateTime Valid Values:
  •  YYYY-MM-DDTHH:mm:ssZ
  •  Unix timestamp
inactive Indicates whether the resource is inactive. When a user removes a resource, the resource is put in this state before it is removed from the ECS database. Boolean Valid Values:
  •  true
  •  false
global Indicates whether the resource is global. Boolean Valid Values:
  •  true
  •  false
remote Indicates whether the resource is remote. Boolean Valid Values:
  •  true
  •  false
vdc    
id ECS Id of the related object URI
link Hyperlink to the related object
internal Indicated whether the resource is an internal resource Boolean Valid Values:
  •  true
  •  false

Examples

Request
GET https://192.168.0.0:4443/tempfailedzone/allfailedzones HTTP/1.1

Content-Type: application/xml
X-SDS-AUTH-TOKEN: <AUTH_TOKEN>
Response
HTTP/1.1 200 OK 
Content-Type: application/xml 
 
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<tempfailedzonelist>
    <tempfailedzone>
        <inactive>false</inactive>
        <tags/>
        <rgId>urn:storageos:ReplicationGroupInfo:b3bf2d47-d732-457c-bb9b-d260eb53a76b:global</rgId>
    </tempfailedzone>
    <tempfailedzone>
        <inactive>false</inactive>
        <tags/>
        <rgId>urn:storageos:ReplicationGroupInfo:00000000-0000-0000-0000-000000000000:global</rgId>
    </tempfailedzone>
</tempfailedzonelist>