Class: Google::Apis::ComputeV1::UrlRewrite
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::UrlRewrite
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Overview
The spec for modifying the path before sending the request to the matched backend service.
Instance Attribute Summary collapse
-
#host_rewrite ⇒ String
Prior to forwarding the request to the selected service, the request's host header is replaced with contents of hostRewrite.
-
#path_prefix_rewrite ⇒ String
Prior to forwarding the request to the selected backend service, the matching portion of the request's path is replaced by pathPrefixRewrite.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UrlRewrite
constructor
A new instance of UrlRewrite.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UrlRewrite
Returns a new instance of UrlRewrite.
35945 35946 35947 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35945 def initialize(**args) update!(**args) end |
Instance Attribute Details
#host_rewrite ⇒ String
Prior to forwarding the request to the selected service, the request's host
header is replaced with contents of hostRewrite.
The value must be between 1 and 255 characters.
Corresponds to the JSON property hostRewrite
35936 35937 35938 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35936 def host_rewrite @host_rewrite end |
#path_prefix_rewrite ⇒ String
Prior to forwarding the request to the selected backend service, the matching
portion of the request's path is replaced by pathPrefixRewrite.
The value must be between 1 and 1024 characters.
Corresponds to the JSON property pathPrefixRewrite
35943 35944 35945 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35943 def path_prefix_rewrite @path_prefix_rewrite end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
35950 35951 35952 35953 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35950 def update!(**args) @host_rewrite = args[:host_rewrite] if args.key?(:host_rewrite) @path_prefix_rewrite = args[:path_prefix_rewrite] if args.key?(:path_prefix_rewrite) end |