Create a Configuration Element

post

/{versionId}/configuration/deviceConfigs/{deviceId}/configElements/create

Create a configuration element object with default values. All configurations that a device supports are modeled as a Type-Of configuration element which has configuration attributes. For example, if a configuration element of the type NetworkInterface is requested, a configuration object is returned with default populated attributes that can be used to configure the network-interface element instance. Similarly, when a configuration element of type RealmConfig is requested, it returns a configuration object with default populated attributes that can be used to configure the realm-config element instance and so on. This is a convenience method that allows a user to ask the server to construct any type of configuration element that is based on the current model and release that the targeted device is running. The create method returns a configuration element object but does not persist this to the SDM database. The user can modify the configuration element, and then use the add method to add this object to the targeted device configuration. Refer to the Add an Element Type and Add an Element Type (POST) methods for more information.

Request

Path Parameters
Back to Top

Response

200 Response

400 Response

The user input is invalid.

401 Response

The session ID is invalid.

404 Response

The object (resource URI, device, and so on) of your input request cannot be found.
Back to Top

Examples

Examples of Accessing the API

See Authenticate for how to acquire a session cookie.

The following example shows how to create a configuration element using curl.

curl -X POST \
    -b sessionid.txt \
    -d@request.json \
    --header "Accept: application/xml" \
    --header "Content-Type: application/xml" \
    "https://example.com:8443/rest/v1.3/configuration/deviceConfigs/ID9/configElements/create"

The following example shows how to create a configuration element using Python.

import requests
from lxml import etree
url = "https://example.com:8443/rest/v1.3/configuration/deviceConfigs/ID9/configElements/create"
headers = { "Accept":"application/xml", "Content-Type: application/xml", "Cookie":cookie }
data = etree.tostring(etree.parse("request.json"))
resp = requests.post(url, headers=headers, data=data)

Example of the Request Body

The following example shows the contents of the request body in XML.

<?xml version="1.0" encoding="UTF-8"?>
<elementTypeRequest>
  <elementTypePath>realmConfig/networkInterfaceId</elementTypePath>
</elementTypeRequest>

The following example shows the contents of the request body in JSON.

{
  "elementTypePath": "realmConfig/networkInterfaceId"
}

Example of the Response Body

The following example shows the contents of the response body in XML.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<configElement>
    <attributes>
        <name>subPortId</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>name</name>
        <value></value>
    </attributes>
    <attributes>
        <name>family</name>
        <value></value>
    </attributes>
    <elementTypePath>realmConfig/networkInterfaceId</elementTypePath>
</configElement>

The following example shows the contents of the response body in JSON.

{
  "attributes": [
    {
      "name": "subPortId",
      "value": "0"
    },{
      "name": "name",
      "value": ""
    },{
      "name": "family",
      "value": ""
    }
  ],
  "elementTypePath": "realmConfig/networkInterfaceId"
}
Back to Top