Class: Google::Apis::ServicecontrolV1::ReportInfo
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ServicecontrolV1::ReportInfo
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicecontrol_v1/classes.rb,
 generated/google/apis/servicecontrol_v1/representations.rb,
 generated/google/apis/servicecontrol_v1/representations.rb
Overview
Contains additional info about the report operation.
Instance Attribute Summary collapse
- 
  
    
      #operation_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Operation.operation_id value from the request. 
- 
  
    
      #quota_info  ⇒ Google::Apis::ServicecontrolV1::QuotaInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Contains the quota information for a quota check response. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ReportInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ReportInfo. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReportInfo
Returns a new instance of ReportInfo
| 1472 1473 1474 | # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1472 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#operation_id ⇒ String
The Operation.operation_id value from the request.
Corresponds to the JSON property operationId
| 1465 1466 1467 | # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1465 def operation_id @operation_id end | 
#quota_info ⇒ Google::Apis::ServicecontrolV1::QuotaInfo
Contains the quota information for a quota check response.
Corresponds to the JSON property quotaInfo
| 1470 1471 1472 | # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1470 def quota_info @quota_info end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1477 1478 1479 1480 | # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1477 def update!(**args) @operation_id = args[:operation_id] if args.key?(:operation_id) @quota_info = args[:quota_info] if args.key?(:quota_info) end |