UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

91 lines (90 loc) 2.3 kB
import * as pulumi from "@pulumi/pulumi"; /** * Gets model status of the prediction. * * Uses Azure REST API version 2017-04-26. */ export declare function getPredictionModelStatus(args: GetPredictionModelStatusArgs, opts?: pulumi.InvokeOptions): Promise<GetPredictionModelStatusResult>; export interface GetPredictionModelStatusArgs { /** * The name of the hub. */ hubName: string; /** * The name of the Prediction. */ predictionName: string; /** * The name of the resource group. */ resourceGroupName: string; } /** * The prediction model status. */ export interface GetPredictionModelStatusResult { /** * The model status message. */ readonly message: string; /** * Version of the model. */ readonly modelVersion: string; /** * The prediction GUID ID. */ readonly predictionGuidId: string; /** * The prediction name. */ readonly predictionName: string; /** * The signals used. */ readonly signalsUsed: number; /** * Prediction model life cycle. When prediction is in PendingModelConfirmation status, it is allowed to update the status to PendingFeaturing or Active through API. */ readonly status: string; /** * The hub name. */ readonly tenantId: string; /** * Count of the test set. */ readonly testSetCount: number; /** * The training accuracy. */ readonly trainingAccuracy: number; /** * Count of the training set. */ readonly trainingSetCount: number; /** * Count of the validation set. */ readonly validationSetCount: number; } /** * Gets model status of the prediction. * * Uses Azure REST API version 2017-04-26. */ export declare function getPredictionModelStatusOutput(args: GetPredictionModelStatusOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPredictionModelStatusResult>; export interface GetPredictionModelStatusOutputArgs { /** * The name of the hub. */ hubName: pulumi.Input<string>; /** * The name of the Prediction. */ predictionName: pulumi.Input<string>; /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; }