UNPKG

@lbrlabs/pulumi-grafana

Version:

A Pulumi package for creating and managing grafana.

61 lines (60 loc) 1.45 kB
import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as grafana from "@pulumi/grafana"; * * const exampleTeam = grafana.getOncallTeam({ * name: "example_team", * }); * ``` */ export declare function getOncallTeam(args: GetOncallTeamArgs, opts?: pulumi.InvokeOptions): Promise<GetOncallTeamResult>; /** * A collection of arguments for invoking getOncallTeam. */ export interface GetOncallTeamArgs { /** * The team name. */ name: string; } /** * A collection of values returned by getOncallTeam. */ export interface GetOncallTeamResult { readonly avatarUrl: string; readonly email: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The team name. */ readonly name: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as grafana from "@pulumi/grafana"; * * const exampleTeam = grafana.getOncallTeam({ * name: "example_team", * }); * ``` */ export declare function getOncallTeamOutput(args: GetOncallTeamOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetOncallTeamResult>; /** * A collection of arguments for invoking getOncallTeam. */ export interface GetOncallTeamOutputArgs { /** * The team name. */ name: pulumi.Input<string>; }