pulumi-logtail
Version:
A Pulumi provider for managing Logtail log management and analytics resources, dynamically bridged from the Terraform Logtail provider with support for sources, metrics, and log aggregation.
113 lines (112 loc) • 3.96 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare class WarehouseEmbedding extends pulumi.CustomResource {
/**
* Get an existing WarehouseEmbedding 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 state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: WarehouseEmbeddingState, opts?: pulumi.CustomResourceOptions): WarehouseEmbedding;
/**
* Returns true if the given object is an instance of WarehouseEmbedding. 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 WarehouseEmbedding;
/**
* The time when this embedding was created.
*/
readonly createdAt: pulumi.Output<string>;
/**
* The vector dimension of the embeddings to generate.
*/
readonly dimension: pulumi.Output<number>;
/**
* The source column name containing the text to embed.
*/
readonly embedFrom: pulumi.Output<string>;
/**
* The target column name where the generated embeddings will be stored.
*/
readonly embedTo: pulumi.Output<string>;
/**
* The name of the embedding model to use (e.g., `embeddinggemma:300m`).
*/
readonly model: pulumi.Output<string>;
/**
* The ID of the Warehouse source to create the embedding for.
*/
readonly sourceId: pulumi.Output<string>;
/**
* The time when this embedding was last updated.
*/
readonly updatedAt: pulumi.Output<string>;
/**
* Create a WarehouseEmbedding 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: WarehouseEmbeddingArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering WarehouseEmbedding resources.
*/
export interface WarehouseEmbeddingState {
/**
* The time when this embedding was created.
*/
createdAt?: pulumi.Input<string>;
/**
* The vector dimension of the embeddings to generate.
*/
dimension?: pulumi.Input<number>;
/**
* The source column name containing the text to embed.
*/
embedFrom?: pulumi.Input<string>;
/**
* The target column name where the generated embeddings will be stored.
*/
embedTo?: pulumi.Input<string>;
/**
* The name of the embedding model to use (e.g., `embeddinggemma:300m`).
*/
model?: pulumi.Input<string>;
/**
* The ID of the Warehouse source to create the embedding for.
*/
sourceId?: pulumi.Input<string>;
/**
* The time when this embedding was last updated.
*/
updatedAt?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a WarehouseEmbedding resource.
*/
export interface WarehouseEmbeddingArgs {
/**
* The vector dimension of the embeddings to generate.
*/
dimension: pulumi.Input<number>;
/**
* The source column name containing the text to embed.
*/
embedFrom: pulumi.Input<string>;
/**
* The target column name where the generated embeddings will be stored.
*/
embedTo: pulumi.Input<string>;
/**
* The name of the embedding model to use (e.g., `embeddinggemma:300m`).
*/
model: pulumi.Input<string>;
/**
* The ID of the Warehouse source to create the embedding for.
*/
sourceId: pulumi.Input<string>;
}