Update a Virtual NIC Set

put

/network/v1/vnicset/{name}

You can add or remove vNICs in a 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
Path Parameters
  • The three-part name (/Compute-identity_domain/user/object) of the virtual NIC set.
Header Parameters
Body ()
The request body contains details of the virtual NIC set that you want to update.
Root Schema : VirtualNicSet-put-request
Type: object
The request body contains details of the virtual NIC set that you want to update.
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

200 Response

OK. 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

cURL Command

The following example shows how to update a virtual NIC, /Compute-acme/jack.jones@example.com/vnicset1, 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/vnicset/Compute-acme/jack.jones@example.com/vnicset1
  • 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 specify another virtual NIC in an existing virtual NIC set. In the following example, virtual NIC /Compute-acme/jack.jones@example.com/inst3/a4138f96-31bc-4e28-8696-3eb0916f75f1/eth0 is added to the virtual NIC set /Compute-acme/jack.jones@example.com/vnicset1.

{
  "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",
    "/Compute-acme/jack.jones@example.com/inst3/a4138f96-31bc-4e28-8696-3eb0916f75f1/eth0"
  ]
}

Example of Response Body

The following example shows the response body in JSON format when you update a virtual NIC.

{
  "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",
    "/Compute-acme/jack.jones@example.com/inst3/a4138f96-31bc-4e28-8696-3eb0916f75f1/eth0"
  ],
  "appliedAcls": []
}
Back to Top