VsanBurnInTestCheckResult

VsanBurnInTestCheckResult
VsanBurnInTestCheckResult

Deprecated as of vSphere API 6.7.

Checks that verify if all recommended vSAN burn in tests have been performed and passed.

This structure may be used only with operations rendered under /vsan.

AllOf
This class requires all of the following:
JSON Example
{
    "_typeName": "string",
    "passedTests": [
        {
            "_typeName": "string",
            "testname": "string",
            "workload": "string",
            "duration": 0,
            "result": "string"
        }
    ],
    "notPerformedTests": [
        {
            "_typeName": "string",
            "testname": "string",
            "workload": "string",
            "duration": 0,
            "result": "string"
        }
    ],
    "failedTests": [
        {
            "_typeName": "string",
            "testname": "string",
            "workload": "string",
            "duration": 0,
            "result": "string"
        }
    ]
}
passedTests
Optional

Passed burn in tests.

notPerformedTests
Optional

Burn in tests with issue: There are burn in tests that have not been performed.

It is recommended to perform all burn in tests.

failedTests
Optional

Burn in tests with issue: There are burn in tests that have failed.

It is recommended to perform and pass all burn in tests.

Deprecated