com.pulumi.keycloak.ldap.HardcodedAttributeMapperArgs 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.keycloak.ldap;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class HardcodedAttributeMapperArgs extends com.pulumi.resources.ResourceArgs {
public static final HardcodedAttributeMapperArgs Empty = new HardcodedAttributeMapperArgs();
/**
* The name of the LDAP attribute to set.
*
*/
@Import(name="attributeName", required=true)
private Output attributeName;
/**
* @return The name of the LDAP attribute to set.
*
*/
public Output attributeName() {
return this.attributeName;
}
/**
* The value to set to the LDAP attribute. You can hardcode any value like 'foo'.
*
*/
@Import(name="attributeValue", required=true)
private Output attributeValue;
/**
* @return The value to set to the LDAP attribute. You can hardcode any value like 'foo'.
*
*/
public Output attributeValue() {
return this.attributeValue;
}
/**
* The ID of the LDAP user federation provider to attach this mapper to.
*
*/
@Import(name="ldapUserFederationId", required=true)
private Output ldapUserFederationId;
/**
* @return The ID of the LDAP user federation provider to attach this mapper to.
*
*/
public Output ldapUserFederationId() {
return this.ldapUserFederationId;
}
/**
* Display name of this mapper when displayed in the console.
*
*/
@Import(name="name")
private @Nullable Output name;
/**
* @return Display name of this mapper when displayed in the console.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy