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 Remote Peering Connections in Oracle Cloud Infrastructure Core service. * * Lists the remote peering connections (RPCs) for the specified DRG and compartment * (the RPC's compartment). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRemotePeeringConnections = oci.core.getRemotePeeringConnections({ * compartmentId: compartmentId, * drgId: testDrg.id, * }); * ``` */ export declare function getRemotePeeringConnections(args: GetRemotePeeringConnectionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRemotePeeringConnections. */ export interface GetRemotePeeringConnectionsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DRG. */ drgId?: string; filters?: inputs.Core.GetRemotePeeringConnectionsFilter[]; } /** * A collection of values returned by getRemotePeeringConnections. */ export interface GetRemotePeeringConnectionsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the RPC. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DRG that this RPC belongs to. */ readonly drgId?: string; readonly filters?: outputs.Core.GetRemotePeeringConnectionsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of remote_peering_connections. */ readonly remotePeeringConnections: outputs.Core.GetRemotePeeringConnectionsRemotePeeringConnection[]; } /** * This data source provides the list of Remote Peering Connections in Oracle Cloud Infrastructure Core service. * * Lists the remote peering connections (RPCs) for the specified DRG and compartment * (the RPC's compartment). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRemotePeeringConnections = oci.core.getRemotePeeringConnections({ * compartmentId: compartmentId, * drgId: testDrg.id, * }); * ``` */ export declare function getRemotePeeringConnectionsOutput(args: GetRemotePeeringConnectionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRemotePeeringConnections. */ export interface GetRemotePeeringConnectionsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DRG. */ drgId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getRemotePeeringConnections.d.ts.map