SettingsClustersSoftwareReportsLastCheckResultCheckStatus

The LastCheckResult.CheckStatus structure contains fields that describe a check result.


Properties

check Required

Information about this check.


issues Required

The issues encountered while running this check.


status Required

The LastCheckResult.Status enumerated type defines the status result for a particular check.
OK : The check indicates a success.
WARNING : The check indicates a warning.
TIMEOUT : The check did not return in a timely manner.
ERROR : The check indicates an error.

Possible values are: OKWARNINGTIMEOUTERROR

JSON Example

{
	"check": {
		"check": "string",
		"description": {
			"args": [
				"string"
			],
			"default_message": "string",
			"id": "string"
		},
		"name": {
			"args": [
				"string"
			],
			"default_message": "string",
			"id": "string"
		}
	},
	"issues": [
		{
			"args": [
				"string"
			],
			"default_message": "string",
			"id": "string"
		}
	],
	"status": "OK"
}

Feedback

Was this page helpful?