com.pulumi.meraki.networks.outputs.GetSettingsItemSecurePort 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.util.Objects;
@CustomType
public final class GetSettingsItemSecurePort {
/**
* @return Enables / disables SecureConnect on the network. Optional.
*
*/
private Boolean enabled;
private GetSettingsItemSecurePort() {}
/**
* @return Enables / disables SecureConnect on the network. Optional.
*
*/
public Boolean enabled() {
return this.enabled;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetSettingsItemSecurePort defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Boolean enabled;
public Builder() {}
public Builder(GetSettingsItemSecurePort defaults) {
Objects.requireNonNull(defaults);
this.enabled = defaults.enabled;
}
@CustomType.Setter
public Builder enabled(Boolean enabled) {
if (enabled == null) {
throw new MissingRequiredPropertyException("GetSettingsItemSecurePort", "enabled");
}
this.enabled = enabled;
return this;
}
public GetSettingsItemSecurePort build() {
final var _resultValue = new GetSettingsItemSecurePort();
_resultValue.enabled = enabled;
return _resultValue;
}
}
}