com.pulumi.mongodbatlas.outputs.GetFederatedSettingsIdentityProvidersResultAssociatedOrgUserConflict Maven / Gradle / Ivy
// *** 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.mongodbatlas.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetFederatedSettingsIdentityProvidersResultAssociatedOrgUserConflict {
/**
* @return Email address of the the user that conflicts with selected domains.
*
*/
private String emailAddress;
/**
* @return Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
*
*/
private String federationSettingsId;
/**
* @return First name of the the user that conflicts with selected domains.
*
*/
private String firstName;
/**
* @return Last name of the the user that conflicts with selected domains.
*
*/
private String lastName;
/**
* @return Name of the Atlas user that conflicts with selected domains.
*
*/
private String userId;
private GetFederatedSettingsIdentityProvidersResultAssociatedOrgUserConflict() {}
/**
* @return Email address of the the user that conflicts with selected domains.
*
*/
public String emailAddress() {
return this.emailAddress;
}
/**
* @return Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
*
*/
public String federationSettingsId() {
return this.federationSettingsId;
}
/**
* @return First name of the the user that conflicts with selected domains.
*
*/
public String firstName() {
return this.firstName;
}
/**
* @return Last name of the the user that conflicts with selected domains.
*
*/
public String lastName() {
return this.lastName;
}
/**
* @return Name of the Atlas user that conflicts with selected domains.
*
*/
public String userId() {
return this.userId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetFederatedSettingsIdentityProvidersResultAssociatedOrgUserConflict defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String emailAddress;
private String federationSettingsId;
private String firstName;
private String lastName;
private String userId;
public Builder() {}
public Builder(GetFederatedSettingsIdentityProvidersResultAssociatedOrgUserConflict defaults) {
Objects.requireNonNull(defaults);
this.emailAddress = defaults.emailAddress;
this.federationSettingsId = defaults.federationSettingsId;
this.firstName = defaults.firstName;
this.lastName = defaults.lastName;
this.userId = defaults.userId;
}
@CustomType.Setter
public Builder emailAddress(String emailAddress) {
if (emailAddress == null) {
throw new MissingRequiredPropertyException("GetFederatedSettingsIdentityProvidersResultAssociatedOrgUserConflict", "emailAddress");
}
this.emailAddress = emailAddress;
return this;
}
@CustomType.Setter
public Builder federationSettingsId(String federationSettingsId) {
if (federationSettingsId == null) {
throw new MissingRequiredPropertyException("GetFederatedSettingsIdentityProvidersResultAssociatedOrgUserConflict", "federationSettingsId");
}
this.federationSettingsId = federationSettingsId;
return this;
}
@CustomType.Setter
public Builder firstName(String firstName) {
if (firstName == null) {
throw new MissingRequiredPropertyException("GetFederatedSettingsIdentityProvidersResultAssociatedOrgUserConflict", "firstName");
}
this.firstName = firstName;
return this;
}
@CustomType.Setter
public Builder lastName(String lastName) {
if (lastName == null) {
throw new MissingRequiredPropertyException("GetFederatedSettingsIdentityProvidersResultAssociatedOrgUserConflict", "lastName");
}
this.lastName = lastName;
return this;
}
@CustomType.Setter
public Builder userId(String userId) {
if (userId == null) {
throw new MissingRequiredPropertyException("GetFederatedSettingsIdentityProvidersResultAssociatedOrgUserConflict", "userId");
}
this.userId = userId;
return this;
}
public GetFederatedSettingsIdentityProvidersResultAssociatedOrgUserConflict build() {
final var _resultValue = new GetFederatedSettingsIdentityProvidersResultAssociatedOrgUserConflict();
_resultValue.emailAddress = emailAddress;
_resultValue.federationSettingsId = federationSettingsId;
_resultValue.firstName = firstName;
_resultValue.lastName = lastName;
_resultValue.userId = userId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy