GlobalTargetPropertyUpdateRequest

Request body for updating a global target property.

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Properties

Name Type Description
propertyDisplayName string
description string
validValues array
View JSON Schema on GitHub

JSON Schema

oracle-enterprise-manager-globaltargetpropertyupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GlobalTargetPropertyUpdateRequest",
  "title": "GlobalTargetPropertyUpdateRequest",
  "type": "object",
  "description": "Request body for updating a global target property.",
  "properties": {
    "propertyDisplayName": {
      "type": "string",
      "example": "example_value"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "validValues": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    }
  }
}