NSX-T Data Center REST API

RealizationStateQueryParameters (type)

{
  "description": "Query parameters that allow checking the realization status of logical entities such as firewall rules and sections.",
  "id": "RealizationStateQueryParameters",
  "module_id": "RealizationState",
  "properties": {
    "barrier_id": {
      "deprecated": true,
      "description": "The system checks to ensure that the logical entity is realized or not at least at the given barrier number. This parameter has been deprecated. Please use request_id instead.",
      "minimum": 0,
      "readonly": false,
      "required": false,
      "type": "integer"
    },
    "request_id": {
      "description": "Passing a request_id allows you to check if the changes to a logical entity made in a particular API request have been realized or not. The request_id is returned from each API request in the X-NSX-REQUESTID header. For example, to check if a change to a firewall rule has been realized, save the X-NSX-REQUESTID header value returned from the PUT /api/v1/firewall/sections/<section-id>/rules/<rule-id> call, then add ?request_id=<id> to the GET /api/v1/firewall/rules/<rule-id>/state API call.",
      "readonly": false,
      "required": false,
      "title": "Realization request ID",
      "type": "string"
    }
  },
  "title": "Realization state request query parameters",
  "type": "object"
}