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.
27 lines (26 loc) • 869 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare function getSourceGroup(args: GetSourceGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetSourceGroupResult>;
/**
* A collection of arguments for invoking getSourceGroup.
*/
export interface GetSourceGroupArgs {
name: string;
}
/**
* A collection of values returned by getSourceGroup.
*/
export interface GetSourceGroupResult {
readonly createdAt: string;
readonly id: string;
readonly name: string;
readonly sortIndex: number;
readonly teamName: string;
readonly updatedAt: string;
}
export declare function getSourceGroupOutput(args: GetSourceGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSourceGroupResult>;
/**
* A collection of arguments for invoking getSourceGroup.
*/
export interface GetSourceGroupOutputArgs {
name: pulumi.Input<string>;
}