Enclaive Multi Cloud Platform
HomeDocumentationTutorialsTry Cloud
  • Enclaive Multi Cloud Platform
  • Documentation
    • What is EMCP?
    • Why use EMCP?
    • Features
      • Virtual HSM
      • Vault
      • Nitride
      • Buckypaper
      • Dyneemes
      • Morphism
    • Supported Cloud Platforms
  • Tutorials
    • Buckypaper
      • Create a Buckypaper VM
      • Connect with SSH
      • Manage DNS
        • Cloudflare
      • Tag Buckypaper
      • Secure your VM with Firewall
      • Turn on/off Buckypapers
      • Destroy Buckypapers
    • Dyneemes
      • Create clusters
      • Connect to a cluster
      • Setup advanced monitoring
      • Upgrade without data loss
      • Add nodes and node pools
      • Drain and restart nodes
    • Data-in-use encrypting Database
      • Create a database cluster
      • Configure CNAME DNS record
      • Delete Applications
    • Applications
      • Create Nextcloud Hub
      • Configure CNAME DNS record
      • Delete Applications
      • After the installation
    • Billing
      • Add/Update payment method
      • Add/Change address
      • Add/Change VAT
    • Settings
      • Manage Team
        • Create a team
        • Delete a team
        • Invite team members
        • Remove team members
      • Bring your own Subscription
        • Azure
        • AWS
        • Google Cloud Platform
    • Account
      • Registration
      • Login
      • Delete account
  • Developers
    • API
      • Console
        • Auth
          • JWKS
        • Account
          • Need
        • Projects
          • Activity
        • Manage
          • Application
            • DNS
          • Database
          • Kubernetes
          • Virtual Machine
            • Security rule
          • Configurations
            • Location
            • Image
            • Price
            • Size
            • Provider
            • Cloud Provider
          • Attestation
        • vHSM
          • BYOS
          • User Storage
        • Settings
          • Team
          • Invite
        • Billing
          • Settings
          • Invoice
          • Cost
          • Promo - TODO
        • Support
          • Hubspot Files
          • Ticket
      • Admin
        • Auth
        • Accounts
          • Team
            • User
            • Application
            • Virtual machine
            • Database
            • Cluster
            • Resource
        • Quotas
          • Default quota
          • Provider quota
          • Team quota
        • Invoices
  • Resources
    • Blog
    • GitHub
    • Youtube
    • CCx101
Powered by GitBook
On this page

Was this helpful?

  1. Developers
  2. API
  3. Console
  4. Manage
  5. Configurations

Provider

The "Provider" subsection contains a list of cloud providers categorized by resource type (app, db, vm, k8s), enabling users to select the appropriate cloud platform for their specific resource needs.

Get providers

GET {{BASE_URL}}/api/providers

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

Query Parameters

Name
Type
Description

type*

String

vm, db, app, k8sNode, k8sControlPlane

Headers

Name
Type
Description

Authorization*

String

Bearer Token

[
    {
        "type": "vm",
        "isDisabled": false,
        "_id": "6548a383e2442d14b6bf9687",
        "cloudProvider": {
            "_id": "6548a383e2442d14b6bf9681",
            "name": "Azure",
            "isDisabled": false
        }
    },
    {
        "type": "vm",
        "isDisabled": false,
        "_id": "6548a383e2442d14b6bf9688",
        "cloudProvider": {
            "_id": "6548a383e2442d14b6bf9682",
            "name": "AWS",
            "isDisabled": false
        }
    },
    {
        "type": "vm",
        "isDisabled": false,
        "_id": "6548a383e2442d14b6bf968b",
        "cloudProvider": {
            "_id": "6548a383e2442d14b6bf9685",
            "name": "Kraud.Cloud",
            "isDisabled": false
        }
    },
    {
        "type": "vm",
        "isDisabled": true,
        "_id": "6548a383e2442d14b6bf9689",
        "cloudProvider": {
            "_id": "6548a383e2442d14b6bf9683",
            "name": "GCP",
            "isDisabled": false
        }
    },
    {
        "type": "vm",
        "isDisabled": true,
        "_id": "6548a383e2442d14b6bf968a",
        "cloudProvider": {
            "_id": "6548a383e2442d14b6bf9684",
            "name": "OVH",
            "isDisabled": false
        }
    }
]

Last updated 1 year ago

Was this helpful?