Automation Orchestrator Gateway API

Automation Orchestrator Gateway API

The Orchestrator Gateway API provides a gateway to Orchestrator instances for services that are running on VCF Automation.

Example:

  1. $orderby - $orderby returns a result with the rows being sorted by the values of provided attribute.

    /vro/workflows?$orderby=name%20desc

  2. $top, $skip - $top returns the requested number of resources. Used with $skip, the client can skip a specific number of resources.

    /vro/workflows?$top=10&$skip=2

  3. page and size - page used in conjunction with size helps in pagination of resources.

    /vro/workflows?page=0&size=5

  4. $filter - $filter returns a subset of resources that satisfy the specific predicate expression.

    /vro/workflows?$filter=startswith(name, 'Act')
    /vro/workflows?$filter=toupper(name) eq 'ACTIVATE'
    /vro/workflows?$filter=substringof('renameVM', name)
    /vro/workflows?$filter=name eq 'ABCD'