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

60 lines (59 loc) 2.36 kB
import * as pulumi from "@pulumi/pulumi"; /** * Uses Azure REST API version 2024-01-01-preview. * * Other available API versions: 2023-08-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 getInferencePoolStatus(args: GetInferencePoolStatusArgs, opts?: pulumi.InvokeOptions): Promise<GetInferencePoolStatusResult>; export interface GetInferencePoolStatusArgs { /** * Name of InferencePool */ inferencePoolName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * Name of Azure Machine Learning workspace. */ workspaceName: string; } export interface GetInferencePoolStatusResult { /** * Gets or sets the actual number of instances in the pool. */ readonly actualCapacity?: number; /** * Gets or sets the actual number of groups in the pool. */ readonly groupCount?: number; /** * Gets or sets the requested number of instances for the pool. */ readonly requestedCapacity?: number; /** * Gets or sets the number of instances in the pool reserved by the system. */ readonly reservedCapacity?: number; } /** * Uses Azure REST API version 2024-01-01-preview. * * Other available API versions: 2023-08-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 getInferencePoolStatusOutput(args: GetInferencePoolStatusOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetInferencePoolStatusResult>; export interface GetInferencePoolStatusOutputArgs { /** * Name of InferencePool */ inferencePoolName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * Name of Azure Machine Learning workspace. */ workspaceName: pulumi.Input<string>; }