RoutePolicy

JSON representation
{
  "name": string,
  "type": enum (RoutePolicyType),
  "terms": [
    {
      object (PolicyTerm)
    }
  ],
  "fingerprint": string,
  "description": string
}
Fields
name

string

Route Policy name, which must be a resource ID segment and unique within all the router's Route Policies. Name should conform to RFC1035.

type

enum (RoutePolicyType)

terms[]

object (PolicyTerm)

List of terms (the order in the list is not important, they are evaluated in order of priority). Order of policies is not retained and might change when getting policy later.

fingerprint

string (bytes format)

A fingerprint for the Route Policy being applied to this Router, which is essentially a hash of the Route Policy used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update Route Policy. You must always provide an up-to-date fingerprint hash in order to update or change labels.

To see the latest fingerprint, make a

getRoutePolicy()

request to retrieve a Route Policy.

A base64-encoded string.

description

string

An optional description of route policy.

RoutePolicyType

Enums
ROUTE_POLICY_TYPE_IMPORT The Route Policy is an Import Policy.
ROUTE_POLICY_TYPE_EXPORT The Route Policy is an Export Policy.

PolicyTerm

JSON representation
{
  "priority": integer,
  "match": {
    object (Expr)
  },
  "actions": [
    {
      object (Expr)
    }
  ]
}
Fields
priority

integer

The evaluation priority for this term, which must be between 0 (inclusive) and 2^31 (exclusive), and unique within the list.

match

object (Expr)

CEL expression evaluated against a route to determine if this term applies. When not set, the term applies to all routes.

actions[]

object (Expr)

CEL expressions to evaluate to modify a route when this term matches.