Class: Google::Apis::RunV1::TcpSocketAction

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

Overview

Cloud Run fully managed: not supported Cloud Run for Anthos: supported TCPSocketAction describes an action based on opening a socket

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TcpSocketAction

Returns a new instance of TcpSocketAction.



2882
2883
2884
# File 'generated/google/apis/run_v1/classes.rb', line 2882

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

Instance Attribute Details

#hostString

(Optional) Cloud Run fully managed: not supported Cloud Run for Anthos: supported Optional: Host name to connect to, defaults to the pod IP. Corresponds to the JSON property host

Returns:

  • (String)


2871
2872
2873
# File 'generated/google/apis/run_v1/classes.rb', line 2871

def host
  @host
end

#portFixnum

Cloud Run fully managed: not supported Cloud Run for Anthos: supported 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)


2880
2881
2882
# File 'generated/google/apis/run_v1/classes.rb', line 2880

def port
  @port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2887
2888
2889
2890
# File 'generated/google/apis/run_v1/classes.rb', line 2887

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