Class GoogleCloudAiplatformV1PredictResponse
Response message for PredictionService.Predict.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1PredictResponse : IDirectResponseSchema
Properties
DeployedModelId
ID of the Endpoint's DeployedModel that served this prediction.
Declaration
[JsonProperty("deployedModelId")]
public virtual string DeployedModelId { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Metadata
Output only. Request-level metadata returned by the model. The metadata type will be dependent upon the model implementation.
Declaration
[JsonProperty("metadata")]
public virtual object Metadata { get; set; }
Property Value
Type | Description |
---|---|
object |
Model
Output only. The resource name of the Model which is deployed as the DeployedModel that this prediction hits.
Declaration
[JsonProperty("model")]
public virtual string Model { get; set; }
Property Value
Type | Description |
---|---|
string |
ModelDisplayName
Output only. The display name of the Model which is deployed as the DeployedModel that this prediction hits.
Declaration
[JsonProperty("modelDisplayName")]
public virtual string ModelDisplayName { get; set; }
Property Value
Type | Description |
---|---|
string |
ModelVersionId
Output only. The version ID of the Model which is deployed as the DeployedModel that this prediction hits.
Declaration
[JsonProperty("modelVersionId")]
public virtual string ModelVersionId { get; set; }
Property Value
Type | Description |
---|---|
string |
Predictions
The predictions that are the output of the predictions call. The schema of any single prediction may be specified via Endpoint's DeployedModels' Model's PredictSchemata's prediction_schema_uri.
Declaration
[JsonProperty("predictions")]
public virtual IList<object> Predictions { get; set; }
Property Value
Type | Description |
---|---|
IList<object> |