Skip to main content
Element Software
12.5 and 12.7

GetFeatureStatus

Contributors netapp-pcarriga

You can use the GetFeatureStatus method to retrieve the status of a cluster feature.

Parameter

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:

  • Vvols: Retrieve status for the VVols cluster feature.

  • SnapMirror: Retrieve status for the SnapMirror replication cluster feature.

  • Fips: Retrieve status for the FIPS 140-2 encryption for HTTPS communication feature.

  • fipsDrives: Retrieve status for the FIPS 140-2 drive encryption feature.

string

None

No

Return value

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:

  • feature: (string) The name of the feature.

  • enabled: (boolean) Whether the feature is enabled or not.

JSON object array

Request example

Requests for this method are similar to the following example:

{
  "method": "GetFeatureStatus",
    "params": {
    },
    "id": 1
}

Response example

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"
            }
        ]
    }
}

New since version

9.6