ibm.getIsVpcRoutingTableRoute
Explore with Pulumi AI
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:
- Routing
Table 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 - Route
Id string - The VPC routing table route identifier.
- Routing
Table 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 - Route
Id string - The VPC routing table route identifier.
- routing
Table 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 - route
Id String - The VPC routing table route identifier.
- routing
Table 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 - route
Id 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.
- routing
Table 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 - route
Id 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
. - Advertise bool
- (Boolean) Indicates whether this route will be advertised to the ingress sources specified by the
advertise_routes_to
routing table property. - Created
At string - (String) The date and time that the route was created.
- Creators
List<Get
Is Vpc Routing Table Route Creator> - (List) If present, the resource that created the route. Routes with this property present cannot bedirectly deleted. All routes with an
origin
oflearned
orservice
will have thisproperty set, and futureorigin
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.
- Lifecycle
State string - (String) The lifecycle state of the route.
- Constraints: Allowable values are:
deleting
,failed
,pending
,stable
,suspended
,updating
,waiting
.
- Constraints: Allowable values are:
- Next
Hops List<GetIs Vpc Routing Table Route Next Hop> - (List) If
action
isdeliver
, the next hop that packets will be delivered to. For otheraction
values, itsaddress
will be0.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
.
- Constraints: Allowable values are:
- 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.
- Routing
Table string - Vpc string
- Zones
List<Get
Is Vpc Routing Table Route Zone> - (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.
- Route
Id string
- Action string
- (String) The action to perform with a packet matching the route, allowable values are:
delegate
,delegate_vpc
,deliver
,drop
. - Advertise bool
- (Boolean) Indicates whether this route will be advertised to the ingress sources specified by the
advertise_routes_to
routing table property. - Created
At string - (String) The date and time that the route was created.
- Creators
[]Get
Is Vpc Routing Table Route Creator - (List) If present, the resource that created the route. Routes with this property present cannot bedirectly deleted. All routes with an
origin
oflearned
orservice
will have thisproperty set, and futureorigin
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.
- Lifecycle
State string - (String) The lifecycle state of the route.
- Constraints: Allowable values are:
deleting
,failed
,pending
,stable
,suspended
,updating
,waiting
.
- Constraints: Allowable values are:
- Next
Hops []GetIs Vpc Routing Table Route Next Hop - (List) If
action
isdeliver
, the next hop that packets will be delivered to. For otheraction
values, itsaddress
will be0.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
.
- Constraints: Allowable values are:
- 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.
- Routing
Table string - Vpc string
- Zones
[]Get
Is Vpc Routing Table Route Zone - (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.
- Route
Id string
- action String
- (String) The action to perform with a packet matching the route, allowable values are:
delegate
,delegate_vpc
,deliver
,drop
. - advertise Boolean
- (Boolean) Indicates whether this route will be advertised to the ingress sources specified by the
advertise_routes_to
routing table property. - created
At String - (String) The date and time that the route was created.
- creators
List<Get
Is Vpc Routing Table Route Creator> - (List) If present, the resource that created the route. Routes with this property present cannot bedirectly deleted. All routes with an
origin
oflearned
orservice
will have thisproperty set, and futureorigin
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.
- lifecycle
State String - (String) The lifecycle state of the route.
- Constraints: Allowable values are:
deleting
,failed
,pending
,stable
,suspended
,updating
,waiting
.
- Constraints: Allowable values are:
- next
Hops List<GetIs Vpc Routing Table Route Next Hop> - (List) If
action
isdeliver
, the next hop that packets will be delivered to. For otheraction
values, itsaddress
will be0.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
.
- Constraints: Allowable values are:
- 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.
- routing
Table String - vpc String
- zones
List<Get
Is Vpc Routing Table Route Zone> - (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.
- route
Id String
- action string
- (String) The action to perform with a packet matching the route, allowable values are:
delegate
,delegate_vpc
,deliver
,drop
. - advertise boolean
- (Boolean) Indicates whether this route will be advertised to the ingress sources specified by the
advertise_routes_to
routing table property. - created
At string - (String) The date and time that the route was created.
- creators
Get
Is Vpc Routing Table Route Creator[] - (List) If present, the resource that created the route. Routes with this property present cannot bedirectly deleted. All routes with an
origin
oflearned
orservice
will have thisproperty set, and futureorigin
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.
- lifecycle
State string - (String) The lifecycle state of the route.
- Constraints: Allowable values are:
deleting
,failed
,pending
,stable
,suspended
,updating
,waiting
.
- Constraints: Allowable values are:
- next
Hops GetIs Vpc Routing Table Route Next Hop[] - (List) If
action
isdeliver
, the next hop that packets will be delivered to. For otheraction
values, itsaddress
will be0.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
.
- Constraints: Allowable values are:
- 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.
- routing
Table string - vpc string
- zones
Get
Is Vpc Routing Table Route Zone[] - (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.
- route
Id string
- action str
- (String) The action to perform with a packet matching the route, allowable values are:
delegate
,delegate_vpc
,deliver
,drop
. - advertise 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[Get
Is Vpc Routing Table Route Creator] - (List) If present, the resource that created the route. Routes with this property present cannot bedirectly deleted. All routes with an
origin
oflearned
orservice
will have thisproperty set, and futureorigin
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
.
- Constraints: Allowable values are:
- next_
hops Sequence[GetIs Vpc Routing Table Route Next Hop] - (List) If
action
isdeliver
, the next hop that packets will be delivered to. For otheraction
values, itsaddress
will be0.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
.
- Constraints: Allowable values are:
- 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[Get
Is Vpc Routing Table Route Zone] - (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
. - advertise Boolean
- (Boolean) Indicates whether this route will be advertised to the ingress sources specified by the
advertise_routes_to
routing table property. - created
At 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
oflearned
orservice
will have thisproperty set, and futureorigin
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.
- lifecycle
State String - (String) The lifecycle state of the route.
- Constraints: Allowable values are:
deleting
,failed
,pending
,stable
,suspended
,updating
,waiting
.
- Constraints: Allowable values are:
- next
Hops List<Property Map> - (List) If
action
isdeliver
, the next hop that packets will be delivered to. For otheraction
values, itsaddress
will be0.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
.
- Constraints: Allowable values are:
- 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.
- routing
Table 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.
- route
Id String
Supporting Types
GetIsVpcRoutingTableRouteCreator
- Crn string
- (String) The VPN gateway's CRN.
- Constraints: The maximum length is
512
characters. The minimum length is9
characters.
- Constraints: The maximum length is
- Deleteds
List<Get
Is Vpc Routing Table Route Creator Deleted> - (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 - Resource
Type string - (String) The resource type.
- Crn string
- (String) The VPN gateway's CRN.
- Constraints: The maximum length is
512
characters. The minimum length is9
characters.
- Constraints: The maximum length is
- Deleteds
[]Get
Is Vpc Routing Table Route Creator Deleted - (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 - Resource
Type string - (String) The resource type.
- crn String
- (String) The VPN gateway's CRN.
- Constraints: The maximum length is
512
characters. The minimum length is9
characters.
- Constraints: The maximum length is
- deleteds
List<Get
Is Vpc Routing Table Route Creator Deleted> - (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 - resource
Type String - (String) The resource type.
- crn string
- (String) The VPN gateway's CRN.
- Constraints: The maximum length is
512
characters. The minimum length is9
characters.
- Constraints: The maximum length is
- deleteds
Get
Is Vpc Routing Table Route Creator Deleted[] - (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 - resource
Type string - (String) The resource type.
- crn str
- (String) The VPN gateway's CRN.
- Constraints: The maximum length is
512
characters. The minimum length is9
characters.
- Constraints: The maximum length is
- deleteds
Sequence[Get
Is Vpc Routing Table Route Creator Deleted] - (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 is9
characters.
- Constraints: The maximum length is
- 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 - resource
Type String - (String) The resource type.
GetIsVpcRoutingTableRouteCreatorDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info 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<Get
Is Vpc Routing Table Route Next Hop Deleted> - (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 - Resource
Type 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
[]Get
Is Vpc Routing Table Route Next Hop Deleted - (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 - Resource
Type 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<Get
Is Vpc Routing Table Route Next Hop Deleted> - (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 - resource
Type 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
Get
Is Vpc Routing Table Route Next Hop Deleted[] - (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 - resource
Type 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[Get
Is Vpc Routing Table Route Next Hop Deleted] - (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 - resource
Type String - (String) The resource type.
GetIsVpcRoutingTableRouteNextHopDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
GetIsVpcRoutingTableRouteZone
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.