TargetProperty

A configuration property of a target.

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Properties

Name Type Description
name string Property name.
value string Property value.
isReadOnly boolean Whether the property is read-only.
View JSON Schema on GitHub

JSON Schema

oracle-enterprise-manager-cloud-control-target-property-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TargetProperty",
  "type": "object",
  "description": "A configuration property of a target.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Property name."
    },
    "value": {
      "type": "string",
      "description": "Property value."
    },
    "isReadOnly": {
      "type": "boolean",
      "description": "Whether the property is read-only."
    }
  }
}