Class: Google::Apis::RunV1::HttpGetAction

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

HTTPGetAction describes an action based on HTTP Get requests.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ HttpGetAction

Returns a new instance of HttpGetAction.



1608
1609
1610
# File 'lib/google/apis/run_v1/classes.rb', line 1608

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

Instance Attribute Details

#hostString

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

Returns:

  • (String)


1586
1587
1588
# File 'lib/google/apis/run_v1/classes.rb', line 1586

def host
  @host
end

#http_headersArray<Google::Apis::RunV1::HttpHeader>

Custom headers to set in the request. HTTP allows repeated headers. Corresponds to the JSON property httpHeaders



1591
1592
1593
# File 'lib/google/apis/run_v1/classes.rb', line 1591

def http_headers
  @http_headers
end

#pathString

Path to access on the HTTP server. Corresponds to the JSON property path

Returns:

  • (String)


1596
1597
1598
# File 'lib/google/apis/run_v1/classes.rb', line 1596

def path
  @path
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)


1601
1602
1603
# File 'lib/google/apis/run_v1/classes.rb', line 1601

def port
  @port
end

#schemeString

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

Returns:

  • (String)


1606
1607
1608
# File 'lib/google/apis/run_v1/classes.rb', line 1606

def scheme
  @scheme
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1613
1614
1615
1616
1617
1618
1619
# File 'lib/google/apis/run_v1/classes.rb', line 1613

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