Read Compute Manager Status

Read Compute Manager Status

Returns connection and version information about a compute manager

Request
URI
GET
https://nsxmanager.your.domain/api/v1/fabric/compute-managers/{compute-manager-id}/status
COPY
Path Parameters
string
compute-manager-id
Required

compute-manager-id


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns ComputeManagerStatus of type(s) application/json
{
    "version": "string",
    "connection_status": "string",
    "connection_errors": [
        {
            "timestamp": 0,
            "error_message": "string"
        }
    ],
    "last_sync_time": 0,
    "connection_status_details": "string",
    "registration_errors": [
        {
            "timestamp": 0,
            "error_message": "string"
        }
    ],
    "registration_status": "string"
}
string
version
Optional

Version of the compute manager

string
connection_status
Optional

Status of connection with the compute manager

Possible values are : UP, DOWN, CONNECTING,
array of ErrorInfo
connection_errors
Optional

Errors when connecting with compute manager

integer As int64 As int64
last_sync_time
Optional

Timestamp of the last successful update of Inventory, in epoch milliseconds.

string
connection_status_details
Optional

Details about connection status

array of ErrorInfo
registration_errors
Optional

Errors when registering with compute manager

string
registration_status
Optional

Registration status of compute manager

Possible values are : REGISTERED, UNREGISTERED, REGISTERING,

400
Returns BadRequest of type(s) application/json
This response body class contains all of the following: RelatedApiError , InlineApiError1
{
    "module_name": "string",
    "error_message": "string",
    "error_code": 0,
    "details": "string",
    "related_errors": [
        {
            "module_name": "string",
            "error_message": "string",
            "error_code": 0,
            "details": "string"
        }
    ]
}

403
Returns Forbidden of type(s) application/json
This response body class contains all of the following: RelatedApiError , InlineApiError1
{
    "module_name": "string",
    "error_message": "string",
    "error_code": 0,
    "details": "string",
    "related_errors": [
        {
            "module_name": "string",
            "error_message": "string",
            "error_code": 0,
            "details": "string"
        }
    ]
}

404

Not Found

Operation doesn't return any data structure

412
Returns PreconditionFailed of type(s) application/json
This response body class contains all of the following: RelatedApiError , InlineApiError1
{
    "module_name": "string",
    "error_message": "string",
    "error_code": 0,
    "details": "string",
    "related_errors": [
        {
            "module_name": "string",
            "error_message": "string",
            "error_code": 0,
            "details": "string"
        }
    ]
}

500
Returns InternalServerError of type(s) application/json
This response body class contains all of the following: RelatedApiError , InlineApiError1
{
    "module_name": "string",
    "error_message": "string",
    "error_code": 0,
    "details": "string",
    "related_errors": [
        {
            "module_name": "string",
            "error_message": "string",
            "error_code": 0,
            "details": "string"
        }
    ]
}

503
Returns ServiceUnavailable of type(s) application/json
This response body class contains all of the following: RelatedApiError , InlineApiError1
{
    "module_name": "string",
    "error_message": "string",
    "error_code": 0,
    "details": "string",
    "related_errors": [
        {
            "module_name": "string",
            "error_message": "string",
            "error_code": 0,
            "details": "string"
        }
    ]
}