Class: Google::Cloud::AIPlatform::V1::StreamDirectRawPredictRequest
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::StreamDirectRawPredictRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/prediction_service.rb
Overview
Request message for PredictionService.StreamDirectRawPredict.
The first message must contain endpoint and method_name fields and optionally input. The subsequent messages must contain input. method_name in the subsequent messages have no effect.
Instance Attribute Summary collapse
-
#endpoint ⇒ ::String
Required.
-
#input ⇒ ::String
Optional.
-
#method_name ⇒ ::String
Optional.
Instance Attribute Details
#endpoint ⇒ ::String
Returns Required. The name of the Endpoint requested to serve the prediction.
Format:
projects/{project}/locations/{location}/endpoints/{endpoint}
.
263 264 265 266 |
# File 'proto_docs/google/cloud/aiplatform/v1/prediction_service.rb', line 263 class StreamDirectRawPredictRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#input ⇒ ::String
Returns Optional. The prediction input.
263 264 265 266 |
# File 'proto_docs/google/cloud/aiplatform/v1/prediction_service.rb', line 263 class StreamDirectRawPredictRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#method_name ⇒ ::String
Returns Optional. Fully qualified name of the API method being invoked to perform predictions.
Format:
/namespace.Service/Method/
Example:
/tensorflow.serving.PredictionService/Predict
.
263 264 265 266 |
# File 'proto_docs/google/cloud/aiplatform/v1/prediction_service.rb', line 263 class StreamDirectRawPredictRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |