Class: Google::Apis::RunV2::GoogleCloudRunV2TcpSocketAction

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

Overview

TCPSocketAction describes an action based on opening a socket

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRunV2TcpSocketAction

Returns a new instance of GoogleCloudRunV2TcpSocketAction.



1790
1791
1792
# File 'lib/google/apis/run_v2/classes.rb', line 1790

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

Instance Attribute Details

#hostString

Host name to connect to, defaults to the pod IP. Corresponds to the JSON property host

Returns:

  • (String)


1780
1781
1782
# File 'lib/google/apis/run_v2/classes.rb', line 1780

def host
  @host
end

#portFixnum

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

Returns:

  • (Fixnum)


1788
1789
1790
# File 'lib/google/apis/run_v2/classes.rb', line 1788

def port
  @port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1795
1796
1797
1798
# File 'lib/google/apis/run_v2/classes.rb', line 1795

def update!(**args)
  @host = args[:host] if args.key?(:host)
  @port = args[:port] if args.key?(:port)
end