Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.ServiceMesh.getIngressGatewayRouteTables
Explore with Pulumi AI
This data source provides the list of Ingress Gateway Route Tables in Oracle Cloud Infrastructure Service Mesh service.
Returns a list of IngressGatewayRouteTable objects.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testIngressGatewayRouteTables = oci.ServiceMesh.getIngressGatewayRouteTables({
    compartmentId: compartmentId,
    id: ingressGatewayRouteTableId,
    ingressGatewayId: testIngressGateway.id,
    name: ingressGatewayRouteTableName,
    state: ingressGatewayRouteTableState,
});
import pulumi
import pulumi_oci as oci
test_ingress_gateway_route_tables = oci.ServiceMesh.get_ingress_gateway_route_tables(compartment_id=compartment_id,
    id=ingress_gateway_route_table_id,
    ingress_gateway_id=test_ingress_gateway["id"],
    name=ingress_gateway_route_table_name,
    state=ingress_gateway_route_table_state)
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.GetIngressGatewayRouteTables(ctx, &servicemesh.GetIngressGatewayRouteTablesArgs{
			CompartmentId:    compartmentId,
			Id:               pulumi.StringRef(ingressGatewayRouteTableId),
			IngressGatewayId: pulumi.StringRef(testIngressGateway.Id),
			Name:             pulumi.StringRef(ingressGatewayRouteTableName),
			State:            pulumi.StringRef(ingressGatewayRouteTableState),
		}, nil)
		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 testIngressGatewayRouteTables = Oci.ServiceMesh.GetIngressGatewayRouteTables.Invoke(new()
    {
        CompartmentId = compartmentId,
        Id = ingressGatewayRouteTableId,
        IngressGatewayId = testIngressGateway.Id,
        Name = ingressGatewayRouteTableName,
        State = ingressGatewayRouteTableState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ServiceMesh.ServiceMeshFunctions;
import com.pulumi.oci.ServiceMesh.inputs.GetIngressGatewayRouteTablesArgs;
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) {
        final var testIngressGatewayRouteTables = ServiceMeshFunctions.getIngressGatewayRouteTables(GetIngressGatewayRouteTablesArgs.builder()
            .compartmentId(compartmentId)
            .id(ingressGatewayRouteTableId)
            .ingressGatewayId(testIngressGateway.id())
            .name(ingressGatewayRouteTableName)
            .state(ingressGatewayRouteTableState)
            .build());
    }
}
variables:
  testIngressGatewayRouteTables:
    fn::invoke:
      function: oci:ServiceMesh:getIngressGatewayRouteTables
      arguments:
        compartmentId: ${compartmentId}
        id: ${ingressGatewayRouteTableId}
        ingressGatewayId: ${testIngressGateway.id}
        name: ${ingressGatewayRouteTableName}
        state: ${ingressGatewayRouteTableState}
Using getIngressGatewayRouteTables
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getIngressGatewayRouteTables(args: GetIngressGatewayRouteTablesArgs, opts?: InvokeOptions): Promise<GetIngressGatewayRouteTablesResult>
function getIngressGatewayRouteTablesOutput(args: GetIngressGatewayRouteTablesOutputArgs, opts?: InvokeOptions): Output<GetIngressGatewayRouteTablesResult>def get_ingress_gateway_route_tables(compartment_id: Optional[str] = None,
                                     filters: Optional[Sequence[GetIngressGatewayRouteTablesFilter]] = None,
                                     id: Optional[str] = None,
                                     ingress_gateway_id: Optional[str] = None,
                                     name: Optional[str] = None,
                                     state: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetIngressGatewayRouteTablesResult
def get_ingress_gateway_route_tables_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                     filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetIngressGatewayRouteTablesFilterArgs]]]] = None,
                                     id: Optional[pulumi.Input[str]] = None,
                                     ingress_gateway_id: Optional[pulumi.Input[str]] = None,
                                     name: Optional[pulumi.Input[str]] = None,
                                     state: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetIngressGatewayRouteTablesResult]func GetIngressGatewayRouteTables(ctx *Context, args *GetIngressGatewayRouteTablesArgs, opts ...InvokeOption) (*GetIngressGatewayRouteTablesResult, error)
func GetIngressGatewayRouteTablesOutput(ctx *Context, args *GetIngressGatewayRouteTablesOutputArgs, opts ...InvokeOption) GetIngressGatewayRouteTablesResultOutput> Note: This function is named GetIngressGatewayRouteTables in the Go SDK.
public static class GetIngressGatewayRouteTables 
{
    public static Task<GetIngressGatewayRouteTablesResult> InvokeAsync(GetIngressGatewayRouteTablesArgs args, InvokeOptions? opts = null)
    public static Output<GetIngressGatewayRouteTablesResult> Invoke(GetIngressGatewayRouteTablesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetIngressGatewayRouteTablesResult> getIngressGatewayRouteTables(GetIngressGatewayRouteTablesArgs args, InvokeOptions options)
public static Output<GetIngressGatewayRouteTablesResult> getIngressGatewayRouteTables(GetIngressGatewayRouteTablesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:ServiceMesh/getIngressGatewayRouteTables:getIngressGatewayRouteTables
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The ID of the compartment in which to list resources.
- Filters
List<GetIngress Gateway Route Tables Filter> 
- Id string
- Unique IngressGatewayRouteTable identifier.
- IngressGateway stringId 
- Unique IngressGateway identifier.
- Name string
- A filter to return only resources that match the entire name given.
- State string
- A filter to return only resources that match the life cycle state given.
- CompartmentId string
- The ID of the compartment in which to list resources.
- Filters
[]GetIngress Gateway Route Tables Filter 
- Id string
- Unique IngressGatewayRouteTable identifier.
- IngressGateway stringId 
- Unique IngressGateway identifier.
- Name string
- A filter to return only resources that match the entire name given.
- State string
- A filter to return only resources that match the life cycle state given.
- compartmentId String
- The ID of the compartment in which to list resources.
- filters
List<GetIngress Gateway Route Tables Filter> 
- id String
- Unique IngressGatewayRouteTable identifier.
- ingressGateway StringId 
- Unique IngressGateway identifier.
- name String
- A filter to return only resources that match the entire name given.
- state String
- A filter to return only resources that match the life cycle state given.
- compartmentId string
- The ID of the compartment in which to list resources.
- filters
GetIngress Gateway Route Tables Filter[] 
- id string
- Unique IngressGatewayRouteTable identifier.
- ingressGateway stringId 
- Unique IngressGateway identifier.
- name string
- A filter to return only resources that match the entire name given.
- state string
- A filter to return only resources that match the life cycle state given.
- compartment_id str
- The ID of the compartment in which to list resources.
- filters
Sequence[GetIngress Gateway Route Tables Filter] 
- id str
- Unique IngressGatewayRouteTable identifier.
- ingress_gateway_ strid 
- Unique IngressGateway identifier.
- name str
- A filter to return only resources that match the entire name given.
- state str
- A filter to return only resources that match the life cycle state given.
- compartmentId String
- The ID of the compartment in which to list resources.
- filters List<Property Map>
- id String
- Unique IngressGatewayRouteTable identifier.
- ingressGateway StringId 
- Unique IngressGateway identifier.
- name String
- A filter to return only resources that match the entire name given.
- state String
- A filter to return only resources that match the life cycle state given.
getIngressGatewayRouteTables Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment.
- IngressGateway List<GetRoute Table Collections Ingress Gateway Route Tables Ingress Gateway Route Table Collection> 
- The list of ingress_gateway_route_table_collection.
- Filters
List<GetIngress Gateway Route Tables Filter> 
- Id string
- Unique identifier that is immutable on creation.
- IngressGateway stringId 
- The OCID of the ingress gateway.
- Name string
- Name of the ingress gateway host that this route should apply to.
- State string
- The current state of the Resource.
- CompartmentId string
- The OCID of the compartment.
- IngressGateway []GetRoute Table Collections Ingress Gateway Route Tables Ingress Gateway Route Table Collection 
- The list of ingress_gateway_route_table_collection.
- Filters
[]GetIngress Gateway Route Tables Filter 
- Id string
- Unique identifier that is immutable on creation.
- IngressGateway stringId 
- The OCID of the ingress gateway.
- Name string
- Name of the ingress gateway host that this route should apply to.
- State string
- The current state of the Resource.
- compartmentId String
- The OCID of the compartment.
- ingressGateway List<GetRoute Table Collections Ingress Gateway Route Tables Ingress Gateway Route Table Collection> 
- The list of ingress_gateway_route_table_collection.
- filters
List<GetIngress Gateway Route Tables Filter> 
- id String
- Unique identifier that is immutable on creation.
- ingressGateway StringId 
- The OCID of the ingress gateway.
- name String
- Name of the ingress gateway host that this route should apply to.
- state String
- The current state of the Resource.
- compartmentId string
- The OCID of the compartment.
- ingressGateway GetRoute Table Collections Ingress Gateway Route Tables Ingress Gateway Route Table Collection[] 
- The list of ingress_gateway_route_table_collection.
- filters
GetIngress Gateway Route Tables Filter[] 
- id string
- Unique identifier that is immutable on creation.
- ingressGateway stringId 
- The OCID of the ingress gateway.
- name string
- Name of the ingress gateway host that this route should apply to.
- state string
- The current state of the Resource.
- compartment_id str
- The OCID of the compartment.
- ingress_gateway_ Sequence[Getroute_ table_ collections Ingress Gateway Route Tables Ingress Gateway Route Table Collection] 
- The list of ingress_gateway_route_table_collection.
- filters
Sequence[GetIngress Gateway Route Tables Filter] 
- id str
- Unique identifier that is immutable on creation.
- ingress_gateway_ strid 
- The OCID of the ingress gateway.
- name str
- Name of the ingress gateway host that this route should apply to.
- state str
- The current state of the Resource.
- compartmentId String
- The OCID of the compartment.
- ingressGateway List<Property Map>Route Table Collections 
- The list of ingress_gateway_route_table_collection.
- filters List<Property Map>
- id String
- Unique identifier that is immutable on creation.
- ingressGateway StringId 
- The OCID of the ingress gateway.
- name String
- Name of the ingress gateway host that this route should apply to.
- state String
- The current state of the Resource.
Supporting Types
GetIngressGatewayRouteTablesFilter     
GetIngressGatewayRouteTablesIngressGatewayRouteTableCollection         
GetIngressGatewayRouteTablesIngressGatewayRouteTableCollectionItem          
- CompartmentId string
- The ID of the compartment in which to list resources.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- Unique IngressGatewayRouteTable identifier.
- IngressGateway stringId 
- Unique IngressGateway identifier.
- LifecycleDetails 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 filter to return only resources that match the entire name given.
- Priority int
- The priority of the route table. A lower value means a higher priority. The routes are declared based on the priority.
- RouteRules List<GetIngress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule> 
- The route rules for the ingress gateway.
- State string
- A filter to return only resources that match the life cycle state given.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time when this resource was created in an RFC3339 formatted datetime string.
- TimeUpdated string
- The time when this resource was updated in an RFC3339 formatted datetime string.
- CompartmentId string
- The ID of the compartment in which to list resources.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- Unique IngressGatewayRouteTable identifier.
- IngressGateway stringId 
- Unique IngressGateway identifier.
- LifecycleDetails 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 filter to return only resources that match the entire name given.
- Priority int
- The priority of the route table. A lower value means a higher priority. The routes are declared based on the priority.
- RouteRules []GetIngress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule 
- The route rules for the ingress gateway.
- State string
- A filter to return only resources that match the life cycle state given.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time when this resource was created in an RFC3339 formatted datetime string.
- TimeUpdated string
- The time when this resource was updated in an RFC3339 formatted datetime string.
- compartmentId String
- The ID of the compartment in which to list resources.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- Unique IngressGatewayRouteTable identifier.
- ingressGateway StringId 
- Unique IngressGateway identifier.
- lifecycleDetails 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 filter to return only resources that match the entire name given.
- priority Integer
- The priority of the route table. A lower value means a higher priority. The routes are declared based on the priority.
- routeRules List<GetIngress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule> 
- The route rules for the ingress gateway.
- state String
- A filter to return only resources that match the life cycle state given.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time when this resource was created in an RFC3339 formatted datetime string.
- timeUpdated String
- The time when this resource was updated in an RFC3339 formatted datetime string.
- compartmentId string
- The ID of the compartment in which to list resources.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description string
- Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id string
- Unique IngressGatewayRouteTable identifier.
- ingressGateway stringId 
- Unique IngressGateway identifier.
- lifecycleDetails 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 filter to return only resources that match the entire name given.
- priority number
- The priority of the route table. A lower value means a higher priority. The routes are declared based on the priority.
- routeRules GetIngress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule[] 
- The route rules for the ingress gateway.
- state string
- A filter to return only resources that match the life cycle state given.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time when this resource was created in an RFC3339 formatted datetime string.
- timeUpdated string
- The time when this resource was updated in an RFC3339 formatted datetime string.
- compartment_id str
- The ID of the compartment in which to list resources.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description str
- Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id str
- Unique IngressGatewayRouteTable identifier.
- ingress_gateway_ strid 
- Unique IngressGateway identifier.
- 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 filter to return only resources that match the entire name given.
- priority int
- The priority of the route table. A lower value means a higher priority. The routes are declared based on the priority.
- route_rules Sequence[GetIngress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule] 
- The route rules for the ingress gateway.
- state str
- A filter to return only resources that match the life cycle state given.
- 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.
- compartmentId String
- The ID of the compartment in which to list resources.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- Unique IngressGatewayRouteTable identifier.
- ingressGateway StringId 
- Unique IngressGateway identifier.
- lifecycleDetails 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 filter to return only resources that match the entire name given.
- priority Number
- The priority of the route table. A lower value means a higher priority. The routes are declared based on the priority.
- routeRules List<Property Map>
- The route rules for the ingress gateway.
- state String
- A filter to return only resources that match the life cycle state given.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time when this resource was created in an RFC3339 formatted datetime string.
- timeUpdated String
- The time when this resource was updated in an RFC3339 formatted datetime string.
GetIngressGatewayRouteTablesIngressGatewayRouteTableCollectionItemRouteRule            
- Destinations
List<GetIngress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule Destination> 
- The destination of the request.
- IngressGateway List<GetHosts Ingress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule Ingress Gateway Host> 
- 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.
- IsGrpc bool
- If true, the rule will check that the content-type header has a application/grpc or one of the various application/grpc+ values.
- IsHost boolRewrite Enabled 
- If true, the hostname will be rewritten to the target virtual deployment's DNS hostname.
- IsPath boolRewrite Enabled 
- If true, the matched path prefix will be rewritten to '/' before being directed to the target virtual deployment.
- Path string
- Route to match
- PathType string
- Match type for the route
- RequestTimeout stringIn Ms 
- 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.
- Type string
- Type of protocol.
- Destinations
[]GetIngress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule Destination 
- The destination of the request.
- IngressGateway []GetHosts Ingress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule Ingress Gateway Host 
- 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.
- IsGrpc bool
- If true, the rule will check that the content-type header has a application/grpc or one of the various application/grpc+ values.
- IsHost boolRewrite Enabled 
- If true, the hostname will be rewritten to the target virtual deployment's DNS hostname.
- IsPath boolRewrite Enabled 
- If true, the matched path prefix will be rewritten to '/' before being directed to the target virtual deployment.
- Path string
- Route to match
- PathType string
- Match type for the route
- RequestTimeout stringIn Ms 
- 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.
- Type string
- Type of protocol.
- destinations
List<GetIngress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule Destination> 
- The destination of the request.
- ingressGateway List<GetHosts Ingress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule Ingress Gateway Host> 
- 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.
- isGrpc Boolean
- If true, the rule will check that the content-type header has a application/grpc or one of the various application/grpc+ values.
- isHost BooleanRewrite Enabled 
- If true, the hostname will be rewritten to the target virtual deployment's DNS hostname.
- isPath BooleanRewrite Enabled 
- If true, the matched path prefix will be rewritten to '/' before being directed to the target virtual deployment.
- path String
- Route to match
- pathType String
- Match type for the route
- requestTimeout StringIn Ms 
- 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.
- type String
- Type of protocol.
- destinations
GetIngress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule Destination[] 
- The destination of the request.
- ingressGateway GetHosts Ingress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule Ingress Gateway Host[] 
- 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.
- isGrpc boolean
- If true, the rule will check that the content-type header has a application/grpc or one of the various application/grpc+ values.
- isHost booleanRewrite Enabled 
- If true, the hostname will be rewritten to the target virtual deployment's DNS hostname.
- isPath booleanRewrite Enabled 
- If true, the matched path prefix will be rewritten to '/' before being directed to the target virtual deployment.
- path string
- Route to match
- pathType string
- Match type for the route
- requestTimeout stringIn Ms 
- 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.
- type string
- Type of protocol.
- destinations
Sequence[GetIngress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule Destination] 
- The destination of the request.
- ingress_gateway_ Sequence[Gethosts Ingress Gateway Route Tables Ingress Gateway Route Table Collection Item Route Rule Ingress Gateway Host] 
- 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
- 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 
- If true, the hostname will be rewritten to the target virtual deployment's DNS hostname.
- is_path_ boolrewrite_ enabled 
- If true, the matched path prefix will be rewritten to '/' before being directed to the target virtual deployment.
- path str
- Route to match
- path_type str
- Match type for the route
- request_timeout_ strin_ ms 
- 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.
- type str
- Type of protocol.
- destinations List<Property Map>
- The destination of the request.
- ingressGateway List<Property Map>Hosts 
- 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.
- isGrpc Boolean
- If true, the rule will check that the content-type header has a application/grpc or one of the various application/grpc+ values.
- isHost BooleanRewrite Enabled 
- If true, the hostname will be rewritten to the target virtual deployment's DNS hostname.
- isPath BooleanRewrite Enabled 
- If true, the matched path prefix will be rewritten to '/' before being directed to the target virtual deployment.
- path String
- Route to match
- pathType String
- Match type for the route
- requestTimeout StringIn Ms 
- 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.
- type String
- Type of protocol.
GetIngressGatewayRouteTablesIngressGatewayRouteTableCollectionItemRouteRuleDestination             
- Port int
- The port of the ingress gateway host listener. Leave empty to match all ports for the host.
- VirtualService stringId 
- The OCID of the virtual service where the request will be routed.
- Weight int
- Weight of traffic target.
- Port int
- The port of the ingress gateway host listener. Leave empty to match all ports for the host.
- VirtualService stringId 
- The OCID of the virtual service where the request will be routed.
- Weight int
- Weight of traffic target.
- port Integer
- The port of the ingress gateway host listener. Leave empty to match all ports for the host.
- virtualService StringId 
- The OCID of the virtual service where the request will be routed.
- weight Integer
- Weight of traffic target.
- port number
- The port of the ingress gateway host listener. Leave empty to match all ports for the host.
- virtualService stringId 
- The OCID of the virtual service where the request will be routed.
- weight number
- Weight of traffic target.
- port int
- The port of the ingress gateway host listener. Leave empty to match all ports for the host.
- virtual_service_ strid 
- The OCID of the virtual service where the request will be routed.
- weight int
- Weight of traffic target.
- port Number
- The port of the ingress gateway host listener. Leave empty to match all ports for the host.
- virtualService StringId 
- The OCID of the virtual service where the request will be routed.
- weight Number
- Weight of traffic target.
GetIngressGatewayRouteTablesIngressGatewayRouteTableCollectionItemRouteRuleIngressGatewayHost               
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.