Class: Google::Apis::ComputeAlpha::UrlRewrite

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb

Overview

The spec for modifying the path before sending the request to the matched backend service.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UrlRewrite

Returns a new instance of UrlRewrite.



46677
46678
46679
# File 'lib/google/apis/compute_alpha/classes.rb', line 46677

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#host_rewriteString

Before forwarding the request to the selected service, the request's host header is replaced with contents of hostRewrite. The value must be from 1 to 255 characters. Corresponds to the JSON property hostRewrite

Returns:

  • (String)


46668
46669
46670
# File 'lib/google/apis/compute_alpha/classes.rb', line 46668

def host_rewrite
  @host_rewrite
end

#path_prefix_rewriteString

Before forwarding the request to the selected backend service, the matching portion of the request's path is replaced by pathPrefixRewrite. The value must be from 1 to 1024 characters. Corresponds to the JSON property pathPrefixRewrite

Returns:

  • (String)


46675
46676
46677
# File 'lib/google/apis/compute_alpha/classes.rb', line 46675

def path_prefix_rewrite
  @path_prefix_rewrite
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



46682
46683
46684
46685
# File 'lib/google/apis/compute_alpha/classes.rb', line 46682

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