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. Admin
  4. Quotas

Provider quota

Section of receiving quotas from the provider. Note that we should not assign quotas to teams that exceed the provider's quotas. This is because the provider will check the quotas when creating resources and will not allow more resources to be created than the quotas allow.

Get quotas

GET {{BASE_URL}}/admin/api/provider-quotas

Get all quotas from the provider.

Headers

Name
Type
Description

Api-Key*

String

Admin api key

[
    {
        "id": "08025354-8f54-44f5-af60-cb0d20f7b998",
        "provider": "Azure",
        "quotas": [
            {
                "name": "Standard DCASv5 Family vCPUs",
                "limit": 4,
                "usage": 2,
                "region": "northeurope",
                "provider": "Azure",
                "id": "c0a9dbb7-2ead-4a71-969f-2e707619c094"
            },
            {
                "name": "Standard DCASv5 Family vCPUs",
                "limit": 4,
                "usage": 0,
                "region": "westeurope",
                "provider": "Azure",
                "id": "96039af1-fec2-4508-8098-a0d932a157fa"
            }
        ]
    },
    {
        "id": "b9599790-0080-487b-8f55-072f0ef59e87",
        "provider": "AWS",
        "quotas": [
            {
                "name": "Attachments per VPC",
                "limit": 5,
                "usage": 1,
                "region": "eu-west-1",
                "provider": "AWS",
                "id": "c21321ee-0334-486b-81a3-8254f0cbc539"
            }
        ]
    },
    {
        "id": "94e23929-7377-4aa8-adae-eac84da53b0c",
        "provider": "Kraud.Cloud",
        "quotas": [
            {
                "name": "Public Networks (IPv4)",
                "limit": 3,
                "usage": 0,
                "region": "berlin",
                "provider": "Kraud",
                "id": "5dcc24f1-582e-4b20-8bc2-47c3b7dc9090"
            },
            {
                "name": "CPU",
                "limit": "20",
                "usage": 0,
                "region": "berlin",
                "provider": "Kraud",
                "id": "85809c3b-15a3-45ed-a04f-9937e02baa12"
            },
            {
                "name": "Memory",
                "limit": "20G",
                "usage": "0.0G",
                "region": "berlin",
                "provider": "Kraud",
                "id": "5a196be1-dfbf-4999-b08c-cbffe8f57506"
            },
            {
                "name": "General Purpose SSD",
                "limit": "240G",
                "usage": "2.6G",
                "region": "berlin",
                "provider": "Kraud",
                "id": "60ed3610-bb07-4931-bc38-e8ed3a7dc03e"
            },
            {
                "name": "Redundancy Reduced HDD",
                "limit": "40G",
                "usage": "0.0G",
                "region": "berlin",
                "provider": "Kraud",
                "id": "bf02be3d-5a1f-4ece-b1a5-2b8e9a2f4e21"
            }
        ]
    }
]

Last updated 1 year ago

Was this helpful?