
com.pulumi.azurenative.azurefleet.enums.RegularPriorityAllocationStrategy 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.azurefleet.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
*
*/
@EnumType
public enum RegularPriorityAllocationStrategy {
/**
* Default. VM sizes distribution will be determined to optimize for price.
*
*/
LowestPrice("LowestPrice"),
/**
* VM sizes distribution will be determined to optimize for the 'priority' as specified for each vm size.
*
*/
Prioritized("Prioritized");
private final String value;
RegularPriorityAllocationStrategy(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public java.lang.String toString() {
return new StringJoiner(", ", "RegularPriorityAllocationStrategy[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy