1. Packages
  2. Avi Provider
  3. API Docs
  4. Apiratelimitprofile
avi 31.2.1 published on Monday, Dec 22, 2025 by vmware
avi logo
avi 31.2.1 published on Monday, Dec 22, 2025 by vmware

    <!–

    Copyright 2021 VMware, Inc.
    SPDX-License-Identifier: Mozilla Public License 2.0
    

    –>

    layout: “avi”

    page_title: “Avi:<span pulumi-lang-nodejs=” avi.Apiratelimitprofile"" pulumi-lang-dotnet=" avi.Apiratelimitprofile"" pulumi-lang-go=" Apiratelimitprofile"" pulumi-lang-python=" Apiratelimitprofile"" pulumi-lang-yaml=" avi.Apiratelimitprofile"" pulumi-lang-java=" avi.Apiratelimitprofile""> avi.Apiratelimitprofile" sidebar_current: “docs-avi-resource-apiratelimitprofile” description: |- Creates and manages Avi ApiRateLimitProfile.

    # avi.Apiratelimitprofile The ApiRateLimitProfile resource allows the creation and management of Avi ApiRateLimitProfile

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const foo = new avi.Apiratelimitprofile("foo", {
        name: "terraform-example-foo",
        tenantRef: "/api/tenant/?name=admin",
    });
    
    import pulumi
    import pulumi_avi as avi
    
    foo = avi.Apiratelimitprofile("foo",
        name="terraform-example-foo",
        tenant_ref="/api/tenant/?name=admin")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := avi.NewApiratelimitprofile(ctx, "foo", &avi.ApiratelimitprofileArgs{
    			Name:      pulumi.String("terraform-example-foo"),
    			TenantRef: pulumi.String("/api/tenant/?name=admin"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Avi = Pulumi.Avi;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = new Avi.Apiratelimitprofile("foo", new()
        {
            Name = "terraform-example-foo",
            TenantRef = "/api/tenant/?name=admin",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.avi.Apiratelimitprofile;
    import com.pulumi.avi.ApiratelimitprofileArgs;
    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) {
            var foo = new Apiratelimitprofile("foo", ApiratelimitprofileArgs.builder()
                .name("terraform-example-foo")
                .tenantRef("/api/tenant/?name=admin")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: avi:Apiratelimitprofile
        properties:
          name: terraform-example-foo
          tenantRef: /api/tenant/?name=admin
    

    Create Apiratelimitprofile Resource

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

    Constructor syntax

    new Apiratelimitprofile(name: string, args: ApiratelimitprofileArgs, opts?: CustomResourceOptions);
    @overload
    def Apiratelimitprofile(resource_name: str,
                            args: ApiratelimitprofileArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def Apiratelimitprofile(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            rate_limit_configuration_refs: Optional[Sequence[str]] = None,
                            apiratelimitprofile_id: Optional[str] = None,
                            configpb_attributes: Optional[Sequence[ApiratelimitprofileConfigpbAttributeArgs]] = None,
                            description: Optional[str] = None,
                            enabled: Optional[str] = None,
                            name: Optional[str] = None,
                            tenant_ref: Optional[str] = None,
                            uuid: Optional[str] = None)
    func NewApiratelimitprofile(ctx *Context, name string, args ApiratelimitprofileArgs, opts ...ResourceOption) (*Apiratelimitprofile, error)
    public Apiratelimitprofile(string name, ApiratelimitprofileArgs args, CustomResourceOptions? opts = null)
    public Apiratelimitprofile(String name, ApiratelimitprofileArgs args)
    public Apiratelimitprofile(String name, ApiratelimitprofileArgs args, CustomResourceOptions options)
    
    type: avi:Apiratelimitprofile
    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 ApiratelimitprofileArgs
    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 ApiratelimitprofileArgs
    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 ApiratelimitprofileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApiratelimitprofileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApiratelimitprofileArgs
    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 apiratelimitprofileResource = new Avi.Apiratelimitprofile("apiratelimitprofileResource", new()
    {
        RateLimitConfigurationRefs = new[]
        {
            "string",
        },
        ApiratelimitprofileId = "string",
        ConfigpbAttributes = new[]
        {
            new Avi.Inputs.ApiratelimitprofileConfigpbAttributeArgs
            {
                Version = "string",
            },
        },
        Description = "string",
        Enabled = "string",
        Name = "string",
        TenantRef = "string",
        Uuid = "string",
    });
    
    example, err := avi.NewApiratelimitprofile(ctx, "apiratelimitprofileResource", &avi.ApiratelimitprofileArgs{
    	RateLimitConfigurationRefs: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ApiratelimitprofileId: pulumi.String("string"),
    	ConfigpbAttributes: avi.ApiratelimitprofileConfigpbAttributeArray{
    		&avi.ApiratelimitprofileConfigpbAttributeArgs{
    			Version: pulumi.String("string"),
    		},
    	},
    	Description: pulumi.String("string"),
    	Enabled:     pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	TenantRef:   pulumi.String("string"),
    	Uuid:        pulumi.String("string"),
    })
    
    var apiratelimitprofileResource = new Apiratelimitprofile("apiratelimitprofileResource", ApiratelimitprofileArgs.builder()
        .rateLimitConfigurationRefs("string")
        .apiratelimitprofileId("string")
        .configpbAttributes(ApiratelimitprofileConfigpbAttributeArgs.builder()
            .version("string")
            .build())
        .description("string")
        .enabled("string")
        .name("string")
        .tenantRef("string")
        .uuid("string")
        .build());
    
    apiratelimitprofile_resource = avi.Apiratelimitprofile("apiratelimitprofileResource",
        rate_limit_configuration_refs=["string"],
        apiratelimitprofile_id="string",
        configpb_attributes=[{
            "version": "string",
        }],
        description="string",
        enabled="string",
        name="string",
        tenant_ref="string",
        uuid="string")
    
    const apiratelimitprofileResource = new avi.Apiratelimitprofile("apiratelimitprofileResource", {
        rateLimitConfigurationRefs: ["string"],
        apiratelimitprofileId: "string",
        configpbAttributes: [{
            version: "string",
        }],
        description: "string",
        enabled: "string",
        name: "string",
        tenantRef: "string",
        uuid: "string",
    });
    
    type: avi:Apiratelimitprofile
    properties:
        apiratelimitprofileId: string
        configpbAttributes:
            - version: string
        description: string
        enabled: string
        name: string
        rateLimitConfigurationRefs:
            - string
        tenantRef: string
        uuid: string
    

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

    RateLimitConfigurationRefs List<string>
    List of the rate limiter configuration uuids. It is a reference to an object of type ratelimitconfiguration. Field introduced in 31.2.1. Minimum of 1 items required. Maximum of 100 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    ApiratelimitprofileId string
    ConfigpbAttributes List<ApiratelimitprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Description string
    Description for the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Enabled string
    Activate/deactivate the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant ref for the api rate limit profile. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    RateLimitConfigurationRefs []string
    List of the rate limiter configuration uuids. It is a reference to an object of type ratelimitconfiguration. Field introduced in 31.2.1. Minimum of 1 items required. Maximum of 100 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    ApiratelimitprofileId string
    ConfigpbAttributes []ApiratelimitprofileConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Description string
    Description for the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Enabled string
    Activate/deactivate the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant ref for the api rate limit profile. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    rateLimitConfigurationRefs List<String>
    List of the rate limiter configuration uuids. It is a reference to an object of type ratelimitconfiguration. Field introduced in 31.2.1. Minimum of 1 items required. Maximum of 100 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    apiratelimitprofileId String
    configpbAttributes List<ApiratelimitprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description String
    Description for the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled String
    Activate/deactivate the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant ref for the api rate limit profile. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    rateLimitConfigurationRefs string[]
    List of the rate limiter configuration uuids. It is a reference to an object of type ratelimitconfiguration. Field introduced in 31.2.1. Minimum of 1 items required. Maximum of 100 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    apiratelimitprofileId string
    configpbAttributes ApiratelimitprofileConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description string
    Description for the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled string
    Activate/deactivate the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    Name of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    Tenant ref for the api rate limit profile. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    Uuid of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    rate_limit_configuration_refs Sequence[str]
    List of the rate limiter configuration uuids. It is a reference to an object of type ratelimitconfiguration. Field introduced in 31.2.1. Minimum of 1 items required. Maximum of 100 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    apiratelimitprofile_id str
    configpb_attributes Sequence[ApiratelimitprofileConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description str
    Description for the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled str
    Activate/deactivate the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    Name of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    Tenant ref for the api rate limit profile. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    Uuid of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    rateLimitConfigurationRefs List<String>
    List of the rate limiter configuration uuids. It is a reference to an object of type ratelimitconfiguration. Field introduced in 31.2.1. Minimum of 1 items required. Maximum of 100 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    apiratelimitprofileId String
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description String
    Description for the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled String
    Activate/deactivate the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant ref for the api rate limit profile. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Apiratelimitprofile 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 Apiratelimitprofile Resource

    Get an existing Apiratelimitprofile 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?: ApiratelimitprofileState, opts?: CustomResourceOptions): Apiratelimitprofile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            apiratelimitprofile_id: Optional[str] = None,
            configpb_attributes: Optional[Sequence[ApiratelimitprofileConfigpbAttributeArgs]] = None,
            description: Optional[str] = None,
            enabled: Optional[str] = None,
            name: Optional[str] = None,
            rate_limit_configuration_refs: Optional[Sequence[str]] = None,
            tenant_ref: Optional[str] = None,
            uuid: Optional[str] = None) -> Apiratelimitprofile
    func GetApiratelimitprofile(ctx *Context, name string, id IDInput, state *ApiratelimitprofileState, opts ...ResourceOption) (*Apiratelimitprofile, error)
    public static Apiratelimitprofile Get(string name, Input<string> id, ApiratelimitprofileState? state, CustomResourceOptions? opts = null)
    public static Apiratelimitprofile get(String name, Output<String> id, ApiratelimitprofileState state, CustomResourceOptions options)
    resources:  _:    type: avi:Apiratelimitprofile    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:
    ApiratelimitprofileId string
    ConfigpbAttributes List<ApiratelimitprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Description string
    Description for the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Enabled string
    Activate/deactivate the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    RateLimitConfigurationRefs List<string>
    List of the rate limiter configuration uuids. It is a reference to an object of type ratelimitconfiguration. Field introduced in 31.2.1. Minimum of 1 items required. Maximum of 100 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant ref for the api rate limit profile. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ApiratelimitprofileId string
    ConfigpbAttributes []ApiratelimitprofileConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Description string
    Description for the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Enabled string
    Activate/deactivate the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    RateLimitConfigurationRefs []string
    List of the rate limiter configuration uuids. It is a reference to an object of type ratelimitconfiguration. Field introduced in 31.2.1. Minimum of 1 items required. Maximum of 100 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant ref for the api rate limit profile. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    apiratelimitprofileId String
    configpbAttributes List<ApiratelimitprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description String
    Description for the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled String
    Activate/deactivate the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    rateLimitConfigurationRefs List<String>
    List of the rate limiter configuration uuids. It is a reference to an object of type ratelimitconfiguration. Field introduced in 31.2.1. Minimum of 1 items required. Maximum of 100 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant ref for the api rate limit profile. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    apiratelimitprofileId string
    configpbAttributes ApiratelimitprofileConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description string
    Description for the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled string
    Activate/deactivate the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    Name of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    rateLimitConfigurationRefs string[]
    List of the rate limiter configuration uuids. It is a reference to an object of type ratelimitconfiguration. Field introduced in 31.2.1. Minimum of 1 items required. Maximum of 100 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    Tenant ref for the api rate limit profile. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    Uuid of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    apiratelimitprofile_id str
    configpb_attributes Sequence[ApiratelimitprofileConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description str
    Description for the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled str
    Activate/deactivate the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    Name of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    rate_limit_configuration_refs Sequence[str]
    List of the rate limiter configuration uuids. It is a reference to an object of type ratelimitconfiguration. Field introduced in 31.2.1. Minimum of 1 items required. Maximum of 100 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    Tenant ref for the api rate limit profile. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    Uuid of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    apiratelimitprofileId String
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description String
    Description for the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled String
    Activate/deactivate the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    rateLimitConfigurationRefs List<String>
    List of the rate limiter configuration uuids. It is a reference to an object of type ratelimitconfiguration. Field introduced in 31.2.1. Minimum of 1 items required. Maximum of 100 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant ref for the api rate limit profile. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid of the api rate limit profile. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    Supporting Types

    ApiratelimitprofileConfigpbAttribute, ApiratelimitprofileConfigpbAttributeArgs

    Version string
    Version string
    version String
    version string
    version String

    Package Details

    Repository
    avi vmware/terraform-provider-avi
    License
    Notes
    This Pulumi package is based on the avi Terraform Provider.
    avi logo
    avi 31.2.1 published on Monday, Dec 22, 2025 by vmware
      Meet Neo: Your AI Platform Teammate