Class: Google::Apis::ComputeV1::UrlMapValidationResult
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::UrlMapValidationResult
 
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
 generated/google/apis/compute_v1/representations.rb,
 generated/google/apis/compute_v1/representations.rb
Overview
Message representing the validation result for a UrlMap.
Instance Attribute Summary collapse
- 
  
    
      #load_errors  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property loadErrors.
- 
  
    
      #load_succeeded  ⇒ Boolean 
    
    
      (also: #load_succeeded?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether the given UrlMap can be successfully loaded. 
- 
  
    
      #test_failures  ⇒ Array<Google::Apis::ComputeV1::TestFailure> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property testFailures.
- 
  
    
      #test_passed  ⇒ Boolean 
    
    
      (also: #test_passed?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    If successfully loaded, this field indicates whether the test passed. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UrlMapValidationResult 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of UrlMapValidationResult. 
- 
  
    
      #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) ⇒ UrlMapValidationResult
Returns a new instance of UrlMapValidationResult
| 18714 18715 18716 | # File 'generated/google/apis/compute_v1/classes.rb', line 18714 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#load_errors ⇒ Array<String>
Corresponds to the JSON property loadErrors
| 18693 18694 18695 | # File 'generated/google/apis/compute_v1/classes.rb', line 18693 def load_errors @load_errors end | 
#load_succeeded ⇒ Boolean Also known as: load_succeeded?
Whether the given UrlMap can be successfully loaded. If false, 'loadErrors'
indicates the reasons.
Corresponds to the JSON property loadSucceeded
| 18699 18700 18701 | # File 'generated/google/apis/compute_v1/classes.rb', line 18699 def load_succeeded @load_succeeded end | 
#test_failures ⇒ Array<Google::Apis::ComputeV1::TestFailure>
Corresponds to the JSON property testFailures
| 18705 18706 18707 | # File 'generated/google/apis/compute_v1/classes.rb', line 18705 def test_failures @test_failures end | 
#test_passed ⇒ Boolean Also known as: test_passed?
If successfully loaded, this field indicates whether the test passed. If false,
'testFailures's indicate the reason of failure.
Corresponds to the JSON property testPassed
| 18711 18712 18713 | # File 'generated/google/apis/compute_v1/classes.rb', line 18711 def test_passed @test_passed end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 18719 18720 18721 18722 18723 18724 | # File 'generated/google/apis/compute_v1/classes.rb', line 18719 def update!(**args) @load_errors = args[:load_errors] if args.key?(:load_errors) @load_succeeded = args[:load_succeeded] if args.key?(:load_succeeded) @test_failures = args[:test_failures] if args.key?(:test_failures) @test_passed = args[:test_passed] if args.key?(:test_passed) end |