UpdateAlarmDetails

Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

Properties

Name Type Description
displayName string
query string
severity string
isEnabled boolean
View JSON Schema on GitHub

JSON Schema

oracle-cloud-updatealarmdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateAlarmDetails",
  "title": "UpdateAlarmDetails",
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "example": "my-resource"
    },
    "query": {
      "type": "string",
      "example": "CpuUtilization[1m].mean()"
    },
    "severity": {
      "type": "string",
      "example": "example-value"
    },
    "isEnabled": {
      "type": "boolean",
      "example": true
    }
  }
}