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.
3090 3091 3092 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 3090 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inference_timeout ⇒ String
Customizable online prediction request timeout.
Corresponds to the JSON property inferenceTimeout
3088 3089 3090 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 3088 def inference_timeout @inference_timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3095 3096 3097 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 3095 def update!(**args) @inference_timeout = args[:inference_timeout] if args.key?(:inference_timeout) end |