import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Creates a new conversation dataset. This method is a [long-running operation](https://cloud.google.com/dialogflow/es/docs/how/long-running-operations). The returned `Operation` type has the following method-specific fields: - `metadata`: CreateConversationDatasetOperationMetadata - `response`: ConversationDataset * Auto-naming is currently not supported for this resource. */ export declare class ConversationDataset extends pulumi.CustomResource { /** * Get an existing ConversationDataset resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): ConversationDataset; /** * Returns true if the given object is an instance of ConversationDataset. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ConversationDataset; /** * The number of conversations this conversation dataset contains. */ readonly conversationCount: pulumi.Output; /** * Metadata set during conversation data import. */ readonly conversationInfo: pulumi.Output; /** * Creation time of this dataset. */ readonly createTime: pulumi.Output; /** * Optional. The description of the dataset. Maximum of 10000 bytes. */ readonly description: pulumi.Output; /** * The display name of the dataset. Maximum of 64 bytes. */ readonly displayName: pulumi.Output; /** * Input configurations set during conversation data import. */ readonly inputConfig: pulumi.Output; readonly location: pulumi.Output; /** * ConversationDataset resource name. Format: `projects//locations//conversationDatasets/` */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Create a ConversationDataset resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ConversationDatasetArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ConversationDataset resource. */ export interface ConversationDatasetArgs { /** * Optional. The description of the dataset. Maximum of 10000 bytes. */ description?: pulumi.Input; /** * The display name of the dataset. Maximum of 64 bytes. */ displayName: pulumi.Input; location?: pulumi.Input; project?: pulumi.Input; }