Class: Google::Apis::ServicecontrolV1::CheckError
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ServicecontrolV1::CheckError
 
- 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
Defines the errors to be returned in google.api.servicecontrol.v1.CheckResponse.check_errors.
Instance Attribute Summary collapse
- 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The error code. 
- 
  
    
      #detail  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Free-form text providing details on the error cause of the error. 
- 
  
    
      #subject  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Subject to whom this error applies. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CheckError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CheckError. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CheckError
Returns a new instance of CheckError
| 369 370 371 | # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 369 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#code ⇒ String
The error code.
Corresponds to the JSON property code
| 353 354 355 | # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 353 def code @code end | 
#detail ⇒ String
Free-form text providing details on the error cause of the error.
Corresponds to the JSON property detail
| 358 359 360 | # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 358 def detail @detail end | 
#subject ⇒ String
Subject to whom this error applies. See the specific code enum for more details on this field. For example:
- “project:” 
- “folder:” 
- “organization:” Corresponds to the JSON property subject
| 367 368 369 | # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 367 def subject @subject end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 374 375 376 377 378 | # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 374 def update!(**args) @code = args[:code] if args.key?(:code) @detail = args[:detail] if args.key?(:detail) @subject = args[:subject] if args.key?(:subject) end |