BlackoutCreateRequest

Request body for creating a new blackout.

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Properties

Name Type Description
blackoutName string Display name for the blackout.
description string Description of the blackout purpose.
reason string Reason for the blackout.
schedule object
targets array List of targets to include in the blackout.
View JSON Schema on GitHub

JSON Schema

oracle-enterprise-manager-blackoutcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BlackoutCreateRequest",
  "title": "BlackoutCreateRequest",
  "type": "object",
  "description": "Request body for creating a new blackout.",
  "required": [
    "blackoutName",
    "schedule",
    "targets"
  ],
  "properties": {
    "blackoutName": {
      "type": "string",
      "description": "Display name for the blackout.",
      "example": "example_value"
    },
    "description": {
      "type": "string",
      "description": "Description of the blackout purpose.",
      "example": "A sample description."
    },
    "reason": {
      "type": "string",
      "description": "Reason for the blackout.",
      "example": "example_value"
    },
    "schedule": {
      "$ref": "#/components/schemas/BlackoutSchedule"
    },
    "targets": {
      "type": "array",
      "description": "List of targets to include in the blackout.",
      "items": {
        "$ref": "#/components/schemas/BlackoutTarget"
      },
      "example": []
    }
  }
}