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.
36 lines (35 loc) • 1.3 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
export declare function getErrorsApplication(args: GetErrorsApplicationArgs, opts?: pulumi.InvokeOptions): Promise<GetErrorsApplicationResult>;
/**
* A collection of arguments for invoking getErrorsApplication.
*/
export interface GetErrorsApplicationArgs {
name: string;
}
/**
* A collection of values returned by getErrorsApplication.
*/
export interface GetErrorsApplicationResult {
readonly applicationGroupId: number;
readonly createdAt: string;
readonly customBuckets: outputs.GetErrorsApplicationCustomBucket[];
readonly dataRegion: string;
readonly errorsRetention: number;
readonly id: string;
readonly ingestingHost: string;
readonly ingestingPaused: boolean;
readonly name: string;
readonly platform: string;
readonly tableName: string;
readonly teamName: string;
readonly token: string;
readonly updatedAt: string;
}
export declare function getErrorsApplicationOutput(args: GetErrorsApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetErrorsApplicationResult>;
/**
* A collection of arguments for invoking getErrorsApplication.
*/
export interface GetErrorsApplicationOutputArgs {
name: pulumi.Input<string>;
}