import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * A log project is a data management unit used for tenant resource isolation and control. Typically, each log project corresponds to an application, service, or product * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcenginecc from "@volcengine/pulumi-volcenginecc"; * * const tLSProjectDemo = new volcenginecc.tls.Project("TLSProjectDemo", { * projectName: "ccapi_test", * description: "ccapi_test", * iamProjectName: "default", * tags: [{ * key: "env", * value: "test", * }], * }); * ``` * * ## Import * * ```sh * $ pulumi import volcenginecc:tls/project:Project example "project_id" * ``` */ export declare class Project extends pulumi.CustomResource { /** * Get an existing Project resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ProjectState, opts?: pulumi.CustomResourceOptions): Project; /** * Returns true if the given object is an instance of Project. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Project; /** * Log project creation time */ readonly createdTime: pulumi.Output; /** * Brief description of the log project */ readonly description: pulumi.Output; /** * The IAM project associated with the log project */ readonly iamProjectName: pulumi.Output; /** * Private network connection domain name */ readonly innerNetDomain: pulumi.Output; /** * Log project ID */ readonly projectId: pulumi.Output; /** * Log project name */ readonly projectName: pulumi.Output; readonly tags: pulumi.Output; /** * Number of log topics in the current log project */ readonly topicCount: pulumi.Output; /** * Create a Project resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ProjectArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Project resources. */ export interface ProjectState { /** * Log project creation time */ createdTime?: pulumi.Input; /** * Brief description of the log project */ description?: pulumi.Input; /** * The IAM project associated with the log project */ iamProjectName?: pulumi.Input; /** * Private network connection domain name */ innerNetDomain?: pulumi.Input; /** * Log project ID */ projectId?: pulumi.Input; /** * Log project name */ projectName?: pulumi.Input; tags?: pulumi.Input[]>; /** * Number of log topics in the current log project */ topicCount?: pulumi.Input; } /** * The set of arguments for constructing a Project resource. */ export interface ProjectArgs { /** * Brief description of the log project */ description?: pulumi.Input; /** * The IAM project associated with the log project */ iamProjectName?: pulumi.Input; /** * Log project name */ projectName: pulumi.Input; tags?: pulumi.Input[]>; }