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; /** * 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; /** * A collection of arguments for invoking getCloudOrganization. */ export interface GetCloudOrganizationOutputArgs { /** * The ID of this resource. */ id?: pulumi.Input; slug?: pulumi.Input; }