import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Creates dataset. If success return a Dataset resource. * Auto-naming is currently not supported for this resource. */ export declare class Dataset extends pulumi.CustomResource { /** * Get an existing Dataset 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): Dataset; /** * Returns true if the given object is an instance of Dataset. 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 Dataset; /** * The names of any related resources that are blocking changes to the dataset. */ readonly blockingResources: pulumi.Output; /** * Time the dataset is created. */ readonly createTime: pulumi.Output; /** * The number of data items in the dataset. */ readonly dataItemCount: pulumi.Output; /** * Optional. User-provided description of the annotation specification set. The description can be up to 10000 characters long. */ readonly description: pulumi.Output; /** * The display name of the dataset. Maximum of 64 characters. */ readonly displayName: pulumi.Output; /** * This is populated with the original input configs where ImportData is called. It is available only after the clients import data to this dataset. */ readonly inputConfigs: pulumi.Output; /** * Last time that the Dataset is migrated to AI Platform V2. If any of the AnnotatedDataset is migrated, the last_migration_time in Dataset is also updated. */ readonly lastMigrateTime: pulumi.Output; /** * Dataset resource name, format is: projects/{project_id}/datasets/{dataset_id} */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Create a Dataset 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: DatasetArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Dataset resource. */ export interface DatasetArgs { /** * Optional. User-provided description of the annotation specification set. The description can be up to 10000 characters long. */ description?: pulumi.Input; /** * The display name of the dataset. Maximum of 64 characters. */ displayName: pulumi.Input; /** * Last time that the Dataset is migrated to AI Platform V2. If any of the AnnotatedDataset is migrated, the last_migration_time in Dataset is also updated. */ lastMigrateTime?: pulumi.Input; project?: pulumi.Input; }