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

98 lines (97 loc) 3.48 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Contract returning to user the delta models. * * Uses Azure REST API version 2025-01-01-preview. * * Other available API versions: 2024-10-01-preview, 2025-04-01-preview, 2025-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native machinelearningservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getInferenceGroupDeltaModelsStatusAsync(args: GetInferenceGroupDeltaModelsStatusAsyncArgs, opts?: pulumi.InvokeOptions): Promise<GetInferenceGroupDeltaModelsStatusAsyncResult>; export interface GetInferenceGroupDeltaModelsStatusAsyncArgs { /** * Gets or sets collection of delta models to retrieve status for. */ deltaModels?: string[]; /** * InferenceGroup name. */ groupName: string; /** * InferencePool name. */ poolName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * Gets or sets target base model. */ targetBaseModel?: string; /** * Name of Azure Machine Learning workspace. */ workspaceName: string; } /** * Contract returning to user the delta models. */ export interface GetInferenceGroupDeltaModelsStatusAsyncResult { /** * Gets or sets actual instance count. */ readonly actualInstanceCount?: number; /** * Gets or sets dictionary representing modelID and its current state. */ readonly deltaModels?: { [key: string]: outputs.machinelearningservices.DeltaModelCurrentStateResponse[]; }; /** * Gets or sets expected instance count. */ readonly expectedInstanceCount?: number; /** * Gets or sets revision ID. */ readonly revisionId?: string; /** * Gets or sets target base model. */ readonly targetBaseModel?: string; } /** * Contract returning to user the delta models. * * Uses Azure REST API version 2025-01-01-preview. * * Other available API versions: 2024-10-01-preview, 2025-04-01-preview, 2025-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native machinelearningservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getInferenceGroupDeltaModelsStatusAsyncOutput(args: GetInferenceGroupDeltaModelsStatusAsyncOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetInferenceGroupDeltaModelsStatusAsyncResult>; export interface GetInferenceGroupDeltaModelsStatusAsyncOutputArgs { /** * Gets or sets collection of delta models to retrieve status for. */ deltaModels?: pulumi.Input<pulumi.Input<string>[]>; /** * InferenceGroup name. */ groupName: pulumi.Input<string>; /** * InferencePool name. */ poolName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * Gets or sets target base model. */ targetBaseModel?: pulumi.Input<string>; /** * Name of Azure Machine Learning workspace. */ workspaceName: pulumi.Input<string>; }