Class: Google::Apis::ComputeBeta::HttpFaultAbort
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::HttpFaultAbort
- 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
Specification for how requests are aborted as part of fault injection.
Instance Attribute Summary collapse
-
#http_status ⇒ Fixnum
The HTTP status code used to abort the request.
-
#percentage ⇒ Float
The percentage of traffic (connections/operations/requests) which will be aborted as part of fault injection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HttpFaultAbort
constructor
A new instance of HttpFaultAbort.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HttpFaultAbort
Returns a new instance of HttpFaultAbort.
10801 10802 10803 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10801 def initialize(**args) update!(**args) end |
Instance Attribute Details
#http_status ⇒ Fixnum
The HTTP status code used to abort the request.
The value must be between 200 and 599 inclusive.
For gRPC protocol, the gRPC status code is mapped to HTTP status code
according to this mapping table. HTTP status 200 is mapped to gRPC status
UNKNOWN. Injecting an OK status is currently not supported by Traffic Director.
Corresponds to the JSON property httpStatus
10792 10793 10794 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10792 def http_status @http_status end |
#percentage ⇒ Float
The percentage of traffic (connections/operations/requests) which will be
aborted as part of fault injection.
The value must be between 0.0 and 100.0 inclusive.
Corresponds to the JSON property percentage
10799 10800 10801 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10799 def percentage @percentage end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10806 10807 10808 10809 |
# File 'lib/google/apis/compute_beta/classes.rb', line 10806 def update!(**args) @http_status = args[:http_status] if args.key?(:http_status) @percentage = args[:percentage] if args.key?(:percentage) end |