Get Additional NF Metadata

get

/rest/{versionId}/inventory/nfMgmt/nfCategories/{nfCategoryId}/nfTypes/{nfTypeName}

Use this (GET) method to display Network Function (NF) type parameters. For example, an NF type can be a device or device cluster.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : nfConfig
Type: object
Show Source
Nested Schema : nfCategory
Type: object
Show Source
Nested Schema : nfcConfig
Type: array
Show Source
Nested Schema : nfType
Type: object
Show Source
Nested Schema : parameter
Type: array
Show Source
Nested Schema : nfType
Type: array
Show Source
Nested Schema : nfcConfig
Type: object
Show Source
Nested Schema : deviceConfig
Type: array
Show Source
Nested Schema : parameter
Type: array
Show Source
Nested Schema : deviceConfig
Type: object
Show Source
Nested Schema : parameter
Type: array
Show Source
Nested Schema : parameter
Type: object
Show Source
Nested Schema : validValue
Type: array
Show Source
Nested Schema : validLists
Type: array
Show Source

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

The following example shows how to retrieve NF configuration parameter information for the specified NF type by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL

Example of cURL Data

The following shows an example of cURL data sent with the request.

curl -v -b sessionid.txt -X GET -H"Content-Type: application/xml" -H"Accept: application/xml" http://localhost:8080/rest/v1.1/inventory/nfMgmt/nfCategories/ID6/nfTypes/Device%20Cluster

Example of Response Body

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

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<nfConfig>
  <name/>
  <nfCategory>
    <name>SD</name>
    <product>Session Delivery</product>
    <vendor>Oracle</vendor>
  </nfCategory>
  <nfType>
    <name>Device Cluster</name>
  </nfType>
  <parameters>
    <parameter>
      <description>The description for this network function</description>
      <name>description</name>
      <readOnly>false</readOnly>
      <valueType>String</valueType>
    </parameter>
    <parameter>
      <description>The component type for devices in this device cluster</description>
      <name>sg.component.type</name>
      <readOnly>false</readOnly>
      <validValues>
        <validValue>SBC</validValue>
        <validValue>SR</validValue>
        <validValue>SLB</validValue>
        <validValue>CSM</validValue>
        <validValue>SLRM</validValue>
        <validValue>MSG</validValue>
      </validValues>
      <valueType>SingleSelection</valueType>
    </parameter>
    <parameter>
      <description>The name of the device cluster group</description>
      <name>sg.device.cluster.name</name>
      <readOnly>false</readOnly>
      <valueType>String</valueType>
    </parameter>
    <parameter>
      <description>The Redundancy Type for all devices belonging to this cluster</description>
      <name>sg.redundancy.type</name>
      <readOnly>false</readOnly>
      <validValues>
        <validValue>HA</validValue>
        <validValue>STANDALONE</validValue>
      </validValues>
      <valueType>SingleSelection</valueType>
    </parameter>
  </parameters>
  <parentGroupFullName/>
</nfConfig>
Back to Top