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.
31 lines (30 loc) • 1.08 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare function getWarehouseEmbedding(args?: GetWarehouseEmbeddingArgs, opts?: pulumi.InvokeOptions): Promise<GetWarehouseEmbeddingResult>;
/**
* A collection of arguments for invoking getWarehouseEmbedding.
*/
export interface GetWarehouseEmbeddingArgs {
id?: string;
sourceId?: string;
}
/**
* A collection of values returned by getWarehouseEmbedding.
*/
export interface GetWarehouseEmbeddingResult {
readonly createdAt: string;
readonly dimension: number;
readonly embedFrom: string;
readonly embedTo: string;
readonly id: string;
readonly model: string;
readonly sourceId?: string;
readonly updatedAt: string;
}
export declare function getWarehouseEmbeddingOutput(args?: GetWarehouseEmbeddingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWarehouseEmbeddingResult>;
/**
* A collection of arguments for invoking getWarehouseEmbedding.
*/
export interface GetWarehouseEmbeddingOutputArgs {
id?: pulumi.Input<string>;
sourceId?: pulumi.Input<string>;
}