import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Organization resource in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Gets information about the organization. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOrganization = oci.tenantmanagercontrolplane.getOrganization({ * organizationId: testOrganizationOciTenantmanagercontrolplaneOrganization.id, * }); * ``` */ export declare function getOrganization(args: GetOrganizationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOrganization. */ export interface GetOrganizationArgs { /** * OCID of the organization to retrieve. */ organizationId: string; } /** * A collection of values returned by getOrganization. */ export interface GetOrganizationResult { /** * OCID of the compartment containing the organization. Always a tenancy OCID. */ readonly compartmentId: string; /** * OCID of the default Universal Credits Model subscription. Any tenancy joining the organization will automatically get assigned this subscription, if a subscription is not explictly assigned. */ readonly defaultUcmSubscriptionId: string; /** * A display name for the organization. Avoid entering confidential information. */ readonly displayName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly organizationId: string; /** * The name of the tenancy that is the organization parent. */ readonly parentName: string; /** * Lifecycle state of the organization. */ readonly state: string; /** * Date and time when the organization was created. */ readonly timeCreated: string; /** * Date and time when the organization was last updated. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Organization resource in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Gets information about the organization. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOrganization = oci.tenantmanagercontrolplane.getOrganization({ * organizationId: testOrganizationOciTenantmanagercontrolplaneOrganization.id, * }); * ``` */ export declare function getOrganizationOutput(args: GetOrganizationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOrganization. */ export interface GetOrganizationOutputArgs { /** * OCID of the organization to retrieve. */ organizationId: pulumi.Input; } //# sourceMappingURL=getOrganization.d.ts.map