com.pulumi.meraki.networks.outputs.WirelessRfProfilesPerSsidSettingsStatus12 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meraki Show documentation
Show all versions of meraki Show documentation
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.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.meraki.networks.outputs.WirelessRfProfilesPerSsidSettingsStatus12Bands;
import java.lang.Boolean;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class WirelessRfProfilesPerSsidSettingsStatus12 {
/**
* @return Choice between 'dual', '2.4ghz', '5ghz', '6ghz' or 'multi'.
*
*/
private @Nullable String bandOperationMode;
/**
* @return Steers client to most open band between 2.4 GHz and 5 GHz. Can be either true or false.
*
*/
private @Nullable Boolean bandSteeringEnabled;
/**
* @return Settings related to all bands
*
*/
private @Nullable WirelessRfProfilesPerSsidSettingsStatus12Bands bands;
/**
* @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'.
*
*/
private @Nullable Integer minBitrate;
/**
* @return Name of SSID
*
*/
private @Nullable String name;
private WirelessRfProfilesPerSsidSettingsStatus12() {}
/**
* @return Choice between 'dual', '2.4ghz', '5ghz', '6ghz' or 'multi'.
*
*/
public Optional bandOperationMode() {
return Optional.ofNullable(this.bandOperationMode);
}
/**
* @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);
}
/**
* @return Settings related to all bands
*
*/
public Optional bands() {
return Optional.ofNullable(this.bands);
}
/**
* @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);
}
/**
* @return Name of SSID
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WirelessRfProfilesPerSsidSettingsStatus12 defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String bandOperationMode;
private @Nullable Boolean bandSteeringEnabled;
private @Nullable WirelessRfProfilesPerSsidSettingsStatus12Bands bands;
private @Nullable Integer minBitrate;
private @Nullable String name;
public Builder() {}
public Builder(WirelessRfProfilesPerSsidSettingsStatus12 defaults) {
Objects.requireNonNull(defaults);
this.bandOperationMode = defaults.bandOperationMode;
this.bandSteeringEnabled = defaults.bandSteeringEnabled;
this.bands = defaults.bands;
this.minBitrate = defaults.minBitrate;
this.name = defaults.name;
}
@CustomType.Setter
public Builder bandOperationMode(@Nullable String bandOperationMode) {
this.bandOperationMode = bandOperationMode;
return this;
}
@CustomType.Setter
public Builder bandSteeringEnabled(@Nullable Boolean bandSteeringEnabled) {
this.bandSteeringEnabled = bandSteeringEnabled;
return this;
}
@CustomType.Setter
public Builder bands(@Nullable WirelessRfProfilesPerSsidSettingsStatus12Bands bands) {
this.bands = bands;
return this;
}
@CustomType.Setter
public Builder minBitrate(@Nullable Integer minBitrate) {
this.minBitrate = minBitrate;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
public WirelessRfProfilesPerSsidSettingsStatus12 build() {
final var _resultValue = new WirelessRfProfilesPerSsidSettingsStatus12();
_resultValue.bandOperationMode = bandOperationMode;
_resultValue.bandSteeringEnabled = bandSteeringEnabled;
_resultValue.bands = bands;
_resultValue.minBitrate = minBitrate;
_resultValue.name = name;
return _resultValue;
}
}
}