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 Agent Endpoints in Oracle Cloud Infrastructure Generative Ai Agent service. * * Gets a list of endpoints. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAgentEndpoints = oci.generativeai.getAgentAgentEndpoints({ * agentId: testAgent.id, * compartmentId: compartmentId, * displayName: agentEndpointDisplayName, * state: agentEndpointState, * }); * ``` */ export declare function getAgentAgentEndpoints(args?: GetAgentAgentEndpointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAgentAgentEndpoints. */ export interface GetAgentAgentEndpointsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the agent. */ agentId?: string; /** * 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.GetAgentAgentEndpointsFilter[]; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getAgentAgentEndpoints. */ export interface GetAgentAgentEndpointsResult { /** * The list of agent_endpoint_collection. */ readonly agentEndpointCollections: outputs.GenerativeAi.GetAgentAgentEndpointsAgentEndpointCollection[]; /** * The OCID of the agent that this endpoint is associated with. */ readonly agentId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName?: string; readonly filters?: outputs.GenerativeAi.GetAgentAgentEndpointsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the endpoint. */ readonly state?: string; } /** * This data source provides the list of Agent Endpoints in Oracle Cloud Infrastructure Generative Ai Agent service. * * Gets a list of endpoints. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAgentEndpoints = oci.generativeai.getAgentAgentEndpoints({ * agentId: testAgent.id, * compartmentId: compartmentId, * displayName: agentEndpointDisplayName, * state: agentEndpointState, * }); * ``` */ export declare function getAgentAgentEndpointsOutput(args?: GetAgentAgentEndpointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAgentAgentEndpoints. */ export interface GetAgentAgentEndpointsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the agent. */ agentId?: pulumi.Input; /** * 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>; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getAgentAgentEndpoints.d.ts.map