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.



257
258
259
# File 'lib/google/apis/run_v2/classes.rb', line 257

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)


249
250
251
# File 'lib/google/apis/run_v2/classes.rb', line 249

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)


255
256
257
# File 'lib/google/apis/run_v2/classes.rb', line 255

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



262
263
264
265
# File 'lib/google/apis/run_v2/classes.rb', line 262

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