1. Packages
  2. Packages
  3. Avi Provider
  4. API Docs
  5. Tenantbinding
Viewing docs for avi 32.1.1
published on Tuesday, May 19, 2026 by vmware
Viewing docs for avi 32.1.1
published on Tuesday, May 19, 2026 by vmware

    <!–

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

    –>

    layout: “avi”

    page_title: “Avi: avi.Tenantbinding” sidebar_current: “docs-avi-resource-tenantbinding” description: |- Creates and manages Avi TenantBinding.

    avi.Tenantbinding

    The TenantBinding resource allows the creation and management of Avi TenantBinding

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const foo = new avi.Tenantbinding("foo", {
        name: "terraform-example-foo",
        tenantRef: "/api/tenant/?name=admin",
    });
    
    import pulumi
    import pulumi_avi as avi
    
    foo = avi.Tenantbinding("foo",
        name="terraform-example-foo",
        tenant_ref="/api/tenant/?name=admin")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v32/avi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := avi.NewTenantbinding(ctx, "foo", &avi.TenantbindingArgs{
    			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.Tenantbinding("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.Tenantbinding;
    import com.pulumi.avi.TenantbindingArgs;
    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 Tenantbinding("foo", TenantbindingArgs.builder()
                .name("terraform-example-foo")
                .tenantRef("/api/tenant/?name=admin")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: avi:Tenantbinding
        properties:
          name: terraform-example-foo
          tenantRef: /api/tenant/?name=admin
    
    Example coming soon!
    

    Create Tenantbinding Resource

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

    Constructor syntax

    new Tenantbinding(name: string, args: TenantbindingArgs, opts?: CustomResourceOptions);
    @overload
    def Tenantbinding(resource_name: str,
                      args: TenantbindingArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def Tenantbinding(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      shared_tenant_ref: Optional[str] = None,
                      configpb_attributes: Optional[Sequence[TenantbindingConfigpbAttributeArgs]] = None,
                      name: Optional[str] = None,
                      se_group_ref: Optional[str] = None,
                      tenant_ref: Optional[str] = None,
                      tenantbinding_id: Optional[str] = None,
                      uuid: Optional[str] = None)
    func NewTenantbinding(ctx *Context, name string, args TenantbindingArgs, opts ...ResourceOption) (*Tenantbinding, error)
    public Tenantbinding(string name, TenantbindingArgs args, CustomResourceOptions? opts = null)
    public Tenantbinding(String name, TenantbindingArgs args)
    public Tenantbinding(String name, TenantbindingArgs args, CustomResourceOptions options)
    
    type: avi:Tenantbinding
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "avi_tenantbinding" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args TenantbindingArgs
    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 TenantbindingArgs
    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 TenantbindingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TenantbindingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TenantbindingArgs
    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 tenantbindingResource = new Avi.Tenantbinding("tenantbindingResource", new()
    {
        SharedTenantRef = "string",
        ConfigpbAttributes = new[]
        {
            new Avi.Inputs.TenantbindingConfigpbAttributeArgs
            {
                CreatedBy = "string",
                Version = "string",
            },
        },
        Name = "string",
        SeGroupRef = "string",
        TenantRef = "string",
        TenantbindingId = "string",
        Uuid = "string",
    });
    
    example, err := avi.NewTenantbinding(ctx, "tenantbindingResource", &avi.TenantbindingArgs{
    	SharedTenantRef: pulumi.String("string"),
    	ConfigpbAttributes: avi.TenantbindingConfigpbAttributeArray{
    		&avi.TenantbindingConfigpbAttributeArgs{
    			CreatedBy: pulumi.String("string"),
    			Version:   pulumi.String("string"),
    		},
    	},
    	Name:            pulumi.String("string"),
    	SeGroupRef:      pulumi.String("string"),
    	TenantRef:       pulumi.String("string"),
    	TenantbindingId: pulumi.String("string"),
    	Uuid:            pulumi.String("string"),
    })
    
    resource "avi_tenantbinding" "tenantbindingResource" {
      shared_tenant_ref = "string"
      configpb_attributes {
        created_by = "string"
        version    = "string"
      }
      name             = "string"
      se_group_ref     = "string"
      tenant_ref       = "string"
      tenantbinding_id = "string"
      uuid             = "string"
    }
    
    var tenantbindingResource = new Tenantbinding("tenantbindingResource", TenantbindingArgs.builder()
        .sharedTenantRef("string")
        .configpbAttributes(TenantbindingConfigpbAttributeArgs.builder()
            .createdBy("string")
            .version("string")
            .build())
        .name("string")
        .seGroupRef("string")
        .tenantRef("string")
        .tenantbindingId("string")
        .uuid("string")
        .build());
    
    tenantbinding_resource = avi.Tenantbinding("tenantbindingResource",
        shared_tenant_ref="string",
        configpb_attributes=[{
            "created_by": "string",
            "version": "string",
        }],
        name="string",
        se_group_ref="string",
        tenant_ref="string",
        tenantbinding_id="string",
        uuid="string")
    
    const tenantbindingResource = new avi.Tenantbinding("tenantbindingResource", {
        sharedTenantRef: "string",
        configpbAttributes: [{
            createdBy: "string",
            version: "string",
        }],
        name: "string",
        seGroupRef: "string",
        tenantRef: "string",
        tenantbindingId: "string",
        uuid: "string",
    });
    
    type: avi:Tenantbinding
    properties:
        configpbAttributes:
            - createdBy: string
              version: string
        name: string
        seGroupRef: string
        sharedTenantRef: string
        tenantRef: string
        tenantbindingId: string
        uuid: string
    

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

    SharedTenantRef string
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigpbAttributes List<TenantbindingConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SeGroupRef string
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantbindingId string
    Uuid string
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SharedTenantRef string
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigpbAttributes []TenantbindingConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SeGroupRef string
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantbindingId string
    Uuid string
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    shared_tenant_ref string
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpb_attributes list(object)
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    se_group_ref string
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref string
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantbinding_id string
    uuid string
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sharedTenantRef String
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes List<TenantbindingConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    seGroupRef String
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantbindingId String
    uuid String
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sharedTenantRef string
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes TenantbindingConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    seGroupRef string
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantbindingId string
    uuid string
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    shared_tenant_ref str
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpb_attributes Sequence[TenantbindingConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    se_group_ref str
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantbinding_id str
    uuid str
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sharedTenantRef String
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    seGroupRef String
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantbindingId String
    uuid String
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    Outputs

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

    Get an existing Tenantbinding 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?: TenantbindingState, opts?: CustomResourceOptions): Tenantbinding
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configpb_attributes: Optional[Sequence[TenantbindingConfigpbAttributeArgs]] = None,
            name: Optional[str] = None,
            se_group_ref: Optional[str] = None,
            shared_tenant_ref: Optional[str] = None,
            tenant_ref: Optional[str] = None,
            tenantbinding_id: Optional[str] = None,
            uuid: Optional[str] = None) -> Tenantbinding
    func GetTenantbinding(ctx *Context, name string, id IDInput, state *TenantbindingState, opts ...ResourceOption) (*Tenantbinding, error)
    public static Tenantbinding Get(string name, Input<string> id, TenantbindingState? state, CustomResourceOptions? opts = null)
    public static Tenantbinding get(String name, Output<String> id, TenantbindingState state, CustomResourceOptions options)
    resources:  _:    type: avi:Tenantbinding    get:      id: ${id}
    import {
      to = avi_tenantbinding.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ConfigpbAttributes List<TenantbindingConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SeGroupRef string
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SharedTenantRef string
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantbindingId string
    Uuid string
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigpbAttributes []TenantbindingConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SeGroupRef string
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SharedTenantRef string
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantbindingId string
    Uuid string
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpb_attributes list(object)
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    se_group_ref string
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    shared_tenant_ref string
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref string
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantbinding_id string
    uuid string
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes List<TenantbindingConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    seGroupRef String
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sharedTenantRef String
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantbindingId String
    uuid String
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes TenantbindingConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    seGroupRef string
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sharedTenantRef string
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantbindingId string
    uuid string
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpb_attributes Sequence[TenantbindingConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    se_group_ref str
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    shared_tenant_ref str
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantbinding_id str
    uuid str
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Name of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    seGroupRef String
    Uuid of the service engine group being shared. It is a reference to an object of type serviceenginegroup. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sharedTenantRef String
    Uuid of the tenant to which the object is being shared. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant uuid. This field is used for admin tenant context. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantbindingId String
    uuid String
    Uuid of the tenant binding. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    Supporting Types

    TenantbindingConfigpbAttribute, TenantbindingConfigpbAttributeArgs

    CreatedBy string
    Version string
    CreatedBy string
    Version string
    created_by string
    version string
    createdBy String
    version String
    createdBy string
    version string
    createdBy String
    version String

    Package Details

    Repository
    avi vmware/terraform-provider-avi
    License
    Notes
    This Pulumi package is based on the avi Terraform Provider.
    Viewing docs for avi 32.1.1
    published on Tuesday, May 19, 2026 by vmware

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial