For the complete documentation index, see llms.txt. This page is also available as Markdown.

Cloud Provider

The "Cloud Provider" is the cloud service provider where the resource will be created.

Get cloud providers

GET {{BASE_URL}}/api/cloud-providers

Get all available cloud providers for the creation of a resource.

Headers

Name
Type
Description

Authorization*

String

Bearer Token

[
    {
        "_id": "6548a383e2442d14b6bf9681",
        "name": "Azure",
        "isDisabled": false
    },
    {
        "_id": "6548a383e2442d14b6bf9682",
        "name": "AWS",
        "isDisabled": false
    },
    {
        "_id": "6548a383e2442d14b6bf9683",
        "name": "GCP",
        "isDisabled": false
    },
    {
        "_id": "6548a383e2442d14b6bf9684",
        "name": "OVH",
        "isDisabled": false
    },
    {
        "_id": "6548a383e2442d14b6bf9685",
        "name": "Kraud.Cloud",
        "isDisabled": false
    }
]

Last updated