Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ClientConnectionConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ClientConnectionConfig
- 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
Configurations (e.g. inference timeout) that are applied on your endpoints.
Instance Attribute Summary collapse
-
#inference_timeout ⇒ String
Customizable online prediction request timeout.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1ClientConnectionConfig
constructor
A new instance of GoogleCloudAiplatformV1ClientConnectionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1ClientConnectionConfig
Returns a new instance of GoogleCloudAiplatformV1ClientConnectionConfig.
3039 3040 3041 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 3039 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inference_timeout ⇒ String
Customizable online prediction request timeout.
Corresponds to the JSON property inferenceTimeout
3037 3038 3039 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 3037 def inference_timeout @inference_timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3044 3045 3046 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 3044 def update!(**args) @inference_timeout = args[:inference_timeout] if args.key?(:inference_timeout) end |