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

com.pulumi.meraki.networks.inputs.WirelessRfProfilesFlexRadiosByModelArgs 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 java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final WirelessRfProfilesFlexRadiosByModelArgs Empty = new WirelessRfProfilesFlexRadiosByModelArgs();

    /**
     * Band to use for each flex radio. For example, ['6'] will set the AP's first flex radio to 6 GHz
     * 
     */
    @Import(name="bands")
    private @Nullable Output> bands;

    /**
     * @return Band to use for each flex radio. For example, ['6'] will set the AP's first flex radio to 6 GHz
     * 
     */
    public Optional>> bands() {
        return Optional.ofNullable(this.bands);
    }

    /**
     * Model of the AP
     * 
     */
    @Import(name="model")
    private @Nullable Output model;

    /**
     * @return Model of the AP
     * 
     */
    public Optional> model() {
        return Optional.ofNullable(this.model);
    }

    private WirelessRfProfilesFlexRadiosByModelArgs() {}

    private WirelessRfProfilesFlexRadiosByModelArgs(WirelessRfProfilesFlexRadiosByModelArgs $) {
        this.bands = $.bands;
        this.model = $.model;
    }

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

    public static final class Builder {
        private WirelessRfProfilesFlexRadiosByModelArgs $;

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

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

        /**
         * @param bands Band to use for each flex radio. For example, ['6'] will set the AP's first flex radio to 6 GHz
         * 
         * @return builder
         * 
         */
        public Builder bands(@Nullable Output> bands) {
            $.bands = bands;
            return this;
        }

        /**
         * @param bands Band to use for each flex radio. For example, ['6'] will set the AP's first flex radio to 6 GHz
         * 
         * @return builder
         * 
         */
        public Builder bands(List bands) {
            return bands(Output.of(bands));
        }

        /**
         * @param bands Band to use for each flex radio. For example, ['6'] will set the AP's first flex radio to 6 GHz
         * 
         * @return builder
         * 
         */
        public Builder bands(String... bands) {
            return bands(List.of(bands));
        }

        /**
         * @param model Model of the AP
         * 
         * @return builder
         * 
         */
        public Builder model(@Nullable Output model) {
            $.model = model;
            return this;
        }

        /**
         * @param model Model of the AP
         * 
         * @return builder
         * 
         */
        public Builder model(String model) {
            return model(Output.of(model));
        }

        public WirelessRfProfilesFlexRadiosByModelArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy