com.pulumi.meraki.networks.outputs.GetCameraWirelessProfilesItemSsid 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.String;
import java.util.Objects;
@CustomType
public final class GetCameraWirelessProfilesItemSsid {
private String authMode;
private String encryptionMode;
private String name;
private GetCameraWirelessProfilesItemSsid() {}
public String authMode() {
return this.authMode;
}
public String encryptionMode() {
return this.encryptionMode;
}
public String name() {
return this.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetCameraWirelessProfilesItemSsid defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String authMode;
private String encryptionMode;
private String name;
public Builder() {}
public Builder(GetCameraWirelessProfilesItemSsid defaults) {
Objects.requireNonNull(defaults);
this.authMode = defaults.authMode;
this.encryptionMode = defaults.encryptionMode;
this.name = defaults.name;
}
@CustomType.Setter
public Builder authMode(String authMode) {
if (authMode == null) {
throw new MissingRequiredPropertyException("GetCameraWirelessProfilesItemSsid", "authMode");
}
this.authMode = authMode;
return this;
}
@CustomType.Setter
public Builder encryptionMode(String encryptionMode) {
if (encryptionMode == null) {
throw new MissingRequiredPropertyException("GetCameraWirelessProfilesItemSsid", "encryptionMode");
}
this.encryptionMode = encryptionMode;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetCameraWirelessProfilesItemSsid", "name");
}
this.name = name;
return this;
}
public GetCameraWirelessProfilesItemSsid build() {
final var _resultValue = new GetCameraWirelessProfilesItemSsid();
_resultValue.authMode = authMode;
_resultValue.encryptionMode = encryptionMode;
_resultValue.name = name;
return _resultValue;
}
}
}