@pulumiverse/grafana
Version:
A Pulumi package for creating and managing grafana.
53 lines (52 loc) • 1.25 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* * [HTTP API](https://grafana.com/docs/oncall/latest/oncall-api-reference/users/)
*/
export declare function getLabel(args: GetLabelArgs, opts?: pulumi.InvokeOptions): Promise<GetLabelResult>;
/**
* A collection of arguments for invoking getLabel.
*/
export interface GetLabelArgs {
/**
* The key for the label.
*/
key: string;
/**
* The value of the label.
*/
value: string;
}
/**
* A collection of values returned by getLabel.
*/
export interface GetLabelResult {
/**
* The ID of the label.
*/
readonly id: string;
/**
* The key for the label.
*/
readonly key: string;
/**
* The value of the label.
*/
readonly value: string;
}
/**
* * [HTTP API](https://grafana.com/docs/oncall/latest/oncall-api-reference/users/)
*/
export declare function getLabelOutput(args: GetLabelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLabelResult>;
/**
* A collection of arguments for invoking getLabel.
*/
export interface GetLabelOutputArgs {
/**
* The key for the label.
*/
key: pulumi.Input<string>;
/**
* The value of the label.
*/
value: pulumi.Input<string>;
}