oci.ServiceMesh.IngressGatewayRouteTable
Explore with Pulumi AI
This resource provides the Ingress Gateway Route Table resource in Oracle Cloud Infrastructure Service Mesh service.
Creates a new IngressGatewayRouteTable.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testIngressGatewayRouteTable = new oci.servicemesh.IngressGatewayRouteTable("test_ingress_gateway_route_table", {
compartmentId: compartmentId,
ingressGatewayId: testIngressGateway.id,
name: ingressGatewayRouteTableName,
routeRules: [{
destinations: [{
virtualServiceId: testVirtualService.id,
port: ingressGatewayRouteTableRouteRulesDestinationsPort,
weight: ingressGatewayRouteTableRouteRulesDestinationsWeight,
}],
type: ingressGatewayRouteTableRouteRulesType,
ingressGatewayHost: {
name: ingressGatewayRouteTableRouteRulesIngressGatewayHostName,
port: ingressGatewayRouteTableRouteRulesIngressGatewayHostPort,
},
isGrpc: ingressGatewayRouteTableRouteRulesIsGrpc,
isHostRewriteEnabled: ingressGatewayRouteTableRouteRulesIsHostRewriteEnabled,
isPathRewriteEnabled: ingressGatewayRouteTableRouteRulesIsPathRewriteEnabled,
path: ingressGatewayRouteTableRouteRulesPath,
pathType: ingressGatewayRouteTableRouteRulesPathType,
requestTimeoutInMs: ingressGatewayRouteTableRouteRulesRequestTimeoutInMs,
}],
definedTags: {
"foo-namespace.bar-key": "value",
},
description: ingressGatewayRouteTableDescription,
freeformTags: {
"bar-key": "value",
},
priority: ingressGatewayRouteTablePriority,
});
import pulumi
import pulumi_oci as oci
test_ingress_gateway_route_table = oci.service_mesh.IngressGatewayRouteTable("test_ingress_gateway_route_table",
compartment_id=compartment_id,
ingress_gateway_id=test_ingress_gateway["id"],
name=ingress_gateway_route_table_name,
route_rules=[{
"destinations": [{
"virtual_service_id": test_virtual_service["id"],
"port": ingress_gateway_route_table_route_rules_destinations_port,
"weight": ingress_gateway_route_table_route_rules_destinations_weight,
}],
"type": ingress_gateway_route_table_route_rules_type,
"ingress_gateway_host": {
"name": ingress_gateway_route_table_route_rules_ingress_gateway_host_name,
"port": ingress_gateway_route_table_route_rules_ingress_gateway_host_port,
},
"is_grpc": ingress_gateway_route_table_route_rules_is_grpc,
"is_host_rewrite_enabled": ingress_gateway_route_table_route_rules_is_host_rewrite_enabled,
"is_path_rewrite_enabled": ingress_gateway_route_table_route_rules_is_path_rewrite_enabled,
"path": ingress_gateway_route_table_route_rules_path,
"path_type": ingress_gateway_route_table_route_rules_path_type,
"request_timeout_in_ms": ingress_gateway_route_table_route_rules_request_timeout_in_ms,
}],
defined_tags={
"foo-namespace.bar-key": "value",
},
description=ingress_gateway_route_table_description,
freeform_tags={
"bar-key": "value",
},
priority=ingress_gateway_route_table_priority)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/ServiceMesh"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ServiceMesh.NewIngressGatewayRouteTable(ctx, "test_ingress_gateway_route_table", &ServiceMesh.IngressGatewayRouteTableArgs{
CompartmentId: pulumi.Any(compartmentId),
IngressGatewayId: pulumi.Any(testIngressGateway.Id),
Name: pulumi.Any(ingressGatewayRouteTableName),
RouteRules: servicemesh.IngressGatewayRouteTableRouteRuleArray{
&servicemesh.IngressGatewayRouteTableRouteRuleArgs{
Destinations: servicemesh.IngressGatewayRouteTableRouteRuleDestinationArray{
&servicemesh.IngressGatewayRouteTableRouteRuleDestinationArgs{
VirtualServiceId: pulumi.Any(testVirtualService.Id),
Port: pulumi.Any(ingressGatewayRouteTableRouteRulesDestinationsPort),
Weight: pulumi.Any(ingressGatewayRouteTableRouteRulesDestinationsWeight),
},
},
Type: pulumi.Any(ingressGatewayRouteTableRouteRulesType),
IngressGatewayHost: &servicemesh.IngressGatewayRouteTableRouteRuleIngressGatewayHostArgs{
Name: pulumi.Any(ingressGatewayRouteTableRouteRulesIngressGatewayHostName),
Port: pulumi.Any(ingressGatewayRouteTableRouteRulesIngressGatewayHostPort),
},
IsGrpc: pulumi.Any(ingressGatewayRouteTableRouteRulesIsGrpc),
IsHostRewriteEnabled: pulumi.Any(ingressGatewayRouteTableRouteRulesIsHostRewriteEnabled),
IsPathRewriteEnabled: pulumi.Any(ingressGatewayRouteTableRouteRulesIsPathRewriteEnabled),
Path: pulumi.Any(ingressGatewayRouteTableRouteRulesPath),
PathType: pulumi.Any(ingressGatewayRouteTableRouteRulesPathType),
RequestTimeoutInMs: pulumi.Any(ingressGatewayRouteTableRouteRulesRequestTimeoutInMs),
},
},
DefinedTags: pulumi.StringMap{
"foo-namespace.bar-key": pulumi.String("value"),
},
Description: pulumi.Any(ingressGatewayRouteTableDescription),
FreeformTags: pulumi.StringMap{
"bar-key": pulumi.String("value"),
},
Priority: pulumi.Any(ingressGatewayRouteTablePriority),
})
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 testIngressGatewayRouteTable = new Oci.ServiceMesh.IngressGatewayRouteTable("test_ingress_gateway_route_table", new()
{
CompartmentId = compartmentId,
IngressGatewayId = testIngressGateway.Id,
Name = ingressGatewayRouteTableName,
RouteRules = new[]
{
new Oci.ServiceMesh.Inputs.IngressGatewayRouteTableRouteRuleArgs
{
Destinations = new[]
{
new Oci.ServiceMesh.Inputs.IngressGatewayRouteTableRouteRuleDestinationArgs
{
VirtualServiceId = testVirtualService.Id,
Port = ingressGatewayRouteTableRouteRulesDestinationsPort,
Weight = ingressGatewayRouteTableRouteRulesDestinationsWeight,
},
},
Type = ingressGatewayRouteTableRouteRulesType,
IngressGatewayHost = new Oci.ServiceMesh.Inputs.IngressGatewayRouteTableRouteRuleIngressGatewayHostArgs
{
Name = ingressGatewayRouteTableRouteRulesIngressGatewayHostName,
Port = ingressGatewayRouteTableRouteRulesIngressGatewayHostPort,
},
IsGrpc = ingressGatewayRouteTableRouteRulesIsGrpc,
IsHostRewriteEnabled = ingressGatewayRouteTableRouteRulesIsHostRewriteEnabled,
IsPathRewriteEnabled = ingressGatewayRouteTableRouteRulesIsPathRewriteEnabled,
Path = ingressGatewayRouteTableRouteRulesPath,
PathType = ingressGatewayRouteTableRouteRulesPathType,
RequestTimeoutInMs = ingressGatewayRouteTableRouteRulesRequestTimeoutInMs,
},
},
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = ingressGatewayRouteTableDescription,
FreeformTags =
{
{ "bar-key", "value" },
},
Priority = ingressGatewayRouteTablePriority,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ServiceMesh.IngressGatewayRouteTable;
import com.pulumi.oci.ServiceMesh.IngressGatewayRouteTableArgs;
import com.pulumi.oci.ServiceMesh.inputs.IngressGatewayRouteTableRouteRuleArgs;
import com.pulumi.oci.ServiceMesh.inputs.IngressGatewayRouteTableRouteRuleIngressGatewayHostArgs;
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 testIngressGatewayRouteTable = new IngressGatewayRouteTable("testIngressGatewayRouteTable", IngressGatewayRouteTableArgs.builder()
.compartmentId(compartmentId)
.ingressGatewayId(testIngressGateway.id())
.name(ingressGatewayRouteTableName)
.routeRules(IngressGatewayRouteTableRouteRuleArgs.builder()
.destinations(IngressGatewayRouteTableRouteRuleDestinationArgs.builder()
.virtualServiceId(testVirtualService.id())
.port(ingressGatewayRouteTableRouteRulesDestinationsPort)
.weight(ingressGatewayRouteTableRouteRulesDestinationsWeight)
.build())
.type(ingressGatewayRouteTableRouteRulesType)
.ingressGatewayHost(IngressGatewayRouteTableRouteRuleIngressGatewayHostArgs.builder()
.name(ingressGatewayRouteTableRouteRulesIngressGatewayHostName)
.port(ingressGatewayRouteTableRouteRulesIngressGatewayHostPort)
.build())
.isGrpc(ingressGatewayRouteTableRouteRulesIsGrpc)
.isHostRewriteEnabled(ingressGatewayRouteTableRouteRulesIsHostRewriteEnabled)
.isPathRewriteEnabled(ingressGatewayRouteTableRouteRulesIsPathRewriteEnabled)
.path(ingressGatewayRouteTableRouteRulesPath)
.pathType(ingressGatewayRouteTableRouteRulesPathType)
.requestTimeoutInMs(ingressGatewayRouteTableRouteRulesRequestTimeoutInMs)
.build())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(ingressGatewayRouteTableDescription)
.freeformTags(Map.of("bar-key", "value"))
.priority(ingressGatewayRouteTablePriority)
.build());
}
}
resources:
testIngressGatewayRouteTable:
type: oci:ServiceMesh:IngressGatewayRouteTable
name: test_ingress_gateway_route_table
properties:
compartmentId: ${compartmentId}
ingressGatewayId: ${testIngressGateway.id}
name: ${ingressGatewayRouteTableName}
routeRules:
- destinations:
- virtualServiceId: ${testVirtualService.id}
port: ${ingressGatewayRouteTableRouteRulesDestinationsPort}
weight: ${ingressGatewayRouteTableRouteRulesDestinationsWeight}
type: ${ingressGatewayRouteTableRouteRulesType}
ingressGatewayHost:
name: ${ingressGatewayRouteTableRouteRulesIngressGatewayHostName}
port: ${ingressGatewayRouteTableRouteRulesIngressGatewayHostPort}
isGrpc: ${ingressGatewayRouteTableRouteRulesIsGrpc}
isHostRewriteEnabled: ${ingressGatewayRouteTableRouteRulesIsHostRewriteEnabled}
isPathRewriteEnabled: ${ingressGatewayRouteTableRouteRulesIsPathRewriteEnabled}
path: ${ingressGatewayRouteTableRouteRulesPath}
pathType: ${ingressGatewayRouteTableRouteRulesPathType}
requestTimeoutInMs: ${ingressGatewayRouteTableRouteRulesRequestTimeoutInMs}
definedTags:
foo-namespace.bar-key: value
description: ${ingressGatewayRouteTableDescription}
freeformTags:
bar-key: value
priority: ${ingressGatewayRouteTablePriority}
Create IngressGatewayRouteTable Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IngressGatewayRouteTable(name: string, args: IngressGatewayRouteTableArgs, opts?: CustomResourceOptions);
@overload
def IngressGatewayRouteTable(resource_name: str,
args: IngressGatewayRouteTableArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IngressGatewayRouteTable(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
ingress_gateway_id: Optional[str] = None,
route_rules: Optional[Sequence[_servicemesh.IngressGatewayRouteTableRouteRuleArgs]] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
priority: Optional[int] = None)
func NewIngressGatewayRouteTable(ctx *Context, name string, args IngressGatewayRouteTableArgs, opts ...ResourceOption) (*IngressGatewayRouteTable, error)
public IngressGatewayRouteTable(string name, IngressGatewayRouteTableArgs args, CustomResourceOptions? opts = null)
public IngressGatewayRouteTable(String name, IngressGatewayRouteTableArgs args)
public IngressGatewayRouteTable(String name, IngressGatewayRouteTableArgs args, CustomResourceOptions options)
type: oci:ServiceMesh:IngressGatewayRouteTable
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 IngressGatewayRouteTableArgs
- 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 IngressGatewayRouteTableArgs
- 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 IngressGatewayRouteTableArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IngressGatewayRouteTableArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IngressGatewayRouteTableArgs
- 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 ingressGatewayRouteTableResource = new Oci.ServiceMesh.IngressGatewayRouteTable("ingressGatewayRouteTableResource", new()
{
CompartmentId = "string",
IngressGatewayId = "string",
RouteRules = new[]
{
new Oci.ServiceMesh.Inputs.IngressGatewayRouteTableRouteRuleArgs
{
Destinations = new[]
{
new Oci.ServiceMesh.Inputs.IngressGatewayRouteTableRouteRuleDestinationArgs
{
VirtualServiceId = "string",
Port = 0,
Weight = 0,
},
},
Type = "string",
IngressGatewayHost = new Oci.ServiceMesh.Inputs.IngressGatewayRouteTableRouteRuleIngressGatewayHostArgs
{
Name = "string",
Port = 0,
},
IsGrpc = false,
IsHostRewriteEnabled = false,
IsPathRewriteEnabled = false,
Path = "string",
PathType = "string",
RequestTimeoutInMs = "string",
},
},
DefinedTags =
{
{ "string", "string" },
},
Description = "string",
FreeformTags =
{
{ "string", "string" },
},
Name = "string",
Priority = 0,
});
example, err := ServiceMesh.NewIngressGatewayRouteTable(ctx, "ingressGatewayRouteTableResource", &ServiceMesh.IngressGatewayRouteTableArgs{
CompartmentId: pulumi.String("string"),
IngressGatewayId: pulumi.String("string"),
RouteRules: servicemesh.IngressGatewayRouteTableRouteRuleArray{
&servicemesh.IngressGatewayRouteTableRouteRuleArgs{
Destinations: servicemesh.IngressGatewayRouteTableRouteRuleDestinationArray{
&servicemesh.IngressGatewayRouteTableRouteRuleDestinationArgs{
VirtualServiceId: pulumi.String("string"),
Port: pulumi.Int(0),
Weight: pulumi.Int(0),
},
},
Type: pulumi.String("string"),
IngressGatewayHost: &servicemesh.IngressGatewayRouteTableRouteRuleIngressGatewayHostArgs{
Name: pulumi.String("string"),
Port: pulumi.Int(0),
},
IsGrpc: pulumi.Bool(false),
IsHostRewriteEnabled: pulumi.Bool(false),
IsPathRewriteEnabled: pulumi.Bool(false),
Path: pulumi.String("string"),
PathType: pulumi.String("string"),
RequestTimeoutInMs: pulumi.String("string"),
},
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
Priority: pulumi.Int(0),
})
var ingressGatewayRouteTableResource = new IngressGatewayRouteTable("ingressGatewayRouteTableResource", IngressGatewayRouteTableArgs.builder()
.compartmentId("string")
.ingressGatewayId("string")
.routeRules(IngressGatewayRouteTableRouteRuleArgs.builder()
.destinations(IngressGatewayRouteTableRouteRuleDestinationArgs.builder()
.virtualServiceId("string")
.port(0)
.weight(0)
.build())
.type("string")
.ingressGatewayHost(IngressGatewayRouteTableRouteRuleIngressGatewayHostArgs.builder()
.name("string")
.port(0)
.build())
.isGrpc(false)
.isHostRewriteEnabled(false)
.isPathRewriteEnabled(false)
.path("string")
.pathType("string")
.requestTimeoutInMs("string")
.build())
.definedTags(Map.of("string", "string"))
.description("string")
.freeformTags(Map.of("string", "string"))
.name("string")
.priority(0)
.build());
ingress_gateway_route_table_resource = oci.service_mesh.IngressGatewayRouteTable("ingressGatewayRouteTableResource",
compartment_id="string",
ingress_gateway_id="string",
route_rules=[{
"destinations": [{
"virtual_service_id": "string",
"port": 0,
"weight": 0,
}],
"type": "string",
"ingress_gateway_host": {
"name": "string",
"port": 0,
},
"is_grpc": False,
"is_host_rewrite_enabled": False,
"is_path_rewrite_enabled": False,
"path": "string",
"path_type": "string",
"request_timeout_in_ms": "string",
}],
defined_tags={
"string": "string",
},
description="string",
freeform_tags={
"string": "string",
},
name="string",
priority=0)
const ingressGatewayRouteTableResource = new oci.servicemesh.IngressGatewayRouteTable("ingressGatewayRouteTableResource", {
compartmentId: "string",
ingressGatewayId: "string",
routeRules: [{
destinations: [{
virtualServiceId: "string",
port: 0,
weight: 0,
}],
type: "string",
ingressGatewayHost: {
name: "string",
port: 0,
},
isGrpc: false,
isHostRewriteEnabled: false,
isPathRewriteEnabled: false,
path: "string",
pathType: "string",
requestTimeoutInMs: "string",
}],
definedTags: {
string: "string",
},
description: "string",
freeformTags: {
string: "string",
},
name: "string",
priority: 0,
});
type: oci:ServiceMesh:IngressGatewayRouteTable
properties:
compartmentId: string
definedTags:
string: string
description: string
freeformTags:
string: string
ingressGatewayId: string
name: string
priority: 0
routeRules:
- destinations:
- port: 0
virtualServiceId: string
weight: 0
ingressGatewayHost:
name: string
port: 0
isGrpc: false
isHostRewriteEnabled: false
isPathRewriteEnabled: false
path: string
pathType: string
requestTimeoutInMs: string
type: string
IngressGatewayRouteTable Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The IngressGatewayRouteTable resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Ingress
Gateway stringId - The OCID of the service mesh in which this access policy is created.
- Route
Rules List<IngressGateway Route Table Route Rule> - (Updatable) The route rules for the ingress gateway.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Name string
- A user-friendly name. The name must be unique within the same ingress gateway and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
- Priority int
- (Updatable) The priority of the route table. Lower value means higher priority. The routes are declared based on the priority.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Ingress
Gateway stringId - The OCID of the service mesh in which this access policy is created.
- Route
Rules []IngressGateway Route Table Route Rule Args - (Updatable) The route rules for the ingress gateway.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Name string
- A user-friendly name. The name must be unique within the same ingress gateway and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
- Priority int
- (Updatable) The priority of the route table. Lower value means higher priority. The routes are declared based on the priority.
- compartment
Id String - (Updatable) The OCID of the compartment.
- ingress
Gateway StringId - The OCID of the service mesh in which this access policy is created.
- route
Rules List<IngressGateway Route Table Route Rule> - (Updatable) The route rules for the ingress gateway.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- name String
- A user-friendly name. The name must be unique within the same ingress gateway and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
- priority Integer
- (Updatable) The priority of the route table. Lower value means higher priority. The routes are declared based on the priority.
- compartment
Id string - (Updatable) The OCID of the compartment.
- ingress
Gateway stringId - The OCID of the service mesh in which this access policy is created.
- route
Rules IngressGateway Route Table Route Rule[] - (Updatable) The route rules for the ingress gateway.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- name string
- A user-friendly name. The name must be unique within the same ingress gateway and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
- priority number
- (Updatable) The priority of the route table. Lower value means higher priority. The routes are declared based on the priority.
- compartment_
id str - (Updatable) The OCID of the compartment.
- ingress_
gateway_ strid - The OCID of the service mesh in which this access policy is created.
- route_
rules Sequence[servicemesh.Ingress Gateway Route Table Route Rule Args] - (Updatable) The route rules for the ingress gateway.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- name str
- A user-friendly name. The name must be unique within the same ingress gateway and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
- priority int
- (Updatable) The priority of the route table. Lower value means higher priority. The routes are declared based on the priority.
- compartment
Id String - (Updatable) The OCID of the compartment.
- ingress
Gateway StringId - The OCID of the service mesh in which this access policy is created.
- route
Rules List<Property Map> - (Updatable) The route rules for the ingress gateway.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- name String
- A user-friendly name. The name must be unique within the same ingress gateway and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
- priority Number
- (Updatable) The priority of the route table. Lower value means higher priority. The routes are declared based on the priority.
Outputs
All input properties are implicitly available as output properties. Additionally, the IngressGatewayRouteTable resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- State string
- The current state of the Resource.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time when this resource was created in an RFC3339 formatted datetime string.
- Time
Updated string - The time when this resource was updated in an RFC3339 formatted datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- State string
- The current state of the Resource.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time when this resource was created in an RFC3339 formatted datetime string.
- Time
Updated string - The time when this resource was updated in an RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- state String
- The current state of the Resource.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time when this resource was created in an RFC3339 formatted datetime string.
- time
Updated String - The time when this resource was updated in an RFC3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- state string
- The current state of the Resource.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time when this resource was created in an RFC3339 formatted datetime string.
- time
Updated string - The time when this resource was updated in an RFC3339 formatted datetime string.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- state str
- The current state of the Resource.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time when this resource was created in an RFC3339 formatted datetime string.
- time_
updated str - The time when this resource was updated in an RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- state String
- The current state of the Resource.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time when this resource was created in an RFC3339 formatted datetime string.
- time
Updated String - The time when this resource was updated in an RFC3339 formatted datetime string.
Look up Existing IngressGatewayRouteTable Resource
Get an existing IngressGatewayRouteTable 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?: IngressGatewayRouteTableState, opts?: CustomResourceOptions): IngressGatewayRouteTable
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
ingress_gateway_id: Optional[str] = None,
lifecycle_details: Optional[str] = None,
name: Optional[str] = None,
priority: Optional[int] = None,
route_rules: Optional[Sequence[_servicemesh.IngressGatewayRouteTableRouteRuleArgs]] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> IngressGatewayRouteTable
func GetIngressGatewayRouteTable(ctx *Context, name string, id IDInput, state *IngressGatewayRouteTableState, opts ...ResourceOption) (*IngressGatewayRouteTable, error)
public static IngressGatewayRouteTable Get(string name, Input<string> id, IngressGatewayRouteTableState? state, CustomResourceOptions? opts = null)
public static IngressGatewayRouteTable get(String name, Output<String> id, IngressGatewayRouteTableState 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 - (Updatable) The OCID of the compartment.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Ingress
Gateway stringId - The OCID of the service mesh in which this access policy is created.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- Name string
- A user-friendly name. The name must be unique within the same ingress gateway and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
- Priority int
- (Updatable) The priority of the route table. Lower value means higher priority. The routes are declared based on the priority.
- Route
Rules List<IngressGateway Route Table Route Rule> - (Updatable) The route rules for the ingress gateway.
- State string
- The current state of the Resource.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time when this resource was created in an RFC3339 formatted datetime string.
- Time
Updated string - The time when this resource was updated in an RFC3339 formatted datetime string.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Ingress
Gateway stringId - The OCID of the service mesh in which this access policy is created.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- Name string
- A user-friendly name. The name must be unique within the same ingress gateway and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
- Priority int
- (Updatable) The priority of the route table. Lower value means higher priority. The routes are declared based on the priority.
- Route
Rules []IngressGateway Route Table Route Rule Args - (Updatable) The route rules for the ingress gateway.
- State string
- The current state of the Resource.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time when this resource was created in an RFC3339 formatted datetime string.
- Time
Updated string - The time when this resource was updated in an RFC3339 formatted datetime string.
- compartment
Id String - (Updatable) The OCID of the compartment.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- ingress
Gateway StringId - The OCID of the service mesh in which this access policy is created.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- name String
- A user-friendly name. The name must be unique within the same ingress gateway and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
- priority Integer
- (Updatable) The priority of the route table. Lower value means higher priority. The routes are declared based on the priority.
- route
Rules List<IngressGateway Route Table Route Rule> - (Updatable) The route rules for the ingress gateway.
- state String
- The current state of the Resource.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time when this resource was created in an RFC3339 formatted datetime string.
- time
Updated String - The time when this resource was updated in an RFC3339 formatted datetime string.
- compartment
Id string - (Updatable) The OCID of the compartment.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- ingress
Gateway stringId - The OCID of the service mesh in which this access policy is created.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- name string
- A user-friendly name. The name must be unique within the same ingress gateway and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
- priority number
- (Updatable) The priority of the route table. Lower value means higher priority. The routes are declared based on the priority.
- route
Rules IngressGateway Route Table Route Rule[] - (Updatable) The route rules for the ingress gateway.
- state string
- The current state of the Resource.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time when this resource was created in an RFC3339 formatted datetime string.
- time
Updated string - The time when this resource was updated in an RFC3339 formatted datetime string.
- compartment_
id str - (Updatable) The OCID of the compartment.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- ingress_
gateway_ strid - The OCID of the service mesh in which this access policy is created.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- name str
- A user-friendly name. The name must be unique within the same ingress gateway and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
- priority int
- (Updatable) The priority of the route table. Lower value means higher priority. The routes are declared based on the priority.
- route_
rules Sequence[servicemesh.Ingress Gateway Route Table Route Rule Args] - (Updatable) The route rules for the ingress gateway.
- state str
- The current state of the Resource.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time when this resource was created in an RFC3339 formatted datetime string.
- time_
updated str - The time when this resource was updated in an RFC3339 formatted datetime string.
- compartment
Id String - (Updatable) The OCID of the compartment.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- ingress
Gateway StringId - The OCID of the service mesh in which this access policy is created.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- name String
- A user-friendly name. The name must be unique within the same ingress gateway and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
- priority Number
- (Updatable) The priority of the route table. Lower value means higher priority. The routes are declared based on the priority.
- route
Rules List<Property Map> - (Updatable) The route rules for the ingress gateway.
- state String
- The current state of the Resource.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time when this resource was created in an RFC3339 formatted datetime string.
- time
Updated String - The time when this resource was updated in an RFC3339 formatted datetime string.
Supporting Types
IngressGatewayRouteTableRouteRule, IngressGatewayRouteTableRouteRuleArgs
- Destinations
List<Ingress
Gateway Route Table Route Rule Destination> - (Updatable) The destination of the request.
- Type string
(Updatable) Type of protocol.
** 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
- Ingress
Gateway IngressHost Gateway Route Table Route Rule Ingress Gateway Host - (Updatable) The ingress gateway host to which the route rule attaches. If not specified, the route rule gets attached to all hosts on the ingress gateway.
- Is
Grpc bool - (Updatable) If true, the rule will check that the content-type header has a application/grpc or one of the various application/grpc+ values.
- Is
Host boolRewrite Enabled - (Updatable) If true, the hostname will be rewritten to the target virtual deployment's DNS hostname.
- Is
Path boolRewrite Enabled - (Updatable) If true, the matched path prefix will be rewritten to '/' before being directed to the target virtual deployment.
- Path string
- (Updatable) Route to match
- Path
Type string - (Updatable) Match type for the route
- Request
Timeout stringIn Ms - (Updatable) The maximum duration in milliseconds for the upstream service to respond to a request. If provided, the timeout value overrides the default timeout of 15 seconds for the HTTP based route rules, and disabled (no timeout) when 'isGrpc' is true. The value 0 (zero) indicates that the timeout is disabled. For streaming responses from the upstream service, consider either keeping the timeout disabled or set a sufficiently high value.
- Destinations
[]Ingress
Gateway Route Table Route Rule Destination - (Updatable) The destination of the request.
- Type string
(Updatable) Type of protocol.
** 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
- Ingress
Gateway IngressHost Gateway Route Table Route Rule Ingress Gateway Host - (Updatable) The ingress gateway host to which the route rule attaches. If not specified, the route rule gets attached to all hosts on the ingress gateway.
- Is
Grpc bool - (Updatable) If true, the rule will check that the content-type header has a application/grpc or one of the various application/grpc+ values.
- Is
Host boolRewrite Enabled - (Updatable) If true, the hostname will be rewritten to the target virtual deployment's DNS hostname.
- Is
Path boolRewrite Enabled - (Updatable) If true, the matched path prefix will be rewritten to '/' before being directed to the target virtual deployment.
- Path string
- (Updatable) Route to match
- Path
Type string - (Updatable) Match type for the route
- Request
Timeout stringIn Ms - (Updatable) The maximum duration in milliseconds for the upstream service to respond to a request. If provided, the timeout value overrides the default timeout of 15 seconds for the HTTP based route rules, and disabled (no timeout) when 'isGrpc' is true. The value 0 (zero) indicates that the timeout is disabled. For streaming responses from the upstream service, consider either keeping the timeout disabled or set a sufficiently high value.
- destinations
List<Ingress
Gateway Route Table Route Rule Destination> - (Updatable) The destination of the request.
- type String
(Updatable) Type of protocol.
** 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
- ingress
Gateway IngressHost Gateway Route Table Route Rule Ingress Gateway Host - (Updatable) The ingress gateway host to which the route rule attaches. If not specified, the route rule gets attached to all hosts on the ingress gateway.
- is
Grpc Boolean - (Updatable) If true, the rule will check that the content-type header has a application/grpc or one of the various application/grpc+ values.
- is
Host BooleanRewrite Enabled - (Updatable) If true, the hostname will be rewritten to the target virtual deployment's DNS hostname.
- is
Path BooleanRewrite Enabled - (Updatable) If true, the matched path prefix will be rewritten to '/' before being directed to the target virtual deployment.
- path String
- (Updatable) Route to match
- path
Type String - (Updatable) Match type for the route
- request
Timeout StringIn Ms - (Updatable) The maximum duration in milliseconds for the upstream service to respond to a request. If provided, the timeout value overrides the default timeout of 15 seconds for the HTTP based route rules, and disabled (no timeout) when 'isGrpc' is true. The value 0 (zero) indicates that the timeout is disabled. For streaming responses from the upstream service, consider either keeping the timeout disabled or set a sufficiently high value.
- destinations
Ingress
Gateway Route Table Route Rule Destination[] - (Updatable) The destination of the request.
- type string
(Updatable) Type of protocol.
** 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
- ingress
Gateway IngressHost Gateway Route Table Route Rule Ingress Gateway Host - (Updatable) The ingress gateway host to which the route rule attaches. If not specified, the route rule gets attached to all hosts on the ingress gateway.
- is
Grpc boolean - (Updatable) If true, the rule will check that the content-type header has a application/grpc or one of the various application/grpc+ values.
- is
Host booleanRewrite Enabled - (Updatable) If true, the hostname will be rewritten to the target virtual deployment's DNS hostname.
- is
Path booleanRewrite Enabled - (Updatable) If true, the matched path prefix will be rewritten to '/' before being directed to the target virtual deployment.
- path string
- (Updatable) Route to match
- path
Type string - (Updatable) Match type for the route
- request
Timeout stringIn Ms - (Updatable) The maximum duration in milliseconds for the upstream service to respond to a request. If provided, the timeout value overrides the default timeout of 15 seconds for the HTTP based route rules, and disabled (no timeout) when 'isGrpc' is true. The value 0 (zero) indicates that the timeout is disabled. For streaming responses from the upstream service, consider either keeping the timeout disabled or set a sufficiently high value.
- destinations
Sequence[servicemesh.
Ingress Gateway Route Table Route Rule Destination] - (Updatable) The destination of the request.
- type str
(Updatable) Type of protocol.
** 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
- ingress_
gateway_ servicemesh.host Ingress Gateway Route Table Route Rule Ingress Gateway Host - (Updatable) The ingress gateway host to which the route rule attaches. If not specified, the route rule gets attached to all hosts on the ingress gateway.
- is_
grpc bool - (Updatable) If true, the rule will check that the content-type header has a application/grpc or one of the various application/grpc+ values.
- is_
host_ boolrewrite_ enabled - (Updatable) If true, the hostname will be rewritten to the target virtual deployment's DNS hostname.
- is_
path_ boolrewrite_ enabled - (Updatable) If true, the matched path prefix will be rewritten to '/' before being directed to the target virtual deployment.
- path str
- (Updatable) Route to match
- path_
type str - (Updatable) Match type for the route
- request_
timeout_ strin_ ms - (Updatable) The maximum duration in milliseconds for the upstream service to respond to a request. If provided, the timeout value overrides the default timeout of 15 seconds for the HTTP based route rules, and disabled (no timeout) when 'isGrpc' is true. The value 0 (zero) indicates that the timeout is disabled. For streaming responses from the upstream service, consider either keeping the timeout disabled or set a sufficiently high value.
- destinations List<Property Map>
- (Updatable) The destination of the request.
- type String
(Updatable) Type of protocol.
** 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
- ingress
Gateway Property MapHost - (Updatable) The ingress gateway host to which the route rule attaches. If not specified, the route rule gets attached to all hosts on the ingress gateway.
- is
Grpc Boolean - (Updatable) If true, the rule will check that the content-type header has a application/grpc or one of the various application/grpc+ values.
- is
Host BooleanRewrite Enabled - (Updatable) If true, the hostname will be rewritten to the target virtual deployment's DNS hostname.
- is
Path BooleanRewrite Enabled - (Updatable) If true, the matched path prefix will be rewritten to '/' before being directed to the target virtual deployment.
- path String
- (Updatable) Route to match
- path
Type String - (Updatable) Match type for the route
- request
Timeout StringIn Ms - (Updatable) The maximum duration in milliseconds for the upstream service to respond to a request. If provided, the timeout value overrides the default timeout of 15 seconds for the HTTP based route rules, and disabled (no timeout) when 'isGrpc' is true. The value 0 (zero) indicates that the timeout is disabled. For streaming responses from the upstream service, consider either keeping the timeout disabled or set a sufficiently high value.
IngressGatewayRouteTableRouteRuleDestination, IngressGatewayRouteTableRouteRuleDestinationArgs
- Virtual
Service stringId - (Updatable) The OCID of the virtual service where the request will be routed.
- Port int
- (Updatable) The port on the virtual service to target. Mandatory if the virtual deployments are listening on multiple ports.
- Weight int
- (Updatable) Weight of traffic target.
- Virtual
Service stringId - (Updatable) The OCID of the virtual service where the request will be routed.
- Port int
- (Updatable) The port on the virtual service to target. Mandatory if the virtual deployments are listening on multiple ports.
- Weight int
- (Updatable) Weight of traffic target.
- virtual
Service StringId - (Updatable) The OCID of the virtual service where the request will be routed.
- port Integer
- (Updatable) The port on the virtual service to target. Mandatory if the virtual deployments are listening on multiple ports.
- weight Integer
- (Updatable) Weight of traffic target.
- virtual
Service stringId - (Updatable) The OCID of the virtual service where the request will be routed.
- port number
- (Updatable) The port on the virtual service to target. Mandatory if the virtual deployments are listening on multiple ports.
- weight number
- (Updatable) Weight of traffic target.
- virtual_
service_ strid - (Updatable) The OCID of the virtual service where the request will be routed.
- port int
- (Updatable) The port on the virtual service to target. Mandatory if the virtual deployments are listening on multiple ports.
- weight int
- (Updatable) Weight of traffic target.
- virtual
Service StringId - (Updatable) The OCID of the virtual service where the request will be routed.
- port Number
- (Updatable) The port on the virtual service to target. Mandatory if the virtual deployments are listening on multiple ports.
- weight Number
- (Updatable) Weight of traffic target.
IngressGatewayRouteTableRouteRuleIngressGatewayHost, IngressGatewayRouteTableRouteRuleIngressGatewayHostArgs
Import
IngressGatewayRouteTables can be imported using the id
, e.g.
$ pulumi import oci:ServiceMesh/ingressGatewayRouteTable:IngressGatewayRouteTable test_ingress_gateway_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.