Class: Google::Apis::ComputeAlpha::RequestMirrorPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::RequestMirrorPolicy
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/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
-
#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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ RequestMirrorPolicy
Returns a new instance of RequestMirrorPolicy
22398 22399 22400 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22398 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
22396 22397 22398 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22396 def backend_service @backend_service end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
22403 22404 22405 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22403 def update!(**args) @backend_service = args[:backend_service] if args.key?(:backend_service) end |