import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Retrieves the specified conversation dataset. */ export declare function getConversationDataset(args: GetConversationDatasetArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetConversationDatasetArgs { conversationDatasetId: string; location: string; project?: string; } export interface GetConversationDatasetResult { /** * The number of conversations this conversation dataset contains. */ readonly conversationCount: string; /** * Metadata set during conversation data import. */ readonly conversationInfo: outputs.dialogflow.v2.GoogleCloudDialogflowV2ConversationInfoResponse; /** * Creation time of this dataset. */ readonly createTime: string; /** * Optional. The description of the dataset. Maximum of 10000 bytes. */ readonly description: string; /** * The display name of the dataset. Maximum of 64 bytes. */ readonly displayName: string; /** * Input configurations set during conversation data import. */ readonly inputConfig: outputs.dialogflow.v2.GoogleCloudDialogflowV2InputConfigResponse; /** * ConversationDataset resource name. Format: `projects//locations//conversationDatasets/` */ readonly name: string; } /** * Retrieves the specified conversation dataset. */ export declare function getConversationDatasetOutput(args: GetConversationDatasetOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetConversationDatasetOutputArgs { conversationDatasetId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }