Class: Google::Apis::RunV1::ContainerPort
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::ContainerPort
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1/classes.rb,
lib/google/apis/run_v1/representations.rb,
lib/google/apis/run_v1/representations.rb
Overview
ContainerPort represents a network port in a single container.
Instance Attribute Summary collapse
-
#container_port ⇒ Fixnum
(Optional) Port number the container listens on.
-
#name ⇒ String
(Optional) If specified, used to specify which protocol to use.
-
#protocol ⇒ String
(Optional) Cloud Run fully managed: not supported Cloud Run for Anthos: supported Protocol for port.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ContainerPort
constructor
A new instance of ContainerPort.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ContainerPort
Returns a new instance of ContainerPort.
661 662 663 |
# File 'lib/google/apis/run_v1/classes.rb', line 661 def initialize(**args) update!(**args) end |
Instance Attribute Details
#container_port ⇒ Fixnum
(Optional) Port number the container listens on. This must be a valid port
number, 0 < x < 65536.
Corresponds to the JSON property containerPort
647 648 649 |
# File 'lib/google/apis/run_v1/classes.rb', line 647 def container_port @container_port end |
#name ⇒ String
(Optional) If specified, used to specify which protocol to use. Allowed values
are "http1" and "h2c".
Corresponds to the JSON property name
653 654 655 |
# File 'lib/google/apis/run_v1/classes.rb', line 653 def name @name end |
#protocol ⇒ String
(Optional) Cloud Run fully managed: not supported Cloud Run for Anthos:
supported Protocol for port. Must be "TCP". Defaults to "TCP".
Corresponds to the JSON property protocol
659 660 661 |
# File 'lib/google/apis/run_v1/classes.rb', line 659 def protocol @protocol end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
666 667 668 669 670 |
# File 'lib/google/apis/run_v1/classes.rb', line 666 def update!(**args) @container_port = args[:container_port] if args.key?(:container_port) @name = args[:name] if args.key?(:name) @protocol = args[:protocol] if args.key?(:protocol) end |