avi.Stringgroup
Explore with Pulumi AI
<!–
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.
- Configpb
Attributes List<StringgroupConfigpb 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.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Kvs
List<Stringgroup
Kv> - Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Longest
Match 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<Stringgroup
Marker> - 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.
- Stringgroup
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
- 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.
- Configpb
Attributes []StringgroupConfigpb 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.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Kvs
[]Stringgroup
Kv Args - Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Longest
Match 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
[]Stringgroup
Marker Args - 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.
- Stringgroup
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
- 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.
- configpb
Attributes List<StringgroupConfigpb 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.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- kvs
List<Stringgroup
Kv> - Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- longest
Match 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<Stringgroup
Marker> - 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.
- stringgroup
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
- 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.
- configpb
Attributes StringgroupConfigpb 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.
- description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- kvs
Stringgroup
Kv[] - Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- longest
Match 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
Stringgroup
Marker[] - 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.
- stringgroup
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
- 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[StringgroupConfigpb 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.
- description str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- kvs
Sequence[Stringgroup
Kv Args] - 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[Stringgroup
Marker Args] - 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.
- 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.
- 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.
- longest
Match 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.
- stringgroup
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
- 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.
- Configpb
Attributes List<StringgroupConfigpb 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.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Kvs
List<Stringgroup
Kv> - Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Longest
Match 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<Stringgroup
Marker> - 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.
- Stringgroup
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.
- 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 []StringgroupConfigpb 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.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Kvs
[]Stringgroup
Kv Args - Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Longest
Match 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
[]Stringgroup
Marker Args - 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.
- Stringgroup
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.
- 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 List<StringgroupConfigpb 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.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- kvs
List<Stringgroup
Kv> - Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- longest
Match 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<Stringgroup
Marker> - 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.
- stringgroup
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.
- 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 StringgroupConfigpb 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.
- description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- kvs
Stringgroup
Kv[] - Configure key value in the string group. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- longest
Match 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
Stringgroup
Marker[] - 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.
- stringgroup
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.
- 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[StringgroupConfigpb 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.
- description str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- kvs
Sequence[Stringgroup
Kv Args] - 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[Stringgroup
Marker Args] - 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.
- 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.
- 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.
- longest
Match 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.
- stringgroup
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.
- 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 str
- version String
StringgroupKv, StringgroupKvArgs
StringgroupMarker, StringgroupMarkerArgs
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.