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 Ai Language service. * * Returns a list of Endpoints. * * ## Example Usage */ export declare function getEndpoints(args: GetEndpointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEndpoints. */ export interface GetEndpointsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.AiLanguage.GetEndpointsFilter[]; /** * Unique identifier endpoint OCID of an endpoint that is immutable on creation. */ id?: string; /** * The ID of the trained model for which to list the endpoints. */ modelId?: string; /** * The ID of the project for which to list the objects. */ projectId?: string; /** * Filter results by the specified lifecycle state. Must be a valid state for the resource type. */ state?: string; } /** * A collection of values returned by getEndpoints. */ export interface GetEndpointsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the endpoint compartment. */ readonly compartmentId: string; /** * A user-friendly display name for the resource. It should be unique and can be modified. Avoid entering confidential information. */ readonly displayName?: string; /** * The list of endpoint_collection. */ readonly endpointCollections: outputs.AiLanguage.GetEndpointsEndpointCollection[]; readonly filters?: outputs.AiLanguage.GetEndpointsFilter[]; /** * Unique identifier endpoint OCID of an endpoint that is immutable on creation. */ readonly id?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model to associate with the endpoint. */ readonly modelId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the Endpoint. */ readonly projectId?: string; /** * The state of the endpoint. */ readonly state?: string; } /** * This data source provides the list of Endpoints in Oracle Cloud Infrastructure Ai Language service. * * Returns a list of Endpoints. * * ## Example Usage */ export declare function getEndpointsOutput(args: GetEndpointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEndpoints. */ export interface GetEndpointsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique identifier endpoint OCID of an endpoint that is immutable on creation. */ id?: pulumi.Input; /** * The ID of the trained model for which to list the endpoints. */ modelId?: pulumi.Input; /** * The ID of the project for which to list the objects. */ projectId?: pulumi.Input; /** * Filter results by the specified lifecycle state. Must be a valid state for the resource type. */ state?: pulumi.Input; } //# sourceMappingURL=getEndpoints.d.ts.map