Class: Google::Apis::ServicecontrolV1::CheckInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CheckInfo

Returns a new instance of CheckInfo.



587
588
589
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 587

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#api_key_uidString

The unique id of the api key in the format of "apikey:". This field will be populated when the consumer passed to Chemist is an API key and all the API key related validations are successful. Corresponds to the JSON property apiKeyUid

Returns:

  • (String)


573
574
575
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 573

def api_key_uid
  @api_key_uid
end

#consumer_infoGoogle::Apis::ServicecontrolV1::ConsumerInfo

ConsumerInfo provides information about the consumer. Corresponds to the JSON property consumerInfo



578
579
580
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 578

def consumer_info
  @consumer_info
end

#unused_argumentsArray<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

Returns:

  • (Array<String>)


585
586
587
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 585

def unused_arguments
  @unused_arguments
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



592
593
594
595
596
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 592

def update!(**args)
  @api_key_uid = args[:api_key_uid] if args.key?(:api_key_uid)
  @consumer_info = args[:consumer_info] if args.key?(:consumer_info)
  @unused_arguments = args[:unused_arguments] if args.key?(:unused_arguments)
end