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; /** * 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; /** * A collection of arguments for invoking getOncallTeam. */ export interface GetOncallTeamOutputArgs { /** * The team name. */ name: pulumi.Input; }