BlackoutUpdateRequest

Request body for updating a blackout.

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Properties

Name Type Description
description string
reason string
schedule object
targets array
View JSON Schema on GitHub

JSON Schema

oracle-enterprise-manager-blackoutupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BlackoutUpdateRequest",
  "title": "BlackoutUpdateRequest",
  "type": "object",
  "description": "Request body for updating a blackout.",
  "properties": {
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "reason": {
      "type": "string",
      "example": "example_value"
    },
    "schedule": {
      "$ref": "#/components/schemas/BlackoutSchedule"
    },
    "targets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BlackoutTarget"
      },
      "example": []
    }
  }
}