You can use the GetFeatureStatus method to retrieve the status of a cluster feature.
This method has the following input parameter:
Name | Description | Type | Default value | Required |
---|---|---|---|---|
feature | The status of a cluster feature. If no value is provided, the system returns a status of all features. Possible values:
|
string | None | No |
This method has the following return value:
Name | Description | Type |
---|---|---|
features | An array of feature objects indicating the feature name and its status. Object members:
|
JSON object array |
Requests for this method are similar to the following example:
{ "method": "GetFeatureStatus", "params": { }, "id": 1 }
This method returns a response similar to the following example:
{ "id": 1, "result": { "features": [ { "enabled": true, "feature": "Vvols" }, { "enabled": true, "feature": "SnapMirror" }, { "enabled": true, "feature": "Fips" }, { "enabled": true, "feature": "FipsDrives" } ] } }
9.6