class Google::Apis::ServicecontrolV1::CheckInfo
Contains additional information about the check operation.
Attributes
consumer_info[RW]
`ConsumerInfo` provides information about the consumer. Corresponds to the JSON property `consumerInfo` @return [Google::Apis::ServicecontrolV1::ConsumerInfo]
unused_arguments[RW]
A list of fields and label keys that are ignored by the server. The client doesn't need to send them for following requests to improve performance and allow better aggregation. Corresponds to the JSON property `unusedArguments` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/servicecontrol_v1/classes.rb, line 549 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/servicecontrol_v1/classes.rb, line 554 def update!(**args) @consumer_info = args[:consumer_info] if args.key?(:consumer_info) @unused_arguments = args[:unused_arguments] if args.key?(:unused_arguments) end