AutoShutdownProfileResponse

data class AutoShutdownProfileResponse(val disconnectDelay: String? = null, val idleDelay: String? = null, val noConnectDelay: String? = null, val shutdownOnDisconnect: String? = null, val shutdownOnIdle: String? = null, val shutdownWhenNotConnected: String? = null)

Profile for how to handle shutting down virtual machines.

Constructors

Link copied to clipboard
constructor(disconnectDelay: String? = null, idleDelay: String? = null, noConnectDelay: String? = null, shutdownOnDisconnect: String? = null, shutdownOnIdle: String? = null, shutdownWhenNotConnected: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val disconnectDelay: String? = null

The amount of time a VM will stay running after a user disconnects if this behavior is enabled.

Link copied to clipboard
val idleDelay: String? = null

The amount of time a VM will idle before it is shutdown if this behavior is enabled.

Link copied to clipboard
val noConnectDelay: String? = null

The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled.

Link copied to clipboard

Whether shutdown on disconnect is enabled

Link copied to clipboard
val shutdownOnIdle: String? = null

Whether a VM will get shutdown when it has idled for a period of time.

Link copied to clipboard

Whether a VM will get shutdown when it hasn't been connected to after a period of time.