NSX-T Data Center REST API

Associated URIs:

API Description API Path

List communication maps


List all communication maps for a domain.
GET /policy/api/v1/infra/domains/{domain-id}/communication-maps (Deprecated)

Deletes a communication map from this domain


Deletes the communication map along with all the communication entries
DELETE /policy/api/v1/infra/domains/{domain-id}/communication-maps/{communication-map-id} (Deprecated)

Read communication-map


Read communication-map for a domain.
GET /policy/api/v1/infra/domains/{domain-id}/communication-maps/{communication-map-id} (Deprecated)

Patch communication map


Patch the communication map for a domain. If a communication map for the
given communication-map-id is not present, the object will get created and
if it is present it will be updated. This is a full replace
PATCH /policy/api/v1/infra/domains/{domain-id}/communication-maps/{communication-map-id} (Deprecated)

Revise the positioning of communication maps


This is used to set a precedence of a communication map w.r.t others.
POST /policy/api/v1/infra/domains/{domain-id}/communication-maps/{communication-map-id}?action=revise (Deprecated)

Create or Update communication map


Create or Update the communication map for a domain. This is a full replace.
All the CommunicationEntries are replaced.
PUT /policy/api/v1/infra/domains/{domain-id}/communication-maps/{communication-map-id} (Deprecated)

List CommunicationEntries


List CommunicationEntries
GET /policy/api/v1/infra/domains/{domain-id}/communication-maps/{communication-map-id}/communication-entries (Deprecated)

Delete CommunicationEntry


Delete CommunicationEntry
DELETE /policy/api/v1/infra/domains/{domain-id}/communication-maps/{communication-map-id}/communication-entries/{communication-entry-id} (Deprecated)

Read CommunicationEntry


Read CommunicationEntry
GET /policy/api/v1/infra/domains/{domain-id}/communication-maps/{communication-map-id}/communication-entries/{communication-entry-id} (Deprecated)

Patch a CommunicationEntry


Patch the CommunicationEntry. If a communication entry for the given
communication-entry-id is not present, the object will get created and if
it is present it will be updated. This is a full replace
PATCH /policy/api/v1/infra/domains/{domain-id}/communication-maps/{communication-map-id}/communication-entries/{communication-entry-id} (Deprecated)

Revise the positioning of communication entry


This is used to re-order a communictation entry within a communication map.
POST /policy/api/v1/infra/domains/{domain-id}/communication-maps/{communication-map-id}/communication-entries/{communication-entry-id}?action=revise (Deprecated)

Create or update a CommunicationEntry


Update the CommunicationEntry. If a CommunicationEntry with the communication-entry-id
is not already present, this API fails with a 404. Creation of CommunicationEntries
is not allowed using this API.
PUT /policy/api/v1/infra/domains/{domain-id}/communication-maps/{communication-map-id}/communication-entries/{communication-entry-id} (Deprecated)