nic_update

PUT users/{uid}/appliances/{aid}/installProfile/{ipid}/nics/{nid}

Updates the meta-data information of a network interface card.

Please refer to nic for a complete list of all the nic attributes.

Security Summary

  • Requires Authentication: true
  • Entitlements Required: appliance_create

URI Parameters

  • uid (required): the user name (login name) of the user
  • ipid (required): the id of the installProfile
  • nid (required): the id of the nic to delete
  • aid (required): the id of the appliance

HTTP Request Body Parameters

A nic object

Example Request

curl "https://uforge.example.com/apiusers/{uid}/appliances/{aid}/installProfile/{ipid}/nics/{nid}" -X PUT \
-u USER_LOGIN:PASSWORD -H "Accept: application/xml" --data-binary "@representation.xml"

Example of representation.xml content (the request body):

<ns0:nics xmlns:ns0="http://www.usharesoft.com/uforge">
        <nics>
                <nic>
                        <dbId>1</dbId>
                        <type>ETHERNET</type>
                        <order>1</order>
                </nic>
                <nic>
                        <dbId>12</dbId>
                        <type>ETHERNET</type>
                        <order>0</order>
                </nic>
        </nics>
</ns0:nics>