All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.servicefabric.enums.ClusterUpgradeCadence 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.servicefabric.enums;

import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;

    /**
     * Indicates when new cluster runtime version upgrades will be applied after they are released. By default is Wave0. Only applies when **clusterUpgradeMode** is set to 'Automatic'.
     * 
     */
    @EnumType
    public enum ClusterUpgradeCadence {
        /**
         * Cluster upgrade starts immediately after a new version is rolled out. Recommended for Test/Dev clusters.
         * 
         */
        Wave0("Wave0"),
        /**
         * Cluster upgrade starts 7 days after a new version is rolled out. Recommended for Pre-prod clusters.
         * 
         */
        Wave1("Wave1"),
        /**
         * Cluster upgrade starts 14 days after a new version is rolled out. Recommended for Production clusters.
         * 
         */
        Wave2("Wave2");

        private final String value;

        ClusterUpgradeCadence(String value) {
            this.value = Objects.requireNonNull(value);
        }

        @EnumType.Converter
        public String getValue() {
            return this.value;
        }

        @Override
        public java.lang.String toString() {
            return new StringJoiner(", ", "ClusterUpgradeCadence[", "]")
                .add("value='" + this.value + "'")
                .toString();
        }
    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy