import * as pulumi from "@pulumi/pulumi"; /** * DeltaStreamObject (relation) resource supporting STREAM, CHANGELOG, TABLE creation via SQL DDL */ export declare class DeltaStreamObject extends pulumi.CustomResource { /** * Get an existing DeltaStreamObject 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): DeltaStreamObject; /** * Returns true if the given object is an instance of DeltaStreamObject. 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 DeltaStreamObject; readonly createdAt: pulumi.Output; readonly database: pulumi.Output; /** * Fully qualified name of the relation as database.namespace.name */ readonly fqn: pulumi.Output; readonly name: pulumi.Output; readonly namespace: pulumi.Output; readonly owner: pulumi.Output; /** * Path of the relation as [database, namespace, name] */ readonly path: pulumi.Output; readonly sql: pulumi.Output; /** * Provisioning state of the relation */ readonly state: pulumi.Output; readonly store: pulumi.Output; /** * Type of the relation (stream|changelog|table) */ readonly type: pulumi.Output; readonly updatedAt: pulumi.Output; /** * Create a DeltaStreamObject 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: DeltaStreamObjectArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a DeltaStreamObject resource. */ export interface DeltaStreamObjectArgs { database: pulumi.Input; namespace: pulumi.Input; owner?: pulumi.Input; sql: pulumi.Input; store: pulumi.Input; } //# sourceMappingURL=deltaStreamObject.d.ts.map