import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Generative Ai Private Endpoints in Oracle Cloud Infrastructure Generative AI service. * * Lists all Generative AI private endpoints in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testGenerativeAiPrivateEndpoints = oci.generativeai.getGenerativeAiPrivateEndpoints({ * compartmentId: compartmentId, * displayName: generativeAiPrivateEndpointDisplayName, * id: generativeAiPrivateEndpointId, * resourceType: generativeAiPrivateEndpointResourceType, * state: generativeAiPrivateEndpointState, * }); * ``` */ export declare function getGenerativeAiPrivateEndpoints(args: GetGenerativeAiPrivateEndpointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGenerativeAiPrivateEndpoints. */ export interface GetGenerativeAiPrivateEndpointsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.GenerativeAi.GetGenerativeAiPrivateEndpointsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint. */ id?: string; /** * Query by the resource type of Generative AI private endpoints. */ resourceType?: string; /** * The lifecycle state of Generative AI private endpoints. */ state?: string; } /** * A collection of values returned by getGenerativeAiPrivateEndpoints. */ export interface GetGenerativeAiPrivateEndpointsResult { /** * The OCID of the compartment that contains the private endpoint. */ readonly compartmentId: string; /** * A user friendly name. It doesn't have to be unique. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.GenerativeAi.GetGenerativeAiPrivateEndpointsFilter[]; /** * The list of generative_ai_private_endpoint_collection. */ readonly generativeAiPrivateEndpointCollections: outputs.GenerativeAi.GetGenerativeAiPrivateEndpointsGenerativeAiPrivateEndpointCollection[]; /** * The OCID of a private endpoint. */ readonly id?: string; /** * The resource type that Generative AI private endpoint can be used for. */ readonly resourceType?: string; /** * The current state of the Generative AI Private Endpoint. */ readonly state?: string; } /** * This data source provides the list of Generative Ai Private Endpoints in Oracle Cloud Infrastructure Generative AI service. * * Lists all Generative AI private endpoints in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testGenerativeAiPrivateEndpoints = oci.generativeai.getGenerativeAiPrivateEndpoints({ * compartmentId: compartmentId, * displayName: generativeAiPrivateEndpointDisplayName, * id: generativeAiPrivateEndpointId, * resourceType: generativeAiPrivateEndpointResourceType, * state: generativeAiPrivateEndpointState, * }); * ``` */ export declare function getGenerativeAiPrivateEndpointsOutput(args: GetGenerativeAiPrivateEndpointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGenerativeAiPrivateEndpoints. */ export interface GetGenerativeAiPrivateEndpointsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint. */ id?: pulumi.Input; /** * Query by the resource type of Generative AI private endpoints. */ resourceType?: pulumi.Input; /** * The lifecycle state of Generative AI private endpoints. */ state?: pulumi.Input; } //# sourceMappingURL=getGenerativeAiPrivateEndpoints.d.ts.map