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
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDrgRouteTable = new oci.core.DrgRouteTable("test_drg_route_table", {
drgId: testDrg.id,
definedTags: {
"Operations.CostCenter": "42",
},
displayName: drgRouteTableDisplayName,
freeformTags: {
Department: "Finance",
},
importDrgRouteDistributionId: testDrgRouteDistribution.id,
isEcmpEnabled: drgRouteTableIsEcmpEnabled,
});
import pulumi
import pulumi_oci as oci
test_drg_route_table = oci.core.DrgRouteTable("test_drg_route_table",
drg_id=test_drg["id"],
defined_tags={
"Operations.CostCenter": "42",
},
display_name=drg_route_table_display_name,
freeform_tags={
"Department": "Finance",
},
import_drg_route_distribution_id=test_drg_route_distribution["id"],
is_ecmp_enabled=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, "test_drg_route_table", &Core.DrgRouteTableArgs{
DrgId: pulumi.Any(testDrg.Id),
DefinedTags: pulumi.Map{
"Operations.CostCenter": pulumi.Any("42"),
},
DisplayName: pulumi.Any(drgRouteTableDisplayName),
FreeformTags: pulumi.Map{
"Department": pulumi.Any("Finance"),
},
ImportDrgRouteDistributionId: pulumi.Any(testDrgRouteDistribution.Id),
IsEcmpEnabled: pulumi.Any(drgRouteTableIsEcmpEnabled),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testDrgRouteTable = new Oci.Core.DrgRouteTable("test_drg_route_table", new()
{
DrgId = testDrg.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = drgRouteTableDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
ImportDrgRouteDistributionId = testDrgRouteDistribution.Id,
IsEcmpEnabled = drgRouteTableIsEcmpEnabled,
});
});
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(testDrg.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(drgRouteTableDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.importDrgRouteDistributionId(testDrgRouteDistribution.id())
.isEcmpEnabled(drgRouteTableIsEcmpEnabled)
.build());
}
}
resources:
testDrgRouteTable:
type: oci:Core:DrgRouteTable
name: test_drg_route_table
properties:
drgId: ${testDrg.id}
definedTags:
Operations.CostCenter: '42'
displayName: ${drgRouteTableDisplayName}
freeformTags:
Department: Finance
importDrgRouteDistributionId: ${testDrgRouteDistribution.id}
isEcmpEnabled: ${drgRouteTableIsEcmpEnabled}
Create DrgRouteTable Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DrgRouteTable(name: string, args: DrgRouteTableArgs, opts?: CustomResourceOptions);
@overload
def DrgRouteTable(resource_name: str,
args: DrgRouteTableArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DrgRouteTable(resource_name: str,
opts: Optional[ResourceOptions] = None,
drg_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: 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)
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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var drgRouteTableResource = new Oci.Core.DrgRouteTable("drgRouteTableResource", new()
{
DrgId = "string",
DefinedTags =
{
{ "string", "any" },
},
DisplayName = "string",
FreeformTags =
{
{ "string", "any" },
},
ImportDrgRouteDistributionId = "string",
IsEcmpEnabled = false,
RemoveImportTrigger = false,
});
example, err := Core.NewDrgRouteTable(ctx, "drgRouteTableResource", &Core.DrgRouteTableArgs{
DrgId: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
ImportDrgRouteDistributionId: pulumi.String("string"),
IsEcmpEnabled: pulumi.Bool(false),
RemoveImportTrigger: pulumi.Bool(false),
})
var drgRouteTableResource = new DrgRouteTable("drgRouteTableResource", DrgRouteTableArgs.builder()
.drgId("string")
.definedTags(Map.of("string", "any"))
.displayName("string")
.freeformTags(Map.of("string", "any"))
.importDrgRouteDistributionId("string")
.isEcmpEnabled(false)
.removeImportTrigger(false)
.build());
drg_route_table_resource = oci.core.DrgRouteTable("drgRouteTableResource",
drg_id="string",
defined_tags={
"string": "any",
},
display_name="string",
freeform_tags={
"string": "any",
},
import_drg_route_distribution_id="string",
is_ecmp_enabled=False,
remove_import_trigger=False)
const drgRouteTableResource = new oci.core.DrgRouteTable("drgRouteTableResource", {
drgId: "string",
definedTags: {
string: "any",
},
displayName: "string",
freeformTags: {
string: "any",
},
importDrgRouteDistributionId: "string",
isEcmpEnabled: false,
removeImportTrigger: false,
});
type: oci:Core:DrgRouteTable
properties:
definedTags:
string: any
displayName: string
drgId: string
freeformTags:
string: any
importDrgRouteDistributionId: string
isEcmpEnabled: false
removeImportTrigger: false
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:
- Drg
Id string - The OCID of the DRG the DRG route table belongs to.
- 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"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- Import
Drg stringRoute Distribution Id - (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 boolEnabled - (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 boolTrigger (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 string - The OCID of the DRG the DRG route table belongs to.
- 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"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- Import
Drg stringRoute Distribution Id - (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 boolEnabled - (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 boolTrigger (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 String - The OCID of the DRG the DRG route table belongs to.
- 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"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- import
Drg StringRoute Distribution Id - (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 BooleanEnabled - (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 BooleanTrigger (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 string - The OCID of the DRG the DRG route table belongs to.
- {[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"}
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[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"}
- import
Drg stringRoute Distribution Id - (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 booleanEnabled - (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 booleanTrigger (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.
- 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.
- 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_ strroute_ distribution_ id - (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_ boolenabled - (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_ booltrigger (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 String - The OCID of the DRG the DRG route table belongs to.
- 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"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- import
Drg StringRoute Distribution Id - (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 BooleanEnabled - (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 BooleanTrigger (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:
- Compartment
Id 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.
- Time
Created 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 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.
- Time
Created 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 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.
- time
Created 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 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.
- time
Created 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
- compartment
Id 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.
- time
Created 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.
- Compartment
Id string - The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.
- 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"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Drg
Id string - The OCID of the DRG the DRG route table belongs to.
- 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"}
- Import
Drg stringRoute Distribution Id - (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 boolEnabled - (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 boolTrigger (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.
- Time
Created 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 string - The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.
- 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"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Drg
Id string - The OCID of the DRG the DRG route table belongs to.
- 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"}
- Import
Drg stringRoute Distribution Id - (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 boolEnabled - (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 boolTrigger (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.
- Time
Created 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 String - The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.
- 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"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- drg
Id String - The OCID of the DRG the DRG route table belongs to.
- 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"}
- import
Drg StringRoute Distribution Id - (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 BooleanEnabled - (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 BooleanTrigger (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.
- time
Created 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 string - The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.
- {[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"}
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- drg
Id string - The OCID of the DRG the DRG route table belongs to.
- {[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"}
- import
Drg stringRoute Distribution Id - (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 booleanEnabled - (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 booleanTrigger (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.
- time
Created 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.
- 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.
- 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_ strroute_ distribution_ id - (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_ boolenabled - (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_ booltrigger (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
- compartment
Id String - The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.
- 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"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- drg
Id String - The OCID of the DRG the DRG route table belongs to.
- 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"}
- import
Drg StringRoute Distribution Id - (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 BooleanEnabled - (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 BooleanTrigger (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.
- time
Created 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"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.