class Google::Apis::ComputeV1::HealthCheckLogConfig
Configuration of logging on a health check. If logging is enabled, logs will be exported to Stackdriver.
Attributes
enable[RW]
Indicates whether or not to export logs. This is false by default, which means no health check logging will be done. Corresponds to the JSON property `enable` @return [Boolean]
enable?[RW]
Indicates whether or not to export logs. This is false by default, which means no health check logging will be done. Corresponds to the JSON property `enable` @return [Boolean]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 10090 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/compute_v1/classes.rb, line 10095 def update!(**args) @enable = args[:enable] if args.key?(:enable) end