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 Operations Insights Private Endpoints in Oracle Cloud Infrastructure Opsi service. * * Gets a list of Operation Insights private endpoints. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperationsInsightsPrivateEndpoints = oci.opsi.getOperationsInsightsPrivateEndpoints({ * compartmentId: compartmentId, * compartmentIdInSubtree: operationsInsightsPrivateEndpointCompartmentIdInSubtree === "true", * displayName: operationsInsightsPrivateEndpointDisplayName, * isUsedForRacDbs: operationsInsightsPrivateEndpointIsUsedForRacDbs === "true", * opsiPrivateEndpointId: testPrivateEndpoint.id, * states: operationsInsightsPrivateEndpointState, * vcnId: testVcn.id, * }); * ``` */ export declare function getOperationsInsightsPrivateEndpoints(args?: GetOperationsInsightsPrivateEndpointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOperationsInsightsPrivateEndpoints. */ export interface GetOperationsInsightsPrivateEndpointsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: string; /** * A flag to search all resources within a given compartment and all sub-compartments. */ compartmentIdInSubtree?: boolean; /** * A filter to return only resources that match the entire display name. */ displayName?: string; filters?: inputs.Opsi.GetOperationsInsightsPrivateEndpointsFilter[]; /** * The option to filter OPSI private endpoints that can used for RAC. Should be used along with vcnId query parameter. */ isUsedForRacDbs?: boolean; /** * Unique Operations Insights PrivateEndpoint identifier */ opsiPrivateEndpointId?: string; /** * Lifecycle states */ states?: string[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN. */ vcnId?: string; } /** * A collection of values returned by getOperationsInsightsPrivateEndpoints. */ export interface GetOperationsInsightsPrivateEndpointsResult { /** * The compartment OCID of the Private service accessed database. */ readonly compartmentId?: string; readonly compartmentIdInSubtree?: boolean; /** * The display name of the private endpoint. */ readonly displayName?: string; readonly filters?: outputs.Opsi.GetOperationsInsightsPrivateEndpointsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The flag is to identify if private endpoint is used for rac database or not. This flag is deprecated and no longer is used. */ readonly isUsedForRacDbs?: boolean; /** * The list of operations_insights_private_endpoint_collection. */ readonly operationsInsightsPrivateEndpointCollections: outputs.Opsi.GetOperationsInsightsPrivateEndpointsOperationsInsightsPrivateEndpointCollection[]; readonly opsiPrivateEndpointId?: string; /** * The current state of the private endpoint. */ readonly states?: string[]; /** * The OCID of the VCN. */ readonly vcnId?: string; } /** * This data source provides the list of Operations Insights Private Endpoints in Oracle Cloud Infrastructure Opsi service. * * Gets a list of Operation Insights private endpoints. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperationsInsightsPrivateEndpoints = oci.opsi.getOperationsInsightsPrivateEndpoints({ * compartmentId: compartmentId, * compartmentIdInSubtree: operationsInsightsPrivateEndpointCompartmentIdInSubtree === "true", * displayName: operationsInsightsPrivateEndpointDisplayName, * isUsedForRacDbs: operationsInsightsPrivateEndpointIsUsedForRacDbs === "true", * opsiPrivateEndpointId: testPrivateEndpoint.id, * states: operationsInsightsPrivateEndpointState, * vcnId: testVcn.id, * }); * ``` */ export declare function getOperationsInsightsPrivateEndpointsOutput(args?: GetOperationsInsightsPrivateEndpointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOperationsInsightsPrivateEndpoints. */ export interface GetOperationsInsightsPrivateEndpointsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: pulumi.Input; /** * A flag to search all resources within a given compartment and all sub-compartments. */ compartmentIdInSubtree?: pulumi.Input; /** * A filter to return only resources that match the entire display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The option to filter OPSI private endpoints that can used for RAC. Should be used along with vcnId query parameter. */ isUsedForRacDbs?: pulumi.Input; /** * Unique Operations Insights PrivateEndpoint identifier */ opsiPrivateEndpointId?: pulumi.Input; /** * Lifecycle states */ states?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN. */ vcnId?: pulumi.Input; } //# sourceMappingURL=getOperationsInsightsPrivateEndpoints.d.ts.map