1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. maxcompute
  5. QuotaPlan
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.maxcompute.QuotaPlan

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    Provides a Max Compute Quota Plan resource.

    For information about Max Compute Quota Plan and how to use it, see What is Quota Plan.

    NOTE: Available since v1.242.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "terraform-example";
    const elasticReservedCu = config.get("elasticReservedCu") || "50";
    const _default = new alicloud.maxcompute.QuotaPlan("default", {
        nickname: "os_terrform_p",
        quota: {
            parameter: {
                elasticReservedCu: elasticReservedCu,
            },
            subQuotaInfoLists: [
                {
                    nickName: "sub_quota",
                    parameter: {
                        minCu: 0,
                        maxCu: 20,
                        elasticReservedCu: elasticReservedCu,
                    },
                },
                {
                    nickName: "os_terrform",
                    parameter: {
                        minCu: 50,
                        maxCu: 50,
                        elasticReservedCu: 0,
                    },
                },
            ],
        },
        planName: "quota_plan",
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    elastic_reserved_cu = config.get("elasticReservedCu")
    if elastic_reserved_cu is None:
        elastic_reserved_cu = "50"
    default = alicloud.maxcompute.QuotaPlan("default",
        nickname="os_terrform_p",
        quota={
            "parameter": {
                "elastic_reserved_cu": elastic_reserved_cu,
            },
            "sub_quota_info_lists": [
                {
                    "nick_name": "sub_quota",
                    "parameter": {
                        "min_cu": 0,
                        "max_cu": 20,
                        "elastic_reserved_cu": elastic_reserved_cu,
                    },
                },
                {
                    "nick_name": "os_terrform",
                    "parameter": {
                        "min_cu": 50,
                        "max_cu": 50,
                        "elastic_reserved_cu": 0,
                    },
                },
            ],
        },
        plan_name="quota_plan")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/maxcompute"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "terraform-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		elasticReservedCu := "50"
    		if param := cfg.Get("elasticReservedCu"); param != "" {
    			elasticReservedCu = param
    		}
    		_, err := maxcompute.NewQuotaPlan(ctx, "default", &maxcompute.QuotaPlanArgs{
    			Nickname: pulumi.String("os_terrform_p"),
    			Quota: &maxcompute.QuotaPlanQuotaArgs{
    				Parameter: &maxcompute.QuotaPlanQuotaParameterArgs{
    					ElasticReservedCu: pulumi.String(elasticReservedCu),
    				},
    				SubQuotaInfoLists: maxcompute.QuotaPlanQuotaSubQuotaInfoListArray{
    					&maxcompute.QuotaPlanQuotaSubQuotaInfoListArgs{
    						NickName: pulumi.String("sub_quota"),
    						Parameter: &maxcompute.QuotaPlanQuotaSubQuotaInfoListParameterArgs{
    							MinCu:             pulumi.Int(0),
    							MaxCu:             pulumi.Int(20),
    							ElasticReservedCu: pulumi.String(elasticReservedCu),
    						},
    					},
    					&maxcompute.QuotaPlanQuotaSubQuotaInfoListArgs{
    						NickName: pulumi.String("os_terrform"),
    						Parameter: &maxcompute.QuotaPlanQuotaSubQuotaInfoListParameterArgs{
    							MinCu:             pulumi.Int(50),
    							MaxCu:             pulumi.Int(50),
    							ElasticReservedCu: pulumi.Int(0),
    						},
    					},
    				},
    			},
    			PlanName: pulumi.String("quota_plan"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "terraform-example";
        var elasticReservedCu = config.Get("elasticReservedCu") ?? "50";
        var @default = new AliCloud.MaxCompute.QuotaPlan("default", new()
        {
            Nickname = "os_terrform_p",
            Quota = new AliCloud.MaxCompute.Inputs.QuotaPlanQuotaArgs
            {
                Parameter = new AliCloud.MaxCompute.Inputs.QuotaPlanQuotaParameterArgs
                {
                    ElasticReservedCu = elasticReservedCu,
                },
                SubQuotaInfoLists = new[]
                {
                    new AliCloud.MaxCompute.Inputs.QuotaPlanQuotaSubQuotaInfoListArgs
                    {
                        NickName = "sub_quota",
                        Parameter = new AliCloud.MaxCompute.Inputs.QuotaPlanQuotaSubQuotaInfoListParameterArgs
                        {
                            MinCu = 0,
                            MaxCu = 20,
                            ElasticReservedCu = elasticReservedCu,
                        },
                    },
                    new AliCloud.MaxCompute.Inputs.QuotaPlanQuotaSubQuotaInfoListArgs
                    {
                        NickName = "os_terrform",
                        Parameter = new AliCloud.MaxCompute.Inputs.QuotaPlanQuotaSubQuotaInfoListParameterArgs
                        {
                            MinCu = 50,
                            MaxCu = 50,
                            ElasticReservedCu = 0,
                        },
                    },
                },
            },
            PlanName = "quota_plan",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.maxcompute.QuotaPlan;
    import com.pulumi.alicloud.maxcompute.QuotaPlanArgs;
    import com.pulumi.alicloud.maxcompute.inputs.QuotaPlanQuotaArgs;
    import com.pulumi.alicloud.maxcompute.inputs.QuotaPlanQuotaParameterArgs;
    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 config = ctx.config();
            final var name = config.get("name").orElse("terraform-example");
            final var elasticReservedCu = config.get("elasticReservedCu").orElse("50");
            var default_ = new QuotaPlan("default", QuotaPlanArgs.builder()
                .nickname("os_terrform_p")
                .quota(QuotaPlanQuotaArgs.builder()
                    .parameter(QuotaPlanQuotaParameterArgs.builder()
                        .elasticReservedCu(elasticReservedCu)
                        .build())
                    .subQuotaInfoLists(                
                        QuotaPlanQuotaSubQuotaInfoListArgs.builder()
                            .nickName("sub_quota")
                            .parameter(QuotaPlanQuotaSubQuotaInfoListParameterArgs.builder()
                                .minCu("0")
                                .maxCu("20")
                                .elasticReservedCu(elasticReservedCu)
                                .build())
                            .build(),
                        QuotaPlanQuotaSubQuotaInfoListArgs.builder()
                            .nickName("os_terrform")
                            .parameter(QuotaPlanQuotaSubQuotaInfoListParameterArgs.builder()
                                .minCu("50")
                                .maxCu("50")
                                .elasticReservedCu("0")
                                .build())
                            .build())
                    .build())
                .planName("quota_plan")
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
      elasticReservedCu:
        type: string
        default: '50'
    resources:
      default:
        type: alicloud:maxcompute:QuotaPlan
        properties:
          nickname: os_terrform_p
          quota:
            parameter:
              elasticReservedCu: ${elasticReservedCu}
            subQuotaInfoLists:
              - nickName: sub_quota
                parameter:
                  minCu: '0'
                  maxCu: '20'
                  elasticReservedCu: ${elasticReservedCu}
              - nickName: os_terrform
                parameter:
                  minCu: '50'
                  maxCu: '50'
                  elasticReservedCu: '0'
          planName: quota_plan
    

    Create QuotaPlan Resource

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

    Constructor syntax

    new QuotaPlan(name: string, args: QuotaPlanArgs, opts?: CustomResourceOptions);
    @overload
    def QuotaPlan(resource_name: str,
                  args: QuotaPlanArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def QuotaPlan(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  nickname: Optional[str] = None,
                  plan_name: Optional[str] = None,
                  is_effective: Optional[bool] = None,
                  quota: Optional[QuotaPlanQuotaArgs] = None)
    func NewQuotaPlan(ctx *Context, name string, args QuotaPlanArgs, opts ...ResourceOption) (*QuotaPlan, error)
    public QuotaPlan(string name, QuotaPlanArgs args, CustomResourceOptions? opts = null)
    public QuotaPlan(String name, QuotaPlanArgs args)
    public QuotaPlan(String name, QuotaPlanArgs args, CustomResourceOptions options)
    
    type: alicloud:maxcompute:QuotaPlan
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args QuotaPlanArgs
    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 QuotaPlanArgs
    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 QuotaPlanArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args QuotaPlanArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args QuotaPlanArgs
    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 quotaPlanResource = new AliCloud.MaxCompute.QuotaPlan("quotaPlanResource", new()
    {
        Nickname = "string",
        PlanName = "string",
        IsEffective = false,
        Quota = new AliCloud.MaxCompute.Inputs.QuotaPlanQuotaArgs
        {
            Parameter = new AliCloud.MaxCompute.Inputs.QuotaPlanQuotaParameterArgs
            {
                ElasticReservedCu = 0,
                MaxCu = 0,
                MinCu = 0,
            },
            SubQuotaInfoLists = new[]
            {
                new AliCloud.MaxCompute.Inputs.QuotaPlanQuotaSubQuotaInfoListArgs
                {
                    NickName = "string",
                    Parameter = new AliCloud.MaxCompute.Inputs.QuotaPlanQuotaSubQuotaInfoListParameterArgs
                    {
                        ElasticReservedCu = 0,
                        MaxCu = 0,
                        MinCu = 0,
                    },
                },
            },
        },
    });
    
    example, err := maxcompute.NewQuotaPlan(ctx, "quotaPlanResource", &maxcompute.QuotaPlanArgs{
    	Nickname:    pulumi.String("string"),
    	PlanName:    pulumi.String("string"),
    	IsEffective: pulumi.Bool(false),
    	Quota: &maxcompute.QuotaPlanQuotaArgs{
    		Parameter: &maxcompute.QuotaPlanQuotaParameterArgs{
    			ElasticReservedCu: pulumi.Int(0),
    			MaxCu:             pulumi.Int(0),
    			MinCu:             pulumi.Int(0),
    		},
    		SubQuotaInfoLists: maxcompute.QuotaPlanQuotaSubQuotaInfoListArray{
    			&maxcompute.QuotaPlanQuotaSubQuotaInfoListArgs{
    				NickName: pulumi.String("string"),
    				Parameter: &maxcompute.QuotaPlanQuotaSubQuotaInfoListParameterArgs{
    					ElasticReservedCu: pulumi.Int(0),
    					MaxCu:             pulumi.Int(0),
    					MinCu:             pulumi.Int(0),
    				},
    			},
    		},
    	},
    })
    
    var quotaPlanResource = new QuotaPlan("quotaPlanResource", QuotaPlanArgs.builder()
        .nickname("string")
        .planName("string")
        .isEffective(false)
        .quota(QuotaPlanQuotaArgs.builder()
            .parameter(QuotaPlanQuotaParameterArgs.builder()
                .elasticReservedCu(0)
                .maxCu(0)
                .minCu(0)
                .build())
            .subQuotaInfoLists(QuotaPlanQuotaSubQuotaInfoListArgs.builder()
                .nickName("string")
                .parameter(QuotaPlanQuotaSubQuotaInfoListParameterArgs.builder()
                    .elasticReservedCu(0)
                    .maxCu(0)
                    .minCu(0)
                    .build())
                .build())
            .build())
        .build());
    
    quota_plan_resource = alicloud.maxcompute.QuotaPlan("quotaPlanResource",
        nickname="string",
        plan_name="string",
        is_effective=False,
        quota={
            "parameter": {
                "elastic_reserved_cu": 0,
                "max_cu": 0,
                "min_cu": 0,
            },
            "sub_quota_info_lists": [{
                "nick_name": "string",
                "parameter": {
                    "elastic_reserved_cu": 0,
                    "max_cu": 0,
                    "min_cu": 0,
                },
            }],
        })
    
    const quotaPlanResource = new alicloud.maxcompute.QuotaPlan("quotaPlanResource", {
        nickname: "string",
        planName: "string",
        isEffective: false,
        quota: {
            parameter: {
                elasticReservedCu: 0,
                maxCu: 0,
                minCu: 0,
            },
            subQuotaInfoLists: [{
                nickName: "string",
                parameter: {
                    elasticReservedCu: 0,
                    maxCu: 0,
                    minCu: 0,
                },
            }],
        },
    });
    
    type: alicloud:maxcompute:QuotaPlan
    properties:
        isEffective: false
        nickname: string
        planName: string
        quota:
            parameter:
                elasticReservedCu: 0
                maxCu: 0
                minCu: 0
            subQuotaInfoLists:
                - nickName: string
                  parameter:
                    elasticReservedCu: 0
                    maxCu: 0
                    minCu: 0
    

    QuotaPlan 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 QuotaPlan resource accepts the following input properties:

    Nickname string
    Quota Name
    PlanName string
    The Quota plan name. Start with a letter, containing letters, numbers, and underscores (_). It is no more than 64 characters long.
    IsEffective bool
    Whether to take effect immediately. “Valid values: true”
    .> NOTE: when other quota plans in the same quota group take effect, the effective quota group will become invalid. That is, IsEffective will become false. The effective quota plan cannot be deleted.
    Quota Pulumi.AliCloud.MaxCompute.Inputs.QuotaPlanQuota
    Quota property See quota below.
    Nickname string
    Quota Name
    PlanName string
    The Quota plan name. Start with a letter, containing letters, numbers, and underscores (_). It is no more than 64 characters long.
    IsEffective bool
    Whether to take effect immediately. “Valid values: true”
    .> NOTE: when other quota plans in the same quota group take effect, the effective quota group will become invalid. That is, IsEffective will become false. The effective quota plan cannot be deleted.
    Quota QuotaPlanQuotaArgs
    Quota property See quota below.
    nickname String
    Quota Name
    planName String
    The Quota plan name. Start with a letter, containing letters, numbers, and underscores (_). It is no more than 64 characters long.
    isEffective Boolean
    Whether to take effect immediately. “Valid values: true”
    .> NOTE: when other quota plans in the same quota group take effect, the effective quota group will become invalid. That is, IsEffective will become false. The effective quota plan cannot be deleted.
    quota QuotaPlanQuota
    Quota property See quota below.
    nickname string
    Quota Name
    planName string
    The Quota plan name. Start with a letter, containing letters, numbers, and underscores (_). It is no more than 64 characters long.
    isEffective boolean
    Whether to take effect immediately. “Valid values: true”
    .> NOTE: when other quota plans in the same quota group take effect, the effective quota group will become invalid. That is, IsEffective will become false. The effective quota plan cannot be deleted.
    quota QuotaPlanQuota
    Quota property See quota below.
    nickname str
    Quota Name
    plan_name str
    The Quota plan name. Start with a letter, containing letters, numbers, and underscores (_). It is no more than 64 characters long.
    is_effective bool
    Whether to take effect immediately. “Valid values: true”
    .> NOTE: when other quota plans in the same quota group take effect, the effective quota group will become invalid. That is, IsEffective will become false. The effective quota plan cannot be deleted.
    quota QuotaPlanQuotaArgs
    Quota property See quota below.
    nickname String
    Quota Name
    planName String
    The Quota plan name. Start with a letter, containing letters, numbers, and underscores (_). It is no more than 64 characters long.
    isEffective Boolean
    Whether to take effect immediately. “Valid values: true”
    .> NOTE: when other quota plans in the same quota group take effect, the effective quota group will become invalid. That is, IsEffective will become false. The effective quota plan cannot be deleted.
    quota Property Map
    Quota property See quota below.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing QuotaPlan Resource

    Get an existing QuotaPlan 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?: QuotaPlanState, opts?: CustomResourceOptions): QuotaPlan
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            is_effective: Optional[bool] = None,
            nickname: Optional[str] = None,
            plan_name: Optional[str] = None,
            quota: Optional[QuotaPlanQuotaArgs] = None) -> QuotaPlan
    func GetQuotaPlan(ctx *Context, name string, id IDInput, state *QuotaPlanState, opts ...ResourceOption) (*QuotaPlan, error)
    public static QuotaPlan Get(string name, Input<string> id, QuotaPlanState? state, CustomResourceOptions? opts = null)
    public static QuotaPlan get(String name, Output<String> id, QuotaPlanState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:maxcompute:QuotaPlan    get:      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:
    IsEffective bool
    Whether to take effect immediately. “Valid values: true”
    .> NOTE: when other quota plans in the same quota group take effect, the effective quota group will become invalid. That is, IsEffective will become false. The effective quota plan cannot be deleted.
    Nickname string
    Quota Name
    PlanName string
    The Quota plan name. Start with a letter, containing letters, numbers, and underscores (_). It is no more than 64 characters long.
    Quota Pulumi.AliCloud.MaxCompute.Inputs.QuotaPlanQuota
    Quota property See quota below.
    IsEffective bool
    Whether to take effect immediately. “Valid values: true”
    .> NOTE: when other quota plans in the same quota group take effect, the effective quota group will become invalid. That is, IsEffective will become false. The effective quota plan cannot be deleted.
    Nickname string
    Quota Name
    PlanName string
    The Quota plan name. Start with a letter, containing letters, numbers, and underscores (_). It is no more than 64 characters long.
    Quota QuotaPlanQuotaArgs
    Quota property See quota below.
    isEffective Boolean
    Whether to take effect immediately. “Valid values: true”
    .> NOTE: when other quota plans in the same quota group take effect, the effective quota group will become invalid. That is, IsEffective will become false. The effective quota plan cannot be deleted.
    nickname String
    Quota Name
    planName String
    The Quota plan name. Start with a letter, containing letters, numbers, and underscores (_). It is no more than 64 characters long.
    quota QuotaPlanQuota
    Quota property See quota below.
    isEffective boolean
    Whether to take effect immediately. “Valid values: true”
    .> NOTE: when other quota plans in the same quota group take effect, the effective quota group will become invalid. That is, IsEffective will become false. The effective quota plan cannot be deleted.
    nickname string
    Quota Name
    planName string
    The Quota plan name. Start with a letter, containing letters, numbers, and underscores (_). It is no more than 64 characters long.
    quota QuotaPlanQuota
    Quota property See quota below.
    is_effective bool
    Whether to take effect immediately. “Valid values: true”
    .> NOTE: when other quota plans in the same quota group take effect, the effective quota group will become invalid. That is, IsEffective will become false. The effective quota plan cannot be deleted.
    nickname str
    Quota Name
    plan_name str
    The Quota plan name. Start with a letter, containing letters, numbers, and underscores (_). It is no more than 64 characters long.
    quota QuotaPlanQuotaArgs
    Quota property See quota below.
    isEffective Boolean
    Whether to take effect immediately. “Valid values: true”
    .> NOTE: when other quota plans in the same quota group take effect, the effective quota group will become invalid. That is, IsEffective will become false. The effective quota plan cannot be deleted.
    nickname String
    Quota Name
    planName String
    The Quota plan name. Start with a letter, containing letters, numbers, and underscores (_). It is no more than 64 characters long.
    quota Property Map
    Quota property See quota below.

    Supporting Types

    QuotaPlanQuota, QuotaPlanQuotaArgs

    Parameter Pulumi.AliCloud.MaxCompute.Inputs.QuotaPlanQuotaParameter
    Level 2 Quota CU configuration See parameter below.
    SubQuotaInfoLists List<Pulumi.AliCloud.MaxCompute.Inputs.QuotaPlanQuotaSubQuotaInfoList>

    Secondary Quota list

    NOTE: need to list all secondary Quota See sub_quota_info_list below.

    Parameter QuotaPlanQuotaParameter
    Level 2 Quota CU configuration See parameter below.
    SubQuotaInfoLists []QuotaPlanQuotaSubQuotaInfoList

    Secondary Quota list

    NOTE: need to list all secondary Quota See sub_quota_info_list below.

    parameter QuotaPlanQuotaParameter
    Level 2 Quota CU configuration See parameter below.
    subQuotaInfoLists List<QuotaPlanQuotaSubQuotaInfoList>

    Secondary Quota list

    NOTE: need to list all secondary Quota See sub_quota_info_list below.

    parameter QuotaPlanQuotaParameter
    Level 2 Quota CU configuration See parameter below.
    subQuotaInfoLists QuotaPlanQuotaSubQuotaInfoList[]

    Secondary Quota list

    NOTE: need to list all secondary Quota See sub_quota_info_list below.

    parameter QuotaPlanQuotaParameter
    Level 2 Quota CU configuration See parameter below.
    sub_quota_info_lists Sequence[QuotaPlanQuotaSubQuotaInfoList]

    Secondary Quota list

    NOTE: need to list all secondary Quota See sub_quota_info_list below.

    parameter Property Map
    Level 2 Quota CU configuration See parameter below.
    subQuotaInfoLists List<Property Map>

    Secondary Quota list

    NOTE: need to list all secondary Quota See sub_quota_info_list below.

    QuotaPlanQuotaParameter, QuotaPlanQuotaParameterArgs

    ElasticReservedCu int

    The value of elastic Reserved CUs.

    NOTE: The total number of elastically reserved CUs in all the level-2 quotas is equal to the number of elastically reserved CUs in the level-1 quota..

    MaxCu int
    The value of maxCU in Reserved CUs.
    MinCu int
    The value of minCU in Reserved CUs.
    ElasticReservedCu int

    The value of elastic Reserved CUs.

    NOTE: The total number of elastically reserved CUs in all the level-2 quotas is equal to the number of elastically reserved CUs in the level-1 quota..

    MaxCu int
    The value of maxCU in Reserved CUs.
    MinCu int
    The value of minCU in Reserved CUs.
    elasticReservedCu Integer

    The value of elastic Reserved CUs.

    NOTE: The total number of elastically reserved CUs in all the level-2 quotas is equal to the number of elastically reserved CUs in the level-1 quota..

    maxCu Integer
    The value of maxCU in Reserved CUs.
    minCu Integer
    The value of minCU in Reserved CUs.
    elasticReservedCu number

    The value of elastic Reserved CUs.

    NOTE: The total number of elastically reserved CUs in all the level-2 quotas is equal to the number of elastically reserved CUs in the level-1 quota..

    maxCu number
    The value of maxCU in Reserved CUs.
    minCu number
    The value of minCU in Reserved CUs.
    elastic_reserved_cu int

    The value of elastic Reserved CUs.

    NOTE: The total number of elastically reserved CUs in all the level-2 quotas is equal to the number of elastically reserved CUs in the level-1 quota..

    max_cu int
    The value of maxCU in Reserved CUs.
    min_cu int
    The value of minCU in Reserved CUs.
    elasticReservedCu Number

    The value of elastic Reserved CUs.

    NOTE: The total number of elastically reserved CUs in all the level-2 quotas is equal to the number of elastically reserved CUs in the level-1 quota..

    maxCu Number
    The value of maxCU in Reserved CUs.
    minCu Number
    The value of minCU in Reserved CUs.

    QuotaPlanQuotaSubQuotaInfoList, QuotaPlanQuotaSubQuotaInfoListArgs

    NickName string
    The nickname of the level-2 quota.
    Parameter Pulumi.AliCloud.MaxCompute.Inputs.QuotaPlanQuotaSubQuotaInfoListParameter
    The parameters of level-1 quota.
    NickName string
    The nickname of the level-2 quota.
    Parameter QuotaPlanQuotaSubQuotaInfoListParameter
    The parameters of level-1 quota.
    nickName String
    The nickname of the level-2 quota.
    parameter QuotaPlanQuotaSubQuotaInfoListParameter
    The parameters of level-1 quota.
    nickName string
    The nickname of the level-2 quota.
    parameter QuotaPlanQuotaSubQuotaInfoListParameter
    The parameters of level-1 quota.
    nick_name str
    The nickname of the level-2 quota.
    parameter QuotaPlanQuotaSubQuotaInfoListParameter
    The parameters of level-1 quota.
    nickName String
    The nickname of the level-2 quota.
    parameter Property Map
    The parameters of level-1 quota.

    QuotaPlanQuotaSubQuotaInfoListParameter, QuotaPlanQuotaSubQuotaInfoListParameterArgs

    ElasticReservedCu int

    The value of elastic Reserved CUs.

    NOTE: The total number of elastically reserved CUs in all the level-2 quotas is equal to the number of elastically reserved CUs in the level-1 quota..

    MaxCu int
    The value of maxCU in Reserved CUs.
    MinCu int
    The value of minCU in Reserved CUs.
    ElasticReservedCu int

    The value of elastic Reserved CUs.

    NOTE: The total number of elastically reserved CUs in all the level-2 quotas is equal to the number of elastically reserved CUs in the level-1 quota..

    MaxCu int
    The value of maxCU in Reserved CUs.
    MinCu int
    The value of minCU in Reserved CUs.
    elasticReservedCu Integer

    The value of elastic Reserved CUs.

    NOTE: The total number of elastically reserved CUs in all the level-2 quotas is equal to the number of elastically reserved CUs in the level-1 quota..

    maxCu Integer
    The value of maxCU in Reserved CUs.
    minCu Integer
    The value of minCU in Reserved CUs.
    elasticReservedCu number

    The value of elastic Reserved CUs.

    NOTE: The total number of elastically reserved CUs in all the level-2 quotas is equal to the number of elastically reserved CUs in the level-1 quota..

    maxCu number
    The value of maxCU in Reserved CUs.
    minCu number
    The value of minCU in Reserved CUs.
    elastic_reserved_cu int

    The value of elastic Reserved CUs.

    NOTE: The total number of elastically reserved CUs in all the level-2 quotas is equal to the number of elastically reserved CUs in the level-1 quota..

    max_cu int
    The value of maxCU in Reserved CUs.
    min_cu int
    The value of minCU in Reserved CUs.
    elasticReservedCu Number

    The value of elastic Reserved CUs.

    NOTE: The total number of elastically reserved CUs in all the level-2 quotas is equal to the number of elastically reserved CUs in the level-1 quota..

    maxCu Number
    The value of maxCU in Reserved CUs.
    minCu Number
    The value of minCU in Reserved CUs.

    Import

    Max Compute Quota Plan can be imported using the id, e.g.

    $ pulumi import alicloud:maxcompute/quotaPlan:QuotaPlan example <nickname>:<plan_name>
    

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

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi