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

com.pulumi.azurenative.mobilenetwork.enums.BillingSku Maven / Gradle / Ivy

There is a newer version: 2.78.0
Show newest version
// *** 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.mobilenetwork.enums;

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

    /**
     * The SKU defining the throughput and SIM allowances for this packet core control plane deployment.
     * 
     */
    @EnumType
    public enum BillingSku {
        /**
         * 100 Mbps, 20 active SIMs plan, 2 RANs
         * 
         */
        G0("G0"),
        /**
         * 1 Gbps, 100 active SIMs plan, 5 RANs
         * 
         */
        G1("G1"),
        /**
         * 2 Gbps, 200 active SIMs plan, 10 RANs
         * 
         */
        G2("G2"),
        /**
         * 5 Gbps, 500 active SIMs plan
         * 
         */
        G5("G5"),
        /**
         * 10 Gbps, 1000 active SIMs plan
         * 
         */
        G10("G10");

        private final String value;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy