Class: Google::Apis::ComputeAlpha::NamedPort

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

Overview

The named port. For example: .

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NamedPort

Returns a new instance of NamedPort.



22483
22484
22485
# File 'lib/google/apis/compute_alpha/classes.rb', line 22483

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)


22476
22477
22478
# File 'lib/google/apis/compute_alpha/classes.rb', line 22476

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)


22481
22482
22483
# File 'lib/google/apis/compute_alpha/classes.rb', line 22481

def port
  @port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



22488
22489
22490
22491
# File 'lib/google/apis/compute_alpha/classes.rb', line 22488

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