Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudAiplatformV1PredictResponse

import type { GoogleCloudAiplatformV1PredictResponse } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

Response message for PredictionService.Predict.

interface GoogleCloudAiplatformV1PredictResponse {
deployedModelId?: string;
readonly metadata?: any;
readonly model?: string;
readonly modelDisplayName?: string;
readonly modelVersionId?: string;
predictions?: any[];
}

§Properties

§
deployedModelId?: string
[src]

ID of the Endpoint's DeployedModel that served this prediction.

§
readonly metadata?: any
[src]

Output only. Request-level metadata returned by the model. The metadata type will be dependent upon the model implementation.

§
readonly model?: string
[src]

Output only. The resource name of the Model which is deployed as the DeployedModel that this prediction hits.

§
readonly modelDisplayName?: string
[src]

Output only. The display name of the Model which is deployed as the DeployedModel that this prediction hits.

§
readonly modelVersionId?: string
[src]

Output only. The version ID of the Model which is deployed as the DeployedModel that this prediction hits.

§
predictions?: any[]
[src]

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.