Class: Google::Apis::ComputeV1::UrlMapTest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::UrlMapTest
 
- 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 for the expected URL mappings.
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Description of this test case. 
- 
  
    
      #host  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Host portion of the URL. 
- 
  
    
      #path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Path portion of the URL. 
- 
  
    
      #service  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Expected BackendService resource the given URL should be mapped to. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UrlMapTest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of UrlMapTest. 
- 
  
    
      #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) ⇒ UrlMapTest
Returns a new instance of UrlMapTest
| 18673 18674 18675 | # File 'generated/google/apis/compute_v1/classes.rb', line 18673 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#description ⇒ String
Description of this test case.
Corresponds to the JSON property description
| 18656 18657 18658 | # File 'generated/google/apis/compute_v1/classes.rb', line 18656 def description @description end | 
#host ⇒ String
Host portion of the URL.
Corresponds to the JSON property host
| 18661 18662 18663 | # File 'generated/google/apis/compute_v1/classes.rb', line 18661 def host @host end | 
#path ⇒ String
Path portion of the URL.
Corresponds to the JSON property path
| 18666 18667 18668 | # File 'generated/google/apis/compute_v1/classes.rb', line 18666 def path @path end | 
#service ⇒ String
Expected BackendService resource the given URL should be mapped to.
Corresponds to the JSON property service
| 18671 18672 18673 | # File 'generated/google/apis/compute_v1/classes.rb', line 18671 def service @service end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 18678 18679 18680 18681 18682 18683 | # File 'generated/google/apis/compute_v1/classes.rb', line 18678 def update!(**args) @description = args[:description] if args.key?(:description) @host = args[:host] if args.key?(:host) @path = args[:path] if args.key?(:path) @service = args[:service] if args.key?(:service) end |