Create an IP Address Prefix Set

post

/network/v1/ipaddressprefixset/

An IP address prefix set lists IPv4 addresses in the CIDR address prefix format. After creating an IP address prefix set, you can specify it as a source or destination for permitted traffic while creating a security rule. See Add a Security Rule.

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
Header Parameters
Body ()
The request body contains details of the IP address prefix set that you want to create.
Root Schema : IpAddressPrefixSet-post-request
Type: object
The request body contains details of the IP address prefix set that you want to create.
Show Source
  • Description of the IP address prefix set.
  • ipAddressPrefixes
    List of CIDR IPv4 prefixes assigned in the virtual network.
  • The three-part name of the IP address prefix set (/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 prefix set.
Nested Schema : ipAddressPrefixes
Type: array
List of CIDR IPv4 prefixes assigned in the virtual network.
Show Source
Nested Schema : tags
Type: array
Strings that you can use to tag the IP address prefix set.
Show Source
Back to Top

Response

Supported Media Types

201 Response

Created. See Status Codes for information about other possible HTTP status codes.
Headers
Body ()
Root Schema : IpAddressPrefixSet-response
Type: object
Show Source
Nested Schema : ipAddressPrefixes
Type: array
List of CIDR IPv4 prefixes assigned in the virtual network.
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 create an IP address prefix set by submitting a POST 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 POST
     -H "Cookie: $COMPUTE_COOKIE"
     -H "Content-Type: application/oracle-compute-v3+json"
     -H "Accept: application/oracle-compute-v3+json"
     -d "@ipaddressprefixset.json"
        https://api-z999.compute.us0.oraclecloud.com/network/v1/ipaddressprefixset/
  • 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.

Example of Request Body

The following shows an example of the request body content in the ipaddressprefixset.json file.

{
 "name": "/Compute-acme/jack.jones@example.com/ipaddressprefixset1",
 "ipAddressPrefixes": ["192.168.0.0/16"]
}

Example of Response Body

The following example shows the response body in JSON format.

{
 "ipAddressPrefixes": ["192.168.0.0/16"],
 "uri": "https://api-z999.compute.us0.oraclecloud.com/network/v1/ipaddressprefixset/Compute-acme/jack.jones@example.com/ipaddressprefixset1",
 "description": null,
 "tags": [],
 "name": "/Compute-acme/jack.jones@example.com/ipaddressprefixset1"
}
Back to Top