Vco Diagnostics Get Vco Db Diagnostics

Vco Diagnostics Get Vco Db Diagnostics

Gets the diagnostic information of the VCO database.

Privileges required:

READ VCO_DIAGNOSTICS

Request
URI
POST
https://{api_host}/portal/rest/vcoDiagnostics/getVcoDbDiagnostics
COPY
Request Body
Responses
200

Request was successfully processed

[
    {
        "name": "string",
        "description": "string",
        "method": "string",
        "result": {
            "velocloud": [
                {
                    "table_schema": "string",
                    "table_name": "string",
                    "table_rows": 0,
                    "avg_row_length": 0,
                    "data_length": 0,
                    "index_length": 0,
                    "data_free": 0
                }
            ],
            "velocloud_ca": [
                {
                    "table_schema": "string",
                    "table_name": "string",
                    "table_rows": 0,
                    "avg_row_length": 0,
                    "data_length": 0,
                    "index_length": 0,
                    "data_free": 0
                }
            ],
            "velocloud_dr": [
                {
                    "table_schema": "string",
                    "table_name": "string",
                    "table_rows": 0,
                    "avg_row_length": 0,
                    "data_length": 0,
                    "index_length": 0,
                    "data_free": 0
                }
            ],
            "velocloud_stats": [
                {
                    "table_schema": "string",
                    "table_name": "string",
                    "table_rows": 0,
                    "avg_row_length": 0,
                    "data_length": 0,
                    "index_length": 0,
                    "data_free": 0
                }
            ]
        }
    }
]
array of object
Optional

400

Invalid Request: Please check your request schema

Returns generic_400 of type(s) application/json
{
    "error": {
        "code": -32600,
        "message": "An error occurred while processing your request"
    }
}

500
Returns generic_500 of type(s) application/json
Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/portal/rest/vcoDiagnostics/getVcoDbDiagnostics