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.
6065 6066 6067 |
# File 'lib/google/apis/run_v1/classes.rb', line 6065 def initialize(**args) update!(**args) end |
Instance Attribute Details
#host ⇒ String
Not supported by Cloud Run.
Corresponds to the JSON property host
6058 6059 6060 |
# File 'lib/google/apis/run_v1/classes.rb', line 6058 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
6063 6064 6065 |
# File 'lib/google/apis/run_v1/classes.rb', line 6063 def port @port end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6070 6071 6072 6073 |
# File 'lib/google/apis/run_v1/classes.rb', line 6070 def update!(**args) @host = args[:host] if args.key?(:host) @port = args[:port] if args.key?(:port) end |