VCF Automation API

VCF Automation API

A multi-cloud Blueprint API for VCF Automation

This page describes the RESTful APIs for Blueprint. The APIs facilitate CRUD operations on the various resources and entities used throughout Blueprint (Blueprints, Blueprint Terraform Integrations , PropertyGroups , etc.) and allow operations on them (creating a Blueprint, creating a Property group, etc.).

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

Example:

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

    /blueprint/api/blueprints?$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.

    /blueprint/api/blueprints?$top=10&$skip=2