1. Packages
  2. Google Cloud Native
  3. API Docs
  4. dialogflow
  5. dialogflow/v3
  6. EntityType

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.dialogflow/v3.EntityType

Explore with Pulumi AI

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

Creates an entity type in the specified agent. Note: You should always train a flow prior to sending it queries. See the training documentation.

Create EntityType Resource

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

Constructor syntax

new EntityType(name: string, args: EntityTypeArgs, opts?: CustomResourceOptions);
@overload
def EntityType(resource_name: str,
               args: EntityTypeArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def EntityType(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               agent_id: Optional[str] = None,
               display_name: Optional[str] = None,
               kind: Optional[EntityTypeKind] = None,
               auto_expansion_mode: Optional[EntityTypeAutoExpansionMode] = None,
               enable_fuzzy_extraction: Optional[bool] = None,
               entities: Optional[Sequence[GoogleCloudDialogflowCxV3EntityTypeEntityArgs]] = None,
               excluded_phrases: Optional[Sequence[GoogleCloudDialogflowCxV3EntityTypeExcludedPhraseArgs]] = None,
               language_code: Optional[str] = None,
               location: Optional[str] = None,
               name: Optional[str] = None,
               project: Optional[str] = None,
               redact: Optional[bool] = None)
func NewEntityType(ctx *Context, name string, args EntityTypeArgs, opts ...ResourceOption) (*EntityType, error)
public EntityType(string name, EntityTypeArgs args, CustomResourceOptions? opts = null)
public EntityType(String name, EntityTypeArgs args)
public EntityType(String name, EntityTypeArgs args, CustomResourceOptions options)
type: google-native:dialogflow/v3:EntityType
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. EntityTypeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. EntityTypeArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. EntityTypeArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. EntityTypeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. EntityTypeArgs
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 exampleentityTypeResourceResourceFromDialogflowv3 = new GoogleNative.Dialogflow.V3.EntityType("exampleentityTypeResourceResourceFromDialogflowv3", new()
{
    AgentId = "string",
    DisplayName = "string",
    Kind = GoogleNative.Dialogflow.V3.EntityTypeKind.KindUnspecified,
    AutoExpansionMode = GoogleNative.Dialogflow.V3.EntityTypeAutoExpansionMode.AutoExpansionModeUnspecified,
    EnableFuzzyExtraction = false,
    Entities = new[]
    {
        new GoogleNative.Dialogflow.V3.Inputs.GoogleCloudDialogflowCxV3EntityTypeEntityArgs
        {
            Synonyms = new[]
            {
                "string",
            },
            Value = "string",
        },
    },
    ExcludedPhrases = new[]
    {
        new GoogleNative.Dialogflow.V3.Inputs.GoogleCloudDialogflowCxV3EntityTypeExcludedPhraseArgs
        {
            Value = "string",
        },
    },
    LanguageCode = "string",
    Location = "string",
    Name = "string",
    Project = "string",
    Redact = false,
});
Copy
example, err := dialogflowv3.NewEntityType(ctx, "exampleentityTypeResourceResourceFromDialogflowv3", &dialogflowv3.EntityTypeArgs{
	AgentId:               pulumi.String("string"),
	DisplayName:           pulumi.String("string"),
	Kind:                  dialogflowv3.EntityTypeKindKindUnspecified,
	AutoExpansionMode:     dialogflowv3.EntityTypeAutoExpansionModeAutoExpansionModeUnspecified,
	EnableFuzzyExtraction: pulumi.Bool(false),
	Entities: dialogflow.GoogleCloudDialogflowCxV3EntityTypeEntityArray{
		&dialogflow.GoogleCloudDialogflowCxV3EntityTypeEntityArgs{
			Synonyms: pulumi.StringArray{
				pulumi.String("string"),
			},
			Value: pulumi.String("string"),
		},
	},
	ExcludedPhrases: dialogflow.GoogleCloudDialogflowCxV3EntityTypeExcludedPhraseArray{
		&dialogflow.GoogleCloudDialogflowCxV3EntityTypeExcludedPhraseArgs{
			Value: pulumi.String("string"),
		},
	},
	LanguageCode: pulumi.String("string"),
	Location:     pulumi.String("string"),
	Name:         pulumi.String("string"),
	Project:      pulumi.String("string"),
	Redact:       pulumi.Bool(false),
})
Copy
var exampleentityTypeResourceResourceFromDialogflowv3 = new EntityType("exampleentityTypeResourceResourceFromDialogflowv3", EntityTypeArgs.builder()
    .agentId("string")
    .displayName("string")
    .kind("KIND_UNSPECIFIED")
    .autoExpansionMode("AUTO_EXPANSION_MODE_UNSPECIFIED")
    .enableFuzzyExtraction(false)
    .entities(GoogleCloudDialogflowCxV3EntityTypeEntityArgs.builder()
        .synonyms("string")
        .value("string")
        .build())
    .excludedPhrases(GoogleCloudDialogflowCxV3EntityTypeExcludedPhraseArgs.builder()
        .value("string")
        .build())
    .languageCode("string")
    .location("string")
    .name("string")
    .project("string")
    .redact(false)
    .build());
Copy
exampleentity_type_resource_resource_from_dialogflowv3 = google_native.dialogflow.v3.EntityType("exampleentityTypeResourceResourceFromDialogflowv3",
    agent_id="string",
    display_name="string",
    kind=google_native.dialogflow.v3.EntityTypeKind.KIND_UNSPECIFIED,
    auto_expansion_mode=google_native.dialogflow.v3.EntityTypeAutoExpansionMode.AUTO_EXPANSION_MODE_UNSPECIFIED,
    enable_fuzzy_extraction=False,
    entities=[{
        "synonyms": ["string"],
        "value": "string",
    }],
    excluded_phrases=[{
        "value": "string",
    }],
    language_code="string",
    location="string",
    name="string",
    project="string",
    redact=False)
Copy
const exampleentityTypeResourceResourceFromDialogflowv3 = new google_native.dialogflow.v3.EntityType("exampleentityTypeResourceResourceFromDialogflowv3", {
    agentId: "string",
    displayName: "string",
    kind: google_native.dialogflow.v3.EntityTypeKind.KindUnspecified,
    autoExpansionMode: google_native.dialogflow.v3.EntityTypeAutoExpansionMode.AutoExpansionModeUnspecified,
    enableFuzzyExtraction: false,
    entities: [{
        synonyms: ["string"],
        value: "string",
    }],
    excludedPhrases: [{
        value: "string",
    }],
    languageCode: "string",
    location: "string",
    name: "string",
    project: "string",
    redact: false,
});
Copy
type: google-native:dialogflow/v3:EntityType
properties:
    agentId: string
    autoExpansionMode: AUTO_EXPANSION_MODE_UNSPECIFIED
    displayName: string
    enableFuzzyExtraction: false
    entities:
        - synonyms:
            - string
          value: string
    excludedPhrases:
        - value: string
    kind: KIND_UNSPECIFIED
    languageCode: string
    location: string
    name: string
    project: string
    redact: false
Copy

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

AgentId
This property is required.
Changes to this property will trigger replacement.
string
DisplayName This property is required. string
The human-readable name of the entity type, unique within the agent.
Kind This property is required. Pulumi.GoogleNative.Dialogflow.V3.EntityTypeKind
Indicates the kind of entity type.
AutoExpansionMode Pulumi.GoogleNative.Dialogflow.V3.EntityTypeAutoExpansionMode
Indicates whether the entity type can be automatically expanded.
EnableFuzzyExtraction bool
Enables fuzzy entity extraction during classification.
Entities List<Pulumi.GoogleNative.Dialogflow.V3.Inputs.GoogleCloudDialogflowCxV3EntityTypeEntity>
The collection of entity entries associated with the entity type.
ExcludedPhrases List<Pulumi.GoogleNative.Dialogflow.V3.Inputs.GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase>
Collection of exceptional words and phrases that shouldn't be matched. For example, if you have a size entity type with entry giant(an adjective), you might consider adding giants(a noun) as an exclusion. If the kind of entity type is KIND_MAP, then the phrases specified by entities and excluded phrases should be mutually exclusive.
LanguageCode string
The language of the following fields in entity_type: * EntityType.entities.value * EntityType.entities.synonyms * EntityType.excluded_phrases.value If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.
Location Changes to this property will trigger replacement. string
Name string
The unique identifier of the entity type. Required for EntityTypes.UpdateEntityType. Format: projects//locations//agents//entityTypes/.
Project Changes to this property will trigger replacement. string
Redact bool
Indicates whether parameters of the entity type should be redacted in log. If redaction is enabled, page parameters and intent parameters referring to the entity type will be replaced by parameter name when logging.
AgentId
This property is required.
Changes to this property will trigger replacement.
string
DisplayName This property is required. string
The human-readable name of the entity type, unique within the agent.
Kind This property is required. EntityTypeKind
Indicates the kind of entity type.
AutoExpansionMode EntityTypeAutoExpansionMode
Indicates whether the entity type can be automatically expanded.
EnableFuzzyExtraction bool
Enables fuzzy entity extraction during classification.
Entities []GoogleCloudDialogflowCxV3EntityTypeEntityArgs
The collection of entity entries associated with the entity type.
ExcludedPhrases []GoogleCloudDialogflowCxV3EntityTypeExcludedPhraseArgs
Collection of exceptional words and phrases that shouldn't be matched. For example, if you have a size entity type with entry giant(an adjective), you might consider adding giants(a noun) as an exclusion. If the kind of entity type is KIND_MAP, then the phrases specified by entities and excluded phrases should be mutually exclusive.
LanguageCode string
The language of the following fields in entity_type: * EntityType.entities.value * EntityType.entities.synonyms * EntityType.excluded_phrases.value If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.
Location Changes to this property will trigger replacement. string
Name string
The unique identifier of the entity type. Required for EntityTypes.UpdateEntityType. Format: projects//locations//agents//entityTypes/.
Project Changes to this property will trigger replacement. string
Redact bool
Indicates whether parameters of the entity type should be redacted in log. If redaction is enabled, page parameters and intent parameters referring to the entity type will be replaced by parameter name when logging.
agentId
This property is required.
Changes to this property will trigger replacement.
String
displayName This property is required. String
The human-readable name of the entity type, unique within the agent.
kind This property is required. EntityTypeKind
Indicates the kind of entity type.
autoExpansionMode EntityTypeAutoExpansionMode
Indicates whether the entity type can be automatically expanded.
enableFuzzyExtraction Boolean
Enables fuzzy entity extraction during classification.
entities List<GoogleCloudDialogflowCxV3EntityTypeEntity>
The collection of entity entries associated with the entity type.
excludedPhrases List<GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase>
Collection of exceptional words and phrases that shouldn't be matched. For example, if you have a size entity type with entry giant(an adjective), you might consider adding giants(a noun) as an exclusion. If the kind of entity type is KIND_MAP, then the phrases specified by entities and excluded phrases should be mutually exclusive.
languageCode String
The language of the following fields in entity_type: * EntityType.entities.value * EntityType.entities.synonyms * EntityType.excluded_phrases.value If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.
location Changes to this property will trigger replacement. String
name String
The unique identifier of the entity type. Required for EntityTypes.UpdateEntityType. Format: projects//locations//agents//entityTypes/.
project Changes to this property will trigger replacement. String
redact Boolean
Indicates whether parameters of the entity type should be redacted in log. If redaction is enabled, page parameters and intent parameters referring to the entity type will be replaced by parameter name when logging.
agentId
This property is required.
Changes to this property will trigger replacement.
string
displayName This property is required. string
The human-readable name of the entity type, unique within the agent.
kind This property is required. EntityTypeKind
Indicates the kind of entity type.
autoExpansionMode EntityTypeAutoExpansionMode
Indicates whether the entity type can be automatically expanded.
enableFuzzyExtraction boolean
Enables fuzzy entity extraction during classification.
entities GoogleCloudDialogflowCxV3EntityTypeEntity[]
The collection of entity entries associated with the entity type.
excludedPhrases GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase[]
Collection of exceptional words and phrases that shouldn't be matched. For example, if you have a size entity type with entry giant(an adjective), you might consider adding giants(a noun) as an exclusion. If the kind of entity type is KIND_MAP, then the phrases specified by entities and excluded phrases should be mutually exclusive.
languageCode string
The language of the following fields in entity_type: * EntityType.entities.value * EntityType.entities.synonyms * EntityType.excluded_phrases.value If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.
location Changes to this property will trigger replacement. string
name string
The unique identifier of the entity type. Required for EntityTypes.UpdateEntityType. Format: projects//locations//agents//entityTypes/.
project Changes to this property will trigger replacement. string
redact boolean
Indicates whether parameters of the entity type should be redacted in log. If redaction is enabled, page parameters and intent parameters referring to the entity type will be replaced by parameter name when logging.
agent_id
This property is required.
Changes to this property will trigger replacement.
str
display_name This property is required. str
The human-readable name of the entity type, unique within the agent.
kind This property is required. EntityTypeKind
Indicates the kind of entity type.
auto_expansion_mode EntityTypeAutoExpansionMode
Indicates whether the entity type can be automatically expanded.
enable_fuzzy_extraction bool
Enables fuzzy entity extraction during classification.
entities Sequence[GoogleCloudDialogflowCxV3EntityTypeEntityArgs]
The collection of entity entries associated with the entity type.
excluded_phrases Sequence[GoogleCloudDialogflowCxV3EntityTypeExcludedPhraseArgs]
Collection of exceptional words and phrases that shouldn't be matched. For example, if you have a size entity type with entry giant(an adjective), you might consider adding giants(a noun) as an exclusion. If the kind of entity type is KIND_MAP, then the phrases specified by entities and excluded phrases should be mutually exclusive.
language_code str
The language of the following fields in entity_type: * EntityType.entities.value * EntityType.entities.synonyms * EntityType.excluded_phrases.value If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.
location Changes to this property will trigger replacement. str
name str
The unique identifier of the entity type. Required for EntityTypes.UpdateEntityType. Format: projects//locations//agents//entityTypes/.
project Changes to this property will trigger replacement. str
redact bool
Indicates whether parameters of the entity type should be redacted in log. If redaction is enabled, page parameters and intent parameters referring to the entity type will be replaced by parameter name when logging.
agentId
This property is required.
Changes to this property will trigger replacement.
String
displayName This property is required. String
The human-readable name of the entity type, unique within the agent.
kind This property is required. "KIND_UNSPECIFIED" | "KIND_MAP" | "KIND_LIST" | "KIND_REGEXP"
Indicates the kind of entity type.
autoExpansionMode "AUTO_EXPANSION_MODE_UNSPECIFIED" | "AUTO_EXPANSION_MODE_DEFAULT"
Indicates whether the entity type can be automatically expanded.
enableFuzzyExtraction Boolean
Enables fuzzy entity extraction during classification.
entities List<Property Map>
The collection of entity entries associated with the entity type.
excludedPhrases List<Property Map>
Collection of exceptional words and phrases that shouldn't be matched. For example, if you have a size entity type with entry giant(an adjective), you might consider adding giants(a noun) as an exclusion. If the kind of entity type is KIND_MAP, then the phrases specified by entities and excluded phrases should be mutually exclusive.
languageCode String
The language of the following fields in entity_type: * EntityType.entities.value * EntityType.entities.synonyms * EntityType.excluded_phrases.value If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.
location Changes to this property will trigger replacement. String
name String
The unique identifier of the entity type. Required for EntityTypes.UpdateEntityType. Format: projects//locations//agents//entityTypes/.
project Changes to this property will trigger replacement. String
redact Boolean
Indicates whether parameters of the entity type should be redacted in log. If redaction is enabled, page parameters and intent parameters referring to the entity type will be replaced by parameter name when logging.

Outputs

All input properties are implicitly available as output properties. Additionally, the EntityType 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.

Supporting Types

EntityTypeAutoExpansionMode
, EntityTypeAutoExpansionModeArgs

AutoExpansionModeUnspecified
AUTO_EXPANSION_MODE_UNSPECIFIEDAuto expansion disabled for the entity.
AutoExpansionModeDefault
AUTO_EXPANSION_MODE_DEFAULTAllows an agent to recognize values that have not been explicitly listed in the entity.
EntityTypeAutoExpansionModeAutoExpansionModeUnspecified
AUTO_EXPANSION_MODE_UNSPECIFIEDAuto expansion disabled for the entity.
EntityTypeAutoExpansionModeAutoExpansionModeDefault
AUTO_EXPANSION_MODE_DEFAULTAllows an agent to recognize values that have not been explicitly listed in the entity.
AutoExpansionModeUnspecified
AUTO_EXPANSION_MODE_UNSPECIFIEDAuto expansion disabled for the entity.
AutoExpansionModeDefault
AUTO_EXPANSION_MODE_DEFAULTAllows an agent to recognize values that have not been explicitly listed in the entity.
AutoExpansionModeUnspecified
AUTO_EXPANSION_MODE_UNSPECIFIEDAuto expansion disabled for the entity.
AutoExpansionModeDefault
AUTO_EXPANSION_MODE_DEFAULTAllows an agent to recognize values that have not been explicitly listed in the entity.
AUTO_EXPANSION_MODE_UNSPECIFIED
AUTO_EXPANSION_MODE_UNSPECIFIEDAuto expansion disabled for the entity.
AUTO_EXPANSION_MODE_DEFAULT
AUTO_EXPANSION_MODE_DEFAULTAllows an agent to recognize values that have not been explicitly listed in the entity.
"AUTO_EXPANSION_MODE_UNSPECIFIED"
AUTO_EXPANSION_MODE_UNSPECIFIEDAuto expansion disabled for the entity.
"AUTO_EXPANSION_MODE_DEFAULT"
AUTO_EXPANSION_MODE_DEFAULTAllows an agent to recognize values that have not been explicitly listed in the entity.

EntityTypeKind
, EntityTypeKindArgs

KindUnspecified
KIND_UNSPECIFIEDNot specified. This value should be never used.
KindMap
KIND_MAPMap entity types allow mapping of a group of synonyms to a canonical value.
KindList
KIND_LISTList entity types contain a set of entries that do not map to canonical values. However, list entity types can contain references to other entity types (with or without aliases).
KindRegexp
KIND_REGEXPRegexp entity types allow to specify regular expressions in entries values.
EntityTypeKindKindUnspecified
KIND_UNSPECIFIEDNot specified. This value should be never used.
EntityTypeKindKindMap
KIND_MAPMap entity types allow mapping of a group of synonyms to a canonical value.
EntityTypeKindKindList
KIND_LISTList entity types contain a set of entries that do not map to canonical values. However, list entity types can contain references to other entity types (with or without aliases).
EntityTypeKindKindRegexp
KIND_REGEXPRegexp entity types allow to specify regular expressions in entries values.
KindUnspecified
KIND_UNSPECIFIEDNot specified. This value should be never used.
KindMap
KIND_MAPMap entity types allow mapping of a group of synonyms to a canonical value.
KindList
KIND_LISTList entity types contain a set of entries that do not map to canonical values. However, list entity types can contain references to other entity types (with or without aliases).
KindRegexp
KIND_REGEXPRegexp entity types allow to specify regular expressions in entries values.
KindUnspecified
KIND_UNSPECIFIEDNot specified. This value should be never used.
KindMap
KIND_MAPMap entity types allow mapping of a group of synonyms to a canonical value.
KindList
KIND_LISTList entity types contain a set of entries that do not map to canonical values. However, list entity types can contain references to other entity types (with or without aliases).
KindRegexp
KIND_REGEXPRegexp entity types allow to specify regular expressions in entries values.
KIND_UNSPECIFIED
KIND_UNSPECIFIEDNot specified. This value should be never used.
KIND_MAP
KIND_MAPMap entity types allow mapping of a group of synonyms to a canonical value.
KIND_LIST
KIND_LISTList entity types contain a set of entries that do not map to canonical values. However, list entity types can contain references to other entity types (with or without aliases).
KIND_REGEXP
KIND_REGEXPRegexp entity types allow to specify regular expressions in entries values.
"KIND_UNSPECIFIED"
KIND_UNSPECIFIEDNot specified. This value should be never used.
"KIND_MAP"
KIND_MAPMap entity types allow mapping of a group of synonyms to a canonical value.
"KIND_LIST"
KIND_LISTList entity types contain a set of entries that do not map to canonical values. However, list entity types can contain references to other entity types (with or without aliases).
"KIND_REGEXP"
KIND_REGEXPRegexp entity types allow to specify regular expressions in entries values.

GoogleCloudDialogflowCxV3EntityTypeEntity
, GoogleCloudDialogflowCxV3EntityTypeEntityArgs

Synonyms This property is required. List<string>
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.
Value This property is required. string
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).
Synonyms This property is required. []string
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.
Value This property is required. string
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).
synonyms This property is required. List<String>
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.
value This property is required. String
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).
synonyms This property is required. string[]
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.
value This property is required. string
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).
synonyms This property is required. Sequence[str]
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.
value This property is required. str
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).
synonyms This property is required. List<String>
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.
value This property is required. String
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).

GoogleCloudDialogflowCxV3EntityTypeEntityResponse
, GoogleCloudDialogflowCxV3EntityTypeEntityResponseArgs

Synonyms This property is required. List<string>
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.
Value This property is required. string
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).
Synonyms This property is required. []string
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.
Value This property is required. string
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).
synonyms This property is required. List<String>
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.
value This property is required. String
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).
synonyms This property is required. string[]
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.
value This property is required. string
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).
synonyms This property is required. Sequence[str]
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.
value This property is required. str
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).
synonyms This property is required. List<String>
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.
value This property is required. String
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).

GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase
, GoogleCloudDialogflowCxV3EntityTypeExcludedPhraseArgs

Value This property is required. string
The word or phrase to be excluded.
Value This property is required. string
The word or phrase to be excluded.
value This property is required. String
The word or phrase to be excluded.
value This property is required. string
The word or phrase to be excluded.
value This property is required. str
The word or phrase to be excluded.
value This property is required. String
The word or phrase to be excluded.

GoogleCloudDialogflowCxV3EntityTypeExcludedPhraseResponse
, GoogleCloudDialogflowCxV3EntityTypeExcludedPhraseResponseArgs

Value This property is required. string
The word or phrase to be excluded.
Value This property is required. string
The word or phrase to be excluded.
value This property is required. String
The word or phrase to be excluded.
value This property is required. string
The word or phrase to be excluded.
value This property is required. str
The word or phrase to be excluded.
value This property is required. String
The word or phrase to be excluded.

Package Details

Repository
Google Cloud Native pulumi/pulumi-google-native
License
Apache-2.0

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi