import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to retrieve all GitHub App installations of the organization. * * ## Example Usage * * To retrieve *all* GitHub App installations of the organization: * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as github from "@pulumi/github"; * * const all = github.getOrganizationAppInstallations({}); * ``` */ export declare function getOrganizationAppInstallations(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getOrganizationAppInstallations. */ export interface GetOrganizationAppInstallationsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of GitHub App installations in the organization. Each `installation` block consists of the fields documented below. */ readonly installations: outputs.GetOrganizationAppInstallationsInstallation[]; } /** * Use this data source to retrieve all GitHub App installations of the organization. * * ## Example Usage * * To retrieve *all* GitHub App installations of the organization: * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as github from "@pulumi/github"; * * const all = github.getOrganizationAppInstallations({}); * ``` */ export declare function getOrganizationAppInstallationsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getOrganizationAppInstallations.d.ts.map