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

25 lines (24 loc) 775 B
export declare const RefillPolicy: { /** * A refill policy that standby pool is automatically refilled to maintain maxReadyCapacity. */ readonly Always: "always"; }; /** * Specifies refill policy of the pool. */ export type RefillPolicy = (typeof RefillPolicy)[keyof typeof RefillPolicy]; export declare const VirtualMachineState: { /** * The virtual machine is up and running. */ readonly Running: "Running"; /** * The virtual machine has released the lease on the underlying hardware and is powered off. */ readonly Deallocated: "Deallocated"; }; /** * Specifies the desired state of virtual machines in the pool. */ export type VirtualMachineState = (typeof VirtualMachineState)[keyof typeof VirtualMachineState];