import * as pulumi from "@pulumi/pulumi"; /** * Gets any metadata associated with a dataset. */ export declare function getDataset(args: GetDatasetArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDatasetArgs { datasetId: string; location: string; project?: string; } export interface GetDatasetResult { /** * Resource name of the dataset, of the form `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}`. */ readonly name: string; /** * The default timezone used by this dataset. Must be a either a valid IANA time zone name such as "America/New_York" or empty, which defaults to UTC. This is used for parsing times in resources, such as HL7 messages, where no explicit timezone is specified. */ readonly timeZone: string; } /** * Gets any metadata associated with a dataset. */ export declare function getDatasetOutput(args: GetDatasetOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetDatasetOutputArgs { datasetId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }