com.pulumi.meraki.networks.outputs.WirelessSsidsOauth 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.String;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class WirelessSsidsOauth {
/**
* @return (Optional) The list of domains allowed access to the network.
*
*/
private @Nullable List allowedDomains;
private WirelessSsidsOauth() {}
/**
* @return (Optional) The list of domains allowed access to the network.
*
*/
public List allowedDomains() {
return this.allowedDomains == null ? List.of() : this.allowedDomains;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WirelessSsidsOauth defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List allowedDomains;
public Builder() {}
public Builder(WirelessSsidsOauth defaults) {
Objects.requireNonNull(defaults);
this.allowedDomains = defaults.allowedDomains;
}
@CustomType.Setter
public Builder allowedDomains(@Nullable List allowedDomains) {
this.allowedDomains = allowedDomains;
return this;
}
public Builder allowedDomains(String... allowedDomains) {
return allowedDomains(List.of(allowedDomains));
}
public WirelessSsidsOauth build() {
final var _resultValue = new WirelessSsidsOauth();
_resultValue.allowedDomains = allowedDomains;
return _resultValue;
}
}
}