Class: Google::Apis::RunV1::TcpSocketAction
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::TcpSocketAction
- 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
TCPSocketAction describes an action based on opening a socket
Instance Attribute Summary collapse
-
#host ⇒ String
Not supported by Cloud Run.
-
#port ⇒ Fixnum
Port number to access on the container.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TcpSocketAction
constructor
A new instance of TcpSocketAction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TcpSocketAction
Returns a new instance of TcpSocketAction.
3687 3688 3689 |
# File 'lib/google/apis/run_v1/classes.rb', line 3687 def initialize(**args) update!(**args) end |
Instance Attribute Details
#host ⇒ String
Not supported by Cloud Run.
Corresponds to the JSON property host
3680 3681 3682 |
# File 'lib/google/apis/run_v1/classes.rb', line 3680 def host @host end |
#port ⇒ Fixnum
Port number to access on the container. Number must be in the range 1 to 65535.
Corresponds to the JSON property port
3685 3686 3687 |
# File 'lib/google/apis/run_v1/classes.rb', line 3685 def port @port end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3692 3693 3694 3695 |
# File 'lib/google/apis/run_v1/classes.rb', line 3692 def update!(**args) @host = args[:host] if args.key?(:host) @port = args[:port] if args.key?(:port) end |