Class: Google::Apis::ComputeBeta::NamedPort
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::NamedPort
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/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.
Constructor Details
#initialize(**args) ⇒ NamedPort
Returns a new instance of NamedPort.
18735 18736 18737 |
# File 'generated/google/apis/compute_beta/classes.rb', line 18735 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
18728 18729 18730 |
# File 'generated/google/apis/compute_beta/classes.rb', line 18728 def name @name end |
#port ⇒ Fixnum
The port number, which can be a value between 1 and 65535.
Corresponds to the JSON property port
18733 18734 18735 |
# File 'generated/google/apis/compute_beta/classes.rb', line 18733 def port @port end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18740 18741 18742 18743 |
# File 'generated/google/apis/compute_beta/classes.rb', line 18740 def update!(**args) @name = args[:name] if args.key?(:name) @port = args[:port] if args.key?(:port) end |