com.pulumi.meraki.networks.outputs.WirelessSsidsDot11r 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 java.lang.Boolean;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class WirelessSsidsDot11r {
/**
* @return (Optional) Whether 802.11r is adaptive or not.
*
*/
private @Nullable Boolean adaptive;
/**
* @return Whether 802.11r is enabled or not.
*
*/
private @Nullable Boolean enabled;
private WirelessSsidsDot11r() {}
/**
* @return (Optional) Whether 802.11r is adaptive or not.
*
*/
public Optional adaptive() {
return Optional.ofNullable(this.adaptive);
}
/**
* @return Whether 802.11r is enabled or not.
*
*/
public Optional enabled() {
return Optional.ofNullable(this.enabled);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WirelessSsidsDot11r defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Boolean adaptive;
private @Nullable Boolean enabled;
public Builder() {}
public Builder(WirelessSsidsDot11r defaults) {
Objects.requireNonNull(defaults);
this.adaptive = defaults.adaptive;
this.enabled = defaults.enabled;
}
@CustomType.Setter
public Builder adaptive(@Nullable Boolean adaptive) {
this.adaptive = adaptive;
return this;
}
@CustomType.Setter
public Builder enabled(@Nullable Boolean enabled) {
this.enabled = enabled;
return this;
}
public WirelessSsidsDot11r build() {
final var _resultValue = new WirelessSsidsDot11r();
_resultValue.adaptive = adaptive;
_resultValue.enabled = enabled;
return _resultValue;
}
}
}