Class: Google::Apis::ComputeV1::TestFailure
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::TestFailure
 
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
 generated/google/apis/compute_v1/representations.rb,
 generated/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #actual_service  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property actualService.
- 
  
    
      #expected_service  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property expectedService.
- 
  
    
      #host  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property host.
- 
  
    
      #path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property path.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TestFailure 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TestFailure. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ TestFailure
Returns a new instance of TestFailure
| 18367 18368 18369 | # File 'generated/google/apis/compute_v1/classes.rb', line 18367 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#actual_service ⇒ String
Corresponds to the JSON property actualService
| 18350 18351 18352 | # File 'generated/google/apis/compute_v1/classes.rb', line 18350 def actual_service @actual_service end | 
#expected_service ⇒ String
Corresponds to the JSON property expectedService
| 18355 18356 18357 | # File 'generated/google/apis/compute_v1/classes.rb', line 18355 def expected_service @expected_service end | 
#host ⇒ String
Corresponds to the JSON property host
| 18360 18361 18362 | # File 'generated/google/apis/compute_v1/classes.rb', line 18360 def host @host end | 
#path ⇒ String
Corresponds to the JSON property path
| 18365 18366 18367 | # File 'generated/google/apis/compute_v1/classes.rb', line 18365 def path @path end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 18372 18373 18374 18375 18376 18377 | # File 'generated/google/apis/compute_v1/classes.rb', line 18372 def update!(**args) @actual_service = args[:actual_service] if args.key?(:actual_service) @expected_service = args[:expected_service] if args.key?(:expected_service) @host = args[:host] if args.key?(:host) @path = args[:path] if args.key?(:path) end |