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

Inherits:
Object
  • Object
show all
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

Not supported by Cloud Run 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.



3447
3448
3449
# File 'lib/google/apis/run_v1/classes.rb', line 3447

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

Instance Attribute Details

#hostString

(Optional) Optional: Host name to connect to, defaults to the pod IP. Corresponds to the JSON property host

Returns:

  • (String)


3437
3438
3439
# File 'lib/google/apis/run_v1/classes.rb', line 3437

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)


3445
3446
3447
# File 'lib/google/apis/run_v1/classes.rb', line 3445

def port
  @port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3452
3453
3454
3455
# File 'lib/google/apis/run_v1/classes.rb', line 3452

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