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 Local Peering Gateways in Oracle Cloud Infrastructure Core service. * * Lists the local peering gateways (LPGs) for the specified VCN and specified compartment. * If the VCN ID is not provided, then the list includes the LPGs from all VCNs in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLocalPeeringGateways = oci.core.getLocalPeeringGateways({ * compartmentId: compartmentId, * vcnId: testVcn.id, * }); * ``` */ export declare function getLocalPeeringGateways(args: GetLocalPeeringGatewaysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLocalPeeringGateways. */ export interface GetLocalPeeringGatewaysArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.Core.GetLocalPeeringGatewaysFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN. */ vcnId?: string; } /** * A collection of values returned by getLocalPeeringGateways. */ export interface GetLocalPeeringGatewaysResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the LPG. */ readonly compartmentId: string; readonly filters?: outputs.Core.GetLocalPeeringGatewaysFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of local_peering_gateways. */ readonly localPeeringGateways: outputs.Core.GetLocalPeeringGatewaysLocalPeeringGateway[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN that uses the LPG. */ readonly vcnId?: string; } /** * This data source provides the list of Local Peering Gateways in Oracle Cloud Infrastructure Core service. * * Lists the local peering gateways (LPGs) for the specified VCN and specified compartment. * If the VCN ID is not provided, then the list includes the LPGs from all VCNs in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLocalPeeringGateways = oci.core.getLocalPeeringGateways({ * compartmentId: compartmentId, * vcnId: testVcn.id, * }); * ``` */ export declare function getLocalPeeringGatewaysOutput(args: GetLocalPeeringGatewaysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLocalPeeringGateways. */ export interface GetLocalPeeringGatewaysOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN. */ vcnId?: pulumi.Input; } //# sourceMappingURL=getLocalPeeringGateways.d.ts.map