Class: Google::Apis::ServicecontrolV1::CheckInfo
- Inherits:
-
Object
- Object
- Google::Apis::ServicecontrolV1::CheckInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/servicecontrol_v1/classes.rb,
lib/google/apis/servicecontrol_v1/representations.rb,
lib/google/apis/servicecontrol_v1/representations.rb
Overview
Contains additional information about the check operation.
Instance Attribute Summary collapse
-
#consumer_info ⇒ Google::Apis::ServicecontrolV1::ConsumerInfo
ConsumerInfoprovides information about the consumer. -
#unused_arguments ⇒ Array<String>
A list of fields and label keys that are ignored by the server.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CheckInfo
constructor
A new instance of CheckInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CheckInfo
Returns a new instance of CheckInfo.
555 556 557 |
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 555 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consumer_info ⇒ Google::Apis::ServicecontrolV1::ConsumerInfo
ConsumerInfo provides information about the consumer.
Corresponds to the JSON property consumerInfo
546 547 548 |
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 546 def consumer_info @consumer_info end |
#unused_arguments ⇒ Array<String>
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
553 554 555 |
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 553 def unused_arguments @unused_arguments end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
560 561 562 563 |
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 560 def update!(**args) @consumer_info = args[:consumer_info] if args.key?(:consumer_info) @unused_arguments = args[:unused_arguments] if args.key?(:unused_arguments) end |