Get Network Context Profile Attributes

Get Network Context Profile Attributes

Retrieves all available network context profile attributes and sub-attributes for the given NSX-T manager, based on the provided filter parameter. Supported filters are:

  • Org vDC ID (orgVdcId==[ID]) - | Return all the network context profile attributes for a specific Org vDC.
  • Network Provider ID (networkProviderId==[ID]) - | Returns all the network context profile attributes for a specific network provider.
  • VDC Group ID (vdcGroupId==[ID]) - | Returns all the network context profile attributes for a specific vDC Group.
Optionally filter by attribute type by adding a FIQL name parameter to the above filter (e.g. filter="_context== ;name=APP_ID") The following contexts are deprecated as of API version 38.0: Org vDC ID (_context==orgVdcId), Network Provider ID (_context==networkProviderId), VDC Group ID (_context==vdcGroupId)
Request
URI
GET
https://{api_host}/cloudapi/1.0.0/networkContextProfiles/attributes
COPY
Query Parameters
string
filter
Optional

Filter for a query. FIQL format.

string
sortAsc
Optional

Field to use for ascending sort

string
sortDesc
Optional

Field to use for descending sort


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns NetworkContextProfileAttributes of type(s) application/json;version=38.1
{
    "attributes": [
        {
            "type": "string",
            "values": [
                "ACTIVDIR",
                "AMQP",
                "*onenote.officeapps.live.com"
            ],
            "subAttributes": [
                {
                    "type": "string",
                    "values": [
                        "SSL_V3",
                        "TLS_DHE_RSA_WITH_AES_256_GCM_SHA384"
                    ]
                }
            ]
        }
    ]
}
attributes
Required

Array of network context profile attributes.


Availability
Added in 35.0
Network Context Profile Attributes Operations
GET
Get Network Context Profile Attributes