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

avi.Stringgroup

Explore with Pulumi AI

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

    <!–

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

    –>

    layout: “avi”

    page_title: “Avi: avi.Stringgroup” sidebar_current: “docs-avi-resource-stringgroup” description: |- Creates and manages Avi StringGroup.

    avi.Stringgroup

    The StringGroup resource allows the creation and management of Avi StringGroup

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const foo = new avi.Stringgroup("foo", {tenantRef: "/api/tenant/?name=admin"});
    
    import pulumi
    import pulumi_avi as avi
    
    foo = avi.Stringgroup("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.NewStringgroup(ctx, "foo", &avi.StringgroupArgs{
    			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.Stringgroup("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.Stringgroup;
    import com.pulumi.avi.StringgroupArgs;
    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 Stringgroup("foo", StringgroupArgs.builder()
                .tenantRef("/api/tenant/?name=admin")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: avi:Stringgroup
        properties:
          tenantRef: /api/tenant/?name=admin
    

    Create Stringgroup Resource

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

    Constructor syntax

    new Stringgroup(name: string, args: StringgroupArgs, opts?: CustomResourceOptions);
    @overload
    def Stringgroup(resource_name: str,
                    args: StringgroupArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Stringgroup(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    type: Optional[str] = None,
                    configpb_attributes: Optional[Sequence[StringgroupConfigpbAttributeArgs]] = None,
                    description: Optional[str] = None,
                    kvs: Optional[Sequence[StringgroupKvArgs]] = None,
                    longest_match: Optional[str] = None,
                    markers: Optional[Sequence[StringgroupMarkerArgs]] = None,
                    name: Optional[str] = None,
                    stringgroup_id: Optional[str] = None,
                    tenant_ref: Optional[str] = None,
                    uuid: Optional[str] = None)
    func NewStringgroup(ctx *Context, name string, args StringgroupArgs, opts ...ResourceOption) (*Stringgroup, error)
    public Stringgroup(string name, StringgroupArgs args, CustomResourceOptions? opts = null)
    public Stringgroup(String name, StringgroupArgs args)
    public Stringgroup(String name, StringgroupArgs args, CustomResourceOptions options)
    
    type: avi:Stringgroup
    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 StringgroupArgs
    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 StringgroupArgs
    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 StringgroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StringgroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StringgroupArgs
    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 stringgroupResource = new Avi.Stringgroup("stringgroupResource", new()
    {
        Type = "string",
        ConfigpbAttributes = new[]
        {
            new Avi.Inputs.StringgroupConfigpbAttributeArgs
            {
                Version = "string",
            },
        },
        Description = "string",
        Kvs = new[]
        {
            new Avi.Inputs.StringgroupKvArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        LongestMatch = "string",
        Markers = new[]
        {
            new Avi.Inputs.StringgroupMarkerArgs
            {
                Key = "string",
                Values = new[]
                {
                    "string",
                },
            },
        },
        Name = "string",
        StringgroupId = "string",
        TenantRef = "string",
        Uuid = "string",
    });
    
    example, err := avi.NewStringgroup(ctx, "stringgroupResource", &avi.StringgroupArgs{
    	Type: pulumi.String("string"),
    	ConfigpbAttributes: avi.StringgroupConfigpbAttributeArray{
    		&avi.StringgroupConfigpbAttributeArgs{
    			Version: pulumi.String("string"),
    		},
    	},
    	Description: pulumi.String("string"),
    	Kvs: avi.StringgroupKvArray{
    		&avi.StringgroupKvArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	LongestMatch: pulumi.String("string"),
    	Markers: avi.StringgroupMarkerArray{
    		&avi.StringgroupMarkerArgs{
    			Key: pulumi.String("string"),
    			Values: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	Name:          pulumi.String("string"),
    	StringgroupId: pulumi.String("string"),
    	TenantRef:     pulumi.String("string"),
    	Uuid:          pulumi.String("string"),
    })
    
    var stringgroupResource = new Stringgroup("stringgroupResource", StringgroupArgs.builder()
        .type("string")
        .configpbAttributes(StringgroupConfigpbAttributeArgs.builder()
            .version("string")
            .build())
        .description("string")
        .kvs(StringgroupKvArgs.builder()
            .key("string")
            .value("string")
            .build())
        .longestMatch("string")
        .markers(StringgroupMarkerArgs.builder()
            .key("string")
            .values("string")
            .build())
        .name("string")
        .stringgroupId("string")
        .tenantRef("string")
        .uuid("string")
        .build());
    
    stringgroup_resource = avi.Stringgroup("stringgroupResource",
        type="string",
        configpb_attributes=[{
            "version": "string",
        }],
        description="string",
        kvs=[{
            "key": "string",
            "value": "string",
        }],
        longest_match="string",
        markers=[{
            "key": "string",
            "values": ["string"],
        }],
        name="string",
        stringgroup_id="string",
        tenant_ref="string",
        uuid="string")
    
    const stringgroupResource = new avi.Stringgroup("stringgroupResource", {
        type: "string",
        configpbAttributes: [{
            version: "string",
        }],
        description: "string",
        kvs: [{
            key: "string",
            value: "string",
        }],
        longestMatch: "string",
        markers: [{
            key: "string",
            values: ["string"],
        }],
        name: "string",
        stringgroupId: "string",
        tenantRef: "string",
        uuid: "string",
    });
    
    type: avi:Stringgroup
    properties:
        configpbAttributes:
            - version: string
        description: string
        kvs:
            - key: string
              value: string
        longestMatch: string
        markers:
            - key: string
              values:
                - string
        name: string
        stringgroupId: string
        tenantRef: string
        type: string
        uuid: string
    

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

    Type string
    Type of stringgroup. Enum options - SG_TYPE_STRING, SG_TYPE_KEYVAL. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes List<StringgroupConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. 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.
    Kvs List<StringgroupKv>
    Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    LongestMatch string
    Enable the longest match, default is the shortest match. Field introduced in 18.2.8. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Markers List<StringgroupMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Name of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    StringgroupId string
    TenantRef 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
    Uuid of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Type string
    Type of stringgroup. Enum options - SG_TYPE_STRING, SG_TYPE_KEYVAL. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []StringgroupConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. 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.
    Kvs []StringgroupKvArgs
    Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    LongestMatch string
    Enable the longest match, default is the shortest match. Field introduced in 18.2.8. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Markers []StringgroupMarkerArgs
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Name of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    StringgroupId string
    TenantRef 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
    Uuid of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    type String
    Type of stringgroup. Enum options - SG_TYPE_STRING, SG_TYPE_KEYVAL. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<StringgroupConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. 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.
    kvs List<StringgroupKv>
    Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    longestMatch String
    Enable the longest match, default is the shortest match. Field introduced in 18.2.8. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers List<StringgroupMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Name of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    stringgroupId String
    tenantRef 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
    Uuid of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    type string
    Type of stringgroup. Enum options - SG_TYPE_STRING, SG_TYPE_KEYVAL. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes StringgroupConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. 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.
    kvs StringgroupKv[]
    Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    longestMatch string
    Enable the longest match, default is the shortest match. Field introduced in 18.2.8. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers StringgroupMarker[]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Name of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    stringgroupId string
    tenantRef 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
    Uuid of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    type str
    Type of stringgroup. Enum options - SG_TYPE_STRING, SG_TYPE_KEYVAL. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[StringgroupConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. 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.
    kvs Sequence[StringgroupKvArgs]
    Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    longest_match str
    Enable the longest match, default is the shortest match. Field introduced in 18.2.8. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers Sequence[StringgroupMarkerArgs]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Name of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    stringgroup_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
    Uuid of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    type String
    Type of stringgroup. Enum options - SG_TYPE_STRING, SG_TYPE_KEYVAL. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    kvs List<Property Map>
    Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    longestMatch String
    Enable the longest match, default is the shortest match. Field introduced in 18.2.8. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers List<Property Map>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Name of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    stringgroupId String
    tenantRef 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
    Uuid of the string group. 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 Stringgroup 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 Stringgroup Resource

    Get an existing Stringgroup 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?: StringgroupState, opts?: CustomResourceOptions): Stringgroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configpb_attributes: Optional[Sequence[StringgroupConfigpbAttributeArgs]] = None,
            description: Optional[str] = None,
            kvs: Optional[Sequence[StringgroupKvArgs]] = None,
            longest_match: Optional[str] = None,
            markers: Optional[Sequence[StringgroupMarkerArgs]] = None,
            name: Optional[str] = None,
            stringgroup_id: Optional[str] = None,
            tenant_ref: Optional[str] = None,
            type: Optional[str] = None,
            uuid: Optional[str] = None) -> Stringgroup
    func GetStringgroup(ctx *Context, name string, id IDInput, state *StringgroupState, opts ...ResourceOption) (*Stringgroup, error)
    public static Stringgroup Get(string name, Input<string> id, StringgroupState? state, CustomResourceOptions? opts = null)
    public static Stringgroup get(String name, Output<String> id, StringgroupState state, CustomResourceOptions options)
    resources:  _:    type: avi:Stringgroup    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ConfigpbAttributes List<StringgroupConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. 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.
    Kvs List<StringgroupKv>
    Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    LongestMatch string
    Enable the longest match, default is the shortest match. Field introduced in 18.2.8. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Markers List<StringgroupMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Name of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    StringgroupId string
    TenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Type string
    Type of stringgroup. Enum options - SG_TYPE_STRING, SG_TYPE_KEYVAL. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Uuid of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []StringgroupConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. 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.
    Kvs []StringgroupKvArgs
    Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    LongestMatch string
    Enable the longest match, default is the shortest match. Field introduced in 18.2.8. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Markers []StringgroupMarkerArgs
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Name of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    StringgroupId string
    TenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Type string
    Type of stringgroup. Enum options - SG_TYPE_STRING, SG_TYPE_KEYVAL. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Uuid of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<StringgroupConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. 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.
    kvs List<StringgroupKv>
    Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    longestMatch String
    Enable the longest match, default is the shortest match. Field introduced in 18.2.8. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers List<StringgroupMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Name of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    stringgroupId String
    tenantRef String
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    type String
    Type of stringgroup. Enum options - SG_TYPE_STRING, SG_TYPE_KEYVAL. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Uuid of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes StringgroupConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. 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.
    kvs StringgroupKv[]
    Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    longestMatch string
    Enable the longest match, default is the shortest match. Field introduced in 18.2.8. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers StringgroupMarker[]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Name of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    stringgroupId string
    tenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    type string
    Type of stringgroup. Enum options - SG_TYPE_STRING, SG_TYPE_KEYVAL. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid string
    Uuid of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[StringgroupConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. 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.
    kvs Sequence[StringgroupKvArgs]
    Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    longest_match str
    Enable the longest match, default is the shortest match. Field introduced in 18.2.8. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers Sequence[StringgroupMarkerArgs]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Name of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    stringgroup_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.
    type str
    Type of stringgroup. Enum options - SG_TYPE_STRING, SG_TYPE_KEYVAL. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Uuid of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    kvs List<Property Map>
    Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    longestMatch String
    Enable the longest match, default is the shortest match. Field introduced in 18.2.8. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers List<Property Map>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Name of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    stringgroupId String
    tenantRef String
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    type String
    Type of stringgroup. Enum options - SG_TYPE_STRING, SG_TYPE_KEYVAL. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Uuid of the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Supporting Types

    StringgroupConfigpbAttribute, StringgroupConfigpbAttributeArgs

    Version string
    Version string
    version String
    version string
    version String

    StringgroupKv, StringgroupKvArgs

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

    StringgroupMarker, StringgroupMarkerArgs

    Key string
    Values List<string>
    Key string
    Values []string
    key String
    values List<String>
    key string
    values string[]
    key str
    values Sequence[str]
    key String
    values List<String>

    Package Details

    Repository
    avi vmware/terraform-provider-avi
    License
    Notes
    This Pulumi package is based on the avi Terraform Provider.
    avi logo
    avi 31.1.1 published on Monday, Apr 14, 2025 by vmware