Class: Google::Apis::ComputeBeta::RequestMirrorPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::RequestMirrorPolicy
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
A policy that specifies how requests intended for the route's backends are shadowed to a separate mirrored backend service. The load balancer doesn't wait for responses from the shadow service. Before sending traffic to the shadow service, the host or authority header is suffixed with -shadow.
Instance Attribute Summary collapse
-
#backend_service ⇒ String
The full or partial URL to the BackendService resource being mirrored to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RequestMirrorPolicy
constructor
A new instance of RequestMirrorPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RequestMirrorPolicy
Returns a new instance of RequestMirrorPolicy.
28894 28895 28896 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28894 def initialize(**args) update!(**args) end |
Instance Attribute Details
#backend_service ⇒ String
The full or partial URL to the BackendService resource being mirrored to.
Corresponds to the JSON property backendService
28892 28893 28894 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28892 def backend_service @backend_service end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28899 28900 28901 |
# File 'lib/google/apis/compute_beta/classes.rb', line 28899 def update!(**args) @backend_service = args[:backend_service] if args.key?(:backend_service) end |