import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Create a content. * Auto-naming is currently not supported for this resource. */ export declare class Content extends pulumi.CustomResource { /** * Get an existing Content 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): Content; /** * Returns true if the given object is an instance of Content. 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 Content; /** * Content creation time. */ readonly createTime: pulumi.Output; /** * Content data in string format. */ readonly dataText: pulumi.Output; /** * Optional. Description of the content. */ readonly description: pulumi.Output; /** * Optional. User defined labels for the content. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly lakeId: pulumi.Output; readonly location: pulumi.Output; /** * The relative resource name of the content, of the form: projects/{project_id}/locations/{location_id}/lakes/{lake_id}/content/{content_id} */ readonly name: pulumi.Output; /** * Notebook related configurations. */ readonly notebook: pulumi.Output; /** * The path for the Content file, represented as directory structure. Unique within a lake. Limited to alphanumerics, hyphens, underscores, dots and slashes. */ readonly path: pulumi.Output; readonly project: pulumi.Output; /** * Sql Script related configurations. */ readonly sqlScript: pulumi.Output; /** * System generated globally unique ID for the content. This ID will be different if the content is deleted and re-created with the same name. */ readonly uid: pulumi.Output; /** * The time when the content was last updated. */ readonly updateTime: pulumi.Output; /** * Create a Content 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: ContentArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Content resource. */ export interface ContentArgs { /** * Content data in string format. */ dataText: pulumi.Input; /** * Optional. Description of the content. */ description?: pulumi.Input; /** * Optional. User defined labels for the content. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; lakeId: pulumi.Input; location?: pulumi.Input; /** * Notebook related configurations. */ notebook?: pulumi.Input; /** * The path for the Content file, represented as directory structure. Unique within a lake. Limited to alphanumerics, hyphens, underscores, dots and slashes. */ path: pulumi.Input; project?: pulumi.Input; /** * Sql Script related configurations. */ sqlScript?: pulumi.Input; }