Update an IP Address Reservation Used in IP Networks

put

/network/v1/ipreservation/{name}

Updates the specified IP address reservation.

Required Role: To complete this task, you must have the 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
  • The three-part name of the object (/Compute-identity_domain/user/object).
Header Parameters
Body ()
The request body contains details of the IP address reservation that you want to update.
Root Schema : IpAddressReservation-put-request
Type: object
The request body contains details of the IP address reservation that you want to update.
Show Source
  • Description of the IP address reservation.
  • The IP address pool from which you want to reserve an IP address. Specify one of the following values:

    * /oracle/public/public-ippool: A pool of public IP addresses. An IP address from this pool is accessible over the public Internet.

    * /oracle/public/cloud-ippool: A pool of cloud IP addresses. An IP address from this pool is accessible to other IP networks in the Oracle cloud. You can use these IP addresses to communicate with other Oracle services.

  • The three-part name of the IP address reservation(/Compute-identity_domain/user/object).

    Object names can contain only alphanumeric characters, hyphens, underscores, and periods. Object names are case-sensitive. When you specify the object name, ensure that an object of the same type and with the same name doesn't already exist. If such an object already exists, another object of the same type and with the same name won't be created and the existing object won't be updated.

  • tags
    Strings that you can use to tag the IP address reservation.
Nested Schema : tags
Type: array
Strings that you can use to tag the IP address reservation.
Show Source
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 : IpAddressReservation-response
Type: object
Show Source
Nested Schema : tags
Type: array
Tags associated with the object.
Show Source
Back to Top

Examples

cURL Command

The following example shows how to update an IP reservation /Compute-acme/jack.jones@example.com/ipreservation1, which is used in IP networks by submitting a PUT 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 -i -X PUT
     -H "Cookie: $COMPUTE_COOKIE"
     -H "Content-Type: application/oracle-compute-v3+json"
     -H "Accept: application/oracle-compute-v3+json"
     -d "@requestbody.json"
        https://api-z999.compute.us0.oraclecloud.com/network/v1/ipreservation/Compute-acme/jack.jones@example.com/ipreservation1
  • 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 Request Body

The following shows an example of the request body content in the requestbody.json file to update the description of an IP reservation used in IP networks.

{
  "name": "/Compute-acme/jack.jones@example.com/ipreservation1",
  "ipAddressPool": "/oracle/public/public-ippool",
  "description": "updated description for IP reservation"
}

Example of Response Body

The following example shows the response body in JSON format when you update an IP reservation used in IP networks.

{
  "name": "/Compute-acme/jack.jones@example.com/ipreservation1",
  "uri": "https://api-z999.compute.us0.oraclecloud.com/network/v1/ipreservation/Compute-acme/jack.jones@example.com/ipreservation1",
  "description": "updated description for IP reservation",
  "tags": [],
  "ipAddress": "10.252.152.90",
  "ipAddressPool": "/oracle/public/public-ippool"
}
Back to Top