published on Tuesday, May 19, 2026 by vmware
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.Authmappingprofile” sidebar_current: “docs-avi-resource-authmappingprofile” description: |- Creates and manages Avi AuthMappingProfile.
avi.Authmappingprofile
The AuthMappingProfile resource allows the creation and management of Avi AuthMappingProfile
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Authmappingprofile("foo", {
name: "terraform-example-foo",
tenantRef: "/api/tenant/?name=admin",
});
import pulumi
import pulumi_avi as avi
foo = avi.Authmappingprofile("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.NewAuthmappingprofile(ctx, "foo", &avi.AuthmappingprofileArgs{
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.Authmappingprofile("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.Authmappingprofile;
import com.pulumi.avi.AuthmappingprofileArgs;
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 Authmappingprofile("foo", AuthmappingprofileArgs.builder()
.name("terraform-example-foo")
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Authmappingprofile
properties:
name: terraform-example-foo
tenantRef: /api/tenant/?name=admin
Example coming soon!
Create Authmappingprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Authmappingprofile(name: string, args: AuthmappingprofileArgs, opts?: CustomResourceOptions);@overload
def Authmappingprofile(resource_name: str,
args: AuthmappingprofileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Authmappingprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
mapping_rules: Optional[Sequence[AuthmappingprofileMappingRuleArgs]] = None,
type: Optional[str] = None,
allow_unlabelled_access: Optional[str] = None,
authmappingprofile_id: Optional[str] = None,
configpb_attributes: Optional[Sequence[AuthmappingprofileConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
dynamic_role_filters: Optional[Sequence[AuthmappingprofileDynamicRoleFilterArgs]] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)func NewAuthmappingprofile(ctx *Context, name string, args AuthmappingprofileArgs, opts ...ResourceOption) (*Authmappingprofile, error)public Authmappingprofile(string name, AuthmappingprofileArgs args, CustomResourceOptions? opts = null)
public Authmappingprofile(String name, AuthmappingprofileArgs args)
public Authmappingprofile(String name, AuthmappingprofileArgs args, CustomResourceOptions options)
type: avi:Authmappingprofile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "avi_authmappingprofile" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args AuthmappingprofileArgs
- 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 AuthmappingprofileArgs
- 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 AuthmappingprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthmappingprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthmappingprofileArgs
- 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 authmappingprofileResource = new Avi.Authmappingprofile("authmappingprofileResource", new()
{
MappingRules = new[]
{
new Avi.Inputs.AuthmappingprofileMappingRuleArgs
{
Index = "string",
IsSuperuser = "string",
RoleRefs = new[]
{
"string",
},
AssignUserprofile = "string",
AttributeMatches = new[]
{
new Avi.Inputs.AuthmappingprofileMappingRuleAttributeMatchArgs
{
Criteria = "string",
Name = "string",
Values = new[]
{
"string",
},
},
},
DefaultTenantRef = "string",
GroupMatches = new[]
{
new Avi.Inputs.AuthmappingprofileMappingRuleGroupMatchArgs
{
Criteria = "string",
Groups = new[]
{
"string",
},
},
},
AssignTenant = "string",
PolicyAttributeName = "string",
AssignRole = "string",
RoleAttributeName = "string",
AssignPolicy = "string",
TenantAttributeName = "string",
TenantRefs = new[]
{
"string",
},
UserprofileAttributeName = "string",
UserprofileRef = "string",
},
},
Type = "string",
AllowUnlabelledAccess = "string",
AuthmappingprofileId = "string",
ConfigpbAttributes = new[]
{
new Avi.Inputs.AuthmappingprofileConfigpbAttributeArgs
{
CreatedBy = "string",
Version = "string",
},
},
Description = "string",
DynamicRoleFilters = new[]
{
new Avi.Inputs.AuthmappingprofileDynamicRoleFilterArgs
{
MatchLabels = new[]
{
new Avi.Inputs.AuthmappingprofileDynamicRoleFilterMatchLabelArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
Enabled = "string",
MatchOperation = "string",
Name = "string",
},
},
Name = "string",
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewAuthmappingprofile(ctx, "authmappingprofileResource", &avi.AuthmappingprofileArgs{
MappingRules: avi.AuthmappingprofileMappingRuleArray{
&avi.AuthmappingprofileMappingRuleArgs{
Index: pulumi.String("string"),
IsSuperuser: pulumi.String("string"),
RoleRefs: pulumi.StringArray{
pulumi.String("string"),
},
AssignUserprofile: pulumi.String("string"),
AttributeMatches: avi.AuthmappingprofileMappingRuleAttributeMatchArray{
&avi.AuthmappingprofileMappingRuleAttributeMatchArgs{
Criteria: pulumi.String("string"),
Name: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
DefaultTenantRef: pulumi.String("string"),
GroupMatches: avi.AuthmappingprofileMappingRuleGroupMatchArray{
&avi.AuthmappingprofileMappingRuleGroupMatchArgs{
Criteria: pulumi.String("string"),
Groups: pulumi.StringArray{
pulumi.String("string"),
},
},
},
AssignTenant: pulumi.String("string"),
PolicyAttributeName: pulumi.String("string"),
AssignRole: pulumi.String("string"),
RoleAttributeName: pulumi.String("string"),
AssignPolicy: pulumi.String("string"),
TenantAttributeName: pulumi.String("string"),
TenantRefs: pulumi.StringArray{
pulumi.String("string"),
},
UserprofileAttributeName: pulumi.String("string"),
UserprofileRef: pulumi.String("string"),
},
},
Type: pulumi.String("string"),
AllowUnlabelledAccess: pulumi.String("string"),
AuthmappingprofileId: pulumi.String("string"),
ConfigpbAttributes: avi.AuthmappingprofileConfigpbAttributeArray{
&avi.AuthmappingprofileConfigpbAttributeArgs{
CreatedBy: pulumi.String("string"),
Version: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
DynamicRoleFilters: avi.AuthmappingprofileDynamicRoleFilterArray{
&avi.AuthmappingprofileDynamicRoleFilterArgs{
MatchLabels: avi.AuthmappingprofileDynamicRoleFilterMatchLabelArray{
&avi.AuthmappingprofileDynamicRoleFilterMatchLabelArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Enabled: pulumi.String("string"),
MatchOperation: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
resource "avi_authmappingprofile" "authmappingprofileResource" {
mapping_rules {
index = "string"
is_superuser = "string"
role_refs = ["string"]
assign_userprofile = "string"
attribute_matches {
criteria = "string"
name = "string"
values = ["string"]
}
default_tenant_ref = "string"
group_matches {
criteria = "string"
groups = ["string"]
}
assign_tenant = "string"
policy_attribute_name = "string"
assign_role = "string"
role_attribute_name = "string"
assign_policy = "string"
tenant_attribute_name = "string"
tenant_refs = ["string"]
userprofile_attribute_name = "string"
userprofile_ref = "string"
}
type = "string"
allow_unlabelled_access = "string"
authmappingprofile_id = "string"
configpb_attributes {
created_by = "string"
version = "string"
}
description = "string"
dynamic_role_filters {
match_labels {
key = "string"
values = ["string"]
}
enabled = "string"
match_operation = "string"
name = "string"
}
name = "string"
tenant_ref = "string"
uuid = "string"
}
var authmappingprofileResource = new Authmappingprofile("authmappingprofileResource", AuthmappingprofileArgs.builder()
.mappingRules(AuthmappingprofileMappingRuleArgs.builder()
.index("string")
.isSuperuser("string")
.roleRefs("string")
.assignUserprofile("string")
.attributeMatches(AuthmappingprofileMappingRuleAttributeMatchArgs.builder()
.criteria("string")
.name("string")
.values("string")
.build())
.defaultTenantRef("string")
.groupMatches(AuthmappingprofileMappingRuleGroupMatchArgs.builder()
.criteria("string")
.groups("string")
.build())
.assignTenant("string")
.policyAttributeName("string")
.assignRole("string")
.roleAttributeName("string")
.assignPolicy("string")
.tenantAttributeName("string")
.tenantRefs("string")
.userprofileAttributeName("string")
.userprofileRef("string")
.build())
.type("string")
.allowUnlabelledAccess("string")
.authmappingprofileId("string")
.configpbAttributes(AuthmappingprofileConfigpbAttributeArgs.builder()
.createdBy("string")
.version("string")
.build())
.description("string")
.dynamicRoleFilters(AuthmappingprofileDynamicRoleFilterArgs.builder()
.matchLabels(AuthmappingprofileDynamicRoleFilterMatchLabelArgs.builder()
.key("string")
.values("string")
.build())
.enabled("string")
.matchOperation("string")
.name("string")
.build())
.name("string")
.tenantRef("string")
.uuid("string")
.build());
authmappingprofile_resource = avi.Authmappingprofile("authmappingprofileResource",
mapping_rules=[{
"index": "string",
"is_superuser": "string",
"role_refs": ["string"],
"assign_userprofile": "string",
"attribute_matches": [{
"criteria": "string",
"name": "string",
"values": ["string"],
}],
"default_tenant_ref": "string",
"group_matches": [{
"criteria": "string",
"groups": ["string"],
}],
"assign_tenant": "string",
"policy_attribute_name": "string",
"assign_role": "string",
"role_attribute_name": "string",
"assign_policy": "string",
"tenant_attribute_name": "string",
"tenant_refs": ["string"],
"userprofile_attribute_name": "string",
"userprofile_ref": "string",
}],
type="string",
allow_unlabelled_access="string",
authmappingprofile_id="string",
configpb_attributes=[{
"created_by": "string",
"version": "string",
}],
description="string",
dynamic_role_filters=[{
"match_labels": [{
"key": "string",
"values": ["string"],
}],
"enabled": "string",
"match_operation": "string",
"name": "string",
}],
name="string",
tenant_ref="string",
uuid="string")
const authmappingprofileResource = new avi.Authmappingprofile("authmappingprofileResource", {
mappingRules: [{
index: "string",
isSuperuser: "string",
roleRefs: ["string"],
assignUserprofile: "string",
attributeMatches: [{
criteria: "string",
name: "string",
values: ["string"],
}],
defaultTenantRef: "string",
groupMatches: [{
criteria: "string",
groups: ["string"],
}],
assignTenant: "string",
policyAttributeName: "string",
assignRole: "string",
roleAttributeName: "string",
assignPolicy: "string",
tenantAttributeName: "string",
tenantRefs: ["string"],
userprofileAttributeName: "string",
userprofileRef: "string",
}],
type: "string",
allowUnlabelledAccess: "string",
authmappingprofileId: "string",
configpbAttributes: [{
createdBy: "string",
version: "string",
}],
description: "string",
dynamicRoleFilters: [{
matchLabels: [{
key: "string",
values: ["string"],
}],
enabled: "string",
matchOperation: "string",
name: "string",
}],
name: "string",
tenantRef: "string",
uuid: "string",
});
type: avi:Authmappingprofile
properties:
allowUnlabelledAccess: string
authmappingprofileId: string
configpbAttributes:
- createdBy: string
version: string
description: string
dynamicRoleFilters:
- enabled: string
matchLabels:
- key: string
values:
- string
matchOperation: string
name: string
mappingRules:
- assignPolicy: string
assignRole: string
assignTenant: string
assignUserprofile: string
attributeMatches:
- criteria: string
name: string
values:
- string
defaultTenantRef: string
groupMatches:
- criteria: string
groups:
- string
index: string
isSuperuser: string
policyAttributeName: string
roleAttributeName: string
roleRefs:
- string
tenantAttributeName: string
tenantRefs:
- string
userprofileAttributeName: string
userprofileRef: string
name: string
tenantRef: string
type: string
uuid: string
Authmappingprofile 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 Authmappingprofile resource accepts the following input properties:
- Mapping
Rules List<AuthmappingprofileMapping Rule> - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- Type string
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- Allow
Unlabelled stringAccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Authmappingprofile
Id string - Configpb
Attributes List<AuthmappingprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Dynamic
Role List<AuthmappingprofileFilters Dynamic Role Filter> - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Mapping
Rules []AuthmappingprofileMapping Rule Args - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- Type string
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- Allow
Unlabelled stringAccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Authmappingprofile
Id string - Configpb
Attributes []AuthmappingprofileConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Dynamic
Role []AuthmappingprofileFilters Dynamic Role Filter Args - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mapping_
rules list(object) - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- type string
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- allow_
unlabelled_ stringaccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- authmappingprofile_
id string - configpb_
attributes list(object) - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- dynamic_
role_ list(object)filters - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant_
ref string - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mapping
Rules List<AuthmappingprofileMapping Rule> - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- type String
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- allow
Unlabelled StringAccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- authmappingprofile
Id String - configpb
Attributes List<AuthmappingprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- dynamic
Role List<AuthmappingprofileFilters Dynamic Role Filter> - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mapping
Rules AuthmappingprofileMapping Rule[] - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- type string
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- allow
Unlabelled stringAccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- authmappingprofile
Id string - configpb
Attributes AuthmappingprofileConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- dynamic
Role AuthmappingprofileFilters Dynamic Role Filter[] - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref string - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mapping_
rules Sequence[AuthmappingprofileMapping Rule Args] - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- type str
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- allow_
unlabelled_ straccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- authmappingprofile_
id str - configpb_
attributes Sequence[AuthmappingprofileConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- dynamic_
role_ Sequence[Authmappingprofilefilters Dynamic Role Filter Args] - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant_
ref str - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- mapping
Rules List<Property Map> - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- type String
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- allow
Unlabelled StringAccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- authmappingprofile
Id String - configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- dynamic
Role List<Property Map>Filters - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of the authmappingprofile. Field introduced in 22.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 Authmappingprofile 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 Authmappingprofile Resource
Get an existing Authmappingprofile 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?: AuthmappingprofileState, opts?: CustomResourceOptions): Authmappingprofile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_unlabelled_access: Optional[str] = None,
authmappingprofile_id: Optional[str] = None,
configpb_attributes: Optional[Sequence[AuthmappingprofileConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
dynamic_role_filters: Optional[Sequence[AuthmappingprofileDynamicRoleFilterArgs]] = None,
mapping_rules: Optional[Sequence[AuthmappingprofileMappingRuleArgs]] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
type: Optional[str] = None,
uuid: Optional[str] = None) -> Authmappingprofilefunc GetAuthmappingprofile(ctx *Context, name string, id IDInput, state *AuthmappingprofileState, opts ...ResourceOption) (*Authmappingprofile, error)public static Authmappingprofile Get(string name, Input<string> id, AuthmappingprofileState? state, CustomResourceOptions? opts = null)public static Authmappingprofile get(String name, Output<String> id, AuthmappingprofileState state, CustomResourceOptions options)resources: _: type: avi:Authmappingprofile get: id: ${id}import {
to = avi_authmappingprofile.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.
- Allow
Unlabelled stringAccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Authmappingprofile
Id string - Configpb
Attributes List<AuthmappingprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Dynamic
Role List<AuthmappingprofileFilters Dynamic Role Filter> - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- Mapping
Rules List<AuthmappingprofileMapping Rule> - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Type string
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- Uuid string
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Allow
Unlabelled stringAccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Authmappingprofile
Id string - Configpb
Attributes []AuthmappingprofileConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Dynamic
Role []AuthmappingprofileFilters Dynamic Role Filter Args - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- Mapping
Rules []AuthmappingprofileMapping Rule Args - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Type string
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- Uuid string
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- allow_
unlabelled_ stringaccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- authmappingprofile_
id string - configpb_
attributes list(object) - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- dynamic_
role_ list(object)filters - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- mapping_
rules list(object) - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant_
ref string - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type string
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- uuid string
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- allow
Unlabelled StringAccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- authmappingprofile
Id String - configpb
Attributes List<AuthmappingprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- dynamic
Role List<AuthmappingprofileFilters Dynamic Role Filter> - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- mapping
Rules List<AuthmappingprofileMapping Rule> - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type String
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- uuid String
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- allow
Unlabelled stringAccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- authmappingprofile
Id string - configpb
Attributes AuthmappingprofileConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- dynamic
Role AuthmappingprofileFilters Dynamic Role Filter[] - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- mapping
Rules AuthmappingprofileMapping Rule[] - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref string - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type string
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- uuid string
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- allow_
unlabelled_ straccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- authmappingprofile_
id str - configpb_
attributes Sequence[AuthmappingprofileConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- dynamic_
role_ Sequence[Authmappingprofilefilters Dynamic Role Filter Args] - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- mapping_
rules Sequence[AuthmappingprofileMapping Rule Args] - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant_
ref str - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type str
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- uuid str
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- allow
Unlabelled StringAccess - Allow access to unlabelled objects. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- authmappingprofile
Id String - configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Description for the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- dynamic
Role List<Property Map>Filters - Filters for granular object access control based on object labels. Multiple filters are merged using the and operator. If empty, all objects according to the privileges will be accessible to the user. Field introduced in 32.1.1. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- mapping
Rules List<Property Map> - Rules list for tenant or role mapping. Field introduced in 22.1.1. Minimum of 1 items required. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant ref for the auth mapping profile. It is a reference to an object of type tenant. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type String
- Type of the auth profile for which these rules can be linked. Enum options - AUTH_PROFILE_LDAP, AUTH_PROFILE_TACACS_PLUS, AUTH_PROFILE_SAML, AUTH_PROFILE_PINGACCESS, AUTH_PROFILE_JWT, AUTH_PROFILE_OAUTH, AUTH_PROFILE_CLIENT_CERT. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- uuid String
- Uuid of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Supporting Types
AuthmappingprofileConfigpbAttribute, AuthmappingprofileConfigpbAttributeArgs
- created_
by string - version string
- created_
by str - version str
AuthmappingprofileDynamicRoleFilter, AuthmappingprofileDynamicRoleFilterArgs
- Match
Labels List<AuthmappingprofileDynamic Role Filter Match Label> - Enabled string
- Match
Operation string - Name string
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Match
Labels []AuthmappingprofileDynamic Role Filter Match Label - Enabled string
- Match
Operation string - Name string
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- match_
labels list(object) - enabled string
- match_
operation string - name string
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- match
Labels List<AuthmappingprofileDynamic Role Filter Match Label> - enabled String
- match
Operation String - name String
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- match
Labels AuthmappingprofileDynamic Role Filter Match Label[] - enabled string
- match
Operation string - name string
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- match_
labels Sequence[AuthmappingprofileDynamic Role Filter Match Label] - enabled str
- match_
operation str - name str
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- match
Labels List<Property Map> - enabled String
- match
Operation String - name String
- Name of the authmappingprofile. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
AuthmappingprofileDynamicRoleFilterMatchLabel, AuthmappingprofileDynamicRoleFilterMatchLabelArgs
AuthmappingprofileMappingRule, AuthmappingprofileMappingRuleArgs
- Index string
- Assign
Policy string - Assign
Role string - Assign
Tenant string - Assign
Userprofile string - Attribute
Matches List<AuthmappingprofileMapping Rule Attribute Match> - Default
Tenant stringRef - Group
Matches List<AuthmappingprofileMapping Rule Group Match> - Is
Superuser string - Policy
Attribute stringName - Role
Attribute stringName - Role
Refs List<string> - Tenant
Attribute stringName - Tenant
Refs List<string> - Userprofile
Attribute stringName - Userprofile
Ref string
- Index string
- Assign
Policy string - Assign
Role string - Assign
Tenant string - Assign
Userprofile string - Attribute
Matches []AuthmappingprofileMapping Rule Attribute Match - Default
Tenant stringRef - Group
Matches []AuthmappingprofileMapping Rule Group Match - Is
Superuser string - Policy
Attribute stringName - Role
Attribute stringName - Role
Refs []string - Tenant
Attribute stringName - Tenant
Refs []string - Userprofile
Attribute stringName - Userprofile
Ref string
- index string
- assign_
policy string - assign_
role string - assign_
tenant string - assign_
userprofile string - attribute_
matches list(object) - default_
tenant_ stringref - group_
matches list(object) - is_
superuser string - policy_
attribute_ stringname - role_
attribute_ stringname - role_
refs list(string) - tenant_
attribute_ stringname - tenant_
refs list(string) - userprofile_
attribute_ stringname - userprofile_
ref string
- index String
- assign
Policy String - assign
Role String - assign
Tenant String - assign
Userprofile String - attribute
Matches List<AuthmappingprofileMapping Rule Attribute Match> - default
Tenant StringRef - group
Matches List<AuthmappingprofileMapping Rule Group Match> - is
Superuser String - policy
Attribute StringName - role
Attribute StringName - role
Refs List<String> - tenant
Attribute StringName - tenant
Refs List<String> - userprofile
Attribute StringName - userprofile
Ref String
- index string
- assign
Policy string - assign
Role string - assign
Tenant string - assign
Userprofile string - attribute
Matches AuthmappingprofileMapping Rule Attribute Match[] - default
Tenant stringRef - group
Matches AuthmappingprofileMapping Rule Group Match[] - is
Superuser string - policy
Attribute stringName - role
Attribute stringName - role
Refs string[] - tenant
Attribute stringName - tenant
Refs string[] - userprofile
Attribute stringName - userprofile
Ref string
- index str
- assign_
policy str - assign_
role str - assign_
tenant str - assign_
userprofile str - attribute_
matches Sequence[AuthmappingprofileMapping Rule Attribute Match] - default_
tenant_ strref - group_
matches Sequence[AuthmappingprofileMapping Rule Group Match] - is_
superuser str - policy_
attribute_ strname - role_
attribute_ strname - role_
refs Sequence[str] - tenant_
attribute_ strname - tenant_
refs Sequence[str] - userprofile_
attribute_ strname - userprofile_
ref str
- index String
- assign
Policy String - assign
Role String - assign
Tenant String - assign
Userprofile String - attribute
Matches List<Property Map> - default
Tenant StringRef - group
Matches List<Property Map> - is
Superuser String - policy
Attribute StringName - role
Attribute StringName - role
Refs List<String> - tenant
Attribute StringName - tenant
Refs List<String> - userprofile
Attribute StringName - userprofile
Ref String
AuthmappingprofileMappingRuleAttributeMatch, AuthmappingprofileMappingRuleAttributeMatchArgs
AuthmappingprofileMappingRuleGroupMatch, AuthmappingprofileMappingRuleGroupMatchArgs
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
aviTerraform Provider.
published on Tuesday, May 19, 2026 by vmware