Class: Google::Apis::ComputeV1::NamedPort
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::NamedPort
- 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
Overview
The named port. For example: <"http", 80>.
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.
23146 23147 23148 |
# File 'lib/google/apis/compute_v1/classes.rb', line 23146 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
23139 23140 23141 |
# File 'lib/google/apis/compute_v1/classes.rb', line 23139 def name @name end |
#port ⇒ Fixnum
The port number, which can be a value between 1 and 65535.
Corresponds to the JSON property port
23144 23145 23146 |
# File 'lib/google/apis/compute_v1/classes.rb', line 23144 def port @port end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23151 23152 23153 23154 |
# File 'lib/google/apis/compute_v1/classes.rb', line 23151 def update!(**args) @name = args[:name] if args.key?(:name) @port = args[:port] if args.key?(:port) end |