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 Vision Private Endpoints in Oracle Cloud Infrastructure Ai Vision service. * * Returns a list of visionPrivateEndpoints. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVisionPrivateEndpoints = oci.aivision.getVisionPrivateEndpoints({ * compartmentId: compartmentId, * displayName: visionPrivateEndpointDisplayName, * id: visionPrivateEndpointId, * state: visionPrivateEndpointState, * }); * ``` */ export declare function getVisionPrivateEndpoints(args?: GetVisionPrivateEndpointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVisionPrivateEndpoints. */ export interface GetVisionPrivateEndpointsArgs { /** * 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.AiVision.GetVisionPrivateEndpointsFilter[]; /** * The filter to find the device with the given identifier. */ id?: string; /** * The filter to match projects with the given lifecycleState. */ state?: string; } /** * A collection of values returned by getVisionPrivateEndpoints. */ export interface GetVisionPrivateEndpointsResult { /** * A compartment identifier. */ readonly compartmentId?: string; /** * A human-friendly name for the visionPrivateEndpoint, which can be changed. */ readonly displayName?: string; readonly filters?: outputs.AiVision.GetVisionPrivateEndpointsFilter[]; /** * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of private endpoint */ readonly id?: string; /** * The current state of the visionPrivateEndpoint. */ readonly state?: string; /** * The list of vision_private_endpoint_collection. */ readonly visionPrivateEndpointCollections: outputs.AiVision.GetVisionPrivateEndpointsVisionPrivateEndpointCollection[]; } /** * This data source provides the list of Vision Private Endpoints in Oracle Cloud Infrastructure Ai Vision service. * * Returns a list of visionPrivateEndpoints. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVisionPrivateEndpoints = oci.aivision.getVisionPrivateEndpoints({ * compartmentId: compartmentId, * displayName: visionPrivateEndpointDisplayName, * id: visionPrivateEndpointId, * state: visionPrivateEndpointState, * }); * ``` */ export declare function getVisionPrivateEndpointsOutput(args?: GetVisionPrivateEndpointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVisionPrivateEndpoints. */ export interface GetVisionPrivateEndpointsOutputArgs { /** * 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>; /** * The filter to find the device with the given identifier. */ id?: pulumi.Input; /** * The filter to match projects with the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getVisionPrivateEndpoints.d.ts.map