import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Organizations in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Lists organizations associated with the caller. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOrganizations = oci.tenantmanagercontrolplane.getOrganizations({ * compartmentId: compartmentId, * }); * ``` */ export declare function getOrganizations(args: GetOrganizationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOrganizations. */ export interface GetOrganizationsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.Tenantmanagercontrolplane.GetOrganizationsFilter[]; } /** * A collection of values returned by getOrganizations. */ export interface GetOrganizationsResult { /** * OCID of the compartment containing the organization. Always a tenancy OCID. */ readonly compartmentId: string; readonly filters?: outputs.Tenantmanagercontrolplane.GetOrganizationsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of organization_collection. */ readonly organizationCollections: outputs.Tenantmanagercontrolplane.GetOrganizationsOrganizationCollection[]; } /** * This data source provides the list of Organizations in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Lists organizations associated with the caller. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOrganizations = oci.tenantmanagercontrolplane.getOrganizations({ * compartmentId: compartmentId, * }); * ``` */ export declare function getOrganizationsOutput(args: GetOrganizationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOrganizations. */ export interface GetOrganizationsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getOrganizations.d.ts.map