BlackoutTarget

A target included in a blackout.

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Properties

Name Type Description
targetName string Name of the target.
targetType string Type of the target.
includeMembers boolean Whether to include member targets (for composite targets and groups).
View JSON Schema on GitHub

JSON Schema

oracle-enterprise-manager-blackouttarget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BlackoutTarget",
  "title": "BlackoutTarget",
  "type": "object",
  "description": "A target included in a blackout.",
  "properties": {
    "targetName": {
      "type": "string",
      "description": "Name of the target.",
      "example": "example_value"
    },
    "targetType": {
      "type": "string",
      "description": "Type of the target.",
      "example": "example_value"
    },
    "includeMembers": {
      "type": "boolean",
      "description": "Whether to include member targets (for composite targets and groups).",
      "example": true
    }
  }
}