VCF Automation API

VCF Automation API

A multi-cloud API for Cloud Automation Services

The APIs that list collections of resources also support OData like implementation. Below query params can be used across Assembler / Service Broker entities.

Example:

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

    /catalog/api/items?$orderby=name%20desc

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

    /catalog/api/items?$top=10&$skip=2

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

    /catalog/api/items?page=0&size=5