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

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.



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

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

Instance Attribute Details

#hostString

Not supported by Cloud Run. Corresponds to the JSON property host

Returns:

  • (String)


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

def host
  @host
end

#portFixnum

Port number to access on the container. Number must be in the range 1 to 65535. Corresponds to the JSON property port

Returns:

  • (Fixnum)


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

def port
  @port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3458
3459
3460
3461
# File 'lib/google/apis/run_v1/classes.rb', line 3458

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