Skip to content

Commit

Permalink
Added new field for KPI health (Azure#10068)
Browse files Browse the repository at this point in the history
  • Loading branch information
lapradh authored and 00Kai0 committed Oct 12, 2020
1 parent 44f99be commit deae2f9
Showing 1 changed file with 50 additions and 0 deletions.
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

0 comments on commit deae2f9

Please sign in to comment.