Class: Google::Apis::ComputeBeta::InstanceWithNamedPorts
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::InstanceWithNamedPorts
 
 
- Defined in:
 - generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #instance  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] The URL of the instance.
 - 
  
    
      #named_ports  ⇒ Array<Google::Apis::ComputeBeta::NamedPort> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] The named ports that belong to this instance group.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] The status of the instance.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InstanceWithNamedPorts 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InstanceWithNamedPorts.
 - 
  
    
      #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) ⇒ InstanceWithNamedPorts
Returns a new instance of InstanceWithNamedPorts
      10108 10109 10110  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 10108 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#instance ⇒ String
[Output Only] The URL of the instance.
Corresponds to the JSON property instance
      10096 10097 10098  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 10096 def instance @instance end  | 
  
#named_ports ⇒ Array<Google::Apis::ComputeBeta::NamedPort>
[Output Only] The named ports that belong to this instance group.
Corresponds to the JSON property namedPorts
      10101 10102 10103  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 10101 def named_ports @named_ports end  | 
  
#status ⇒ String
[Output Only] The status of the instance.
Corresponds to the JSON property status
      10106 10107 10108  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 10106 def status @status end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      10113 10114 10115 10116 10117  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 10113 def update!(**args) @instance = args[:instance] if args.key?(:instance) @named_ports = args[:named_ports] if args.key?(:named_ports) @status = args[:status] if args.key?(:status) end  |