UNPKG

@pulumiverse/grafana

Version:

A Pulumi package for creating and managing grafana.

64 lines (63 loc) 1.89 kB
import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as grafana from "@pulumi/grafana"; * * const test = grafana.cloud.getOrganization({ * slug: "my-org", * }); * ``` */ /** @deprecated grafana.index/getcloudorganization.getCloudOrganization has been deprecated in favor of grafana.cloud/getorganization.getOrganization */ export declare function getCloudOrganization(args?: GetCloudOrganizationArgs, opts?: pulumi.InvokeOptions): Promise<GetCloudOrganizationResult>; /** * A collection of arguments for invoking getCloudOrganization. */ export interface GetCloudOrganizationArgs { /** * The ID of this resource. */ id?: string; slug?: string; } /** * A collection of values returned by getCloudOrganization. */ export interface GetCloudOrganizationResult { readonly createdAt: string; /** * The ID of this resource. */ readonly id: string; readonly name: string; readonly slug: string; readonly updatedAt: string; readonly url: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as grafana from "@pulumi/grafana"; * * const test = grafana.cloud.getOrganization({ * slug: "my-org", * }); * ``` */ /** @deprecated grafana.index/getcloudorganization.getCloudOrganization has been deprecated in favor of grafana.cloud/getorganization.getOrganization */ export declare function getCloudOrganizationOutput(args?: GetCloudOrganizationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCloudOrganizationResult>; /** * A collection of arguments for invoking getCloudOrganization. */ export interface GetCloudOrganizationOutputArgs { /** * The ID of this resource. */ id?: pulumi.Input<string>; slug?: pulumi.Input<string>; }