import * as pulumi from "@pulumi/pulumi"; /** * Data Source schema for Volcengine::IAM::Project */ export declare function getProject(args: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProject. */ export interface GetProjectArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getProject. */ export interface GetProjectResult { /** * Account ID */ readonly accountId: number; /** * Creation Time */ readonly createdTime: string; /** * Description */ readonly description: string; /** * Display Name */ readonly displayName: string; /** * Visible */ readonly hasPermission: boolean; /** * Uniquely identifies the resource. */ readonly id: string; /** * Parent Project Name */ readonly parentProjectName: string; /** * Project Path */ readonly path: string; /** * Project Name */ readonly projectName: string; /** * Enabled Status */ readonly status: string; /** * Update Time */ readonly updatedTime: string; } /** * Data Source schema for Volcengine::IAM::Project */ export declare function getProjectOutput(args: GetProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProject. */ export interface GetProjectOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }