Class: Google::Apis::ComputeBeta::NamedPort

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb

Overview

The named port. For example: <"http", 80>.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NamedPort

Returns a new instance of NamedPort.



20456
20457
20458
# File 'lib/google/apis/compute_beta/classes.rb', line 20456

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

The name for this named port. The name must be 1-63 characters long, and comply with RFC1035. Corresponds to the JSON property name

Returns:

  • (String)


20449
20450
20451
# File 'lib/google/apis/compute_beta/classes.rb', line 20449

def name
  @name
end

#portFixnum

The port number, which can be a value between 1 and 65535. Corresponds to the JSON property port

Returns:

  • (Fixnum)


20454
20455
20456
# File 'lib/google/apis/compute_beta/classes.rb', line 20454

def port
  @port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



20461
20462
20463
20464
# File 'lib/google/apis/compute_beta/classes.rb', line 20461

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @port = args[:port] if args.key?(:port)
end