avi.Tenant
Explore with Pulumi AI
<!–
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<Tenant
Attr> - Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Config
Settings List<TenantConfig Setting> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes List<TenantConfigpb Attribute> - 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 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.
- Enforce
Label stringGroup - 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 List<string>Refs - 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.
- Tenant
Id string - Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Attrs
[]Tenant
Attr Args - Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Config
Settings []TenantConfig Setting Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []TenantConfigpb Attribute Args - 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 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.
- Enforce
Label stringGroup - 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 []stringRefs - 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.
- Tenant
Id string - Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- attrs
List<Tenant
Attr> - Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- config
Settings List<TenantConfig Setting> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<TenantConfigpb Attribute> - 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 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.
- enforce
Label StringGroup - 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 List<String>Refs - 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.
- tenant
Id String - uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- attrs
Tenant
Attr[] - Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- config
Settings TenantConfig Setting[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes TenantConfigpb Attribute[] - 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 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.
- enforce
Label stringGroup - 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 string[]Refs - 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.
- tenant
Id string - uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- attrs
Sequence[Tenant
Attr Args] - Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- config_
settings Sequence[TenantConfig Setting Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[TenantConfigpb Attribute Args] - 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_ strgroup - 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_ Sequence[str]refs - 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.
- config
Settings List<Property Map> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes 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.
- created
By 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.
- enforce
Label StringGroup - 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 List<String>Refs - 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.
- tenant
Id 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.
- Attrs
List<Tenant
Attr> - Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Config
Settings List<TenantConfig Setting> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes List<TenantConfigpb Attribute> - 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 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.
- Enforce
Label stringGroup - 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 List<string>Refs - 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.
- Tenant
Id string - Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Attrs
[]Tenant
Attr Args - Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Config
Settings []TenantConfig Setting Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []TenantConfigpb Attribute Args - 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 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.
- Enforce
Label stringGroup - 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 []stringRefs - 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.
- Tenant
Id string - Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- attrs
List<Tenant
Attr> - Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- config
Settings List<TenantConfig Setting> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<TenantConfigpb Attribute> - 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 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.
- enforce
Label StringGroup - 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 List<String>Refs - 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.
- tenant
Id String - uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- attrs
Tenant
Attr[] - Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- config
Settings TenantConfig Setting[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes TenantConfigpb Attribute[] - 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 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.
- enforce
Label stringGroup - 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 string[]Refs - 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.
- tenant
Id string - uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- attrs
Sequence[Tenant
Attr Args] - Key/value tenant attributes. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- config_
settings Sequence[TenantConfig Setting Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[TenantConfigpb Attribute Args] - 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_ strgroup - 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_ Sequence[str]refs - 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.
- config
Settings List<Property Map> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes 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.
- created
By 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.
- enforce
Label StringGroup - 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 List<String>Refs - 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.
- tenant
Id String - uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
TenantAttr, TenantAttrArgs
TenantConfigSetting, TenantConfigSettingArgs
- Se
In stringProvider Context - Tenant
Access stringTo Provider Se - Tenant
Vrf string
- Se
In stringProvider Context - Tenant
Access stringTo Provider Se - Tenant
Vrf string
- se
In StringProvider Context - tenant
Access StringTo Provider Se - tenant
Vrf String
- se
In stringProvider Context - tenant
Access stringTo Provider Se - tenant
Vrf string
- se
In StringProvider Context - tenant
Access StringTo Provider Se - tenant
Vrf String
TenantConfigpbAttribute, TenantConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.