import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates a new table. * Auto-naming is currently not supported for this resource. */ export declare class Table extends pulumi.CustomResource { /** * Get an existing Table 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): Table; /** * Returns true if the given object is an instance of Table. 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 Table; readonly catalogId: pulumi.Output; /** * The creation time of the table. */ readonly createTime: pulumi.Output; readonly databaseId: pulumi.Output; /** * The deletion time of the table. Only set after the table is deleted. */ readonly deleteTime: pulumi.Output; /** * The checksum of a table object computed by the server based on the value of other fields. It may be sent on update requests to ensure the client has an up-to-date value before proceeding. It is only checked for update table operations. */ readonly etag: pulumi.Output; /** * The time when this table is considered expired. Only set after the table is deleted. */ readonly expireTime: pulumi.Output; /** * Options of a Hive table. */ readonly hiveOptions: pulumi.Output; readonly location: pulumi.Output; /** * The resource name. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{catalog_id}/databases/{database_id}/tables/{table_id} */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Required. The ID to use for the table, which will become the final component of the table's resource name. */ readonly tableId: pulumi.Output; /** * The table type. */ readonly type: pulumi.Output; /** * The last modification time of the table. */ readonly updateTime: pulumi.Output; /** * Create a Table 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: TableArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Table resource. */ export interface TableArgs { catalogId: pulumi.Input; databaseId: pulumi.Input; /** * The checksum of a table object computed by the server based on the value of other fields. It may be sent on update requests to ensure the client has an up-to-date value before proceeding. It is only checked for update table operations. */ etag?: pulumi.Input; /** * Options of a Hive table. */ hiveOptions?: pulumi.Input; location?: pulumi.Input; project?: pulumi.Input; /** * Required. The ID to use for the table, which will become the final component of the table's resource name. */ tableId: pulumi.Input; /** * The table type. */ type?: pulumi.Input; }