import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Project resource in Oracle Cloud Infrastructure Generative AI service. * * Gets information about a generativeAiProject. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProject = oci.generativeai.getProject({ * projectId: testProjectOciGenerativeAiProject.id, * }); * ``` */ export declare function getProject(args: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProject. */ export interface GetProjectArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the generativeAiProject. */ projectId: string; } /** * A collection of values returned by getProject. */ export interface GetProjectResult { /** * Owning compartment OCID for a GenerativeAiProject. */ readonly compartmentId: string; /** * Holds configuration related to conversation retention */ readonly conversationConfigs: outputs.GenerativeAi.GetProjectConversationConfig[]; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * An optional description of the GenerativeAiProject. */ readonly description: string; /** * A user-friendly name. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * An OCID that uniquely identifies a GenerativeAiProject. */ readonly id: string; /** * A message describing the current state in more detail that can provide actionable information. */ readonly lifecycleDetails: string; /** * Configuration settings for long-term memory behavior. */ readonly longTermMemoryConfigs: outputs.GenerativeAi.GetProjectLongTermMemoryConfig[]; readonly projectId: string; /** * Configuration settings for short-term memory optimization. */ readonly shortTermMemoryOptimizationConfigs: outputs.GenerativeAi.GetProjectShortTermMemoryOptimizationConfig[]; /** * The lifecycle state of a GenerativeAiProject. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time that the generativeAiProject was created in the format of an RFC3339 datetime string. */ readonly timeCreated: string; /** * The date and time that the generativeAiProject was updated in the format of an RFC3339 datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Project resource in Oracle Cloud Infrastructure Generative AI service. * * Gets information about a generativeAiProject. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProject = oci.generativeai.getProject({ * projectId: testProjectOciGenerativeAiProject.id, * }); * ``` */ export declare function getProjectOutput(args: GetProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProject. */ export interface GetProjectOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the generativeAiProject. */ projectId: pulumi.Input; } //# sourceMappingURL=getProject.d.ts.map