@pulumiverse/grafana
Version:
A Pulumi package for creating and managing grafana.
52 lines (51 loc) • 1.32 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* ## Example Usage
*/
export declare function getApp(args: GetAppArgs, opts?: pulumi.InvokeOptions): Promise<GetAppResult>;
/**
* A collection of arguments for invoking getApp.
*/
export interface GetAppArgs {
name: string;
stackId: number;
}
/**
* A collection of values returned by getApp.
*/
export interface GetAppResult {
/**
* A list of allowed origins for CORS.
*/
readonly allowedOrigins: string[];
/**
* The collector URL Grafana Cloud Frontend Observability. Use this endpoint to send your Telemetry.
*/
readonly collectorEndpoint: string;
/**
* The extra attributes to append in each signal.
*/
readonly extraLogAttributes: {
[]: string;
};
readonly id: number;
readonly name: string;
/**
* The settings of the Frontend Observability App.
*/
readonly settings: {
[]: string;
};
readonly stackId: number;
}
/**
* ## Example Usage
*/
export declare function getAppOutput(args: GetAppOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAppResult>;
/**
* A collection of arguments for invoking getApp.
*/
export interface GetAppOutputArgs {
name: pulumi.Input<string>;
stackId: pulumi.Input<number>;
}