Class: Google::Apis::ComputeV1::NodeTemplatesScopedList
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeV1::NodeTemplatesScopedList
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb 
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
- 
  
    
      #node_templates  ⇒ Array<Google::Apis::ComputeV1::NodeTemplate> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] A list of node templates contained in this scope.
 - 
  
    
      #warning  ⇒ Google::Apis::ComputeV1::NodeTemplatesScopedList::Warning 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] An informational warning that appears when the node templates list is empty.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ NodeTemplatesScopedList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of NodeTemplatesScopedList.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ NodeTemplatesScopedList
Returns a new instance of NodeTemplatesScopedList.
      27791 27792 27793  | 
    
      # File 'lib/google/apis/compute_v1/classes.rb', line 27791 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#node_templates ⇒ Array<Google::Apis::ComputeV1::NodeTemplate>
[Output Only] A list of node templates contained in this scope.
Corresponds to the JSON property nodeTemplates
      27783 27784 27785  | 
    
      # File 'lib/google/apis/compute_v1/classes.rb', line 27783 def node_templates @node_templates end  | 
  
#warning ⇒ Google::Apis::ComputeV1::NodeTemplatesScopedList::Warning
[Output Only] An informational warning that appears when the node templates
list is empty.
Corresponds to the JSON property warning
      27789 27790 27791  | 
    
      # File 'lib/google/apis/compute_v1/classes.rb', line 27789 def warning @warning end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      27796 27797 27798 27799  | 
    
      # File 'lib/google/apis/compute_v1/classes.rb', line 27796 def update!(**args) @node_templates = args[:node_templates] if args.key?(:node_templates) @warning = args[:warning] if args.key?(:warning) end  |