Skip to content

Latest commit

 

History

History
68 lines (46 loc) · 1.64 KB

File metadata and controls

68 lines (46 loc) · 1.64 KB

nic_updateList

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

Summary

  • Method: PUT
  • Response Code: 200
  • Response Formats: application/xml application/json
  • Since: UForge 3.7

Updates the meta-data information of a list of network interface cards.

Please refer to nic-object 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-object
  • ipid (required): the id of the installprofile-object
  • aid (required): the id of the appliance-object

HTTP Request Body Parameters

A nics-object object

Example Request

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

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

<ns0:nic xmlns:ns0="http://www.usharesoft.com/uforge">
    <type>ETHERNET</type>
    <ipv4Method>AUTOMATIC</ipv4Method>
    <ipv6Method>AUTOMATIC</ipv6Method>
</ns0:nic>
  • appliance-object
  • installprofile-object
  • nic-object
  • nic-create
  • nic-delete
  • nic-get
  • nic-getAll
  • nic-update
  • user-object