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

com.pulumi.meraki.networks.inputs.WirelessSsidsHotspot20NaiRealmArgs Maven / Gradle / Ivy

There is a newer version: 0.4.0-alpha.1731736975
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.meraki.networks.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.meraki.networks.inputs.WirelessSsidsHotspot20NaiRealmMethodArgs;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class WirelessSsidsHotspot20NaiRealmArgs extends com.pulumi.resources.ResourceArgs {

    public static final WirelessSsidsHotspot20NaiRealmArgs Empty = new WirelessSsidsHotspot20NaiRealmArgs();

    /**
     * The format for the realm ('1' or '0')
     * 
     */
    @Import(name="format")
    private @Nullable Output format;

    /**
     * @return The format for the realm ('1' or '0')
     * 
     */
    public Optional> format() {
        return Optional.ofNullable(this.format);
    }

    /**
     * An array of EAP methods for the realm.
     * 
     */
    @Import(name="methods")
    private @Nullable Output> methods;

    /**
     * @return An array of EAP methods for the realm.
     * 
     */
    public Optional>> methods() {
        return Optional.ofNullable(this.methods);
    }

    @Import(name="name")
    private @Nullable Output name;

    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * The name of the realm
     * 
     */
    @Import(name="realm")
    private @Nullable Output realm;

    /**
     * @return The name of the realm
     * 
     */
    public Optional> realm() {
        return Optional.ofNullable(this.realm);
    }

    private WirelessSsidsHotspot20NaiRealmArgs() {}

    private WirelessSsidsHotspot20NaiRealmArgs(WirelessSsidsHotspot20NaiRealmArgs $) {
        this.format = $.format;
        this.methods = $.methods;
        this.name = $.name;
        this.realm = $.realm;
    }

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

    public static final class Builder {
        private WirelessSsidsHotspot20NaiRealmArgs $;

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

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

        /**
         * @param format The format for the realm ('1' or '0')
         * 
         * @return builder
         * 
         */
        public Builder format(@Nullable Output format) {
            $.format = format;
            return this;
        }

        /**
         * @param format The format for the realm ('1' or '0')
         * 
         * @return builder
         * 
         */
        public Builder format(String format) {
            return format(Output.of(format));
        }

        /**
         * @param methods An array of EAP methods for the realm.
         * 
         * @return builder
         * 
         */
        public Builder methods(@Nullable Output> methods) {
            $.methods = methods;
            return this;
        }

        /**
         * @param methods An array of EAP methods for the realm.
         * 
         * @return builder
         * 
         */
        public Builder methods(List methods) {
            return methods(Output.of(methods));
        }

        /**
         * @param methods An array of EAP methods for the realm.
         * 
         * @return builder
         * 
         */
        public Builder methods(WirelessSsidsHotspot20NaiRealmMethodArgs... methods) {
            return methods(List.of(methods));
        }

        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param realm The name of the realm
         * 
         * @return builder
         * 
         */
        public Builder realm(@Nullable Output realm) {
            $.realm = realm;
            return this;
        }

        /**
         * @param realm The name of the realm
         * 
         * @return builder
         * 
         */
        public Builder realm(String realm) {
            return realm(Output.of(realm));
        }

        public WirelessSsidsHotspot20NaiRealmArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy