import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Drg Route Table resource in Oracle Cloud Infrastructure Core service. * * Gets the specified DRG route table's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDrgRouteTable = oci.core.getDrgRouteRule({ * drgRouteTableId: testDrgRouteTableOciCoreDrgRouteTable.id, * }); * ``` */ export declare function getDrgRouteRule(args: GetDrgRouteRuleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDrgRouteRule. */ export interface GetDrgRouteRuleArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DRG route table. */ drgRouteTableId: string; } /** * A collection of values returned by getDrgRouteRule. */ export interface GetDrgRouteRuleResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DRG the DRG that contains this route table. */ readonly drgId: string; readonly drgRouteTableId: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DRG route table. */ readonly id: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the import route distribution used to specify how incoming route advertisements from referenced attachments are inserted into the DRG route table. */ readonly importDrgRouteDistributionId: string; /** * If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises network, enable ECMP on the DRG route table to which these attachments import routes. */ readonly isEcmpEnabled: boolean; readonly removeImportTrigger: boolean; /** * The DRG route table's current state. */ readonly state: string; /** * The date and time the DRG route table was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; } /** * This data source provides details about a specific Drg Route Table resource in Oracle Cloud Infrastructure Core service. * * Gets the specified DRG route table's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDrgRouteTable = oci.core.getDrgRouteRule({ * drgRouteTableId: testDrgRouteTableOciCoreDrgRouteTable.id, * }); * ``` */ export declare function getDrgRouteRuleOutput(args: GetDrgRouteRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDrgRouteRule. */ export interface GetDrgRouteRuleOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DRG route table. */ drgRouteTableId: pulumi.Input; } //# sourceMappingURL=getDrgRouteRule.d.ts.map