Apply a Patch

put

/paas/api/v1.1/instancemgmt/{identityDomainId}/services/IntegrationCloud/instances/{service_name}/patches/{patchId}

Applies a patch to an Oracle Integration Classic instance. To minimize service disruption, a patch is applied in a rolling pattern, patching a single node at a time.

Request

Supported Media Types
Path Parameters
Header Parameters
Body ()
The request contains information about the patch operation. There are no required values.
Root Schema : patch-request
Type: object
Show Source
Back to Top

Response

Supported Media Types

202 Response

Accepted.
Body ()
The response body includes information about the operation.
Root Schema : patch-response
Type: object
The response body includes information about the operation.
Show Source
Nested Schema : details
Type: object
Groups the details of the operation.
Show Source
Back to Top

Examples

The following example shows how to apply a patch to an Oracle Integration Classic Instance by submitting a PUT request on the REST resource using cURL.

Note:

The command in this example uses the URL structure https://example.com/resource-path, where example.com is the Oracle Cloud server to contact for your identity domain.

cURL Command

curl -v -X PUT -u jstein:Password -H "Accept:application/json" -H "Content-type:application/json" -H "X-ID-TENANT-NAME:ExampleIdentityDomain" http://example.com/paas/api/v1.1/instancemgmt/ExampleIdentityDomain/services/IntegrationCloud/instances/L1patch/patches/17.3.3.170724.2107-1194 

Example of Request Header

The following shows an example of the response header.

headers: Content-Type:application/json
Authorization: <Basic Auth credentials>
X-ID-TENANT-NAME: <identity domain>
Accept:application/json

Example of Response Body

The following shows an example of the request body in JSON format.
{
   "status":"Completed",
   "details":
   {
      "message":"PATCHING-5068: Patching service with patch [wls_patch_12.2.1.2.0_170308] is submitted as an asynchronous job.",
      "jobId":"4953052"
   }
}
Back to Top