Oracle Enterprise Manager · Example Payload

Oracle Enterprise Manager Createglobaltargetproperty Example

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Oracle Enterprise Manager Createglobaltargetproperty Example is an example object payload from Oracle Enterprise Manager, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "createGlobalTargetProperty",
  "method": "POST",
  "path": "/globalTargetProperties",
  "summary": "Oracle Enterprise Manager Create a Global Target Property",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "CreateglobaltargetpropertyRequestExample",
      "example": {
        "propertyName": "example_value",
        "propertyDisplayName": "example_value",
        "description": "A sample description.",
        "propertyType": "STRING",
        "validValues": [
          "example_value"
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Createglobaltargetproperty201Example",
      "example": {
        "globalTargetPropertyId": "500123",
        "propertyName": "example_value",
        "propertyDisplayName": "example_value",
        "description": "A sample description.",
        "propertyType": "STRING",
        "hasValidValues": true
      }
    }
  ]
}