1. Packages
  2. Avi Provider
  3. API Docs
  4. Tenant
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

avi.Tenant

Explore with Pulumi AI

avi logo
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

    <!–

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

    –>

    layout: “avi”

    page_title: “Avi: avi.Tenant” sidebar_current: “docs-avi-resource-tenant” description: |- Creates and manages Avi Tenant.

    avi.Tenant

    The Tenant resource allows the creation and management of Avi Tenant

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    resources:
      foo:
        type: avi:Tenant
        properties:
          tenantRef: /api/tenant/?name=admin
    

    Create Tenant Resource

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

    Constructor syntax

    new Tenant(name: string, args?: TenantArgs, opts?: CustomResourceOptions);
    @overload
    def Tenant(resource_name: str,
               args: Optional[TenantArgs] = None,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Tenant(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               attrs: Optional[Sequence[TenantAttrArgs]] = None,
               config_settings: Optional[Sequence[TenantConfigSettingArgs]] = None,
               configpb_attributes: Optional[Sequence[TenantConfigpbAttributeArgs]] = None,
               created_by: Optional[str] = None,
               description: Optional[str] = None,
               enforce_label_group: Optional[str] = None,
               label_group_refs: Optional[Sequence[str]] = None,
               local: Optional[str] = None,
               name: Optional[str] = None,
               tenant_id: Optional[str] = None,
               uuid: Optional[str] = None)
    func NewTenant(ctx *Context, name string, args *TenantArgs, opts ...ResourceOption) (*Tenant, error)
    public Tenant(string name, TenantArgs? args = null, CustomResourceOptions? opts = null)
    public Tenant(String name, TenantArgs args)
    public Tenant(String name, TenantArgs args, CustomResourceOptions options)
    
    type: avi:Tenant
    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 TenantArgs
    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 TenantArgs
    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 TenantArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TenantArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TenantArgs
    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 tenantResource = new Avi.Tenant("tenantResource", new()
    {
        Attrs = new[]
        {
            new Avi.Inputs.TenantAttrArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        ConfigSettings = new[]
        {
            new Avi.Inputs.TenantConfigSettingArgs
            {
                SeInProviderContext = "string",
                TenantAccessToProviderSe = "string",
                TenantVrf = "string",
            },
        },
        ConfigpbAttributes = new[]
        {
            new Avi.Inputs.TenantConfigpbAttributeArgs
            {
                Version = "string",
            },
        },
        CreatedBy = "string",
        Description = "string",
        EnforceLabelGroup = "string",
        LabelGroupRefs = new[]
        {
            "string",
        },
        Local = "string",
        Name = "string",
        TenantId = "string",
        Uuid = "string",
    });
    
    example, err := avi.NewTenant(ctx, "tenantResource", &avi.TenantArgs{
    Attrs: .TenantAttrArray{
    &.TenantAttrArgs{
    Key: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    ConfigSettings: .TenantConfigSettingArray{
    &.TenantConfigSettingArgs{
    SeInProviderContext: pulumi.String("string"),
    TenantAccessToProviderSe: pulumi.String("string"),
    TenantVrf: pulumi.String("string"),
    },
    },
    ConfigpbAttributes: .TenantConfigpbAttributeArray{
    &.TenantConfigpbAttributeArgs{
    Version: pulumi.String("string"),
    },
    },
    CreatedBy: pulumi.String("string"),
    Description: pulumi.String("string"),
    EnforceLabelGroup: pulumi.String("string"),
    LabelGroupRefs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Local: pulumi.String("string"),
    Name: pulumi.String("string"),
    TenantId: pulumi.String("string"),
    Uuid: pulumi.String("string"),
    })
    
    var tenantResource = new Tenant("tenantResource", TenantArgs.builder()
        .attrs(TenantAttrArgs.builder()
            .key("string")
            .value("string")
            .build())
        .configSettings(TenantConfigSettingArgs.builder()
            .seInProviderContext("string")
            .tenantAccessToProviderSe("string")
            .tenantVrf("string")
            .build())
        .configpbAttributes(TenantConfigpbAttributeArgs.builder()
            .version("string")
            .build())
        .createdBy("string")
        .description("string")
        .enforceLabelGroup("string")
        .labelGroupRefs("string")
        .local("string")
        .name("string")
        .tenantId("string")
        .uuid("string")
        .build());
    
    tenant_resource = avi.Tenant("tenantResource",
        attrs=[{
            "key": "string",
            "value": "string",
        }],
        config_settings=[{
            "se_in_provider_context": "string",
            "tenant_access_to_provider_se": "string",
            "tenant_vrf": "string",
        }],
        configpb_attributes=[{
            "version": "string",
        }],
        created_by="string",
        description="string",
        enforce_label_group="string",
        label_group_refs=["string"],
        local="string",
        name="string",
        tenant_id="string",
        uuid="string")
    
    const tenantResource = new avi.Tenant("tenantResource", {
        attrs: [{
            key: "string",
            value: "string",
        }],
        configSettings: [{
            seInProviderContext: "string",
            tenantAccessToProviderSe: "string",
            tenantVrf: "string",
        }],
        configpbAttributes: [{
            version: "string",
        }],
        createdBy: "string",
        description: "string",
        enforceLabelGroup: "string",
        labelGroupRefs: ["string"],
        local: "string",
        name: "string",
        tenantId: "string",
        uuid: "string",
    });
    
    type: avi:Tenant
    properties:
        attrs:
            - key: string
              value: string
        configSettings:
            - seInProviderContext: string
              tenantAccessToProviderSe: string
              tenantVrf: string
        configpbAttributes:
            - version: string
        createdBy: string
        description: string
        enforceLabelGroup: string
        labelGroupRefs:
            - string
        local: string
        name: string
        tenantId: string
        uuid: string
    

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

    Attrs List<TenantAttr>
    Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigSettings List<TenantConfigSetting>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes List<TenantConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CreatedBy string
    Creator of this tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Description string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    EnforceLabelGroup string
    The referred label groups are enforced on the tenant if this is set to true.if this is set to false, the label groups are suggested for the tenant. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    LabelGroupRefs List<string>
    The label_groups to be enforced on the tenant. This is strictly enforced only if enforce_label_group is set to true. It is a reference to an object of type labelgroup. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    Local string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantId string
    Uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Attrs []TenantAttrArgs
    Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigSettings []TenantConfigSettingArgs
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []TenantConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CreatedBy string
    Creator of this tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Description string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    EnforceLabelGroup string
    The referred label groups are enforced on the tenant if this is set to true.if this is set to false, the label groups are suggested for the tenant. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    LabelGroupRefs []string
    The label_groups to be enforced on the tenant. This is strictly enforced only if enforce_label_group is set to true. It is a reference to an object of type labelgroup. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    Local string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantId string
    Uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    attrs List<TenantAttr>
    Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configSettings List<TenantConfigSetting>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<TenantConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    createdBy String
    Creator of this tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enforceLabelGroup String
    The referred label groups are enforced on the tenant if this is set to true.if this is set to false, the label groups are suggested for the tenant. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    labelGroupRefs List<String>
    The label_groups to be enforced on the tenant. This is strictly enforced only if enforce_label_group is set to true. It is a reference to an object of type labelgroup. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    local String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantId String
    uuid String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    attrs TenantAttr[]
    Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configSettings TenantConfigSetting[]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes TenantConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    createdBy string
    Creator of this tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enforceLabelGroup string
    The referred label groups are enforced on the tenant if this is set to true.if this is set to false, the label groups are suggested for the tenant. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    labelGroupRefs string[]
    The label_groups to be enforced on the tenant. This is strictly enforced only if enforce_label_group is set to true. It is a reference to an object of type labelgroup. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    local string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantId string
    uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    attrs Sequence[TenantAttrArgs]
    Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    config_settings Sequence[TenantConfigSettingArgs]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[TenantConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    created_by str
    Creator of this tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enforce_label_group str
    The referred label groups are enforced on the tenant if this is set to true.if this is set to false, the label groups are suggested for the tenant. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    label_group_refs Sequence[str]
    The label_groups to be enforced on the tenant. This is strictly enforced only if enforce_label_group is set to true. It is a reference to an object of type labelgroup. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    local str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenant_id str
    uuid str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    attrs List<Property Map>
    Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configSettings List<Property Map>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    createdBy String
    Creator of this tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enforceLabelGroup String
    The referred label groups are enforced on the tenant if this is set to true.if this is set to false, the label groups are suggested for the tenant. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    labelGroupRefs List<String>
    The label_groups to be enforced on the tenant. This is strictly enforced only if enforce_label_group is set to true. It is a reference to an object of type labelgroup. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    local String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantId String
    uuid String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Outputs

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

    Get an existing Tenant 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?: TenantState, opts?: CustomResourceOptions): Tenant
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            attrs: Optional[Sequence[TenantAttrArgs]] = None,
            config_settings: Optional[Sequence[TenantConfigSettingArgs]] = None,
            configpb_attributes: Optional[Sequence[TenantConfigpbAttributeArgs]] = None,
            created_by: Optional[str] = None,
            description: Optional[str] = None,
            enforce_label_group: Optional[str] = None,
            label_group_refs: Optional[Sequence[str]] = None,
            local: Optional[str] = None,
            name: Optional[str] = None,
            tenant_id: Optional[str] = None,
            uuid: Optional[str] = None) -> Tenant
    func GetTenant(ctx *Context, name string, id IDInput, state *TenantState, opts ...ResourceOption) (*Tenant, error)
    public static Tenant Get(string name, Input<string> id, TenantState? state, CustomResourceOptions? opts = null)
    public static Tenant get(String name, Output<String> id, TenantState state, CustomResourceOptions options)
    resources:  _:    type: avi:Tenant    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:
    Attrs List<TenantAttr>
    Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigSettings List<TenantConfigSetting>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes List<TenantConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CreatedBy string
    Creator of this tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Description string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    EnforceLabelGroup string
    The referred label groups are enforced on the tenant if this is set to true.if this is set to false, the label groups are suggested for the tenant. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    LabelGroupRefs List<string>
    The label_groups to be enforced on the tenant. This is strictly enforced only if enforce_label_group is set to true. It is a reference to an object of type labelgroup. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    Local string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantId string
    Uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Attrs []TenantAttrArgs
    Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigSettings []TenantConfigSettingArgs
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []TenantConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CreatedBy string
    Creator of this tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Description string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    EnforceLabelGroup string
    The referred label groups are enforced on the tenant if this is set to true.if this is set to false, the label groups are suggested for the tenant. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    LabelGroupRefs []string
    The label_groups to be enforced on the tenant. This is strictly enforced only if enforce_label_group is set to true. It is a reference to an object of type labelgroup. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    Local string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantId string
    Uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    attrs List<TenantAttr>
    Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configSettings List<TenantConfigSetting>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<TenantConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    createdBy String
    Creator of this tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enforceLabelGroup String
    The referred label groups are enforced on the tenant if this is set to true.if this is set to false, the label groups are suggested for the tenant. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    labelGroupRefs List<String>
    The label_groups to be enforced on the tenant. This is strictly enforced only if enforce_label_group is set to true. It is a reference to an object of type labelgroup. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    local String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantId String
    uuid String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    attrs TenantAttr[]
    Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configSettings TenantConfigSetting[]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes TenantConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    createdBy string
    Creator of this tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enforceLabelGroup string
    The referred label groups are enforced on the tenant if this is set to true.if this is set to false, the label groups are suggested for the tenant. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    labelGroupRefs string[]
    The label_groups to be enforced on the tenant. This is strictly enforced only if enforce_label_group is set to true. It is a reference to an object of type labelgroup. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    local string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantId string
    uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    attrs Sequence[TenantAttrArgs]
    Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    config_settings Sequence[TenantConfigSettingArgs]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[TenantConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    created_by str
    Creator of this tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enforce_label_group str
    The referred label groups are enforced on the tenant if this is set to true.if this is set to false, the label groups are suggested for the tenant. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    label_group_refs Sequence[str]
    The label_groups to be enforced on the tenant. This is strictly enforced only if enforce_label_group is set to true. It is a reference to an object of type labelgroup. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    local str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenant_id str
    uuid str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    attrs List<Property Map>
    Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configSettings List<Property Map>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    createdBy String
    Creator of this tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enforceLabelGroup String
    The referred label groups are enforced on the tenant if this is set to true.if this is set to false, the label groups are suggested for the tenant. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    labelGroupRefs List<String>
    The label_groups to be enforced on the tenant. This is strictly enforced only if enforce_label_group is set to true. It is a reference to an object of type labelgroup. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    local String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantId String
    uuid String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Supporting Types

    TenantAttr, TenantAttrArgs

    Key string
    Value string
    Key string
    Value string
    key String
    value String
    key string
    value string
    key str
    value str
    key String
    value String

    TenantConfigSetting, TenantConfigSettingArgs

    TenantConfigpbAttribute, TenantConfigpbAttributeArgs

    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.1.1 published on Monday, Apr 14, 2025 by vmware