Class: Google::Apis::RunV1alpha1::TcpSocketAction
- Inherits:
-
Object
- Object
- Google::Apis::RunV1alpha1::TcpSocketAction
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1alpha1/classes.rb,
lib/google/apis/run_v1alpha1/representations.rb,
lib/google/apis/run_v1alpha1/representations.rb
Overview
Not supported by Cloud Run TCPSocketAction describes an action based on opening a socket
Instance Attribute Summary collapse
-
#host ⇒ String
(Optional) Optional: Host name to connect to, defaults to the pod IP.
-
#port ⇒ Fixnum
Number or name of the port 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.
1763 1764 1765 |
# File 'lib/google/apis/run_v1alpha1/classes.rb', line 1763 def initialize(**args) update!(**args) end |
Instance Attribute Details
#host ⇒ String
(Optional) Optional: Host name to connect to, defaults to the pod IP.
Corresponds to the JSON property host
1753 1754 1755 |
# File 'lib/google/apis/run_v1alpha1/classes.rb', line 1753 def host @host end |
#port ⇒ Fixnum
Number or name of the port to access on the container. Number must be in the
range 1 to 65535. Name must be an IANA_SVC_NAME. This field is currently
limited to integer types only because of proto's inability to properly support
the IntOrString golang type.
Corresponds to the JSON property port
1761 1762 1763 |
# File 'lib/google/apis/run_v1alpha1/classes.rb', line 1761 def port @port end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1768 1769 1770 1771 |
# File 'lib/google/apis/run_v1alpha1/classes.rb', line 1768 def update!(**args) @host = args[:host] if args.key?(:host) @port = args[:port] if args.key?(:port) end |