1. Packages
  2. Packages
  3. OVH
  4. API Docs
  5. CloudQuota
Viewing docs for OVHCloud v2.17.0
published on Friday, Jul 17, 2026 by OVHcloud
ovh logo
Viewing docs for OVHCloud v2.17.0
published on Friday, Jul 17, 2026 by OVHcloud

    Manages the public cloud project quota: the applied quota profile per region and the prevent_automatic_quota_upgrade toggle. There is exactly one quota envelope per project, so this resource is a singleton — the project’s service name is used as the import id.

    Regions omitted from regions are left unchanged upstream.

    Create CloudQuota Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CloudQuota(name: string, args: CloudQuotaArgs, opts?: CustomResourceOptions);
    @overload
    def CloudQuota(resource_name: str,
                   args: CloudQuotaArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudQuota(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   prevent_automatic_quota_upgrade: Optional[bool] = None,
                   regions: Optional[Sequence[CloudQuotaRegionArgs]] = None,
                   service_name: Optional[str] = None)
    func NewCloudQuota(ctx *Context, name string, args CloudQuotaArgs, opts ...ResourceOption) (*CloudQuota, error)
    public CloudQuota(string name, CloudQuotaArgs args, CustomResourceOptions? opts = null)
    public CloudQuota(String name, CloudQuotaArgs args)
    public CloudQuota(String name, CloudQuotaArgs args, CustomResourceOptions options)
    
    type: ovh:CloudQuota
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "ovh_cloud_quota" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args CloudQuotaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CloudQuotaArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CloudQuotaArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudQuotaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudQuotaArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var cloudQuotaResource = new Ovh.CloudQuota("cloudQuotaResource", new()
    {
        PreventAutomaticQuotaUpgrade = false,
        Regions = new[]
        {
            new Ovh.Inputs.CloudQuotaRegionArgs
            {
                Profile = "string",
                Region = "string",
            },
        },
        ServiceName = "string",
    });
    
    example, err := ovh.NewCloudQuota(ctx, "cloudQuotaResource", &ovh.CloudQuotaArgs{
    	PreventAutomaticQuotaUpgrade: pulumi.Bool(false),
    	Regions: ovh.CloudQuotaRegionArray{
    		&ovh.CloudQuotaRegionArgs{
    			Profile: pulumi.String("string"),
    			Region:  pulumi.String("string"),
    		},
    	},
    	ServiceName: pulumi.String("string"),
    })
    
    resource "ovh_cloud_quota" "cloudQuotaResource" {
      lifecycle {
        create_before_destroy = true
      }
      prevent_automatic_quota_upgrade = false
      regions {
        profile = "string"
        region  = "string"
      }
      service_name = "string"
    }
    
    var cloudQuotaResource = new CloudQuota("cloudQuotaResource", CloudQuotaArgs.builder()
        .preventAutomaticQuotaUpgrade(false)
        .regions(CloudQuotaRegionArgs.builder()
            .profile("string")
            .region("string")
            .build())
        .serviceName("string")
        .build());
    
    cloud_quota_resource = ovh.CloudQuota("cloudQuotaResource",
        prevent_automatic_quota_upgrade=False,
        regions=[{
            "profile": "string",
            "region": "string",
        }],
        service_name="string")
    
    const cloudQuotaResource = new ovh.CloudQuota("cloudQuotaResource", {
        preventAutomaticQuotaUpgrade: false,
        regions: [{
            profile: "string",
            region: "string",
        }],
        serviceName: "string",
    });
    
    type: ovh:CloudQuota
    properties:
        preventAutomaticQuotaUpgrade: false
        regions:
            - profile: string
              region: string
        serviceName: string
    

    CloudQuota Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The CloudQuota resource accepts the following input properties:

    PreventAutomaticQuotaUpgrade bool
    — When true, automatic quota upgrades are disabled for this project.
    Regions List<CloudQuotaRegion>
    — Target quota profile per region:
    ServiceName string
    — Service name of the cloud project.
    PreventAutomaticQuotaUpgrade bool
    — When true, automatic quota upgrades are disabled for this project.
    Regions []CloudQuotaRegionArgs
    — Target quota profile per region:
    ServiceName string
    — Service name of the cloud project.
    prevent_automatic_quota_upgrade bool
    — When true, automatic quota upgrades are disabled for this project.
    regions list(object)
    — Target quota profile per region:
    service_name string
    — Service name of the cloud project.
    preventAutomaticQuotaUpgrade Boolean
    — When true, automatic quota upgrades are disabled for this project.
    regions List<CloudQuotaRegion>
    — Target quota profile per region:
    serviceName String
    — Service name of the cloud project.
    preventAutomaticQuotaUpgrade boolean
    — When true, automatic quota upgrades are disabled for this project.
    regions CloudQuotaRegion[]
    — Target quota profile per region:
    serviceName string
    — Service name of the cloud project.
    prevent_automatic_quota_upgrade bool
    — When true, automatic quota upgrades are disabled for this project.
    regions Sequence[CloudQuotaRegionArgs]
    — Target quota profile per region:
    service_name str
    — Service name of the cloud project.
    preventAutomaticQuotaUpgrade Boolean
    — When true, automatic quota upgrades are disabled for this project.
    regions List<Property Map>
    — Target quota profile per region:
    serviceName String
    — Service name of the cloud project.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CloudQuota resource produces the following output properties:

    Checksum string
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    CreatedAt string
    , updated_at — Envelope timestamps (RFC3339).
    CurrentState CloudQuotaCurrentState
    — Live state of the quota:
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceStatus string
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    UpdatedAt string
    Last update date (RFC3339).
    Checksum string
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    CreatedAt string
    , updated_at — Envelope timestamps (RFC3339).
    CurrentState CloudQuotaCurrentState
    — Live state of the quota:
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceStatus string
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    UpdatedAt string
    Last update date (RFC3339).
    checksum string
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    created_at string
    , updated_at — Envelope timestamps (RFC3339).
    current_state object
    — Live state of the quota:
    id string
    The provider-assigned unique ID for this managed resource.
    resource_status string
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    updated_at string
    Last update date (RFC3339).
    checksum String
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    createdAt String
    , updated_at — Envelope timestamps (RFC3339).
    currentState CloudQuotaCurrentState
    — Live state of the quota:
    id String
    The provider-assigned unique ID for this managed resource.
    resourceStatus String
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    updatedAt String
    Last update date (RFC3339).
    checksum string
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    createdAt string
    , updated_at — Envelope timestamps (RFC3339).
    currentState CloudQuotaCurrentState
    — Live state of the quota:
    id string
    The provider-assigned unique ID for this managed resource.
    resourceStatus string
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    updatedAt string
    Last update date (RFC3339).
    checksum str
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    created_at str
    , updated_at — Envelope timestamps (RFC3339).
    current_state CloudQuotaCurrentState
    — Live state of the quota:
    id str
    The provider-assigned unique ID for this managed resource.
    resource_status str
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    updated_at str
    Last update date (RFC3339).
    checksum String
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    createdAt String
    , updated_at — Envelope timestamps (RFC3339).
    currentState Property Map
    — Live state of the quota:
    id String
    The provider-assigned unique ID for this managed resource.
    resourceStatus String
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    updatedAt String
    Last update date (RFC3339).

    Look up Existing CloudQuota Resource

    Get an existing CloudQuota resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CloudQuotaState, opts?: CustomResourceOptions): CloudQuota
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            checksum: Optional[str] = None,
            created_at: Optional[str] = None,
            current_state: Optional[CloudQuotaCurrentStateArgs] = None,
            prevent_automatic_quota_upgrade: Optional[bool] = None,
            regions: Optional[Sequence[CloudQuotaRegionArgs]] = None,
            resource_status: Optional[str] = None,
            service_name: Optional[str] = None,
            updated_at: Optional[str] = None) -> CloudQuota
    func GetCloudQuota(ctx *Context, name string, id IDInput, state *CloudQuotaState, opts ...ResourceOption) (*CloudQuota, error)
    public static CloudQuota Get(string name, Input<string> id, CloudQuotaState? state, CustomResourceOptions? opts = null)
    public static CloudQuota get(String name, Output<String> id, CloudQuotaState state, CustomResourceOptions options)
    resources:  _:    type: ovh:CloudQuota    get:      id: ${id}
    import {
      to = ovh_cloud_quota.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Checksum string
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    CreatedAt string
    , updated_at — Envelope timestamps (RFC3339).
    CurrentState CloudQuotaCurrentState
    — Live state of the quota:
    PreventAutomaticQuotaUpgrade bool
    — When true, automatic quota upgrades are disabled for this project.
    Regions List<CloudQuotaRegion>
    — Target quota profile per region:
    ResourceStatus string
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    ServiceName string
    — Service name of the cloud project.
    UpdatedAt string
    Last update date (RFC3339).
    Checksum string
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    CreatedAt string
    , updated_at — Envelope timestamps (RFC3339).
    CurrentState CloudQuotaCurrentStateArgs
    — Live state of the quota:
    PreventAutomaticQuotaUpgrade bool
    — When true, automatic quota upgrades are disabled for this project.
    Regions []CloudQuotaRegionArgs
    — Target quota profile per region:
    ResourceStatus string
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    ServiceName string
    — Service name of the cloud project.
    UpdatedAt string
    Last update date (RFC3339).
    checksum string
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    created_at string
    , updated_at — Envelope timestamps (RFC3339).
    current_state object
    — Live state of the quota:
    prevent_automatic_quota_upgrade bool
    — When true, automatic quota upgrades are disabled for this project.
    regions list(object)
    — Target quota profile per region:
    resource_status string
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    service_name string
    — Service name of the cloud project.
    updated_at string
    Last update date (RFC3339).
    checksum String
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    createdAt String
    , updated_at — Envelope timestamps (RFC3339).
    currentState CloudQuotaCurrentState
    — Live state of the quota:
    preventAutomaticQuotaUpgrade Boolean
    — When true, automatic quota upgrades are disabled for this project.
    regions List<CloudQuotaRegion>
    — Target quota profile per region:
    resourceStatus String
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    serviceName String
    — Service name of the cloud project.
    updatedAt String
    Last update date (RFC3339).
    checksum string
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    createdAt string
    , updated_at — Envelope timestamps (RFC3339).
    currentState CloudQuotaCurrentState
    — Live state of the quota:
    preventAutomaticQuotaUpgrade boolean
    — When true, automatic quota upgrades are disabled for this project.
    regions CloudQuotaRegion[]
    — Target quota profile per region:
    resourceStatus string
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    serviceName string
    — Service name of the cloud project.
    updatedAt string
    Last update date (RFC3339).
    checksum str
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    created_at str
    , updated_at — Envelope timestamps (RFC3339).
    current_state CloudQuotaCurrentStateArgs
    — Live state of the quota:
    prevent_automatic_quota_upgrade bool
    — When true, automatic quota upgrades are disabled for this project.
    regions Sequence[CloudQuotaRegionArgs]
    — Target quota profile per region:
    resource_status str
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    service_name str
    — Service name of the cloud project.
    updated_at str
    Last update date (RFC3339).
    checksum String
    — Computed hash of the current target specification, used for optimistic concurrency on updates.
    createdAt String
    , updated_at — Envelope timestamps (RFC3339).
    currentState Property Map
    — Live state of the quota:
    preventAutomaticQuotaUpgrade Boolean
    — When true, automatic quota upgrades are disabled for this project.
    regions List<Property Map>
    — Target quota profile per region:
    resourceStatus String
    — Quota readiness in the system (CREATING, UPDATING, DELETING, OUT_OF_SYNC, READY, ERROR, SUSPENDED, UNKNOWN).
    serviceName String
    — Service name of the cloud project.
    updatedAt String
    Last update date (RFC3339).

    Supporting Types

    CloudQuotaCurrentState, CloudQuotaCurrentStateArgs

    AvailableProfiles List<CloudQuotaCurrentStateAvailableProfile>
    — All quota profiles offered to the project, with their per-service caps (compute, volume, network, loadbalancer, key_manager, share, keypair).
    PreventAutomaticQuotaUpgrade bool
    — When true, automatic quota upgrades are disabled for this project.
    Regions List<CloudQuotaCurrentStateRegion>
    — Target quota profile per region:
    AvailableProfiles []CloudQuotaCurrentStateAvailableProfile
    — All quota profiles offered to the project, with their per-service caps (compute, volume, network, loadbalancer, key_manager, share, keypair).
    PreventAutomaticQuotaUpgrade bool
    — When true, automatic quota upgrades are disabled for this project.
    Regions []CloudQuotaCurrentStateRegion
    — Target quota profile per region:
    available_profiles list(object)
    — All quota profiles offered to the project, with their per-service caps (compute, volume, network, loadbalancer, key_manager, share, keypair).
    prevent_automatic_quota_upgrade bool
    — When true, automatic quota upgrades are disabled for this project.
    regions list(object)
    — Target quota profile per region:
    availableProfiles List<CloudQuotaCurrentStateAvailableProfile>
    — All quota profiles offered to the project, with their per-service caps (compute, volume, network, loadbalancer, key_manager, share, keypair).
    preventAutomaticQuotaUpgrade Boolean
    — When true, automatic quota upgrades are disabled for this project.
    regions List<CloudQuotaCurrentStateRegion>
    — Target quota profile per region:
    availableProfiles CloudQuotaCurrentStateAvailableProfile[]
    — All quota profiles offered to the project, with their per-service caps (compute, volume, network, loadbalancer, key_manager, share, keypair).
    preventAutomaticQuotaUpgrade boolean
    — When true, automatic quota upgrades are disabled for this project.
    regions CloudQuotaCurrentStateRegion[]
    — Target quota profile per region:
    available_profiles Sequence[CloudQuotaCurrentStateAvailableProfile]
    — All quota profiles offered to the project, with their per-service caps (compute, volume, network, loadbalancer, key_manager, share, keypair).
    prevent_automatic_quota_upgrade bool
    — When true, automatic quota upgrades are disabled for this project.
    regions Sequence[CloudQuotaCurrentStateRegion]
    — Target quota profile per region:
    availableProfiles List<Property Map>
    — All quota profiles offered to the project, with their per-service caps (compute, volume, network, loadbalancer, key_manager, share, keypair).
    preventAutomaticQuotaUpgrade Boolean
    — When true, automatic quota upgrades are disabled for this project.
    regions List<Property Map>
    — Target quota profile per region:

    CloudQuotaCurrentStateAvailableProfile, CloudQuotaCurrentStateAvailableProfileArgs

    CloudQuotaCurrentStateAvailableProfileCompute, CloudQuotaCurrentStateAvailableProfileComputeArgs

    cores number
    instances number
    memory number
    cores Integer
    instances Integer
    memory Integer
    cores number
    instances number
    memory number
    cores Number
    instances Number
    memory Number

    CloudQuotaCurrentStateAvailableProfileKeyManager, CloudQuotaCurrentStateAvailableProfileKeyManagerArgs

    containers number
    secrets number
    containers Integer
    secrets Integer
    containers number
    secrets number
    containers Number
    secrets Number

    CloudQuotaCurrentStateAvailableProfileKeypair, CloudQuotaCurrentStateAvailableProfileKeypairArgs

    keypairs number
    keypairs Integer
    keypairs number
    keypairs Number

    CloudQuotaCurrentStateAvailableProfileLoadbalancer, CloudQuotaCurrentStateAvailableProfileLoadbalancerArgs

    health_monitors number
    l7_policies number
    l7_rules number
    listeners number
    loadbalancers number
    members number
    pools number
    healthMonitors Integer
    l7Policies Integer
    l7Rules Integer
    listeners Integer
    loadbalancers Integer
    members Integer
    pools Integer
    healthMonitors number
    l7Policies number
    l7Rules number
    listeners number
    loadbalancers number
    members number
    pools number
    healthMonitors Number
    l7Policies Number
    l7Rules Number
    listeners Number
    loadbalancers Number
    members Number
    pools Number

    CloudQuotaCurrentStateAvailableProfileNetwork, CloudQuotaCurrentStateAvailableProfileNetworkArgs

    floatingIps Integer
    gateways Integer
    networks Integer
    securityGroupRules Integer
    securityGroups Integer
    subnets Integer

    CloudQuotaCurrentStateAvailableProfileShare, CloudQuotaCurrentStateAvailableProfileShareArgs

    backup_size_total number
    backups number
    shares number
    size_total number
    snapshots number
    backupSizeTotal Integer
    backups Integer
    shares Integer
    sizeTotal Integer
    snapshots Integer
    backupSizeTotal number
    backups number
    shares number
    sizeTotal number
    snapshots number
    backupSizeTotal Number
    backups Number
    shares Number
    sizeTotal Number
    snapshots Number

    CloudQuotaCurrentStateAvailableProfileVolume, CloudQuotaCurrentStateAvailableProfileVolumeArgs

    backup_size_total number
    backups number
    size_total number
    snapshots number
    volumes number
    backupSizeTotal Integer
    backups Integer
    sizeTotal Integer
    snapshots Integer
    volumes Integer
    backupSizeTotal number
    backups number
    sizeTotal number
    snapshots number
    volumes number
    backupSizeTotal Number
    backups Number
    sizeTotal Number
    snapshots Number
    volumes Number

    CloudQuotaCurrentStateRegion, CloudQuotaCurrentStateRegionArgs

    compute object
    key_manager object
    keypair object
    loadbalancer object
    network object
    profile string
    — Quota profile to apply. Available values are exposed live in current_state.available_profiles.
    region string
    — Region where the profile applies (e.g. GRA11).
    share object
    volume object
    compute Property Map
    keyManager Property Map
    keypair Property Map
    loadbalancer Property Map
    network Property Map
    profile String
    — Quota profile to apply. Available values are exposed live in current_state.available_profiles.
    region String
    — Region where the profile applies (e.g. GRA11).
    share Property Map
    volume Property Map

    CloudQuotaCurrentStateRegionCompute, CloudQuotaCurrentStateRegionComputeArgs

    CloudQuotaCurrentStateRegionComputeCores, CloudQuotaCurrentStateRegionComputeCoresArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionComputeInstances, CloudQuotaCurrentStateRegionComputeInstancesArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionComputeMemory, CloudQuotaCurrentStateRegionComputeMemoryArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionKeyManager, CloudQuotaCurrentStateRegionKeyManagerArgs

    CloudQuotaCurrentStateRegionKeyManagerContainers, CloudQuotaCurrentStateRegionKeyManagerContainersArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionKeyManagerSecrets, CloudQuotaCurrentStateRegionKeyManagerSecretsArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionKeypair, CloudQuotaCurrentStateRegionKeypairArgs

    CloudQuotaCurrentStateRegionKeypairKeypairs, CloudQuotaCurrentStateRegionKeypairKeypairsArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionLoadbalancer, CloudQuotaCurrentStateRegionLoadbalancerArgs

    CloudQuotaCurrentStateRegionLoadbalancerHealthMonitors, CloudQuotaCurrentStateRegionLoadbalancerHealthMonitorsArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionLoadbalancerL7Policies, CloudQuotaCurrentStateRegionLoadbalancerL7PoliciesArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionLoadbalancerL7Rules, CloudQuotaCurrentStateRegionLoadbalancerL7RulesArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionLoadbalancerListeners, CloudQuotaCurrentStateRegionLoadbalancerListenersArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionLoadbalancerLoadbalancers, CloudQuotaCurrentStateRegionLoadbalancerLoadbalancersArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionLoadbalancerMembers, CloudQuotaCurrentStateRegionLoadbalancerMembersArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionLoadbalancerPools, CloudQuotaCurrentStateRegionLoadbalancerPoolsArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionNetwork, CloudQuotaCurrentStateRegionNetworkArgs

    CloudQuotaCurrentStateRegionNetworkFloatingIps, CloudQuotaCurrentStateRegionNetworkFloatingIpsArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionNetworkGateways, CloudQuotaCurrentStateRegionNetworkGatewaysArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionNetworkNetworks, CloudQuotaCurrentStateRegionNetworkNetworksArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionNetworkSecurityGroupRules, CloudQuotaCurrentStateRegionNetworkSecurityGroupRulesArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionNetworkSecurityGroups, CloudQuotaCurrentStateRegionNetworkSecurityGroupsArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionNetworkSubnets, CloudQuotaCurrentStateRegionNetworkSubnetsArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionShare, CloudQuotaCurrentStateRegionShareArgs

    CloudQuotaCurrentStateRegionShareBackupSizeTotal, CloudQuotaCurrentStateRegionShareBackupSizeTotalArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionShareBackups, CloudQuotaCurrentStateRegionShareBackupsArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionSharePerShareSize, CloudQuotaCurrentStateRegionSharePerShareSizeArgs

    Limit int
    Unit string
    Limit int
    Unit string
    limit number
    unit string
    limit Integer
    unit String
    limit number
    unit string
    limit int
    unit str
    limit Number
    unit String

    CloudQuotaCurrentStateRegionShareShareNetworks, CloudQuotaCurrentStateRegionShareShareNetworksArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionShareShares, CloudQuotaCurrentStateRegionShareSharesArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionShareSizeTotal, CloudQuotaCurrentStateRegionShareSizeTotalArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionShareSnapshotSizeTotal, CloudQuotaCurrentStateRegionShareSnapshotSizeTotalArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionShareSnapshots, CloudQuotaCurrentStateRegionShareSnapshotsArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionVolume, CloudQuotaCurrentStateRegionVolumeArgs

    CloudQuotaCurrentStateRegionVolumeBackupSizeTotal, CloudQuotaCurrentStateRegionVolumeBackupSizeTotalArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionVolumeBackups, CloudQuotaCurrentStateRegionVolumeBackupsArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionVolumePerVolumeSize, CloudQuotaCurrentStateRegionVolumePerVolumeSizeArgs

    Limit int
    Unit string
    Limit int
    Unit string
    limit number
    unit string
    limit Integer
    unit String
    limit number
    unit string
    limit int
    unit str
    limit Number
    unit String

    CloudQuotaCurrentStateRegionVolumeSizeTotal, CloudQuotaCurrentStateRegionVolumeSizeTotalArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionVolumeSnapshots, CloudQuotaCurrentStateRegionVolumeSnapshotsArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaCurrentStateRegionVolumeVolumes, CloudQuotaCurrentStateRegionVolumeVolumesArgs

    Limit int
    Unit string
    Used int
    Limit int
    Unit string
    Used int
    limit number
    unit string
    used number
    limit Integer
    unit String
    used Integer
    limit number
    unit string
    used number
    limit int
    unit str
    used int
    limit Number
    unit String
    used Number

    CloudQuotaRegion, CloudQuotaRegionArgs

    Profile string
    — Quota profile to apply. Available values are exposed live in current_state.available_profiles.
    Region string
    — Region where the profile applies (e.g. GRA11).
    Profile string
    — Quota profile to apply. Available values are exposed live in current_state.available_profiles.
    Region string
    — Region where the profile applies (e.g. GRA11).
    profile string
    — Quota profile to apply. Available values are exposed live in current_state.available_profiles.
    region string
    — Region where the profile applies (e.g. GRA11).
    profile String
    — Quota profile to apply. Available values are exposed live in current_state.available_profiles.
    region String
    — Region where the profile applies (e.g. GRA11).
    profile string
    — Quota profile to apply. Available values are exposed live in current_state.available_profiles.
    region string
    — Region where the profile applies (e.g. GRA11).
    profile str
    — Quota profile to apply. Available values are exposed live in current_state.available_profiles.
    region str
    — Region where the profile applies (e.g. GRA11).
    profile String
    — Quota profile to apply. Available values are exposed live in current_state.available_profiles.
    region String
    — Region where the profile applies (e.g. GRA11).

    Import

    The quota envelope is a singleton per project — import by service name only:

    bash

    $ pulumi import ovh:index/cloudQuota:CloudQuota this <service_name>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    ovh ovh/pulumi-ovh
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the ovh Terraform Provider.
    ovh logo
    Viewing docs for OVHCloud v2.17.0
    published on Friday, Jul 17, 2026 by OVHcloud

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial