oci logo
Oracle Cloud Infrastructure v0.19.0, May 26 23

oci.Core.DrgRouteTable

Explore with Pulumi AI

This resource provides the Drg Route Table resource in Oracle Cloud Infrastructure Core service.

Creates a new DRG route table for the specified DRG. Assign the DRG route table to a DRG attachment using the UpdateDrgAttachment or CreateDrgAttachment operations.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testDrgRouteTable = new Oci.Core.DrgRouteTable("testDrgRouteTable", new()
    {
        DrgId = oci_core_drg.Test_drg.Id,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        DisplayName = @var.Drg_route_table_display_name,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        ImportDrgRouteDistributionId = oci_core_drg_route_distribution.Test_drg_route_distribution.Id,
        IsEcmpEnabled = @var.Drg_route_table_is_ecmp_enabled,
    });

});
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/go/oci/Core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := Core.NewDrgRouteTable(ctx, "testDrgRouteTable", &Core.DrgRouteTableArgs{
			DrgId: pulumi.Any(oci_core_drg.Test_drg.Id),
			DefinedTags: pulumi.AnyMap{
				"Operations.CostCenter": pulumi.Any("42"),
			},
			DisplayName: pulumi.Any(_var.Drg_route_table_display_name),
			FreeformTags: pulumi.AnyMap{
				"Department": pulumi.Any("Finance"),
			},
			ImportDrgRouteDistributionId: pulumi.Any(oci_core_drg_route_distribution.Test_drg_route_distribution.Id),
			IsEcmpEnabled:                pulumi.Any(_var.Drg_route_table_is_ecmp_enabled),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.DrgRouteTable;
import com.pulumi.oci.Core.DrgRouteTableArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var testDrgRouteTable = new DrgRouteTable("testDrgRouteTable", DrgRouteTableArgs.builder()        
            .drgId(oci_core_drg.test_drg().id())
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .displayName(var_.drg_route_table_display_name())
            .freeformTags(Map.of("Department", "Finance"))
            .importDrgRouteDistributionId(oci_core_drg_route_distribution.test_drg_route_distribution().id())
            .isEcmpEnabled(var_.drg_route_table_is_ecmp_enabled())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_drg_route_table = oci.core.DrgRouteTable("testDrgRouteTable",
    drg_id=oci_core_drg["test_drg"]["id"],
    defined_tags={
        "Operations.CostCenter": "42",
    },
    display_name=var["drg_route_table_display_name"],
    freeform_tags={
        "Department": "Finance",
    },
    import_drg_route_distribution_id=oci_core_drg_route_distribution["test_drg_route_distribution"]["id"],
    is_ecmp_enabled=var["drg_route_table_is_ecmp_enabled"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testDrgRouteTable = new oci.core.DrgRouteTable("testDrgRouteTable", {
    drgId: oci_core_drg.test_drg.id,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    displayName: _var.drg_route_table_display_name,
    freeformTags: {
        Department: "Finance",
    },
    importDrgRouteDistributionId: oci_core_drg_route_distribution.test_drg_route_distribution.id,
    isEcmpEnabled: _var.drg_route_table_is_ecmp_enabled,
});
resources:
  testDrgRouteTable:
    type: oci:Core:DrgRouteTable
    properties:
      #Required
      drgId: ${oci_core_drg.test_drg.id}
      #Optional
      definedTags:
        Operations.CostCenter: '42'
      displayName: ${var.drg_route_table_display_name}
      freeformTags:
        Department: Finance
      importDrgRouteDistributionId: ${oci_core_drg_route_distribution.test_drg_route_distribution.id}
      isEcmpEnabled: ${var.drg_route_table_is_ecmp_enabled}

Create DrgRouteTable Resource

new DrgRouteTable(name: string, args: DrgRouteTableArgs, opts?: CustomResourceOptions);
@overload
def DrgRouteTable(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  defined_tags: Optional[Mapping[str, Any]] = None,
                  display_name: Optional[str] = None,
                  drg_id: Optional[str] = None,
                  freeform_tags: Optional[Mapping[str, Any]] = None,
                  import_drg_route_distribution_id: Optional[str] = None,
                  is_ecmp_enabled: Optional[bool] = None,
                  remove_import_trigger: Optional[bool] = None)
@overload
def DrgRouteTable(resource_name: str,
                  args: DrgRouteTableArgs,
                  opts: Optional[ResourceOptions] = None)
func NewDrgRouteTable(ctx *Context, name string, args DrgRouteTableArgs, opts ...ResourceOption) (*DrgRouteTable, error)
public DrgRouteTable(string name, DrgRouteTableArgs args, CustomResourceOptions? opts = null)
public DrgRouteTable(String name, DrgRouteTableArgs args)
public DrgRouteTable(String name, DrgRouteTableArgs args, CustomResourceOptions options)
type: oci:Core:DrgRouteTable
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args DrgRouteTableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args DrgRouteTableArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args DrgRouteTableArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args DrgRouteTableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args DrgRouteTableArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

DrgRouteTable Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The DrgRouteTable resource accepts the following input properties:

DrgId string

The OCID of the DRG the DRG route table belongs to.

DefinedTags Dictionary<string, object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

DisplayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

FreeformTags Dictionary<string, object>

(Updatable) 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. Example: {"Department": "Finance"}

ImportDrgRouteDistributionId string

(Updatable) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.

IsEcmpEnabled bool

(Updatable) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.

RemoveImportTrigger bool

(Updatable) An optional property when flipped disables the import of route Distribution by setting import_drg_route_distribution_id to null.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

DrgId string

The OCID of the DRG the DRG route table belongs to.

DefinedTags map[string]interface{}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

DisplayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

FreeformTags map[string]interface{}

(Updatable) 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. Example: {"Department": "Finance"}

ImportDrgRouteDistributionId string

(Updatable) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.

IsEcmpEnabled bool

(Updatable) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.

RemoveImportTrigger bool

(Updatable) An optional property when flipped disables the import of route Distribution by setting import_drg_route_distribution_id to null.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

drgId String

The OCID of the DRG the DRG route table belongs to.

definedTags Map<String,Object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

displayName String

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

freeformTags Map<String,Object>

(Updatable) 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. Example: {"Department": "Finance"}

importDrgRouteDistributionId String

(Updatable) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.

isEcmpEnabled Boolean

(Updatable) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.

removeImportTrigger Boolean

(Updatable) An optional property when flipped disables the import of route Distribution by setting import_drg_route_distribution_id to null.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

drgId string

The OCID of the DRG the DRG route table belongs to.

definedTags {[key: string]: any}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

displayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

freeformTags {[key: string]: any}

(Updatable) 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. Example: {"Department": "Finance"}

importDrgRouteDistributionId string

(Updatable) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.

isEcmpEnabled boolean

(Updatable) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.

removeImportTrigger boolean

(Updatable) An optional property when flipped disables the import of route Distribution by setting import_drg_route_distribution_id to null.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

drg_id str

The OCID of the DRG the DRG route table belongs to.

defined_tags Mapping[str, Any]

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

display_name str

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

freeform_tags Mapping[str, Any]

(Updatable) 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. Example: {"Department": "Finance"}

import_drg_route_distribution_id str

(Updatable) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.

is_ecmp_enabled bool

(Updatable) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.

remove_import_trigger bool

(Updatable) An optional property when flipped disables the import of route Distribution by setting import_drg_route_distribution_id to null.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

drgId String

The OCID of the DRG the DRG route table belongs to.

definedTags Map<Any>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

displayName String

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

freeformTags Map<Any>

(Updatable) 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. Example: {"Department": "Finance"}

importDrgRouteDistributionId String

(Updatable) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.

isEcmpEnabled Boolean

(Updatable) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.

removeImportTrigger Boolean

(Updatable) An optional property when flipped disables the import of route Distribution by setting import_drg_route_distribution_id to null.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Outputs

All input properties are implicitly available as output properties. Additionally, the DrgRouteTable resource produces the following output properties:

CompartmentId string

The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.

Id string

The provider-assigned unique ID for this managed resource.

State string

The DRG route table's current state.

TimeCreated string

The date and time the DRG route table was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

CompartmentId string

The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.

Id string

The provider-assigned unique ID for this managed resource.

State string

The DRG route table's current state.

TimeCreated string

The date and time the DRG route table was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

compartmentId String

The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.

id String

The provider-assigned unique ID for this managed resource.

state String

The DRG route table's current state.

timeCreated String

The date and time the DRG route table was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

compartmentId string

The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.

id string

The provider-assigned unique ID for this managed resource.

state string

The DRG route table's current state.

timeCreated string

The date and time the DRG route table was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

compartment_id str

The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.

id str

The provider-assigned unique ID for this managed resource.

state str

The DRG route table's current state.

time_created str

The date and time the DRG route table was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

compartmentId String

The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.

id String

The provider-assigned unique ID for this managed resource.

state String

The DRG route table's current state.

timeCreated String

The date and time the DRG route table was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

Look up Existing DrgRouteTable Resource

Get an existing DrgRouteTable resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: DrgRouteTableState, opts?: CustomResourceOptions): DrgRouteTable
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, Any]] = None,
        display_name: Optional[str] = None,
        drg_id: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, Any]] = None,
        import_drg_route_distribution_id: Optional[str] = None,
        is_ecmp_enabled: Optional[bool] = None,
        remove_import_trigger: Optional[bool] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None) -> DrgRouteTable
func GetDrgRouteTable(ctx *Context, name string, id IDInput, state *DrgRouteTableState, opts ...ResourceOption) (*DrgRouteTable, error)
public static DrgRouteTable Get(string name, Input<string> id, DrgRouteTableState? state, CustomResourceOptions? opts = null)
public static DrgRouteTable get(String name, Output<String> id, DrgRouteTableState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CompartmentId string

The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.

DefinedTags Dictionary<string, object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

DisplayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

DrgId string

The OCID of the DRG the DRG route table belongs to.

FreeformTags Dictionary<string, object>

(Updatable) 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. Example: {"Department": "Finance"}

ImportDrgRouteDistributionId string

(Updatable) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.

IsEcmpEnabled bool

(Updatable) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.

RemoveImportTrigger bool

(Updatable) An optional property when flipped disables the import of route Distribution by setting import_drg_route_distribution_id to null.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

State string

The DRG route table's current state.

TimeCreated string

The date and time the DRG route table was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

CompartmentId string

The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.

DefinedTags map[string]interface{}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

DisplayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

DrgId string

The OCID of the DRG the DRG route table belongs to.

FreeformTags map[string]interface{}

(Updatable) 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. Example: {"Department": "Finance"}

ImportDrgRouteDistributionId string

(Updatable) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.

IsEcmpEnabled bool

(Updatable) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.

RemoveImportTrigger bool

(Updatable) An optional property when flipped disables the import of route Distribution by setting import_drg_route_distribution_id to null.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

State string

The DRG route table's current state.

TimeCreated string

The date and time the DRG route table was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

compartmentId String

The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.

definedTags Map<String,Object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

displayName String

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

drgId String

The OCID of the DRG the DRG route table belongs to.

freeformTags Map<String,Object>

(Updatable) 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. Example: {"Department": "Finance"}

importDrgRouteDistributionId String

(Updatable) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.

isEcmpEnabled Boolean

(Updatable) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.

removeImportTrigger Boolean

(Updatable) An optional property when flipped disables the import of route Distribution by setting import_drg_route_distribution_id to null.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

state String

The DRG route table's current state.

timeCreated String

The date and time the DRG route table was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

compartmentId string

The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.

definedTags {[key: string]: any}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

displayName string

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

drgId string

The OCID of the DRG the DRG route table belongs to.

freeformTags {[key: string]: any}

(Updatable) 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. Example: {"Department": "Finance"}

importDrgRouteDistributionId string

(Updatable) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.

isEcmpEnabled boolean

(Updatable) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.

removeImportTrigger boolean

(Updatable) An optional property when flipped disables the import of route Distribution by setting import_drg_route_distribution_id to null.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

state string

The DRG route table's current state.

timeCreated string

The date and time the DRG route table was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

compartment_id str

The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.

defined_tags Mapping[str, Any]

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

display_name str

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

drg_id str

The OCID of the DRG the DRG route table belongs to.

freeform_tags Mapping[str, Any]

(Updatable) 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. Example: {"Department": "Finance"}

import_drg_route_distribution_id str

(Updatable) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.

is_ecmp_enabled bool

(Updatable) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.

remove_import_trigger bool

(Updatable) An optional property when flipped disables the import of route Distribution by setting import_drg_route_distribution_id to null.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

state str

The DRG route table's current state.

time_created str

The date and time the DRG route table was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

compartmentId String

The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.

definedTags Map<Any>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

displayName String

(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

drgId String

The OCID of the DRG the DRG route table belongs to.

freeformTags Map<Any>

(Updatable) 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. Example: {"Department": "Finance"}

importDrgRouteDistributionId String

(Updatable) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.

isEcmpEnabled Boolean

(Updatable) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.

removeImportTrigger Boolean

(Updatable) An optional property when flipped disables the import of route Distribution by setting import_drg_route_distribution_id to null.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

state String

The DRG route table's current state.

timeCreated String

The date and time the DRG route table was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

Import

DrgRouteTables can be imported using the id, e.g.

 $ pulumi import oci:Core/drgRouteTable:DrgRouteTable test_drg_route_table "id"

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.