Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new field for KPI health #10068

Merged
merged 4 commits into from
Jul 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1311,6 +1311,13 @@
"description": "Timestamp of the last backup operation on this backup item.",
"type": "string"
},
"kpisHealths": {
"description": "Health details of different KPIs",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/KPIResourceHealthDetails"
}
},
"extendedInfo": {
"$ref": "#/definitions/AzureFileshareProtectedItemExtendedInfo",
"description": "Additional information with this backup item."
Expand Down Expand Up @@ -1831,6 +1838,13 @@
"$ref": "#/definitions/AzureIaaSVMHealthDetails"
}
},
"kpisHealths": {
"description": "Health details of different KPIs",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/KPIResourceHealthDetails"
}
},
"lastBackupStatus": {
"description": "Last backup operation status.",
"type": "string"
Expand Down Expand Up @@ -2180,6 +2194,13 @@
"extendedInfo": {
"$ref": "#/definitions/AzureVmWorkloadProtectedItemExtendedInfo",
"description": "Additional information for this backup item."
},
"kpisHealths": {
"description": "Health details of different KPIs",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/KPIResourceHealthDetails"
}
}
},
"x-ms-discriminator-value": "AzureVmWorkloadProtectedItem"
Expand Down Expand Up @@ -4036,6 +4057,35 @@
},
"discriminator": "objectType"
},
"KPIResourceHealthDetails": {
"description": "KPI Resource Health Details",
"type": "object",
"properties": {
"resourceHealthStatus": {
"description": "Resource Health Status",
"enum": [
"Healthy",
"TransientDegraded",
"PersistentDegraded",
"TransientUnhealthy",
"PersistentUnhealthy",
"Invalid"
],
"type": "string",
"x-ms-enum": {
"name": "ResourceHealthStatus",
"modelAsString": true
}
},
"resourceHealthDetails": {
"description": "Resource Health Status",
"type": "array",
"items": {
"$ref": "#/definitions/ResourceHealthDetails"
}
}
}
},
"OperationResultInfoBaseResource": {
"description": "Base class for operation result info.",
"allOf": [
Expand Down