Class: Google::Apis::ComputeV1::NamedPort
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeV1::NamedPort
 
 
- Defined in:
 - generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb 
Overview
The named port. For example: .
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name for this named port.
 - 
  
    
      #port  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The port number, which can be a value between 1 and 65535.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ NamedPort 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of NamedPort.
 - 
  
    
      #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) ⇒ NamedPort
Returns a new instance of NamedPort
      11464 11465 11466  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 11464 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#name ⇒ String
The name for this named port. The name must be 1-63 characters long, and
comply with RFC1035.
Corresponds to the JSON property name
      11457 11458 11459  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 11457 def name @name end  | 
  
#port ⇒ Fixnum
The port number, which can be a value between 1 and 65535.
Corresponds to the JSON property port
      11462 11463 11464  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 11462 def port @port end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      11469 11470 11471 11472  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 11469 def update!(**args) @name = args[:name] if args.key?(:name) @port = args[:port] if args.key?(:port) end  |