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

com.pulumi.googlenative.baremetalsolution.v2.enums.NetworkConfigServiceCidr 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.googlenative.baremetalsolution.v2.enums;

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

    /**
     * Service CIDR, if any.
     * 
     */
    @EnumType
    public enum NetworkConfigServiceCidr {
        /**
         * Unspecified value.
         * 
         */
        ServiceCidrUnspecified("SERVICE_CIDR_UNSPECIFIED"),
        /**
         * Services are disabled for the given network.
         * 
         */
        Disabled("DISABLED"),
        /**
         * Use the highest /26 block of the network to host services.
         * 
         */
        High26("HIGH_26"),
        /**
         * Use the highest /27 block of the network to host services.
         * 
         */
        High27("HIGH_27"),
        /**
         * Use the highest /28 block of the network to host services.
         * 
         */
        High28("HIGH_28");

        private final String value;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy