1. Packages
  2. Outscale Provider
  3. API Docs
  4. getQuotas
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

outscale.getQuotas

Explore with Pulumi AI

outscale logo
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

    Provides information about quotas.

    For more information on this resource, see the User Guide.
    For more information on this resource actions, see the API documentation.

    Example Usage

    Read specific quotas

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const vpcQuotas01 = outscale.getQuotas({
        filters: [{
            name: "collections",
            values: ["VPC"],
        }],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    vpc_quotas01 = outscale.get_quotas(filters=[{
        "name": "collections",
        "values": ["VPC"],
    }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := outscale.GetQuotas(ctx, &outscale.GetQuotasArgs{
    			Filters: []outscale.GetQuotasFilter{
    				{
    					Name: "collections",
    					Values: []string{
    						"VPC",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var vpcQuotas01 = Outscale.GetQuotas.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetQuotasFilterInputArgs
                {
                    Name = "collections",
                    Values = new[]
                    {
                        "VPC",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.OutscaleFunctions;
    import com.pulumi.outscale.inputs.GetQuotasArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var vpcQuotas01 = OutscaleFunctions.getQuotas(GetQuotasArgs.builder()
                .filters(GetQuotasFilterArgs.builder()
                    .name("collections")
                    .values("VPC")
                    .build())
                .build());
    
        }
    }
    
    variables:
      vpcQuotas01:
        fn::invoke:
          function: outscale:getQuotas
          arguments:
            filters:
              - name: collections
                values:
                  - VPC
    

    Read all quotas

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const allQuotas = outscale.getQuotas({});
    
    import pulumi
    import pulumi_outscale as outscale
    
    all_quotas = outscale.get_quotas()
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := outscale.GetQuotas(ctx, &outscale.GetQuotasArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var allQuotas = Outscale.GetQuotas.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.OutscaleFunctions;
    import com.pulumi.outscale.inputs.GetQuotasArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var allQuotas = OutscaleFunctions.getQuotas();
    
        }
    }
    
    variables:
      allQuotas:
        fn::invoke:
          function: outscale:getQuotas
          arguments: {}
    

    Using getQuotas

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getQuotas(args: GetQuotasArgs, opts?: InvokeOptions): Promise<GetQuotasResult>
    function getQuotasOutput(args: GetQuotasOutputArgs, opts?: InvokeOptions): Output<GetQuotasResult>
    def get_quotas(filters: Optional[Sequence[GetQuotasFilter]] = None,
                   id: Optional[str] = None,
                   opts: Optional[InvokeOptions] = None) -> GetQuotasResult
    def get_quotas_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetQuotasFilterArgs]]]] = None,
                   id: Optional[pulumi.Input[str]] = None,
                   opts: Optional[InvokeOptions] = None) -> Output[GetQuotasResult]
    func GetQuotas(ctx *Context, args *GetQuotasArgs, opts ...InvokeOption) (*GetQuotasResult, error)
    func GetQuotasOutput(ctx *Context, args *GetQuotasOutputArgs, opts ...InvokeOption) GetQuotasResultOutput

    > Note: This function is named GetQuotas in the Go SDK.

    public static class GetQuotas 
    {
        public static Task<GetQuotasResult> InvokeAsync(GetQuotasArgs args, InvokeOptions? opts = null)
        public static Output<GetQuotasResult> Invoke(GetQuotasInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetQuotasResult> getQuotas(GetQuotasArgs args, InvokeOptions options)
    public static Output<GetQuotasResult> getQuotas(GetQuotasArgs args, InvokeOptions options)
    
    fn::invoke:
      function: outscale:index/getQuotas:getQuotas
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetQuotasFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    Id string
    Filters []GetQuotasFilter
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    Id string
    filters List<GetQuotasFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id String
    filters GetQuotasFilter[]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id string
    filters Sequence[GetQuotasFilter]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id str
    filters List<Property Map>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id String

    getQuotas Result

    The following output properties are available:

    Id string
    Quotas List<GetQuotasQuota>
    One or more quotas associated with the account.
    RequestId string
    Filters List<GetQuotasFilter>
    Id string
    Quotas []GetQuotasQuota
    One or more quotas associated with the account.
    RequestId string
    Filters []GetQuotasFilter
    id String
    quotas List<GetQuotasQuota>
    One or more quotas associated with the account.
    requestId String
    filters List<GetQuotasFilter>
    id string
    quotas GetQuotasQuota[]
    One or more quotas associated with the account.
    requestId string
    filters GetQuotasFilter[]
    id str
    quotas Sequence[GetQuotasQuota]
    One or more quotas associated with the account.
    request_id str
    filters Sequence[GetQuotasFilter]
    id String
    quotas List<Property Map>
    One or more quotas associated with the account.
    requestId String
    filters List<Property Map>

    Supporting Types

    GetQuotasFilter

    Name string
    The unique name of the quota.
    Values List<string>
    Name string
    The unique name of the quota.
    Values []string
    name String
    The unique name of the quota.
    values List<String>
    name string
    The unique name of the quota.
    values string[]
    name str
    The unique name of the quota.
    values Sequence[str]
    name String
    The unique name of the quota.
    values List<String>

    GetQuotasQuota

    AccountId string
    The account ID of the owner of the quotas.
    Description string
    The description of the quota.
    MaxValue double
    The maximum value of the quota for the account (if there is no limit, 0).
    Name string
    The unique name of the quota.
    QuotaCollection string
    The group name of the quota.
    QuotaType string
    The ressource ID if it is a resource-specific quota, global if it is not.
    ShortDescription string
    The description of the quota.
    UsedValue double
    The limit value currently used by the account.
    AccountId string
    The account ID of the owner of the quotas.
    Description string
    The description of the quota.
    MaxValue float64
    The maximum value of the quota for the account (if there is no limit, 0).
    Name string
    The unique name of the quota.
    QuotaCollection string
    The group name of the quota.
    QuotaType string
    The ressource ID if it is a resource-specific quota, global if it is not.
    ShortDescription string
    The description of the quota.
    UsedValue float64
    The limit value currently used by the account.
    accountId String
    The account ID of the owner of the quotas.
    description String
    The description of the quota.
    maxValue Double
    The maximum value of the quota for the account (if there is no limit, 0).
    name String
    The unique name of the quota.
    quotaCollection String
    The group name of the quota.
    quotaType String
    The ressource ID if it is a resource-specific quota, global if it is not.
    shortDescription String
    The description of the quota.
    usedValue Double
    The limit value currently used by the account.
    accountId string
    The account ID of the owner of the quotas.
    description string
    The description of the quota.
    maxValue number
    The maximum value of the quota for the account (if there is no limit, 0).
    name string
    The unique name of the quota.
    quotaCollection string
    The group name of the quota.
    quotaType string
    The ressource ID if it is a resource-specific quota, global if it is not.
    shortDescription string
    The description of the quota.
    usedValue number
    The limit value currently used by the account.
    account_id str
    The account ID of the owner of the quotas.
    description str
    The description of the quota.
    max_value float
    The maximum value of the quota for the account (if there is no limit, 0).
    name str
    The unique name of the quota.
    quota_collection str
    The group name of the quota.
    quota_type str
    The ressource ID if it is a resource-specific quota, global if it is not.
    short_description str
    The description of the quota.
    used_value float
    The limit value currently used by the account.
    accountId String
    The account ID of the owner of the quotas.
    description String
    The description of the quota.
    maxValue Number
    The maximum value of the quota for the account (if there is no limit, 0).
    name String
    The unique name of the quota.
    quotaCollection String
    The group name of the quota.
    quotaType String
    The ressource ID if it is a resource-specific quota, global if it is not.
    shortDescription String
    The description of the quota.
    usedValue Number
    The limit value currently used by the account.

    Package Details

    Repository
    outscale outscale/terraform-provider-outscale
    License
    Notes
    This Pulumi package is based on the outscale Terraform Provider.
    outscale logo
    outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale