Class: Google::Apis::ComputeV1::AddressesScopedList
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeV1::AddressesScopedList
 
 
- Defined in:
 - generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb 
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
- 
  
    
      #addresses  ⇒ Array<Google::Apis::ComputeV1::Address> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] A list of addresses contained in this scope.
 - 
  
    
      #warning  ⇒ Google::Apis::ComputeV1::AddressesScopedList::Warning 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Informational warning which replaces the list of addresses when the list is empty.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AddressesScopedList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of AddressesScopedList.
 - 
  
    
      #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) ⇒ AddressesScopedList
Returns a new instance of AddressesScopedList
      893 894 895  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 893 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#addresses ⇒ Array<Google::Apis::ComputeV1::Address>
[Output Only] A list of addresses contained in this scope.
Corresponds to the JSON property addresses
      885 886 887  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 885 def addresses @addresses end  | 
  
#warning ⇒ Google::Apis::ComputeV1::AddressesScopedList::Warning
[Output Only] Informational warning which replaces the list of addresses when
the list is empty.
Corresponds to the JSON property warning
      891 892 893  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 891 def warning @warning end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      898 899 900 901  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 898 def update!(**args) @addresses = args[:addresses] if args.key?(:addresses) @warning = args[:warning] if args.key?(:warning) end  |