Show / Hide Table of Contents

Class EntityTypeState

Inheritance
System.Object
InputArgs
ResourceArgs
EntityTypeState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.Diagflow
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class EntityTypeState : ResourceArgs

Constructors

View Source

EntityTypeState()

Declaration
public EntityTypeState()

Properties

View Source

DisplayName

The name of this entity type to be displayed on the console.

Declaration
public Input<string> DisplayName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

EnableFuzzyExtraction

Enables fuzzy entity extraction during classification.

Declaration
public Input<bool> EnableFuzzyExtraction { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Entities

The collection of entity entries associated with the entity type. Structure is documented below.

Declaration
public InputList<EntityTypeEntityGetArgs> Entities { get; set; }
Property Value
Type Description
InputList<EntityTypeEntityGetArgs>
View Source

Kind

Indicates the kind of entity type.

  • KIND_MAP: Map entity types allow mapping of a group of synonyms to a reference value.
  • KIND_LIST: List entity types contain a set of entries that do not map to reference values. However, list entity types can contain references to other entity types (with or without aliases).
  • KIND_REGEXP: Regexp entity types allow to specify regular expressions in entries values.
Declaration
public Input<string> Kind { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The unique identifier of the entity type. Format: projects/<Project ID>/agent/entityTypes/<Entity type ID>.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Project

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Declaration
public Input<string> Project { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.