Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1KeepAliveProbeHttpGet

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

Overview

Specifies the HTTP GET configuration for the probe.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1KeepAliveProbeHttpGet

Returns a new instance of GoogleCloudAiplatformV1KeepAliveProbeHttpGet.



20342
20343
20344
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20342

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

Instance Attribute Details

#pathString

Required. Specifies the path of the HTTP GET request (e.g., "/is_busy"). Corresponds to the JSON property path

Returns:

  • (String)


20334
20335
20336
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20334

def path
  @path
end

#portFixnum

Optional. Specifies the port number on the container to which the request is sent. Corresponds to the JSON property port

Returns:

  • (Fixnum)


20340
20341
20342
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20340

def port
  @port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



20347
20348
20349
20350
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20347

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