import * as pulumi from "@pulumi/pulumi"; /** * Data Source schema for Volcengine::Organization::Unit */ export declare function getUnit(args: GetUnitArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUnit. */ export interface GetUnitArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getUnit. */ export interface GetUnitResult { /** * Creation time. */ readonly createdTime: string; /** * Deletion flag. */ readonly deleteUk: string; /** * Deletion time. */ readonly deletedTime: string; /** * Depth. */ readonly depth: number; /** * Description. */ readonly description: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Organizational unit name. */ readonly name: string; /** * Organization ID. */ readonly orgId: string; /** * Organization type. Enterprise organization: 1 */ readonly orgType: number; /** * Organizational unit ID. */ readonly orgUnitId: string; /** * Administrator ID. */ readonly owner: string; /** * Parent unit ID. */ readonly parentId: string; /** * Update time. */ readonly updatedTime: string; } /** * Data Source schema for Volcengine::Organization::Unit */ export declare function getUnitOutput(args: GetUnitOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUnit. */ export interface GetUnitOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }