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.
34545 34546 34547 |
# File 'lib/google/apis/compute_v1/classes.rb', line 34545 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
34536 34537 34538 |
# File 'lib/google/apis/compute_v1/classes.rb', line 34536 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
34543 34544 34545 |
# File 'lib/google/apis/compute_v1/classes.rb', line 34543 def path_prefix_rewrite @path_prefix_rewrite end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
34550 34551 34552 34553 |
# File 'lib/google/apis/compute_v1/classes.rb', line 34550 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 |