Create a Virtual NIC Set

post

/network/v1/vnicset/

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 virtual NIC set that you want to create.
Root Schema : VirtualNicSet-post-request
Type: object
The request body contains details of the virtual NIC set that you want to create.
Show Source
Nested Schema : appliedAcls
Type: array
List of ACLs applied to the VNICs in the set.
Show Source
Nested Schema : tags
Type: array
Tags associated with the object.
Show Source
Nested Schema : vnics
Type: array
List of VNICs associated with this VNIC 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 : VirtualNicSet-response
Type: object
Show Source
Nested Schema : appliedAcls
Type: array
List of ACLs applied to the VNICs in the set.
Show Source
Nested Schema : tags
Type: array
Tags associated with the object.
Show Source
Nested Schema : vnics
Type: array
List of VNICs associated with this VNIC set.
Show Source
Back to Top

Examples

Creating a vNIC set while working with new instances

cURL Command

The following example shows how to create a virtual NIC set by submitting a POST request on the REST resource using cURL. For more information about cURL, see Use cURL.

For new instances that you create in an IP network, create an empty vNIC set and then specify the multipart name of the empty vNIC set in the networking section of the orchestration or launch plan. For example, if you create a vNIC set with the name /Compute-acme/jack.jones@example.com/vnicset_new_instance, then specify ???vnicsets": ["/Compute-acme/jack.jones@example.com/vnicset_new_instance"] in the networking section of the orchestration or launch plan. When the instance is created, vNICs are automatically populated in the vNIC set that you mentioned in the orchestration or launch plan. When you delete the instance, the vNICs are automatically removed from the vNIC set.

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 "@vnicset.json"
        https://api-z999.compute.us0.oraclecloud.com/network/v1/vnicset/
  • 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 vnicset.json file to create a virtual NIC set called /Compute-acme/jack.jones@example.com/vnicset_new_instance.

{
  "name": "/Compute-acme/jack.jones@example.com/vnicset_new_instance"
}

Example of Response Body

The following example shows the response body in JSON format.

{
  "name": "/Compute-acme/jack.jones@example.com/vnicset_new_instance",
  "uri": "https://api-z999.compute.us0.oraclecloud.com:443/network/v1/vnicset/Compute-acme/jack.jones@example.com/vnicset_new_instance",
  "description": null,
  "tags": [],
  "vnics": [],
  "appliedAcls": []
}

Creating a vNIC set while working with existing instances

cURL Command

The following example shows how to create a virtual NIC by submitting a POST request on the REST resource using cURL. For more information about cURL, see Use cURL.

For existing instances that are available in the IP network, use the GET method to get details of the virtual NICs of an instance, and then add the virtual NICs to a virtual NIC set.

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 "@vnicset.json"
        https://api-z999.compute.us0.oraclecloud.com/network/v1/vnicset/
  • 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 vnicset.json file to create a virtual NIC set called /Compute-acme/jack.jones@example.com/vnicset1 and adding two virtual NICs to this set.

{
  "name": "/Compute-acme/jack.jones@example.com/vnicset1",
  "vnics": [
    "/Compute-acme/jack.jones@example.com/inst2/4f0840bd-49dc-4d7f-bcc2-628c0cd5006b/eth1",
    "/Compute-acme/jack.jones@example.com/inst1-vnic1-ipnet1"
  ]
}

Example of Response Body

The following example shows the response body in JSON format.

{
  "name": "/Compute-acme/jack.jones@example.com/vnicset1",
  "uri": "https://api-z999.compute.us0.oraclecloud.com:443/network/v1/vnicset/Compute-acme/jack.jones@example.com/vnicset1",
  "description": null,
  "tags": [],
  "vnics": [
    "/Compute-acme/jack.jones@example.com/inst2/4f0840bd-49dc-4d7f-bcc2-628c0cd5006b/eth1",
    "/Compute-acme/jack.jones@example.com/inst1-vnic1-ipnet1"
  ],
  "appliedAcls": []
}
Back to Top