import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Create a Datastore for an org * Auto-naming is currently not supported for this resource. */ export declare class Datastore extends pulumi.CustomResource { /** * Get an existing Datastore 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): Datastore; /** * Returns true if the given object is an instance of Datastore. 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 Datastore; /** * Datastore create time, in milliseconds since the epoch of 1970-01-01T00:00:00Z */ readonly createTime: pulumi.Output; /** * Datastore Configurations. */ readonly datastoreConfig: pulumi.Output; /** * Display name in UI */ readonly displayName: pulumi.Output; /** * Datastore last update time, in milliseconds since the epoch of 1970-01-01T00:00:00Z */ readonly lastUpdateTime: pulumi.Output; /** * Organization that the datastore belongs to */ readonly org: pulumi.Output; readonly organizationId: pulumi.Output; /** * Resource link of Datastore. Example: `/organizations/{org}/analytics/datastores/{uuid}` */ readonly self: pulumi.Output; /** * Destination storage type. Supported types `gcs` or `bigquery`. */ readonly targetType: pulumi.Output; /** * Create a Datastore 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: DatastoreArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Datastore resource. */ export interface DatastoreArgs { /** * Datastore Configurations. */ datastoreConfig?: pulumi.Input; /** * Display name in UI */ displayName: pulumi.Input; organizationId: pulumi.Input; /** * Destination storage type. Supported types `gcs` or `bigquery`. */ targetType?: pulumi.Input; }