com.pulumi.scm.outputs.GetAuthenticationProfileMethodLdap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scm Show documentation
Show all versions of scm Show documentation
A Pulumi package for managing resources on Strata Cloud Manager.
// *** 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.scm.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetAuthenticationProfileMethodLdap {
/**
* @return The LoginAttribute param.
*
*/
private String loginAttribute;
/**
* @return The PasswdExpDays param.
*
*/
private Integer passwdExpDays;
/**
* @return The ServerProfile param.
*
*/
private String serverProfile;
private GetAuthenticationProfileMethodLdap() {}
/**
* @return The LoginAttribute param.
*
*/
public String loginAttribute() {
return this.loginAttribute;
}
/**
* @return The PasswdExpDays param.
*
*/
public Integer passwdExpDays() {
return this.passwdExpDays;
}
/**
* @return The ServerProfile param.
*
*/
public String serverProfile() {
return this.serverProfile;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAuthenticationProfileMethodLdap defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String loginAttribute;
private Integer passwdExpDays;
private String serverProfile;
public Builder() {}
public Builder(GetAuthenticationProfileMethodLdap defaults) {
Objects.requireNonNull(defaults);
this.loginAttribute = defaults.loginAttribute;
this.passwdExpDays = defaults.passwdExpDays;
this.serverProfile = defaults.serverProfile;
}
@CustomType.Setter
public Builder loginAttribute(String loginAttribute) {
if (loginAttribute == null) {
throw new MissingRequiredPropertyException("GetAuthenticationProfileMethodLdap", "loginAttribute");
}
this.loginAttribute = loginAttribute;
return this;
}
@CustomType.Setter
public Builder passwdExpDays(Integer passwdExpDays) {
if (passwdExpDays == null) {
throw new MissingRequiredPropertyException("GetAuthenticationProfileMethodLdap", "passwdExpDays");
}
this.passwdExpDays = passwdExpDays;
return this;
}
@CustomType.Setter
public Builder serverProfile(String serverProfile) {
if (serverProfile == null) {
throw new MissingRequiredPropertyException("GetAuthenticationProfileMethodLdap", "serverProfile");
}
this.serverProfile = serverProfile;
return this;
}
public GetAuthenticationProfileMethodLdap build() {
final var _resultValue = new GetAuthenticationProfileMethodLdap();
_resultValue.loginAttribute = loginAttribute;
_resultValue.passwdExpDays = passwdExpDays;
_resultValue.serverProfile = serverProfile;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy