class Google::Apis::ComputeBeta::PathMatcher
A matcher for the path portion of the URL. The BackendService
from the longest- matched rule will serve the URL. If no rule was matched, the default service will be used.
Attributes
defaultRouteAction takes effect when none of the pathRules or routeRules match. The load balancer performs advanced routing actions like URL rewrites, header transformations, etc. prior to forwarding the request to the selected backend. If defaultRouteAction specifies any weightedBackendServices, defaultService must not be set. Conversely if defaultService is set, defaultRouteAction cannot contain any weightedBackendServices. Only one of defaultRouteAction or defaultUrlRedirect must be set. UrlMaps for external HTTP(S) load balancers support only the urlRewrite action within a pathMatcher's defaultRouteAction. Corresponds to the JSON property `defaultRouteAction` @return [Google::Apis::ComputeBeta::HttpRouteAction]
The full or partial URL to the BackendService
resource. This will be used if none of the pathRules or routeRules defined by this PathMatcher
are matched. For example, the following are all valid URLs to a BackendService
resource: - www.googleapis.com/compute/v1/projects/project /global/backendServices/ backendService - compute/v1/projects/project/global/backendServices/ backendService - global/backendServices/backendService If defaultRouteAction is additionally specified, advanced routing actions like URL Rewrites, etc. take effect prior to sending the request to the backend. However, if defaultService is specified, defaultRouteAction cannot contain any weightedBackendServices. Conversely, if defaultRouteAction specifies any weightedBackendServices, defaultService must not be specified. Only one of defaultService, defaultUrlRedirect or defaultRouteAction. weightedBackendService must be set. Authorization requires one or more of the following Google
IAM permissions on the specified resource default_service
: - compute.backendBuckets.use - compute.backendServices.use Corresponds to the JSON property `defaultService` @return [String]
Specifies settings for an HTTP redirect. Corresponds to the JSON property `defaultUrlRedirect` @return [Google::Apis::ComputeBeta::HttpRedirectAction]
An optional description of this resource. Provide this property when you create the resource. Corresponds to the JSON property `description` @return [String]
The request and response header transformations that take effect before the request is passed along to the selected backendService. Corresponds to the JSON property `headerAction` @return [Google::Apis::ComputeBeta::HttpHeaderAction]
The name to which this PathMatcher
is referred by the HostRule
. Corresponds to the JSON property `name` @return [String]
The list of path rules. Use this list instead of routeRules when routing based on simple path matching is all that's required. The order by which path rules are specified does not matter. Matches are always done on the longest-path- first basis. For example: a pathRule with a path /a/b/c/* will match before /a/ b/* irrespective of the order in which those paths appear in this list. Within a given pathMatcher, only one of pathRules or routeRules must be set. Corresponds to the JSON property `pathRules` @return [Array<Google::Apis::ComputeBeta::PathRule>]
The list of HTTP route rules. Use this list instead of pathRules when advanced route matching and routing actions are desired. routeRules are evaluated in order of priority, from the lowest to highest number. Within a given pathMatcher, you can set only one of pathRules or routeRules. Corresponds to the JSON property `routeRules` @return [Array<Google::Apis::ComputeBeta::HttpRouteRule>]
Public Class Methods
# File lib/google/apis/compute_beta/classes.rb, line 24504 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/compute_beta/classes.rb, line 24509 def update!(**args) @default_route_action = args[:default_route_action] if args.key?(:default_route_action) @default_service = args[:default_service] if args.key?(:default_service) @default_url_redirect = args[:default_url_redirect] if args.key?(:default_url_redirect) @description = args[:description] if args.key?(:description) @header_action = args[:header_action] if args.key?(:header_action) @name = args[:name] if args.key?(:name) @path_rules = args[:path_rules] if args.key?(:path_rules) @route_rules = args[:route_rules] if args.key?(:route_rules) end