Class: Google::Apis::RunV2::GoogleCloudRunV2ContainerPort

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

Overview

ContainerPort represents a network port in a single container.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRunV2ContainerPort

Returns a new instance of GoogleCloudRunV2ContainerPort.



395
396
397
# File 'lib/google/apis/run_v2/classes.rb', line 395

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

Instance Attribute Details

#container_portFixnum

Port number the container listens on. This must be a valid TCP port number, 0 < container_port < 65536. Corresponds to the JSON property containerPort

Returns:

  • (Fixnum)


387
388
389
# File 'lib/google/apis/run_v2/classes.rb', line 387

def container_port
  @container_port
end

#nameString

If specified, used to specify which protocol to use. Allowed values are "http1" and "h2c". Corresponds to the JSON property name

Returns:

  • (String)


393
394
395
# File 'lib/google/apis/run_v2/classes.rb', line 393

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



400
401
402
403
# File 'lib/google/apis/run_v2/classes.rb', line 400

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