import * as pulumi from "@pulumi/pulumi"; /** * Create a version from a Dataset. * Auto-naming is currently not supported for this resource. */ export declare class DatasetVersion extends pulumi.CustomResource { /** * Get an existing DatasetVersion 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): DatasetVersion; /** * Returns true if the given object is an instance of DatasetVersion. 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 DatasetVersion; /** * Name of the associated BigQuery dataset. */ readonly bigQueryDatasetName: pulumi.Output; /** * Timestamp when this DatasetVersion was created. */ readonly createTime: pulumi.Output; readonly datasetId: pulumi.Output; /** * Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ readonly etag: pulumi.Output; readonly location: pulumi.Output; /** * The resource name of the DatasetVersion. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Timestamp when this DatasetVersion was last updated. */ readonly updateTime: pulumi.Output; /** * Create a DatasetVersion 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: DatasetVersionArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a DatasetVersion resource. */ export interface DatasetVersionArgs { datasetId: pulumi.Input; /** * Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ etag?: pulumi.Input; location?: pulumi.Input; project?: pulumi.Input; }