GlobalTargetPropertyCreateRequest

Request body for creating a global target property.

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Properties

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

JSON Schema

oracle-enterprise-manager-globaltargetpropertycreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GlobalTargetPropertyCreateRequest",
  "title": "GlobalTargetPropertyCreateRequest",
  "type": "object",
  "description": "Request body for creating a global target property.",
  "required": [
    "propertyName"
  ],
  "properties": {
    "propertyName": {
      "type": "string",
      "example": "example_value"
    },
    "propertyDisplayName": {
      "type": "string",
      "example": "example_value"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "propertyType": {
      "type": "string",
      "enum": [
        "STRING",
        "NUMBER",
        "BOOLEAN"
      ],
      "example": "STRING"
    },
    "validValues": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    }
  }
}