All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.meraki.networks.inputs.WirelessRfProfilesPerSsidSettingsStatus2Args Maven / Gradle / Ivy
Go to download
A Pulumi package for creating and managing Cisco Meraki resources
// *** 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.WirelessRfProfilesPerSsidSettingsStatus2BandsArgs;
import java.lang.Boolean;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class WirelessRfProfilesPerSsidSettingsStatus2Args extends com.pulumi.resources.ResourceArgs {
public static final WirelessRfProfilesPerSsidSettingsStatus2Args Empty = new WirelessRfProfilesPerSsidSettingsStatus2Args();
/**
* Choice between 'dual', '2.4ghz', '5ghz', '6ghz' or 'multi'.
*
*/
@Import(name="bandOperationMode")
private @Nullable Output bandOperationMode;
/**
* @return Choice between 'dual', '2.4ghz', '5ghz', '6ghz' or 'multi'.
*
*/
public Optional> bandOperationMode() {
return Optional.ofNullable(this.bandOperationMode);
}
/**
* Steers client to most open band between 2.4 GHz and 5 GHz. Can be either true or false.
*
*/
@Import(name="bandSteeringEnabled")
private @Nullable Output bandSteeringEnabled;
/**
* @return Steers client to most open band between 2.4 GHz and 5 GHz. Can be either true or false.
*
*/
public Optional> bandSteeringEnabled() {
return Optional.ofNullable(this.bandSteeringEnabled);
}
/**
* Settings related to all bands
*
*/
@Import(name="bands")
private @Nullable Output bands;
/**
* @return Settings related to all bands
*
*/
public Optional> bands() {
return Optional.ofNullable(this.bands);
}
/**
* Sets min bitrate (Mbps) of this SSID. Can be one of '1', '2', '5.5', '6', '9', '11', '12', '18', '24', '36', '48' or '54'.
*
*/
@Import(name="minBitrate")
private @Nullable Output minBitrate;
/**
* @return Sets min bitrate (Mbps) of this SSID. Can be one of '1', '2', '5.5', '6', '9', '11', '12', '18', '24', '36', '48' or '54'.
*
*/
public Optional> minBitrate() {
return Optional.ofNullable(this.minBitrate);
}
/**
* Name of SSID
*
*/
@Import(name="name")
private @Nullable Output name;
/**
* @return Name of SSID
*
*/
public Optional> name() {
return Optional.ofNullable(this.name);
}
private WirelessRfProfilesPerSsidSettingsStatus2Args() {}
private WirelessRfProfilesPerSsidSettingsStatus2Args(WirelessRfProfilesPerSsidSettingsStatus2Args $) {
this.bandOperationMode = $.bandOperationMode;
this.bandSteeringEnabled = $.bandSteeringEnabled;
this.bands = $.bands;
this.minBitrate = $.minBitrate;
this.name = $.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WirelessRfProfilesPerSsidSettingsStatus2Args defaults) {
return new Builder(defaults);
}
public static final class Builder {
private WirelessRfProfilesPerSsidSettingsStatus2Args $;
public Builder() {
$ = new WirelessRfProfilesPerSsidSettingsStatus2Args();
}
public Builder(WirelessRfProfilesPerSsidSettingsStatus2Args defaults) {
$ = new WirelessRfProfilesPerSsidSettingsStatus2Args(Objects.requireNonNull(defaults));
}
/**
* @param bandOperationMode Choice between 'dual', '2.4ghz', '5ghz', '6ghz' or 'multi'.
*
* @return builder
*
*/
public Builder bandOperationMode(@Nullable Output bandOperationMode) {
$.bandOperationMode = bandOperationMode;
return this;
}
/**
* @param bandOperationMode Choice between 'dual', '2.4ghz', '5ghz', '6ghz' or 'multi'.
*
* @return builder
*
*/
public Builder bandOperationMode(String bandOperationMode) {
return bandOperationMode(Output.of(bandOperationMode));
}
/**
* @param bandSteeringEnabled Steers client to most open band between 2.4 GHz and 5 GHz. Can be either true or false.
*
* @return builder
*
*/
public Builder bandSteeringEnabled(@Nullable Output bandSteeringEnabled) {
$.bandSteeringEnabled = bandSteeringEnabled;
return this;
}
/**
* @param bandSteeringEnabled Steers client to most open band between 2.4 GHz and 5 GHz. Can be either true or false.
*
* @return builder
*
*/
public Builder bandSteeringEnabled(Boolean bandSteeringEnabled) {
return bandSteeringEnabled(Output.of(bandSteeringEnabled));
}
/**
* @param bands Settings related to all bands
*
* @return builder
*
*/
public Builder bands(@Nullable Output bands) {
$.bands = bands;
return this;
}
/**
* @param bands Settings related to all bands
*
* @return builder
*
*/
public Builder bands(WirelessRfProfilesPerSsidSettingsStatus2BandsArgs bands) {
return bands(Output.of(bands));
}
/**
* @param minBitrate Sets min bitrate (Mbps) of this SSID. Can be one of '1', '2', '5.5', '6', '9', '11', '12', '18', '24', '36', '48' or '54'.
*
* @return builder
*
*/
public Builder minBitrate(@Nullable Output minBitrate) {
$.minBitrate = minBitrate;
return this;
}
/**
* @param minBitrate Sets min bitrate (Mbps) of this SSID. Can be one of '1', '2', '5.5', '6', '9', '11', '12', '18', '24', '36', '48' or '54'.
*
* @return builder
*
*/
public Builder minBitrate(Integer minBitrate) {
return minBitrate(Output.of(minBitrate));
}
/**
* @param name Name of SSID
*
* @return builder
*
*/
public Builder name(@Nullable Output name) {
$.name = name;
return this;
}
/**
* @param name Name of SSID
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
public WirelessRfProfilesPerSsidSettingsStatus2Args build() {
return $;
}
}
}