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 Private Endpoints in Oracle Cloud Infrastructure Object Storage service. * * Gets a list of all PrivateEndpointSummary items in a compartment. A PrivateEndpointSummary contains only summary fields for the private endpoint * and does not contain fields like the user-defined metadata. * * ListPrivateEndpoints returns a PrivateEndpointSummary containing at most 1000 private endpoints. To paginate through more private endpoints, use the returned * `opc-next-page` value with the `page` request parameter. * * To use this and other API operations, you must be authorized in an IAM policy. If you are not authorized, * talk to an administrator. If you are an administrator who needs to write policies to give users access, see * [Getting Started with Policies](https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/policygetstarted.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPes = oci.objectstorage.getPrivateEndpointSummaries({ * compartmentId: compartmentId, * namespace: namespace, * }); * ``` */ export declare function getPrivateEndpointSummaries(args: GetPrivateEndpointSummariesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPrivateEndpointSummaries. */ export interface GetPrivateEndpointSummariesArgs { /** * The ID of the compartment in which to list private endpoints. */ compartmentId: string; filters?: inputs.ObjectStorage.GetPrivateEndpointSummariesFilter[]; /** * The Object Storage namespace used for the request. */ namespace: string; } /** * A collection of values returned by getPrivateEndpointSummaries. */ export interface GetPrivateEndpointSummariesResult { /** * The compartment ID in which the private endpoint resource exists in. */ readonly compartmentId: string; readonly filters?: outputs.ObjectStorage.GetPrivateEndpointSummariesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Object Storage namespace in which the private endpoint resides. */ readonly namespace: string; /** * The list of private_endpoint_summaries. */ readonly privateEndpointSummaries: outputs.ObjectStorage.GetPrivateEndpointSummariesPrivateEndpointSummary[]; } /** * This data source provides the list of Private Endpoints in Oracle Cloud Infrastructure Object Storage service. * * Gets a list of all PrivateEndpointSummary items in a compartment. A PrivateEndpointSummary contains only summary fields for the private endpoint * and does not contain fields like the user-defined metadata. * * ListPrivateEndpoints returns a PrivateEndpointSummary containing at most 1000 private endpoints. To paginate through more private endpoints, use the returned * `opc-next-page` value with the `page` request parameter. * * To use this and other API operations, you must be authorized in an IAM policy. If you are not authorized, * talk to an administrator. If you are an administrator who needs to write policies to give users access, see * [Getting Started with Policies](https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/policygetstarted.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPes = oci.objectstorage.getPrivateEndpointSummaries({ * compartmentId: compartmentId, * namespace: namespace, * }); * ``` */ export declare function getPrivateEndpointSummariesOutput(args: GetPrivateEndpointSummariesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPrivateEndpointSummaries. */ export interface GetPrivateEndpointSummariesOutputArgs { /** * The ID of the compartment in which to list private endpoints. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The Object Storage namespace used for the request. */ namespace: pulumi.Input; } //# sourceMappingURL=getPrivateEndpointSummaries.d.ts.map