Class: Google::Apis::RunV1alpha1::HttpGetAction

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

Overview

HTTPGetAction describes an action based on HTTP Get requests.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ HttpGetAction

Returns a new instance of HttpGetAction.



1772
1773
1774
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1772

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

Instance Attribute Details

#hostString

Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. +optional Corresponds to the JSON property host

Returns:

  • (String)


1743
1744
1745
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1743

def host
  @host
end

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

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



1749
1750
1751
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1749

def http_headers
  @http_headers
end

#pathString

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

Returns:

  • (String)


1755
1756
1757
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1755

def path
  @path
end

#portGoogle::Apis::RunV1alpha1::IntOrString

IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number. Corresponds to the JSON property port



1763
1764
1765
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1763

def port
  @port
end

#schemeString

Scheme to use for connecting to the host. Defaults to HTTP. +optional Corresponds to the JSON property scheme

Returns:

  • (String)


1770
1771
1772
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1770

def scheme
  @scheme
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1777
1778
1779
1780
1781
1782
1783
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1777

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