1. Packages
  2. Ibm Provider
  3. API Docs
  4. getIsVpcRoutingTableRoute
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.getIsVpcRoutingTableRoute

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Provides a read-only data source for Route. You can then reference the fields of the data source in other resources within the same configuration using interpolation syntax.For more information, about VPC default routing table, see about routing tables and routes.

    Note: VPC infrastructure services are a regional specific based endpoint, by default targets to us-south. Please make sure to target right region in the provider block as shown in the provider.tf file, if VPC service is created in region other than us-south.

    provider.tf

    import * as pulumi from "@pulumi/pulumi";
    
    import pulumi
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    
    return await Deployment.RunAsync(() => 
    {
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
        }
    }
    
    {}
    

    Example Usage

    Using Route Id)

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const exampleRoute = ibm.getIsVpcRoutingTableRoute({
        vpc: ibm_is_vpc.example_vpc.id,
        routingTable: ibm_is_vpc_routing_table.example_rt.routing_table,
        routeId: ibm_is_vpc_routing_table_route.example_route.route_id,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    example_route = ibm.get_is_vpc_routing_table_route(vpc=ibm_is_vpc["example_vpc"]["id"],
        routing_table=ibm_is_vpc_routing_table["example_rt"]["routing_table"],
        route_id=ibm_is_vpc_routing_table_route["example_route"]["route_id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.LookupIsVpcRoutingTableRoute(ctx, &ibm.LookupIsVpcRoutingTableRouteArgs{
    			Vpc:          ibm_is_vpc.Example_vpc.Id,
    			RoutingTable: ibm_is_vpc_routing_table.Example_rt.Routing_table,
    			RouteId:      pulumi.StringRef(ibm_is_vpc_routing_table_route.Example_route.Route_id),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleRoute = Ibm.GetIsVpcRoutingTableRoute.Invoke(new()
        {
            Vpc = ibm_is_vpc.Example_vpc.Id,
            RoutingTable = ibm_is_vpc_routing_table.Example_rt.Routing_table,
            RouteId = ibm_is_vpc_routing_table_route.Example_route.Route_id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IbmFunctions;
    import com.pulumi.ibm.inputs.GetIsVpcRoutingTableRouteArgs;
    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 exampleRoute = IbmFunctions.getIsVpcRoutingTableRoute(GetIsVpcRoutingTableRouteArgs.builder()
                .vpc(ibm_is_vpc.example_vpc().id())
                .routingTable(ibm_is_vpc_routing_table.example_rt().routing_table())
                .routeId(ibm_is_vpc_routing_table_route.example_route().route_id())
                .build());
    
        }
    }
    
    variables:
      exampleRoute:
        fn::invoke:
          function: ibm:getIsVpcRoutingTableRoute
          arguments:
            vpc: ${ibm_is_vpc.example_vpc.id}
            routingTable: ${ibm_is_vpc_routing_table.example_rt.routing_table}
            routeId: ${ibm_is_vpc_routing_table_route.example_route.route_id}
    

    Using Route Name)

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const exampleRouteName = ibm.getIsVpcRoutingTableRoute({
        vpc: ibm_is_vpc.example_vpc.id,
        routingTable: ibm_is_vpc_routing_table.example_rt.routing_table,
        name: ibm_is_vpc_routing_table_route.example_route.name,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    example_route_name = ibm.get_is_vpc_routing_table_route(vpc=ibm_is_vpc["example_vpc"]["id"],
        routing_table=ibm_is_vpc_routing_table["example_rt"]["routing_table"],
        name=ibm_is_vpc_routing_table_route["example_route"]["name"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.LookupIsVpcRoutingTableRoute(ctx, &ibm.LookupIsVpcRoutingTableRouteArgs{
    			Vpc:          ibm_is_vpc.Example_vpc.Id,
    			RoutingTable: ibm_is_vpc_routing_table.Example_rt.Routing_table,
    			Name:         pulumi.StringRef(ibm_is_vpc_routing_table_route.Example_route.Name),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleRouteName = Ibm.GetIsVpcRoutingTableRoute.Invoke(new()
        {
            Vpc = ibm_is_vpc.Example_vpc.Id,
            RoutingTable = ibm_is_vpc_routing_table.Example_rt.Routing_table,
            Name = ibm_is_vpc_routing_table_route.Example_route.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IbmFunctions;
    import com.pulumi.ibm.inputs.GetIsVpcRoutingTableRouteArgs;
    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 exampleRouteName = IbmFunctions.getIsVpcRoutingTableRoute(GetIsVpcRoutingTableRouteArgs.builder()
                .vpc(ibm_is_vpc.example_vpc().id())
                .routingTable(ibm_is_vpc_routing_table.example_rt().routing_table())
                .name(ibm_is_vpc_routing_table_route.example_route().name())
                .build());
    
        }
    }
    
    variables:
      exampleRouteName:
        fn::invoke:
          function: ibm:getIsVpcRoutingTableRoute
          arguments:
            vpc: ${ibm_is_vpc.example_vpc.id}
            routingTable: ${ibm_is_vpc_routing_table.example_rt.routing_table}
            name: ${ibm_is_vpc_routing_table_route.example_route.name}
    

    Using getIsVpcRoutingTableRoute

    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 getIsVpcRoutingTableRoute(args: GetIsVpcRoutingTableRouteArgs, opts?: InvokeOptions): Promise<GetIsVpcRoutingTableRouteResult>
    function getIsVpcRoutingTableRouteOutput(args: GetIsVpcRoutingTableRouteOutputArgs, opts?: InvokeOptions): Output<GetIsVpcRoutingTableRouteResult>
    def get_is_vpc_routing_table_route(id: Optional[str] = None,
                                       name: Optional[str] = None,
                                       route_id: Optional[str] = None,
                                       routing_table: Optional[str] = None,
                                       vpc: Optional[str] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetIsVpcRoutingTableRouteResult
    def get_is_vpc_routing_table_route_output(id: Optional[pulumi.Input[str]] = None,
                                       name: Optional[pulumi.Input[str]] = None,
                                       route_id: Optional[pulumi.Input[str]] = None,
                                       routing_table: Optional[pulumi.Input[str]] = None,
                                       vpc: Optional[pulumi.Input[str]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetIsVpcRoutingTableRouteResult]
    func LookupIsVpcRoutingTableRoute(ctx *Context, args *LookupIsVpcRoutingTableRouteArgs, opts ...InvokeOption) (*LookupIsVpcRoutingTableRouteResult, error)
    func LookupIsVpcRoutingTableRouteOutput(ctx *Context, args *LookupIsVpcRoutingTableRouteOutputArgs, opts ...InvokeOption) LookupIsVpcRoutingTableRouteResultOutput

    > Note: This function is named LookupIsVpcRoutingTableRoute in the Go SDK.

    public static class GetIsVpcRoutingTableRoute 
    {
        public static Task<GetIsVpcRoutingTableRouteResult> InvokeAsync(GetIsVpcRoutingTableRouteArgs args, InvokeOptions? opts = null)
        public static Output<GetIsVpcRoutingTableRouteResult> Invoke(GetIsVpcRoutingTableRouteInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIsVpcRoutingTableRouteResult> getIsVpcRoutingTableRoute(GetIsVpcRoutingTableRouteArgs args, InvokeOptions options)
    public static Output<GetIsVpcRoutingTableRouteResult> getIsVpcRoutingTableRoute(GetIsVpcRoutingTableRouteArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getIsVpcRoutingTableRoute:getIsVpcRoutingTableRoute
      arguments:
        # arguments dictionary

    The following arguments are supported:

    RoutingTable string
    The VPC routing table identifier. Mutually exclusive with name, one of them is required
    Vpc string
    The VPC identifier.
    Id string
    (String) The unique identifier for this VPN gateway connection.
    Name string
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    RouteId string
    The VPC routing table route identifier.
    RoutingTable string
    The VPC routing table identifier. Mutually exclusive with name, one of them is required
    Vpc string
    The VPC identifier.
    Id string
    (String) The unique identifier for this VPN gateway connection.
    Name string
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    RouteId string
    The VPC routing table route identifier.
    routingTable String
    The VPC routing table identifier. Mutually exclusive with name, one of them is required
    vpc String
    The VPC identifier.
    id String
    (String) The unique identifier for this VPN gateway connection.
    name String
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    routeId String
    The VPC routing table route identifier.
    routingTable string
    The VPC routing table identifier. Mutually exclusive with name, one of them is required
    vpc string
    The VPC identifier.
    id string
    (String) The unique identifier for this VPN gateway connection.
    name string
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    routeId string
    The VPC routing table route identifier.
    routing_table str
    The VPC routing table identifier. Mutually exclusive with name, one of them is required
    vpc str
    The VPC identifier.
    id str
    (String) The unique identifier for this VPN gateway connection.
    name str
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    route_id str
    The VPC routing table route identifier.
    routingTable String
    The VPC routing table identifier. Mutually exclusive with name, one of them is required
    vpc String
    The VPC identifier.
    id String
    (String) The unique identifier for this VPN gateway connection.
    name String
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    routeId String
    The VPC routing table route identifier.

    getIsVpcRoutingTableRoute Result

    The following output properties are available:

    Action string
    (String) The action to perform with a packet matching the route, allowable values are: delegate, delegate_vpc, deliver, drop.
    bool
    (Boolean) Indicates whether this route will be advertised to the ingress sources specified by the advertise_routes_to routing table property.
    CreatedAt string
    (String) The date and time that the route was created.
    Creators List<GetIsVpcRoutingTableRouteCreator>
    (List) If present, the resource that created the route. Routes with this property present cannot bedirectly deleted. All routes with an origin of learned or service will have thisproperty set, and future origin values may also have this property set. Nested scheme for creator:
    Destination string
    (String) The destination of the route.
    Href string
    (String) The URL for this zone.
    Id string
    (String) The unique identifier for this VPN gateway connection.
    LifecycleState string
    (String) The lifecycle state of the route.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting.
    NextHops List<GetIsVpcRoutingTableRouteNextHop>
    (List) If action is deliver, the next hop that packets will be delivered to. For other action values, its address will be 0.0.0.0. Nested scheme for next_hop:
    Origin string
    (String) The origin of this route:- service: route was directly created by a service- user: route was directly created by a userThe enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the route on which the unexpected property value was encountered.

    • Constraints: Allowable values are: learned, service, user.
    Priority double
    (Integer) The route's priority. Smaller values have higher priority. If a routing table contains routes with the same destination, the route with the highest priority (smallest value) is selected. For Example (2), supports values from 0 to 4. Default is 2.
    RoutingTable string
    Vpc string
    Zones List<GetIsVpcRoutingTableRouteZone>
    (List) The zone the route applies to. (Traffic from subnets in this zone will be subject to this route). Nested scheme for zone:
    Name string
    (String) The globally unique name for this zone.
    RouteId string
    Action string
    (String) The action to perform with a packet matching the route, allowable values are: delegate, delegate_vpc, deliver, drop.
    bool
    (Boolean) Indicates whether this route will be advertised to the ingress sources specified by the advertise_routes_to routing table property.
    CreatedAt string
    (String) The date and time that the route was created.
    Creators []GetIsVpcRoutingTableRouteCreator
    (List) If present, the resource that created the route. Routes with this property present cannot bedirectly deleted. All routes with an origin of learned or service will have thisproperty set, and future origin values may also have this property set. Nested scheme for creator:
    Destination string
    (String) The destination of the route.
    Href string
    (String) The URL for this zone.
    Id string
    (String) The unique identifier for this VPN gateway connection.
    LifecycleState string
    (String) The lifecycle state of the route.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting.
    NextHops []GetIsVpcRoutingTableRouteNextHop
    (List) If action is deliver, the next hop that packets will be delivered to. For other action values, its address will be 0.0.0.0. Nested scheme for next_hop:
    Origin string
    (String) The origin of this route:- service: route was directly created by a service- user: route was directly created by a userThe enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the route on which the unexpected property value was encountered.

    • Constraints: Allowable values are: learned, service, user.
    Priority float64
    (Integer) The route's priority. Smaller values have higher priority. If a routing table contains routes with the same destination, the route with the highest priority (smallest value) is selected. For Example (2), supports values from 0 to 4. Default is 2.
    RoutingTable string
    Vpc string
    Zones []GetIsVpcRoutingTableRouteZone
    (List) The zone the route applies to. (Traffic from subnets in this zone will be subject to this route). Nested scheme for zone:
    Name string
    (String) The globally unique name for this zone.
    RouteId string
    action String
    (String) The action to perform with a packet matching the route, allowable values are: delegate, delegate_vpc, deliver, drop.
    Boolean
    (Boolean) Indicates whether this route will be advertised to the ingress sources specified by the advertise_routes_to routing table property.
    createdAt String
    (String) The date and time that the route was created.
    creators List<GetIsVpcRoutingTableRouteCreator>
    (List) If present, the resource that created the route. Routes with this property present cannot bedirectly deleted. All routes with an origin of learned or service will have thisproperty set, and future origin values may also have this property set. Nested scheme for creator:
    destination String
    (String) The destination of the route.
    href String
    (String) The URL for this zone.
    id String
    (String) The unique identifier for this VPN gateway connection.
    lifecycleState String
    (String) The lifecycle state of the route.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting.
    nextHops List<GetIsVpcRoutingTableRouteNextHop>
    (List) If action is deliver, the next hop that packets will be delivered to. For other action values, its address will be 0.0.0.0. Nested scheme for next_hop:
    origin String
    (String) The origin of this route:- service: route was directly created by a service- user: route was directly created by a userThe enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the route on which the unexpected property value was encountered.

    • Constraints: Allowable values are: learned, service, user.
    priority Double
    (Integer) The route's priority. Smaller values have higher priority. If a routing table contains routes with the same destination, the route with the highest priority (smallest value) is selected. For Example (2), supports values from 0 to 4. Default is 2.
    routingTable String
    vpc String
    zones List<GetIsVpcRoutingTableRouteZone>
    (List) The zone the route applies to. (Traffic from subnets in this zone will be subject to this route). Nested scheme for zone:
    name String
    (String) The globally unique name for this zone.
    routeId String
    action string
    (String) The action to perform with a packet matching the route, allowable values are: delegate, delegate_vpc, deliver, drop.
    boolean
    (Boolean) Indicates whether this route will be advertised to the ingress sources specified by the advertise_routes_to routing table property.
    createdAt string
    (String) The date and time that the route was created.
    creators GetIsVpcRoutingTableRouteCreator[]
    (List) If present, the resource that created the route. Routes with this property present cannot bedirectly deleted. All routes with an origin of learned or service will have thisproperty set, and future origin values may also have this property set. Nested scheme for creator:
    destination string
    (String) The destination of the route.
    href string
    (String) The URL for this zone.
    id string
    (String) The unique identifier for this VPN gateway connection.
    lifecycleState string
    (String) The lifecycle state of the route.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting.
    nextHops GetIsVpcRoutingTableRouteNextHop[]
    (List) If action is deliver, the next hop that packets will be delivered to. For other action values, its address will be 0.0.0.0. Nested scheme for next_hop:
    origin string
    (String) The origin of this route:- service: route was directly created by a service- user: route was directly created by a userThe enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the route on which the unexpected property value was encountered.

    • Constraints: Allowable values are: learned, service, user.
    priority number
    (Integer) The route's priority. Smaller values have higher priority. If a routing table contains routes with the same destination, the route with the highest priority (smallest value) is selected. For Example (2), supports values from 0 to 4. Default is 2.
    routingTable string
    vpc string
    zones GetIsVpcRoutingTableRouteZone[]
    (List) The zone the route applies to. (Traffic from subnets in this zone will be subject to this route). Nested scheme for zone:
    name string
    (String) The globally unique name for this zone.
    routeId string
    action str
    (String) The action to perform with a packet matching the route, allowable values are: delegate, delegate_vpc, deliver, drop.
    bool
    (Boolean) Indicates whether this route will be advertised to the ingress sources specified by the advertise_routes_to routing table property.
    created_at str
    (String) The date and time that the route was created.
    creators Sequence[GetIsVpcRoutingTableRouteCreator]
    (List) If present, the resource that created the route. Routes with this property present cannot bedirectly deleted. All routes with an origin of learned or service will have thisproperty set, and future origin values may also have this property set. Nested scheme for creator:
    destination str
    (String) The destination of the route.
    href str
    (String) The URL for this zone.
    id str
    (String) The unique identifier for this VPN gateway connection.
    lifecycle_state str
    (String) The lifecycle state of the route.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting.
    next_hops Sequence[GetIsVpcRoutingTableRouteNextHop]
    (List) If action is deliver, the next hop that packets will be delivered to. For other action values, its address will be 0.0.0.0. Nested scheme for next_hop:
    origin str
    (String) The origin of this route:- service: route was directly created by a service- user: route was directly created by a userThe enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the route on which the unexpected property value was encountered.

    • Constraints: Allowable values are: learned, service, user.
    priority float
    (Integer) The route's priority. Smaller values have higher priority. If a routing table contains routes with the same destination, the route with the highest priority (smallest value) is selected. For Example (2), supports values from 0 to 4. Default is 2.
    routing_table str
    vpc str
    zones Sequence[GetIsVpcRoutingTableRouteZone]
    (List) The zone the route applies to. (Traffic from subnets in this zone will be subject to this route). Nested scheme for zone:
    name str
    (String) The globally unique name for this zone.
    route_id str
    action String
    (String) The action to perform with a packet matching the route, allowable values are: delegate, delegate_vpc, deliver, drop.
    Boolean
    (Boolean) Indicates whether this route will be advertised to the ingress sources specified by the advertise_routes_to routing table property.
    createdAt String
    (String) The date and time that the route was created.
    creators List<Property Map>
    (List) If present, the resource that created the route. Routes with this property present cannot bedirectly deleted. All routes with an origin of learned or service will have thisproperty set, and future origin values may also have this property set. Nested scheme for creator:
    destination String
    (String) The destination of the route.
    href String
    (String) The URL for this zone.
    id String
    (String) The unique identifier for this VPN gateway connection.
    lifecycleState String
    (String) The lifecycle state of the route.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting.
    nextHops List<Property Map>
    (List) If action is deliver, the next hop that packets will be delivered to. For other action values, its address will be 0.0.0.0. Nested scheme for next_hop:
    origin String
    (String) The origin of this route:- service: route was directly created by a service- user: route was directly created by a userThe enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the route on which the unexpected property value was encountered.

    • Constraints: Allowable values are: learned, service, user.
    priority Number
    (Integer) The route's priority. Smaller values have higher priority. If a routing table contains routes with the same destination, the route with the highest priority (smallest value) is selected. For Example (2), supports values from 0 to 4. Default is 2.
    routingTable String
    vpc String
    zones List<Property Map>
    (List) The zone the route applies to. (Traffic from subnets in this zone will be subject to this route). Nested scheme for zone:
    name String
    (String) The globally unique name for this zone.
    routeId String

    Supporting Types

    GetIsVpcRoutingTableRouteCreator

    Crn string
    (String) The VPN gateway's CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters.
    Deleteds List<GetIsVpcRoutingTableRouteCreatorDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information. Nested scheme for deleted:
    Href string
    (String) The URL for this zone.
    Id string
    (String) The unique identifier for this VPN gateway connection.
    Name string
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    ResourceType string
    (String) The resource type.
    Crn string
    (String) The VPN gateway's CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters.
    Deleteds []GetIsVpcRoutingTableRouteCreatorDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information. Nested scheme for deleted:
    Href string
    (String) The URL for this zone.
    Id string
    (String) The unique identifier for this VPN gateway connection.
    Name string
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    ResourceType string
    (String) The resource type.
    crn String
    (String) The VPN gateway's CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters.
    deleteds List<GetIsVpcRoutingTableRouteCreatorDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information. Nested scheme for deleted:
    href String
    (String) The URL for this zone.
    id String
    (String) The unique identifier for this VPN gateway connection.
    name String
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    resourceType String
    (String) The resource type.
    crn string
    (String) The VPN gateway's CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters.
    deleteds GetIsVpcRoutingTableRouteCreatorDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information. Nested scheme for deleted:
    href string
    (String) The URL for this zone.
    id string
    (String) The unique identifier for this VPN gateway connection.
    name string
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    resourceType string
    (String) The resource type.
    crn str
    (String) The VPN gateway's CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters.
    deleteds Sequence[GetIsVpcRoutingTableRouteCreatorDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information. Nested scheme for deleted:
    href str
    (String) The URL for this zone.
    id str
    (String) The unique identifier for this VPN gateway connection.
    name str
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    resource_type str
    (String) The resource type.
    crn String
    (String) The VPN gateway's CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 9 characters.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information. Nested scheme for deleted:
    href String
    (String) The URL for this zone.
    id String
    (String) The unique identifier for this VPN gateway connection.
    name String
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    resourceType String
    (String) The resource type.

    GetIsVpcRoutingTableRouteCreatorDeleted

    MoreInfo string
    (String) Link to documentation about deleted resources.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.
    moreInfo string
    (String) Link to documentation about deleted resources.
    more_info str
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsVpcRoutingTableRouteNextHop

    Address string
    (String) The IP address.This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    Deleteds List<GetIsVpcRoutingTableRouteNextHopDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information. Nested scheme for deleted:
    Href string
    (String) The URL for this zone.
    Id string
    (String) The unique identifier for this VPN gateway connection.
    Name string
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    ResourceType string
    (String) The resource type.
    Address string
    (String) The IP address.This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    Deleteds []GetIsVpcRoutingTableRouteNextHopDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information. Nested scheme for deleted:
    Href string
    (String) The URL for this zone.
    Id string
    (String) The unique identifier for this VPN gateway connection.
    Name string
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    ResourceType string
    (String) The resource type.
    address String
    (String) The IP address.This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    deleteds List<GetIsVpcRoutingTableRouteNextHopDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information. Nested scheme for deleted:
    href String
    (String) The URL for this zone.
    id String
    (String) The unique identifier for this VPN gateway connection.
    name String
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    resourceType String
    (String) The resource type.
    address string
    (String) The IP address.This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    deleteds GetIsVpcRoutingTableRouteNextHopDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information. Nested scheme for deleted:
    href string
    (String) The URL for this zone.
    id string
    (String) The unique identifier for this VPN gateway connection.
    name string
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    resourceType string
    (String) The resource type.
    address str
    (String) The IP address.This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    deleteds Sequence[GetIsVpcRoutingTableRouteNextHopDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information. Nested scheme for deleted:
    href str
    (String) The URL for this zone.
    id str
    (String) The unique identifier for this VPN gateway connection.
    name str
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    resource_type str
    (String) The resource type.
    address String
    (String) The IP address.This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information. Nested scheme for deleted:
    href String
    (String) The URL for this zone.
    id String
    (String) The unique identifier for this VPN gateway connection.
    name String
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    resourceType String
    (String) The resource type.

    GetIsVpcRoutingTableRouteNextHopDeleted

    MoreInfo string
    (String) Link to documentation about deleted resources.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.
    moreInfo string
    (String) Link to documentation about deleted resources.
    more_info str
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsVpcRoutingTableRouteZone

    Href string
    (String) The URL for this zone.
    Name string
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    Href string
    (String) The URL for this zone.
    Name string
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    href String
    (String) The URL for this zone.
    name String
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    href string
    (String) The URL for this zone.
    name string
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    href str
    (String) The URL for this zone.
    name str
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required
    href String
    (String) The URL for this zone.
    name String
    The VPC routing table name. Mutually exclusive with routing_table, one of them is required

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud