Class GoogleCloudAiplatformV1PredictRequest
Request message for PredictionService.Predict.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1PredictRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Instances
Required. The instances that are the input to the prediction call. A DeployedModel may have an upper limit on the number of instances it supports per request, and when it is exceeded the prediction call errors in case of AutoML Models, or, in case of customer created Models, the behaviour is as documented by that Model. The schema of any single instance may be specified via Endpoint's DeployedModels' Model's PredictSchemata's instance_schema_uri.
Declaration
[JsonProperty("instances")]
public virtual IList<object> Instances { get; set; }
Property Value
Type | Description |
---|---|
IList<object> |
Parameters
The parameters that govern the prediction. The schema of the parameters may be specified via Endpoint's DeployedModels' Model's PredictSchemata's parameters_schema_uri.
Declaration
[JsonProperty("parameters")]
public virtual object Parameters { get; set; }
Property Value
Type | Description |
---|---|
object |