import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::TLS::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 { /** * Log project creation time */ readonly createdTime: string; /** * Brief description of the log project */ readonly description: string; /** * The IAM project associated with the log project */ readonly iamProjectName: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Private network connection domain name */ readonly innerNetDomain: string; /** * Log project ID */ readonly projectId: string; /** * Log project name */ readonly projectName: string; /** * Tag information */ readonly tags: outputs.tls.GetProjectTag[]; /** * Number of log topics in the current log project */ readonly topicCount: number; } /** * Data Source schema for Volcengine::TLS::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; }