avi.Role
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Role” sidebar_current: “docs-avi-resource-role” description: |- Creates and manages Avi Role.
avi.Role
The Role resource allows the creation and management of Avi Role
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Role("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Role("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewRole(ctx, "foo", &avi.RoleArgs{
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.Role("foo", new()
{
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.Role;
import com.pulumi.avi.RoleArgs;
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 Role("foo", RoleArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Role
properties:
tenantRef: /api/tenant/?name=admin
Create Role Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Role(name: string, args?: RoleArgs, opts?: CustomResourceOptions);
@overload
def Role(resource_name: str,
args: Optional[RoleArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Role(resource_name: str,
opts: Optional[ResourceOptions] = None,
allow_unlabelled_access: Optional[str] = None,
configpb_attributes: Optional[Sequence[RoleConfigpbAttributeArgs]] = None,
filters: Optional[Sequence[RoleFilterArgs]] = None,
name: Optional[str] = None,
privileges: Optional[Sequence[RolePrivilegeArgs]] = None,
role_id: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)
func NewRole(ctx *Context, name string, args *RoleArgs, opts ...ResourceOption) (*Role, error)
public Role(string name, RoleArgs? args = null, CustomResourceOptions? opts = null)
type: avi:Role
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 RoleArgs
- 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 RoleArgs
- 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 RoleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RoleArgs
- 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 roleResource = new Avi.Role("roleResource", new()
{
AllowUnlabelledAccess = "string",
ConfigpbAttributes = new[]
{
new Avi.Inputs.RoleConfigpbAttributeArgs
{
Version = "string",
},
},
Filters = new[]
{
new Avi.Inputs.RoleFilterArgs
{
MatchLabels = new[]
{
new Avi.Inputs.RoleFilterMatchLabelArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
Enabled = "string",
MatchOperation = "string",
Name = "string",
},
},
Name = "string",
Privileges = new[]
{
new Avi.Inputs.RolePrivilegeArgs
{
Resource = "string",
Type = "string",
Subresources = new[]
{
new Avi.Inputs.RolePrivilegeSubresourceArgs
{
Subresources = new[]
{
"string",
},
ExcludeSubresources = "string",
},
},
},
},
RoleId = "string",
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewRole(ctx, "roleResource", &avi.RoleArgs{
AllowUnlabelledAccess: pulumi.String("string"),
ConfigpbAttributes: avi.RoleConfigpbAttributeArray{
&avi.RoleConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
Filters: avi.RoleFilterArray{
&avi.RoleFilterArgs{
MatchLabels: avi.RoleFilterMatchLabelArray{
&avi.RoleFilterMatchLabelArgs{
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"),
Privileges: avi.RolePrivilegeArray{
&avi.RolePrivilegeArgs{
Resource: pulumi.String("string"),
Type: pulumi.String("string"),
Subresources: avi.RolePrivilegeSubresourceArray{
&avi.RolePrivilegeSubresourceArgs{
Subresources: pulumi.StringArray{
pulumi.String("string"),
},
ExcludeSubresources: pulumi.String("string"),
},
},
},
},
RoleId: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var roleResource = new Role("roleResource", RoleArgs.builder()
.allowUnlabelledAccess("string")
.configpbAttributes(RoleConfigpbAttributeArgs.builder()
.version("string")
.build())
.filters(RoleFilterArgs.builder()
.matchLabels(RoleFilterMatchLabelArgs.builder()
.key("string")
.values("string")
.build())
.enabled("string")
.matchOperation("string")
.name("string")
.build())
.name("string")
.privileges(RolePrivilegeArgs.builder()
.resource("string")
.type("string")
.subresources(RolePrivilegeSubresourceArgs.builder()
.subresources("string")
.excludeSubresources("string")
.build())
.build())
.roleId("string")
.tenantRef("string")
.uuid("string")
.build());
role_resource = avi.Role("roleResource",
allow_unlabelled_access="string",
configpb_attributes=[{
"version": "string",
}],
filters=[{
"match_labels": [{
"key": "string",
"values": ["string"],
}],
"enabled": "string",
"match_operation": "string",
"name": "string",
}],
name="string",
privileges=[{
"resource": "string",
"type": "string",
"subresources": [{
"subresources": ["string"],
"exclude_subresources": "string",
}],
}],
role_id="string",
tenant_ref="string",
uuid="string")
const roleResource = new avi.Role("roleResource", {
allowUnlabelledAccess: "string",
configpbAttributes: [{
version: "string",
}],
filters: [{
matchLabels: [{
key: "string",
values: ["string"],
}],
enabled: "string",
matchOperation: "string",
name: "string",
}],
name: "string",
privileges: [{
resource: "string",
type: "string",
subresources: [{
subresources: ["string"],
excludeSubresources: "string",
}],
}],
roleId: "string",
tenantRef: "string",
uuid: "string",
});
type: avi:Role
properties:
allowUnlabelledAccess: string
configpbAttributes:
- version: string
filters:
- enabled: string
matchLabels:
- key: string
values:
- string
matchOperation: string
name: string
name: string
privileges:
- resource: string
subresources:
- excludeSubresources: string
subresources:
- string
type: string
roleId: string
tenantRef: string
uuid: string
Role 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 Role resource accepts the following input properties:
- Allow
Unlabelled stringAccess - Allow access to unlabelled objects. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes List<RoleConfigpb 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.
- Filters
List<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 20.1.3. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Privileges
List<Role
Privilege> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Role
Id string - Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Allow
Unlabelled stringAccess - Allow access to unlabelled objects. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes []RoleConfigpb 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.
- Filters
[]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 20.1.3. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Privileges
[]Role
Privilege Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Role
Id string - Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- allow
Unlabelled StringAccess - Allow access to unlabelled objects. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<RoleConfigpb 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.
- filters
List<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 20.1.3. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- privileges
List<Role
Privilege> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- role
Id String - tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- allow
Unlabelled stringAccess - Allow access to unlabelled objects. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes RoleConfigpb 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.
- filters
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 20.1.3. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- privileges
Role
Privilege[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- role
Id string - tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- allow_
unlabelled_ straccess - Allow access to unlabelled objects. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb_
attributes Sequence[RoleConfigpb 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.
- filters
Sequence[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 20.1.3. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- privileges
Sequence[Role
Privilege Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- role_
id str - tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- allow
Unlabelled StringAccess - Allow access to unlabelled objects. Field introduced in 20.1.5. Allowed with any value in enterprise, 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.
- filters List<Property Map>
- 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 20.1.3. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- privileges List<Property Map>
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- role
Id String - tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- 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 Role 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 Role Resource
Get an existing Role 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?: RoleState, opts?: CustomResourceOptions): Role
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_unlabelled_access: Optional[str] = None,
configpb_attributes: Optional[Sequence[RoleConfigpbAttributeArgs]] = None,
filters: Optional[Sequence[RoleFilterArgs]] = None,
name: Optional[str] = None,
privileges: Optional[Sequence[RolePrivilegeArgs]] = None,
role_id: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None) -> Role
func GetRole(ctx *Context, name string, id IDInput, state *RoleState, opts ...ResourceOption) (*Role, error)
public static Role Get(string name, Input<string> id, RoleState? state, CustomResourceOptions? opts = null)
public static Role get(String name, Output<String> id, RoleState state, CustomResourceOptions options)
resources: _: type: avi:Role 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.
- Allow
Unlabelled stringAccess - Allow access to unlabelled objects. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes List<RoleConfigpb 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.
- Filters
List<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 20.1.3. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Privileges
List<Role
Privilege> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Role
Id string - Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Allow
Unlabelled stringAccess - Allow access to unlabelled objects. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes []RoleConfigpb 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.
- Filters
[]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 20.1.3. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Privileges
[]Role
Privilege Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Role
Id string - Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- allow
Unlabelled StringAccess - Allow access to unlabelled objects. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<RoleConfigpb 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.
- filters
List<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 20.1.3. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- privileges
List<Role
Privilege> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- role
Id String - tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- allow
Unlabelled stringAccess - Allow access to unlabelled objects. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes RoleConfigpb 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.
- filters
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 20.1.3. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- privileges
Role
Privilege[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- role
Id string - tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- allow_
unlabelled_ straccess - Allow access to unlabelled objects. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb_
attributes Sequence[RoleConfigpb 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.
- filters
Sequence[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 20.1.3. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- privileges
Sequence[Role
Privilege Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- role_
id str - tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- allow
Unlabelled StringAccess - Allow access to unlabelled objects. Field introduced in 20.1.5. Allowed with any value in enterprise, 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.
- filters List<Property Map>
- 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 20.1.3. Maximum of 4 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- privileges List<Property Map>
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- role
Id String - tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
RoleConfigpbAttribute, RoleConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
RoleFilter, RoleFilterArgs
- Match
Labels List<RoleFilter Match Label> - Enabled string
- Match
Operation string - Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Match
Labels []RoleFilter Match Label - Enabled string
- Match
Operation string - Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- match
Labels List<RoleFilter Match Label> - enabled String
- match
Operation String - name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- match
Labels RoleFilter Match Label[] - enabled string
- match
Operation string - name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- match_
labels Sequence[RoleFilter Match Label] - enabled str
- match_
operation str - name str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- match
Labels List<Property Map> - enabled String
- match
Operation String - name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
RoleFilterMatchLabel, RoleFilterMatchLabelArgs
RolePrivilege, RolePrivilegeArgs
- Resource string
- Type string
- Subresources
List<Role
Privilege Subresource>
- Resource string
- Type string
- Subresources
[]Role
Privilege Subresource
- resource String
- type String
- subresources
List<Role
Privilege Subresource>
- resource string
- type string
- subresources
Role
Privilege Subresource[]
- resource String
- type String
- subresources List<Property Map>
RolePrivilegeSubresource, RolePrivilegeSubresourceArgs
- Subresources List<string>
- Exclude
Subresources string
- Subresources []string
- Exclude
Subresources string
- subresources List<String>
- exclude
Subresources String
- subresources string[]
- exclude
Subresources string
- subresources Sequence[str]
- exclude_
subresources str
- subresources List<String>
- exclude
Subresources String
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.