
com.pulumi.azurenative.desktopvirtualization.enums.StartupBehavior Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.desktopvirtualization.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* The desired startup behavior during the ramp up period for personal vms in the hostpool.
*
*/
@EnumType
public enum StartupBehavior {
/**
* Session hosts will not be started by the service. This setting depends on Start VM on Connect to be enabled to start the session hosts.
*
*/
None("None"),
/**
* Session hosts with an assigned user will be started during Ramp Up
*
*/
WithAssignedUser("WithAssignedUser"),
/**
* All personal session hosts in the hostpool will be started during ramp up.
*
*/
All("All");
private final String value;
StartupBehavior(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public java.lang.String toString() {
return new StringJoiner(", ", "StartupBehavior[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy