Oracle WebLogic Server · Example Payload

Oracle Weblogic Deployapplication Example

Application ServerEnterpriseJava EEMiddlewareOracle

Oracle Weblogic Deployapplication Example is an example object payload from Oracle WebLogic Server, 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": "deployApplication",
  "method": "POST",
  "path": "/edit/appDeployments",
  "summary": "Oracle WebLogic Server Deploy an application",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "deployToCluster",
      "example": {
        "name": "MyApplication",
        "targets": [
          {
            "identity": [
              "clusters",
              "Cluster1"
            ]
          }
        ]
      }
    },
    {
      "contentType": "application/json",
      "name": "deployToServer",
      "example": {
        "name": "MyApplication",
        "sourceURL": "file:///path/to/myapp.ear",
        "targets": [
          {
            "identity": [
              "servers",
              "Server-0"
            ]
          }
        ]
      }
    }
  ],
  "responseExamples": []
}