com.pulumi.azurenative.servicefabric.enums.RollingUpgradeMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.servicefabric.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
*
*/
@EnumType
public enum RollingUpgradeMode {
/**
* The upgrade will stop after completing each upgrade domain and automatically monitor health before proceeding. The value is 0.
*
*/
Monitored("Monitored"),
/**
* The upgrade will proceed automatically without performing any health monitoring. The value is 1.
*
*/
UnmonitoredAuto("UnmonitoredAuto");
private final String value;
RollingUpgradeMode(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public java.lang.String toString() {
return new StringJoiner(", ", "RollingUpgradeMode[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy