Skip to content

Latest commit

 

History

History
69 lines (47 loc) · 1.84 KB

installProfileGroup_create.rst

File metadata and controls

69 lines (47 loc) · 1.84 KB

installProfileGroup_create

.. function:: POST /users/{uid}/appliances/{aid}/installProfile/{ipid}/groups

Summary

  • Method: POST
  • Response Code: 201
  • Response Formats: application/xml application/json
  • Since: UForge 3.4

Adds a new OS group in an install profile.

Refer to :ref:`osgroup-object` for the mandatory and optional attributes.

Security Summary

  • Requires Authentication: true
  • Entitlements Required: appliance_create

URI Parameters

HTTP Request Body Parameters

A :ref:`osGroup-object` object

Example Request

curl "https://uforge.example.com/api/users/{uid}/appliances/{aid}/installProfile/{ipid}/groups" -X POST \
-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:osGroup xmlns:ns0="http://www.usharesoft.com/uforge">
        <groupIdAuto>true</groupIdAuto>
        <name>OS Group Example</name>
        <systemGroup>true</systemGroup>
</ns0:osGroup>
.. seealso::

         * :ref:`installProfileGroup-delete`
         * :ref:`installProfileGroup-deleteAll`
         * :ref:`installProfileGroup-get`
         * :ref:`installProfileGroup-getAll`
         * :ref:`installProfileGroup-update`
         * :ref:`installProfileUser-create`
         * :ref:`installProfileUser-deleteAll`
         * :ref:`installProfileUser-get`
         * :ref:`installProfileUser-getAll`
         * :ref:`installProfileUser-update`