Class: Google::Apis::RunV1::HttpGetAction
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::HttpGetAction
- 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
-
#host ⇒ String
Not supported by Cloud Run.
-
#http_headers ⇒ Array<Google::Apis::RunV1::HttpHeader>
Custom headers to set in the request.
-
#path ⇒ String
Path to access on the HTTP server.
-
#port ⇒ Fixnum
Port number to access on the container.
-
#scheme ⇒ String
Not supported by Cloud Run.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HttpGetAction
constructor
A new instance of HttpGetAction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HttpGetAction
Returns a new instance of HttpGetAction.
1425 1426 1427 |
# File 'lib/google/apis/run_v1/classes.rb', line 1425 def initialize(**args) update!(**args) end |
Instance Attribute Details
#host ⇒ String
Not supported by Cloud Run.
Corresponds to the JSON property host
1403 1404 1405 |
# File 'lib/google/apis/run_v1/classes.rb', line 1403 def host @host end |
#http_headers ⇒ Array<Google::Apis::RunV1::HttpHeader>
Custom headers to set in the request. HTTP allows repeated headers.
Corresponds to the JSON property httpHeaders
1408 1409 1410 |
# File 'lib/google/apis/run_v1/classes.rb', line 1408 def http_headers @http_headers end |
#path ⇒ String
Path to access on the HTTP server.
Corresponds to the JSON property path
1413 1414 1415 |
# File 'lib/google/apis/run_v1/classes.rb', line 1413 def path @path end |
#port ⇒ Fixnum
Port number to access on the container. Number must be in the range 1 to 65535.
Corresponds to the JSON property port
1418 1419 1420 |
# File 'lib/google/apis/run_v1/classes.rb', line 1418 def port @port end |
#scheme ⇒ String
Not supported by Cloud Run.
Corresponds to the JSON property scheme
1423 1424 1425 |
# File 'lib/google/apis/run_v1/classes.rb', line 1423 def scheme @scheme end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1430 1431 1432 1433 1434 1435 1436 |
# File 'lib/google/apis/run_v1/classes.rb', line 1430 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 |