View All IP Reservations

get

/paas/api/v1.1/network/{identityDomainId}/services/SOA/ipreservations

This endpoint is not available in accounts where regions are not supported. It is also not applicable to service instances created on Oracle Cloud Infrastructure.

Returns information about all IP reservations defined for Oracle SOA Cloud Service in the given identity domain. Both used and unused IP reservations are returned.

Request

Path Parameters
Query Parameters
  • Allowed values (case-sensitive):
    • ALL: Get details of all the IP reservations.
    • IPNetwork: Get details of only those IP reservations that can be assigned to instances attached to IP networks.
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : ipres-response
Type: object
The response body contains information about used and unused IP reservations.
Show Source
Nested Schema : activities
Type: array
Groups details about ongoing and failed activity messages, if available.
Show Source
Nested Schema : ipReservations
Type: array
Groups all IP reservations.
Show Source
Nested Schema : ipreservations-activities
Type: object
Show Source
Nested Schema : activity
Type: array
Groups messages and errors for ongoing and failed activities.
Show Source
Nested Schema : message-errors
Type: object
Show Source
Nested Schema : ipreservations
Type: object
Show Source
Back to Top

Examples

The following example shows how to view all IP reservations created for Oracle SOA Cloud Service, by submitting a GET request on the REST resource using cURL.

Note: The command in this example uses the URL structure https://rest_server_url/resource-path, where rest_server_url is the REST server to contact for your identity domain (or Cloud account). See Send Requests.

cURL Command

curl -i -X GET -u username:Password! -H "X-ID-TENANT-NAME:ExampleIdentityDomain" https://rest_server_url/paas/api/v1.1/network/ExampleIdentityDomain/services/soa/ipreservations

Example of Response Header

The following example shows the response header.

HTTP/1.1 200 OK
Date: Wed, 22 Nov 2021 21:24:07 GMT
Content-Language: en
Content-Type: application/json

Example of Response Body

The following is an example of the response returned in JSON format, showing USED and UNUSED IP reservations.

{
    "ipReservations":[
    {
        "id":3001,
        "name":"ipres01",
        "ipAddress":"10.11.111.11",
        "status":"UNUSED",
        "accountId":"exampleidentitydomain_SOA",
        "computeSiteName":"uscom-central-1",
        "creationTime":"2021-11-22T21:19:46.179+0000"
    },
    {
        "id":3002,
        "name":"ipres02",
        "ipAddress":"10.22.222.22",
        "status":"USED",
        "accountId":"exampleidentitydomain_SOA",
        "computeSiteName":"uscom-central-1",
        "serviceName":"ExampleInstance",
        "hostName":"exampleinstance-wls-3",
        "creationTime":"2021-11-22T21:20:25.080+0000"
    },

    {
        "id":3203,
        "name":"ipres04",
        "ipAddress":"10.33.333.33",
        "status":"UNUSED",
        "accountId":"exampleidentitydomain_SOA",
        "computeSiteName":"uscom-central-1",
        "creationTime":"2021-11-22T21:23:25.080+0000"
    }
    ],
    "activities":[]
}
Back to Top