import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Get a Datastore */ export declare function getDatastore(args: GetDatastoreArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDatastoreArgs { datastoreId: string; organizationId: string; } export interface GetDatastoreResult { /** * Datastore create time, in milliseconds since the epoch of 1970-01-01T00:00:00Z */ readonly createTime: string; /** * Datastore Configurations. */ readonly datastoreConfig: outputs.apigee.v1.GoogleCloudApigeeV1DatastoreConfigResponse; /** * Display name in UI */ readonly displayName: string; /** * Datastore last update time, in milliseconds since the epoch of 1970-01-01T00:00:00Z */ readonly lastUpdateTime: string; /** * Organization that the datastore belongs to */ readonly org: string; /** * Resource link of Datastore. Example: `/organizations/{org}/analytics/datastores/{uuid}` */ readonly self: string; /** * Destination storage type. Supported types `gcs` or `bigquery`. */ readonly targetType: string; } /** * Get a Datastore */ export declare function getDatastoreOutput(args: GetDatastoreOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetDatastoreOutputArgs { datastoreId: pulumi.Input; organizationId: pulumi.Input; }