Retrieve Details of all IP Associations in a Container

get

/ip/association/{container}/

Retrieves details of the IP associations that are available in the specified container and match the specified query criteria. If you don't specify any query criteria, then details of all the IP associations in the container are displayed. To filter the search results, you can pass one or more of the following query parameters, by appending them to the URI in the following syntax:

?parameter1=value1&parameter2=value2&parameterN=valueN

Required Role: To complete this task, you must have the Compute_Monitor or Compute_Operations role. If this role isn't assigned to you or you're not sure, then ask your system administrator to ensure that the role is assigned to you in Oracle Cloud My Services. See Modifying User Roles in Managing and Monitoring Oracle Cloud.

Request

Supported Media Types
Path Parameters
Query Parameters
  • Start the NAT Connection in enabled state. In disabled state networking will be torn down
  • Use this option if you want to retrieve details of temporary IP addresses from the pool. Specify ippool:/oracle/public/ippool as the value.
  • Use this option if you want to retrieve details of a specific persistent IP address. Specify the name of the reservation in the format, ipreservation:ipreservation_name, where ipreservation_name is three-part name of an existing IP reservation in the /Compute-identity_domain/user/object format.
  • vcable ID of the instance that you want to associate with the IP reservation.

    For more information about the vcable of an instance, see Retrieve Details of an Instance.

Header Parameters
Back to Top

Response

Supported Media Types

200 Response

OK. See Status Codes for information about other possible HTTP status codes.
Headers
Body ()
Root Schema : IPAssociation-list-response
Type: object
Show Source
Nested Schema : result
Type: array
Show Source
Nested Schema : IPAssociation-response
Type: object
Show Source
  • Shows the default account for your identity domain.
  • The public IP address which is attached to a Compute Classic instance that requires access to or from the Internet.
  • The three-part name of the object (/Compute-identity_domain/user/object).
    • To associate a temporary IP address from the pool, specify ippool:/oracle/public/ippool.
    • To associate a persistent IP address, specify ipreservation:ipreservation_name, where ipreservation_name is three-part name of an existing IP reservation in the /Compute-identity_domain/user/object_name format. For more information about how to create an IP reservation, see Create an IP Reservation.
  • The three-part name of the IP reservation object in the format (/Compute-identity_domain/user/object). An IP reservation is a public IP address which is attached to a Compute Classic instance that requires access to or from the Internet.
  • Uniform Resource Identifier
  • The three-part name of a vcable ID of an instance that is associated with the IP reservation. The three-part name is in the format: /Compute-identity_domain/user/object.
Back to Top

Examples

cURL Command

The following example shows how to retrieve details about all IP associations in the /Compute-acme/jack.jones@example.com/ container by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL.

Enter the command on a single line. Line breaks are used in this example for readability.

curl -X GET 
     -H "Cookie: $COMPUTE_COOKIE"
     -H "Accept: application/oracle-compute-v3+json"
     https://api-z999.compute.us0.oraclecloud.com/ip/association/Compute-acme/jack.jones@example.com/
  • COMPUTE_COOKIE is the name of the variable in which you stored the authentication cookie earlier. For information about retrieving the authentication cookie and storing it in a variable, see Authentication.

  • api-z999.compute.us0.oraclecloud.com is an example REST endpoint URL. Change this value to the REST endpoint URL of your Compute Classic site. For information about finding out REST endpoint URL for your site, see Send Requests.

  • acme and jack.jones@example.com are example values. Replace acme with the identity domain ID of your Compute Classic account, and jack.jones@example.com with your user name.

Example of Response Body

The following example shows the response body in JSON format.

{
  "result": [
    {
      "account": "/Compute-acme/default",
      "vcable": "6bc9db0a-6676-45b0-8bc4-3adb9ee96970",
      "name": /Compute-acme/jack.jones@example.com/1f36bc5a-c104-44ce-9c7e-1742a260f6b5,
      "ip": "192.0.2.18",
      "uri": "https://api-z999.compute.us0.oraclecloud.com/ip/association/Compute-acme/jack.jones@example.com/1f36bc5a-c104-44ce-9c7e-1742a260f6b5",
      "parentpool": "ippool:/oracle/public/ippool",
      "reservation": "/Compute-acme/jack.jones@example.com/b6849b19-7cab-4d87-9e7b-a5d6ba690033"
    }
  ]
}
Back to Top