Provisioning Infrastructure with the Infrastructure Manager REST API

You can provision infrastructure using the functionality exposed by the Infrastructure Manager REST API.

The REST API provides calls for two kinds of tasks: Adminstration and provisioning.

For details on all available REST API endpoints, their required parameters, and the related response calls, see the REST API documentation at the following link:

https://docs.automic.com/documentation/webhelp/english/all/components/DOCU/12.3/REST%20API/Infrastructure.Manager/index.html

A simplified process of infrastructure provisioning with calls from the REST API would look like this:

  1. Connect a repository to the Infrastructure Manager with the following HTTP request:

    POST /provisioning/api/v2/repositories

  2. Create an infrastructure provider (on which you want to be able to provision infrastructures) with the following HTTP request:

    POST /provisioning/api/v2/infrastructure_providers

  3. Provision an infrastructure on one of your infrastructure providers using the following HTTP request:

    POST /provisioning/api/v2/infrastructures

  4. Get a list of the infrastructure executions with the following HTTP request:

    GET /provisioning/api/v2/infrastructures/{id}/executions

See also: