Class: Google::Apis::ComputeAlpha::RouterAdvertisedIpRange
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::RouterAdvertisedIpRange
 
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
 generated/google/apis/compute_alpha/representations.rb,
 generated/google/apis/compute_alpha/representations.rb
Overview
Description-tagged IP ranges for the router to advertise.
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    User-specified description for the IP range. 
- 
  
    
      #range  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The IP range to advertise. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RouterAdvertisedIpRange 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RouterAdvertisedIpRange. 
- 
  
    
      #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) ⇒ RouterAdvertisedIpRange
Returns a new instance of RouterAdvertisedIpRange
| 20800 20801 20802 | # File 'generated/google/apis/compute_alpha/classes.rb', line 20800 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#description ⇒ String
User-specified description for the IP range.
Corresponds to the JSON property description
| 20793 20794 20795 | # File 'generated/google/apis/compute_alpha/classes.rb', line 20793 def description @description end | 
#range ⇒ String
The IP range to advertise. The value must be a CIDR-formatted string.
Corresponds to the JSON property range
| 20798 20799 20800 | # File 'generated/google/apis/compute_alpha/classes.rb', line 20798 def range @range end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 20805 20806 20807 20808 | # File 'generated/google/apis/compute_alpha/classes.rb', line 20805 def update!(**args) @description = args[:description] if args.key?(:description) @range = args[:range] if args.key?(:range) end |