Skip to content

Latest commit

 

History

History
110 lines (95 loc) · 2.05 KB

reference_element_api_listqospolicies.adoc

File metadata and controls

110 lines (95 loc) · 2.05 KB
permalink sidebar keywords summary
api/reference_element_api_listqospolicies.html
sidebar
qos,policy,policies,list,listing,listqospolicies
You can use the ListQoSPolicies method to list the settings of all QoS policies on the system.

ListQoSPolicies

You can use the ListQoSPolicies method to list the settings of all QoS policies on the system.

Parameters

This method has no input parameters.

Return values

This method has the following return values:

Name Description Type

qosPolicies

A list of details about each QoS policy.

QoSPolicy array

Request example

Requests for this method are similar to the following example:

{
  "id": 231,
  "method": "ListQoSPolicies",
  "params": {}
}

Response example

This method returns a response similar to the following example:

{
  "id": 231,
  "result": {
    "qosPolicies": [
      {
        "name": "silver",
        "qos": {
          "burstIOPS": 15000,
          "burstTime": 60,
          "curve": {
            "4096": 100,
            "8192": 160,
            "16384": 270,
            "32768": 500,
            "65536": 1000,
            "131072": 1950,
            "262144": 3900,
            "524288": 7600,
            "1048576": 15000
          },
          "maxIOPS": 14000,
          "minIOPS": 50
        },
        "qosPolicyID": 1,
        "volumeIDs": [
          1
        ]
      },
      {
        "name": "bronze",
        "qos": {
          "burstIOPS": 15000,
          "burstTime": 60,
          "curve": {
            "4096": 100,
            "8192": 160,
            "16384": 270,
            "32768": 500,
            "65536": 1000,
            "131072": 1950,
            "262144": 3900,
            "524288": 7600,
            "1048576": 15000
          },
          "maxIOPS": 15000,
          "minIOPS": 50
        },
        "qosPolicyID": 2,
        "volumeIDs": [
          2
        ]
      }
    ]
  }
}

New since version

10.0