Get Feature Deployment Status

Get Feature Deployment Status

Get the deployment status of feature specified in API path parameter.

Request
URI
GET
https://{api_host}/napp/api/v1/platform/features/{feature}/status
COPY
Path Parameters
feature
Required

Name of the feature for which deployment status is to be retrieved. Please refer Feature enum for precise name.


Authentication
This operation uses the following authentication methods.
Responses
200

Successfully retrieved the feature deployment status.

Returns FeatureDeploymentStatus of type(s) application/json
{
    "feature": "string",
    "status": "string",
    "reason": "string"
}
feature
Required

feature

status
Required

Deployment status of the given feature.

string
reason
Optional

Detailed reason for the status, if available.


default

Error occurred while fetching the deployment status for feature specified in API path parameter. Please check logs for cluster-api pod for more information. Refer the troubleshooting guide if neither of the above help.

Returns Error of type(s) application/json
{
    "code": 0,
    "message": "string"
}
integer As int32 As int32
code
Required

Error code refers to either HTTP status code OR a unique code identifying the internal error - which can be referenced in VMware documents for more information.

string
message
Required

Descriptive user understandable error message to help identify root cause of the error.