1. Packages
  2. Google Cloud Native
  3. API Docs
  4. networkservices
  5. networkservices/v1beta1
  6. TcpRoute

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.networkservices/v1beta1.TcpRoute

Explore with Pulumi AI

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

Creates a new TcpRoute in a given project and location.

Create TcpRoute Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new TcpRoute(name: string, args: TcpRouteArgs, opts?: CustomResourceOptions);
@overload
def TcpRoute(resource_name: str,
             args: TcpRouteArgs,
             opts: Optional[ResourceOptions] = None)

@overload
def TcpRoute(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             rules: Optional[Sequence[TcpRouteRouteRuleArgs]] = None,
             tcp_route_id: Optional[str] = None,
             description: Optional[str] = None,
             gateways: Optional[Sequence[str]] = None,
             labels: Optional[Mapping[str, str]] = None,
             location: Optional[str] = None,
             meshes: Optional[Sequence[str]] = None,
             name: Optional[str] = None,
             project: Optional[str] = None)
func NewTcpRoute(ctx *Context, name string, args TcpRouteArgs, opts ...ResourceOption) (*TcpRoute, error)
public TcpRoute(string name, TcpRouteArgs args, CustomResourceOptions? opts = null)
public TcpRoute(String name, TcpRouteArgs args)
public TcpRoute(String name, TcpRouteArgs args, CustomResourceOptions options)
type: google-native:networkservices/v1beta1:TcpRoute
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. TcpRouteArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. TcpRouteArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. TcpRouteArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. TcpRouteArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. TcpRouteArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var google_nativeTcpRouteResource = new GoogleNative.NetworkServices.V1Beta1.TcpRoute("google-nativeTcpRouteResource", new()
{
    Rules = new[]
    {
        new GoogleNative.NetworkServices.V1Beta1.Inputs.TcpRouteRouteRuleArgs
        {
            Action = new GoogleNative.NetworkServices.V1Beta1.Inputs.TcpRouteRouteActionArgs
            {
                Destinations = new[]
                {
                    new GoogleNative.NetworkServices.V1Beta1.Inputs.TcpRouteRouteDestinationArgs
                    {
                        ServiceName = "string",
                        Weight = 0,
                    },
                },
                OriginalDestination = false,
            },
            Matches = new[]
            {
                new GoogleNative.NetworkServices.V1Beta1.Inputs.TcpRouteRouteMatchArgs
                {
                    Address = "string",
                    Port = "string",
                },
            },
        },
    },
    TcpRouteId = "string",
    Description = "string",
    Gateways = new[]
    {
        "string",
    },
    Labels = 
    {
        { "string", "string" },
    },
    Location = "string",
    Meshes = new[]
    {
        "string",
    },
    Name = "string",
    Project = "string",
});
Copy
example, err := networkservicesv1beta1.NewTcpRoute(ctx, "google-nativeTcpRouteResource", &networkservicesv1beta1.TcpRouteArgs{
	Rules: networkservices.TcpRouteRouteRuleArray{
		&networkservices.TcpRouteRouteRuleArgs{
			Action: &networkservices.TcpRouteRouteActionArgs{
				Destinations: networkservices.TcpRouteRouteDestinationArray{
					&networkservices.TcpRouteRouteDestinationArgs{
						ServiceName: pulumi.String("string"),
						Weight:      pulumi.Int(0),
					},
				},
				OriginalDestination: pulumi.Bool(false),
			},
			Matches: networkservices.TcpRouteRouteMatchArray{
				&networkservices.TcpRouteRouteMatchArgs{
					Address: pulumi.String("string"),
					Port:    pulumi.String("string"),
				},
			},
		},
	},
	TcpRouteId:  pulumi.String("string"),
	Description: pulumi.String("string"),
	Gateways: pulumi.StringArray{
		pulumi.String("string"),
	},
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	Meshes: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name:    pulumi.String("string"),
	Project: pulumi.String("string"),
})
Copy
var google_nativeTcpRouteResource = new TcpRoute("google-nativeTcpRouteResource", TcpRouteArgs.builder()
    .rules(TcpRouteRouteRuleArgs.builder()
        .action(TcpRouteRouteActionArgs.builder()
            .destinations(TcpRouteRouteDestinationArgs.builder()
                .serviceName("string")
                .weight(0)
                .build())
            .originalDestination(false)
            .build())
        .matches(TcpRouteRouteMatchArgs.builder()
            .address("string")
            .port("string")
            .build())
        .build())
    .tcpRouteId("string")
    .description("string")
    .gateways("string")
    .labels(Map.of("string", "string"))
    .location("string")
    .meshes("string")
    .name("string")
    .project("string")
    .build());
Copy
google_native_tcp_route_resource = google_native.networkservices.v1beta1.TcpRoute("google-nativeTcpRouteResource",
    rules=[{
        "action": {
            "destinations": [{
                "service_name": "string",
                "weight": 0,
            }],
            "original_destination": False,
        },
        "matches": [{
            "address": "string",
            "port": "string",
        }],
    }],
    tcp_route_id="string",
    description="string",
    gateways=["string"],
    labels={
        "string": "string",
    },
    location="string",
    meshes=["string"],
    name="string",
    project="string")
Copy
const google_nativeTcpRouteResource = new google_native.networkservices.v1beta1.TcpRoute("google-nativeTcpRouteResource", {
    rules: [{
        action: {
            destinations: [{
                serviceName: "string",
                weight: 0,
            }],
            originalDestination: false,
        },
        matches: [{
            address: "string",
            port: "string",
        }],
    }],
    tcpRouteId: "string",
    description: "string",
    gateways: ["string"],
    labels: {
        string: "string",
    },
    location: "string",
    meshes: ["string"],
    name: "string",
    project: "string",
});
Copy
type: google-native:networkservices/v1beta1:TcpRoute
properties:
    description: string
    gateways:
        - string
    labels:
        string: string
    location: string
    meshes:
        - string
    name: string
    project: string
    rules:
        - action:
            destinations:
                - serviceName: string
                  weight: 0
            originalDestination: false
          matches:
            - address: string
              port: string
    tcpRouteId: string
Copy

TcpRoute Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The TcpRoute resource accepts the following input properties:

Rules This property is required. List<Pulumi.GoogleNative.NetworkServices.V1Beta1.Inputs.TcpRouteRouteRule>
Rules that define how traffic is routed and handled. At least one RouteRule must be supplied. If there are multiple rules then the action taken will be the first rule to match.
TcpRouteId
This property is required.
Changes to this property will trigger replacement.
string
Required. Short name of the TcpRoute resource to be created.
Description string
Optional. A free-text description of the resource. Max length 1024 characters.
Gateways List<string>
Optional. Gateways defines a list of gateways this TcpRoute is attached to, as one of the routing rules to route the requests served by the gateway. Each gateway reference should match the pattern: projects/*/locations/global/gateways/
Labels Dictionary<string, string>
Optional. Set of label tags associated with the TcpRoute resource.
Location Changes to this property will trigger replacement. string
Meshes List<string>
Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one of the routing rules to route the requests served by the mesh. Each mesh reference should match the pattern: projects/*/locations/global/meshes/ The attached Mesh should be of a type SIDECAR
Name string
Name of the TcpRoute resource. It matches pattern projects/*/locations/global/tcpRoutes/tcp_route_name>.
Project Changes to this property will trigger replacement. string
Rules This property is required. []TcpRouteRouteRuleArgs
Rules that define how traffic is routed and handled. At least one RouteRule must be supplied. If there are multiple rules then the action taken will be the first rule to match.
TcpRouteId
This property is required.
Changes to this property will trigger replacement.
string
Required. Short name of the TcpRoute resource to be created.
Description string
Optional. A free-text description of the resource. Max length 1024 characters.
Gateways []string
Optional. Gateways defines a list of gateways this TcpRoute is attached to, as one of the routing rules to route the requests served by the gateway. Each gateway reference should match the pattern: projects/*/locations/global/gateways/
Labels map[string]string
Optional. Set of label tags associated with the TcpRoute resource.
Location Changes to this property will trigger replacement. string
Meshes []string
Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one of the routing rules to route the requests served by the mesh. Each mesh reference should match the pattern: projects/*/locations/global/meshes/ The attached Mesh should be of a type SIDECAR
Name string
Name of the TcpRoute resource. It matches pattern projects/*/locations/global/tcpRoutes/tcp_route_name>.
Project Changes to this property will trigger replacement. string
rules This property is required. List<TcpRouteRouteRule>
Rules that define how traffic is routed and handled. At least one RouteRule must be supplied. If there are multiple rules then the action taken will be the first rule to match.
tcpRouteId
This property is required.
Changes to this property will trigger replacement.
String
Required. Short name of the TcpRoute resource to be created.
description String
Optional. A free-text description of the resource. Max length 1024 characters.
gateways List<String>
Optional. Gateways defines a list of gateways this TcpRoute is attached to, as one of the routing rules to route the requests served by the gateway. Each gateway reference should match the pattern: projects/*/locations/global/gateways/
labels Map<String,String>
Optional. Set of label tags associated with the TcpRoute resource.
location Changes to this property will trigger replacement. String
meshes List<String>
Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one of the routing rules to route the requests served by the mesh. Each mesh reference should match the pattern: projects/*/locations/global/meshes/ The attached Mesh should be of a type SIDECAR
name String
Name of the TcpRoute resource. It matches pattern projects/*/locations/global/tcpRoutes/tcp_route_name>.
project Changes to this property will trigger replacement. String
rules This property is required. TcpRouteRouteRule[]
Rules that define how traffic is routed and handled. At least one RouteRule must be supplied. If there are multiple rules then the action taken will be the first rule to match.
tcpRouteId
This property is required.
Changes to this property will trigger replacement.
string
Required. Short name of the TcpRoute resource to be created.
description string
Optional. A free-text description of the resource. Max length 1024 characters.
gateways string[]
Optional. Gateways defines a list of gateways this TcpRoute is attached to, as one of the routing rules to route the requests served by the gateway. Each gateway reference should match the pattern: projects/*/locations/global/gateways/
labels {[key: string]: string}
Optional. Set of label tags associated with the TcpRoute resource.
location Changes to this property will trigger replacement. string
meshes string[]
Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one of the routing rules to route the requests served by the mesh. Each mesh reference should match the pattern: projects/*/locations/global/meshes/ The attached Mesh should be of a type SIDECAR
name string
Name of the TcpRoute resource. It matches pattern projects/*/locations/global/tcpRoutes/tcp_route_name>.
project Changes to this property will trigger replacement. string
rules This property is required. Sequence[TcpRouteRouteRuleArgs]
Rules that define how traffic is routed and handled. At least one RouteRule must be supplied. If there are multiple rules then the action taken will be the first rule to match.
tcp_route_id
This property is required.
Changes to this property will trigger replacement.
str
Required. Short name of the TcpRoute resource to be created.
description str
Optional. A free-text description of the resource. Max length 1024 characters.
gateways Sequence[str]
Optional. Gateways defines a list of gateways this TcpRoute is attached to, as one of the routing rules to route the requests served by the gateway. Each gateway reference should match the pattern: projects/*/locations/global/gateways/
labels Mapping[str, str]
Optional. Set of label tags associated with the TcpRoute resource.
location Changes to this property will trigger replacement. str
meshes Sequence[str]
Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one of the routing rules to route the requests served by the mesh. Each mesh reference should match the pattern: projects/*/locations/global/meshes/ The attached Mesh should be of a type SIDECAR
name str
Name of the TcpRoute resource. It matches pattern projects/*/locations/global/tcpRoutes/tcp_route_name>.
project Changes to this property will trigger replacement. str
rules This property is required. List<Property Map>
Rules that define how traffic is routed and handled. At least one RouteRule must be supplied. If there are multiple rules then the action taken will be the first rule to match.
tcpRouteId
This property is required.
Changes to this property will trigger replacement.
String
Required. Short name of the TcpRoute resource to be created.
description String
Optional. A free-text description of the resource. Max length 1024 characters.
gateways List<String>
Optional. Gateways defines a list of gateways this TcpRoute is attached to, as one of the routing rules to route the requests served by the gateway. Each gateway reference should match the pattern: projects/*/locations/global/gateways/
labels Map<String>
Optional. Set of label tags associated with the TcpRoute resource.
location Changes to this property will trigger replacement. String
meshes List<String>
Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one of the routing rules to route the requests served by the mesh. Each mesh reference should match the pattern: projects/*/locations/global/meshes/ The attached Mesh should be of a type SIDECAR
name String
Name of the TcpRoute resource. It matches pattern projects/*/locations/global/tcpRoutes/tcp_route_name>.
project Changes to this property will trigger replacement. String

Outputs

All input properties are implicitly available as output properties. Additionally, the TcpRoute resource produces the following output properties:

CreateTime string
The timestamp when the resource was created.
Id string
The provider-assigned unique ID for this managed resource.
SelfLink string
Server-defined URL of this resource
UpdateTime string
The timestamp when the resource was updated.
CreateTime string
The timestamp when the resource was created.
Id string
The provider-assigned unique ID for this managed resource.
SelfLink string
Server-defined URL of this resource
UpdateTime string
The timestamp when the resource was updated.
createTime String
The timestamp when the resource was created.
id String
The provider-assigned unique ID for this managed resource.
selfLink String
Server-defined URL of this resource
updateTime String
The timestamp when the resource was updated.
createTime string
The timestamp when the resource was created.
id string
The provider-assigned unique ID for this managed resource.
selfLink string
Server-defined URL of this resource
updateTime string
The timestamp when the resource was updated.
create_time str
The timestamp when the resource was created.
id str
The provider-assigned unique ID for this managed resource.
self_link str
Server-defined URL of this resource
update_time str
The timestamp when the resource was updated.
createTime String
The timestamp when the resource was created.
id String
The provider-assigned unique ID for this managed resource.
selfLink String
Server-defined URL of this resource
updateTime String
The timestamp when the resource was updated.

Supporting Types

TcpRouteRouteAction
, TcpRouteRouteActionArgs

Destinations List<Pulumi.GoogleNative.NetworkServices.V1Beta1.Inputs.TcpRouteRouteDestination>
Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Only one of route destination or original destination can be set.
OriginalDestination bool
Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.
Destinations []TcpRouteRouteDestination
Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Only one of route destination or original destination can be set.
OriginalDestination bool
Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.
destinations List<TcpRouteRouteDestination>
Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Only one of route destination or original destination can be set.
originalDestination Boolean
Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.
destinations TcpRouteRouteDestination[]
Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Only one of route destination or original destination can be set.
originalDestination boolean
Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.
destinations Sequence[TcpRouteRouteDestination]
Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Only one of route destination or original destination can be set.
original_destination bool
Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.
destinations List<Property Map>
Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Only one of route destination or original destination can be set.
originalDestination Boolean
Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.

TcpRouteRouteActionResponse
, TcpRouteRouteActionResponseArgs

Destinations This property is required. List<Pulumi.GoogleNative.NetworkServices.V1Beta1.Inputs.TcpRouteRouteDestinationResponse>
Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Only one of route destination or original destination can be set.
OriginalDestination This property is required. bool
Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.
Destinations This property is required. []TcpRouteRouteDestinationResponse
Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Only one of route destination or original destination can be set.
OriginalDestination This property is required. bool
Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.
destinations This property is required. List<TcpRouteRouteDestinationResponse>
Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Only one of route destination or original destination can be set.
originalDestination This property is required. Boolean
Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.
destinations This property is required. TcpRouteRouteDestinationResponse[]
Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Only one of route destination or original destination can be set.
originalDestination This property is required. boolean
Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.
destinations This property is required. Sequence[TcpRouteRouteDestinationResponse]
Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Only one of route destination or original destination can be set.
original_destination This property is required. bool
Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.
destinations This property is required. List<Property Map>
Optional. The destination services to which traffic should be forwarded. At least one destination service is required. Only one of route destination or original destination can be set.
originalDestination This property is required. Boolean
Optional. If true, Router will use the destination IP and port of the original connection as the destination of the request. Default is false. Only one of route destinations or original destination can be set.

TcpRouteRouteDestination
, TcpRouteRouteDestinationArgs

ServiceName This property is required. string
The URL of a BackendService to route traffic to.
Weight int
Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: - weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports. If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend. If weights are specified for any one service name, they need to be specified for all of them. If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
ServiceName This property is required. string
The URL of a BackendService to route traffic to.
Weight int
Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: - weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports. If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend. If weights are specified for any one service name, they need to be specified for all of them. If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
serviceName This property is required. String
The URL of a BackendService to route traffic to.
weight Integer
Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: - weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports. If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend. If weights are specified for any one service name, they need to be specified for all of them. If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
serviceName This property is required. string
The URL of a BackendService to route traffic to.
weight number
Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: - weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports. If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend. If weights are specified for any one service name, they need to be specified for all of them. If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
service_name This property is required. str
The URL of a BackendService to route traffic to.
weight int
Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: - weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports. If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend. If weights are specified for any one service name, they need to be specified for all of them. If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
serviceName This property is required. String
The URL of a BackendService to route traffic to.
weight Number
Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: - weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports. If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend. If weights are specified for any one service name, they need to be specified for all of them. If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.

TcpRouteRouteDestinationResponse
, TcpRouteRouteDestinationResponseArgs

ServiceName This property is required. string
The URL of a BackendService to route traffic to.
Weight This property is required. int
Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: - weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports. If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend. If weights are specified for any one service name, they need to be specified for all of them. If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
ServiceName This property is required. string
The URL of a BackendService to route traffic to.
Weight This property is required. int
Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: - weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports. If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend. If weights are specified for any one service name, they need to be specified for all of them. If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
serviceName This property is required. String
The URL of a BackendService to route traffic to.
weight This property is required. Integer
Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: - weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports. If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend. If weights are specified for any one service name, they need to be specified for all of them. If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
serviceName This property is required. string
The URL of a BackendService to route traffic to.
weight This property is required. number
Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: - weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports. If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend. If weights are specified for any one service name, they need to be specified for all of them. If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
service_name This property is required. str
The URL of a BackendService to route traffic to.
weight This property is required. int
Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: - weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports. If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend. If weights are specified for any one service name, they need to be specified for all of them. If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.
serviceName This property is required. String
The URL of a BackendService to route traffic to.
weight This property is required. Number
Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as: - weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports. If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend. If weights are specified for any one service name, they need to be specified for all of them. If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.

TcpRouteRouteMatch
, TcpRouteRouteMatchArgs

Address This property is required. string
Must be specified in the CIDR range format. A CIDR range consists of an IP Address and a prefix length to construct the subnet mask. By default, the prefix length is 32 (i.e. matches a single IP address). Only IPV4 addresses are supported. Examples: "10.0.0.1" - matches against this exact IP address. "10.0.0.0/8" - matches against any IP address within the 10.0.0.0 subnet and 255.255.255.0 mask. "0.0.0.0/0" - matches against any IP address'.
Port This property is required. string
Specifies the destination port to match against.
Address This property is required. string
Must be specified in the CIDR range format. A CIDR range consists of an IP Address and a prefix length to construct the subnet mask. By default, the prefix length is 32 (i.e. matches a single IP address). Only IPV4 addresses are supported. Examples: "10.0.0.1" - matches against this exact IP address. "10.0.0.0/8" - matches against any IP address within the 10.0.0.0 subnet and 255.255.255.0 mask. "0.0.0.0/0" - matches against any IP address'.
Port This property is required. string
Specifies the destination port to match against.
address This property is required. String
Must be specified in the CIDR range format. A CIDR range consists of an IP Address and a prefix length to construct the subnet mask. By default, the prefix length is 32 (i.e. matches a single IP address). Only IPV4 addresses are supported. Examples: "10.0.0.1" - matches against this exact IP address. "10.0.0.0/8" - matches against any IP address within the 10.0.0.0 subnet and 255.255.255.0 mask. "0.0.0.0/0" - matches against any IP address'.
port This property is required. String
Specifies the destination port to match against.
address This property is required. string
Must be specified in the CIDR range format. A CIDR range consists of an IP Address and a prefix length to construct the subnet mask. By default, the prefix length is 32 (i.e. matches a single IP address). Only IPV4 addresses are supported. Examples: "10.0.0.1" - matches against this exact IP address. "10.0.0.0/8" - matches against any IP address within the 10.0.0.0 subnet and 255.255.255.0 mask. "0.0.0.0/0" - matches against any IP address'.
port This property is required. string
Specifies the destination port to match against.
address This property is required. str
Must be specified in the CIDR range format. A CIDR range consists of an IP Address and a prefix length to construct the subnet mask. By default, the prefix length is 32 (i.e. matches a single IP address). Only IPV4 addresses are supported. Examples: "10.0.0.1" - matches against this exact IP address. "10.0.0.0/8" - matches against any IP address within the 10.0.0.0 subnet and 255.255.255.0 mask. "0.0.0.0/0" - matches against any IP address'.
port This property is required. str
Specifies the destination port to match against.
address This property is required. String
Must be specified in the CIDR range format. A CIDR range consists of an IP Address and a prefix length to construct the subnet mask. By default, the prefix length is 32 (i.e. matches a single IP address). Only IPV4 addresses are supported. Examples: "10.0.0.1" - matches against this exact IP address. "10.0.0.0/8" - matches against any IP address within the 10.0.0.0 subnet and 255.255.255.0 mask. "0.0.0.0/0" - matches against any IP address'.
port This property is required. String
Specifies the destination port to match against.

TcpRouteRouteMatchResponse
, TcpRouteRouteMatchResponseArgs

Address This property is required. string
Must be specified in the CIDR range format. A CIDR range consists of an IP Address and a prefix length to construct the subnet mask. By default, the prefix length is 32 (i.e. matches a single IP address). Only IPV4 addresses are supported. Examples: "10.0.0.1" - matches against this exact IP address. "10.0.0.0/8" - matches against any IP address within the 10.0.0.0 subnet and 255.255.255.0 mask. "0.0.0.0/0" - matches against any IP address'.
Port This property is required. string
Specifies the destination port to match against.
Address This property is required. string
Must be specified in the CIDR range format. A CIDR range consists of an IP Address and a prefix length to construct the subnet mask. By default, the prefix length is 32 (i.e. matches a single IP address). Only IPV4 addresses are supported. Examples: "10.0.0.1" - matches against this exact IP address. "10.0.0.0/8" - matches against any IP address within the 10.0.0.0 subnet and 255.255.255.0 mask. "0.0.0.0/0" - matches against any IP address'.
Port This property is required. string
Specifies the destination port to match against.
address This property is required. String
Must be specified in the CIDR range format. A CIDR range consists of an IP Address and a prefix length to construct the subnet mask. By default, the prefix length is 32 (i.e. matches a single IP address). Only IPV4 addresses are supported. Examples: "10.0.0.1" - matches against this exact IP address. "10.0.0.0/8" - matches against any IP address within the 10.0.0.0 subnet and 255.255.255.0 mask. "0.0.0.0/0" - matches against any IP address'.
port This property is required. String
Specifies the destination port to match against.
address This property is required. string
Must be specified in the CIDR range format. A CIDR range consists of an IP Address and a prefix length to construct the subnet mask. By default, the prefix length is 32 (i.e. matches a single IP address). Only IPV4 addresses are supported. Examples: "10.0.0.1" - matches against this exact IP address. "10.0.0.0/8" - matches against any IP address within the 10.0.0.0 subnet and 255.255.255.0 mask. "0.0.0.0/0" - matches against any IP address'.
port This property is required. string
Specifies the destination port to match against.
address This property is required. str
Must be specified in the CIDR range format. A CIDR range consists of an IP Address and a prefix length to construct the subnet mask. By default, the prefix length is 32 (i.e. matches a single IP address). Only IPV4 addresses are supported. Examples: "10.0.0.1" - matches against this exact IP address. "10.0.0.0/8" - matches against any IP address within the 10.0.0.0 subnet and 255.255.255.0 mask. "0.0.0.0/0" - matches against any IP address'.
port This property is required. str
Specifies the destination port to match against.
address This property is required. String
Must be specified in the CIDR range format. A CIDR range consists of an IP Address and a prefix length to construct the subnet mask. By default, the prefix length is 32 (i.e. matches a single IP address). Only IPV4 addresses are supported. Examples: "10.0.0.1" - matches against this exact IP address. "10.0.0.0/8" - matches against any IP address within the 10.0.0.0 subnet and 255.255.255.0 mask. "0.0.0.0/0" - matches against any IP address'.
port This property is required. String
Specifies the destination port to match against.

TcpRouteRouteRule
, TcpRouteRouteRuleArgs

Action This property is required. Pulumi.GoogleNative.NetworkServices.V1Beta1.Inputs.TcpRouteRouteAction
The detailed rule defining how to route matched traffic.
Matches List<Pulumi.GoogleNative.NetworkServices.V1Beta1.Inputs.TcpRouteRouteMatch>
Optional. RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "OR"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.
Action This property is required. TcpRouteRouteAction
The detailed rule defining how to route matched traffic.
Matches []TcpRouteRouteMatch
Optional. RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "OR"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.
action This property is required. TcpRouteRouteAction
The detailed rule defining how to route matched traffic.
matches List<TcpRouteRouteMatch>
Optional. RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "OR"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.
action This property is required. TcpRouteRouteAction
The detailed rule defining how to route matched traffic.
matches TcpRouteRouteMatch[]
Optional. RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "OR"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.
action This property is required. TcpRouteRouteAction
The detailed rule defining how to route matched traffic.
matches Sequence[TcpRouteRouteMatch]
Optional. RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "OR"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.
action This property is required. Property Map
The detailed rule defining how to route matched traffic.
matches List<Property Map>
Optional. RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "OR"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.

TcpRouteRouteRuleResponse
, TcpRouteRouteRuleResponseArgs

Action This property is required. Pulumi.GoogleNative.NetworkServices.V1Beta1.Inputs.TcpRouteRouteActionResponse
The detailed rule defining how to route matched traffic.
Matches This property is required. List<Pulumi.GoogleNative.NetworkServices.V1Beta1.Inputs.TcpRouteRouteMatchResponse>
Optional. RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "OR"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.
Action This property is required. TcpRouteRouteActionResponse
The detailed rule defining how to route matched traffic.
Matches This property is required. []TcpRouteRouteMatchResponse
Optional. RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "OR"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.
action This property is required. TcpRouteRouteActionResponse
The detailed rule defining how to route matched traffic.
matches This property is required. List<TcpRouteRouteMatchResponse>
Optional. RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "OR"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.
action This property is required. TcpRouteRouteActionResponse
The detailed rule defining how to route matched traffic.
matches This property is required. TcpRouteRouteMatchResponse[]
Optional. RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "OR"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.
action This property is required. TcpRouteRouteActionResponse
The detailed rule defining how to route matched traffic.
matches This property is required. Sequence[TcpRouteRouteMatchResponse]
Optional. RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "OR"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.
action This property is required. Property Map
The detailed rule defining how to route matched traffic.
matches This property is required. List<Property Map>
Optional. RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "OR"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.

Package Details

Repository
Google Cloud Native pulumi/pulumi-google-native
License
Apache-2.0

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi