import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Retrieves the specified entity type. */ export declare function getEntityType(args: GetEntityTypeArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetEntityTypeArgs { agentId: string; entityTypeId: string; languageCode?: string; location: string; project?: string; } export interface GetEntityTypeResult { /** * Indicates whether the entity type can be automatically expanded. */ readonly autoExpansionMode: string; /** * The human-readable name of the entity type, unique within the agent. */ readonly displayName: string; /** * Enables fuzzy entity extraction during classification. */ readonly enableFuzzyExtraction: boolean; /** * The collection of entity entries associated with the entity type. */ readonly entities: outputs.dialogflow.v3beta1.GoogleCloudDialogflowCxV3beta1EntityTypeEntityResponse[]; /** * 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. */ readonly excludedPhrases: outputs.dialogflow.v3beta1.GoogleCloudDialogflowCxV3beta1EntityTypeExcludedPhraseResponse[]; /** * Indicates the kind of entity type. */ readonly kind: string; /** * The unique identifier of the entity type. Required for EntityTypes.UpdateEntityType. Format: `projects//locations//agents//entityTypes/`. */ readonly name: string; /** * 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 during logging. */ readonly redact: boolean; } /** * Retrieves the specified entity type. */ export declare function getEntityTypeOutput(args: GetEntityTypeOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetEntityTypeOutputArgs { agentId: pulumi.Input; entityTypeId: pulumi.Input; languageCode?: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }