import * as pulumi from "@pulumi/pulumi"; /** * Gets a Dataset version. */ export declare function getDatasetVersion(args: GetDatasetVersionArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDatasetVersionArgs { datasetId: string; datasetVersionId: string; location: string; project?: string; readMask?: string; } export interface GetDatasetVersionResult { /** * Name of the associated BigQuery dataset. */ readonly bigQueryDatasetName: string; /** * Timestamp when this DatasetVersion was created. */ readonly createTime: string; /** * Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ readonly etag: string; /** * The resource name of the DatasetVersion. */ readonly name: string; /** * Timestamp when this DatasetVersion was last updated. */ readonly updateTime: string; } /** * Gets a Dataset version. */ export declare function getDatasetVersionOutput(args: GetDatasetVersionOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetDatasetVersionOutputArgs { datasetId: pulumi.Input; datasetVersionId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; readMask?: pulumi.Input; }