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 Oda Private Endpoints in Oracle Cloud Infrastructure Digital Assistant service. * * Returns a page of ODA Private Endpoints that belong to the specified * compartment. * * If the `opc-next-page` header appears in the response, then * there are more items to retrieve. To get the next page in the subsequent * GET request, include the header's value as the `page` query parameter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOdaPrivateEndpoints = oci.oda.getOdaPrivateEndpoints({ * compartmentId: compartmentId, * displayName: odaPrivateEndpointDisplayName, * state: odaPrivateEndpointState, * }); * ``` */ export declare function getOdaPrivateEndpoints(args: GetOdaPrivateEndpointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOdaPrivateEndpoints. */ export interface GetOdaPrivateEndpointsArgs { /** * List the ODA Private Endpoints that belong to this compartment. */ compartmentId: string; /** * List only the information for the Digital Assistant instance with this user-friendly name. These names don't have to be unique and may change. Example: `My new resource` */ displayName?: string; filters?: inputs.Oda.GetOdaPrivateEndpointsFilter[]; /** * List only the ODA Private Endpoints that are in this lifecycle state. */ state?: string; } /** * A collection of values returned by getOdaPrivateEndpoints. */ export interface GetOdaPrivateEndpointsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that the ODA private endpoint belongs to. */ readonly compartmentId: string; /** * User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value. */ readonly displayName?: string; readonly filters?: outputs.Oda.GetOdaPrivateEndpointsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of oda_private_endpoint_collection. */ readonly odaPrivateEndpointCollections: outputs.Oda.GetOdaPrivateEndpointsOdaPrivateEndpointCollection[]; /** * The current state of the ODA private endpoint. */ readonly state?: string; } /** * This data source provides the list of Oda Private Endpoints in Oracle Cloud Infrastructure Digital Assistant service. * * Returns a page of ODA Private Endpoints that belong to the specified * compartment. * * If the `opc-next-page` header appears in the response, then * there are more items to retrieve. To get the next page in the subsequent * GET request, include the header's value as the `page` query parameter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOdaPrivateEndpoints = oci.oda.getOdaPrivateEndpoints({ * compartmentId: compartmentId, * displayName: odaPrivateEndpointDisplayName, * state: odaPrivateEndpointState, * }); * ``` */ export declare function getOdaPrivateEndpointsOutput(args: GetOdaPrivateEndpointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOdaPrivateEndpoints. */ export interface GetOdaPrivateEndpointsOutputArgs { /** * List the ODA Private Endpoints that belong to this compartment. */ compartmentId: pulumi.Input; /** * List only the information for the Digital Assistant instance with this user-friendly name. These names don't have to be unique and may change. Example: `My new resource` */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * List only the ODA Private Endpoints that are in this lifecycle state. */ state?: pulumi.Input; } //# sourceMappingURL=getOdaPrivateEndpoints.d.ts.map