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

com.pulumi.azurenative.containerservice.inputs.ManagedClusterSKUArgs Maven / Gradle / Ivy

There is a newer version: 2.82.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.containerservice.inputs;

import com.pulumi.azurenative.containerservice.enums.ManagedClusterSKUName;
import com.pulumi.azurenative.containerservice.enums.ManagedClusterSKUTier;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * The SKU of a Managed Cluster.
 * 
 */
public final class ManagedClusterSKUArgs extends com.pulumi.resources.ResourceArgs {

    public static final ManagedClusterSKUArgs Empty = new ManagedClusterSKUArgs();

    /**
     * The name of a managed cluster SKU.
     * 
     */
    @Import(name="name")
    private @Nullable Output> name;

    /**
     * @return The name of a managed cluster SKU.
     * 
     */
    public Optional>> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * If not specified, the default is 'Free'. See [AKS Pricing Tier](https://learn.microsoft.com/azure/aks/free-standard-pricing-tiers) for more details.
     * 
     */
    @Import(name="tier")
    private @Nullable Output> tier;

    /**
     * @return If not specified, the default is 'Free'. See [AKS Pricing Tier](https://learn.microsoft.com/azure/aks/free-standard-pricing-tiers) for more details.
     * 
     */
    public Optional>> tier() {
        return Optional.ofNullable(this.tier);
    }

    private ManagedClusterSKUArgs() {}

    private ManagedClusterSKUArgs(ManagedClusterSKUArgs $) {
        this.name = $.name;
        this.tier = $.tier;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(ManagedClusterSKUArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private ManagedClusterSKUArgs $;

        public Builder() {
            $ = new ManagedClusterSKUArgs();
        }

        public Builder(ManagedClusterSKUArgs defaults) {
            $ = new ManagedClusterSKUArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param name The name of a managed cluster SKU.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output> name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The name of a managed cluster SKU.
         * 
         * @return builder
         * 
         */
        public Builder name(Either name) {
            return name(Output.of(name));
        }

        /**
         * @param name The name of a managed cluster SKU.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Either.ofLeft(name));
        }

        /**
         * @param name The name of a managed cluster SKU.
         * 
         * @return builder
         * 
         */
        public Builder name(ManagedClusterSKUName name) {
            return name(Either.ofRight(name));
        }

        /**
         * @param tier If not specified, the default is 'Free'. See [AKS Pricing Tier](https://learn.microsoft.com/azure/aks/free-standard-pricing-tiers) for more details.
         * 
         * @return builder
         * 
         */
        public Builder tier(@Nullable Output> tier) {
            $.tier = tier;
            return this;
        }

        /**
         * @param tier If not specified, the default is 'Free'. See [AKS Pricing Tier](https://learn.microsoft.com/azure/aks/free-standard-pricing-tiers) for more details.
         * 
         * @return builder
         * 
         */
        public Builder tier(Either tier) {
            return tier(Output.of(tier));
        }

        /**
         * @param tier If not specified, the default is 'Free'. See [AKS Pricing Tier](https://learn.microsoft.com/azure/aks/free-standard-pricing-tiers) for more details.
         * 
         * @return builder
         * 
         */
        public Builder tier(String tier) {
            return tier(Either.ofLeft(tier));
        }

        /**
         * @param tier If not specified, the default is 'Free'. See [AKS Pricing Tier](https://learn.microsoft.com/azure/aks/free-standard-pricing-tiers) for more details.
         * 
         * @return builder
         * 
         */
        public Builder tier(ManagedClusterSKUTier tier) {
            return tier(Either.ofRight(tier));
        }

        public ManagedClusterSKUArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy