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 Endpoints in Oracle Cloud Infrastructure Generative AI service. * * Lists the endpoints of a specific compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testEndpoints = oci.generativeai.getEndpoints({ * compartmentId: compartmentId, * displayName: endpointDisplayName, * generativeAiPrivateEndpointId: testPrivateEndpoint.id, * id: endpointId, * state: endpointState, * }); * ``` */ export declare function getEndpoints(args: GetEndpointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEndpoints. */ export interface GetEndpointsArgs { /** * 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.GetEndpointsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint. */ generativeAiPrivateEndpointId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the endpoint. */ id?: string; /** * A filter to return only resources that their lifecycle state matches the given lifecycle state. */ state?: string; } /** * A collection of values returned by getEndpoints. */ export interface GetEndpointsResult { readonly compartmentId: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName?: string; /** * The list of endpoint_collection. */ readonly endpointCollections: outputs.GenerativeAi.GetEndpointsEndpointCollection[]; readonly filters?: outputs.GenerativeAi.GetEndpointsFilter[]; readonly generativeAiPrivateEndpointId?: string; /** * An OCID that uniquely identifies this endpoint resource. */ readonly id?: string; /** * The current state of the endpoint. */ readonly state?: string; } /** * This data source provides the list of Endpoints in Oracle Cloud Infrastructure Generative AI service. * * Lists the endpoints of a specific compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testEndpoints = oci.generativeai.getEndpoints({ * compartmentId: compartmentId, * displayName: endpointDisplayName, * generativeAiPrivateEndpointId: testPrivateEndpoint.id, * id: endpointId, * state: endpointState, * }); * ``` */ export declare function getEndpointsOutput(args: GetEndpointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEndpoints. */ export interface GetEndpointsOutputArgs { /** * 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. */ generativeAiPrivateEndpointId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the endpoint. */ id?: pulumi.Input; /** * A filter to return only resources that their lifecycle state matches the given lifecycle state. */ state?: pulumi.Input; } //# sourceMappingURL=getEndpoints.d.ts.map