com.pulumi.meraki.networks.outputs.GetWirelessSettingsItemRegulatoryDomain 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.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetWirelessSettingsItemRegulatoryDomain {
/**
* @return The country code of the regulatory domain.
*
*/
private String countryCode;
/**
* @return The name of the regulatory domain for this network.
*
*/
private String name;
/**
* @return Whether or not the regulatory domain for this network permits Wifi 6E.
*
*/
private Boolean permits6e;
private GetWirelessSettingsItemRegulatoryDomain() {}
/**
* @return The country code of the regulatory domain.
*
*/
public String countryCode() {
return this.countryCode;
}
/**
* @return The name of the regulatory domain for this network.
*
*/
public String name() {
return this.name;
}
/**
* @return Whether or not the regulatory domain for this network permits Wifi 6E.
*
*/
public Boolean permits6e() {
return this.permits6e;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetWirelessSettingsItemRegulatoryDomain defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String countryCode;
private String name;
private Boolean permits6e;
public Builder() {}
public Builder(GetWirelessSettingsItemRegulatoryDomain defaults) {
Objects.requireNonNull(defaults);
this.countryCode = defaults.countryCode;
this.name = defaults.name;
this.permits6e = defaults.permits6e;
}
@CustomType.Setter
public Builder countryCode(String countryCode) {
if (countryCode == null) {
throw new MissingRequiredPropertyException("GetWirelessSettingsItemRegulatoryDomain", "countryCode");
}
this.countryCode = countryCode;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetWirelessSettingsItemRegulatoryDomain", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder permits6e(Boolean permits6e) {
if (permits6e == null) {
throw new MissingRequiredPropertyException("GetWirelessSettingsItemRegulatoryDomain", "permits6e");
}
this.permits6e = permits6e;
return this;
}
public GetWirelessSettingsItemRegulatoryDomain build() {
final var _resultValue = new GetWirelessSettingsItemRegulatoryDomain();
_resultValue.countryCode = countryCode;
_resultValue.name = name;
_resultValue.permits6e = permits6e;
return _resultValue;
}
}
}