UNPKG

@pulumiverse/grafana

Version:

A Pulumi package for creating and managing grafana.

61 lines (60 loc) 1.38 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.onCall.getTeam({ * name: "example_team", * }); * ``` */ export declare function getTeam(args: GetTeamArgs, opts?: pulumi.InvokeOptions): Promise<GetTeamResult>; /** * A collection of arguments for invoking getTeam. */ export interface GetTeamArgs { /** * The team name. */ name: string; } /** * A collection of values returned by getTeam. */ export interface GetTeamResult { 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.onCall.getTeam({ * name: "example_team", * }); * ``` */ export declare function getTeamOutput(args: GetTeamOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTeamResult>; /** * A collection of arguments for invoking getTeam. */ export interface GetTeamOutputArgs { /** * The team name. */ name: pulumi.Input<string>; }