Class: Google::Apis::RunV1alpha1::ContainerPort

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

Overview

ContainerPort represents a network port in a single container.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ContainerPort

Returns a new instance of ContainerPort.



1298
1299
1300
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1298

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

Instance Attribute Details

#container_portFixnum

Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. Corresponds to the JSON property containerPort

Returns:

  • (Fixnum)


1266
1267
1268
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1266

def container_port
  @container_port
end

#host_ipString

What host IP to bind the external port to. +optional Corresponds to the JSON property hostIP

Returns:

  • (String)


1272
1273
1274
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1272

def host_ip
  @host_ip
end

#host_portFixnum

Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. +optional Corresponds to the JSON property hostPort

Returns:

  • (Fixnum)


1281
1282
1283
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1281

def host_port
  @host_port
end

#nameString

If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. +optional Corresponds to the JSON property name

Returns:

  • (String)


1289
1290
1291
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1289

def name
  @name
end

#protocolString

Protocol for port. Must be UDP or TCP. Defaults to "TCP". +optional Corresponds to the JSON property protocol

Returns:

  • (String)


1296
1297
1298
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1296

def protocol
  @protocol
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1303
1304
1305
1306
1307
1308
1309
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1303

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