Class: Google::Apis::ComputeV1::RequestMirrorPolicy

Inherits:
Object
  • Object
show all
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

A policy that specifies how requests intended for the route's backends are shadowed to a separate mirrored backend service. Loadbalancer does not wait for responses from the shadow service. Prior to sending traffic to the shadow service, the host / authority header is suffixed with -shadow.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RequestMirrorPolicy

Returns a new instance of RequestMirrorPolicy.



26057
26058
26059
# File 'lib/google/apis/compute_v1/classes.rb', line 26057

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

Instance Attribute Details

#backend_serviceString

The full or partial URL to the BackendService resource being mirrored to. Corresponds to the JSON property backendService

Returns:

  • (String)


26055
26056
26057
# File 'lib/google/apis/compute_v1/classes.rb', line 26055

def backend_service
  @backend_service
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



26062
26063
26064
# File 'lib/google/apis/compute_v1/classes.rb', line 26062

def update!(**args)
  @backend_service = args[:backend_service] if args.key?(:backend_service)
end