All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.awsconnector.inputs.KerberosAttributesArgs Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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.azurenative.awsconnector.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Definition of KerberosAttributes
 * 
 */
public final class KerberosAttributesArgs extends com.pulumi.resources.ResourceArgs {

    public static final KerberosAttributesArgs Empty = new KerberosAttributesArgs();

    /**
     * <p>The Active Directory password for <code>ADDomainJoinUser</code>.</p>
     * 
     */
    @Import(name="adDomainJoinPassword")
    private @Nullable Output adDomainJoinPassword;

    /**
     * @return <p>The Active Directory password for <code>ADDomainJoinUser</code>.</p>
     * 
     */
    public Optional> adDomainJoinPassword() {
        return Optional.ofNullable(this.adDomainJoinPassword);
    }

    /**
     * <p>Required only when establishing a cross-realm trust with an Active Directory domain. A user with sufficient privileges to join resources to the domain.</p>
     * 
     */
    @Import(name="adDomainJoinUser")
    private @Nullable Output adDomainJoinUser;

    /**
     * @return <p>Required only when establishing a cross-realm trust with an Active Directory domain. A user with sufficient privileges to join resources to the domain.</p>
     * 
     */
    public Optional> adDomainJoinUser() {
        return Optional.ofNullable(this.adDomainJoinUser);
    }

    /**
     * <p>Required only when establishing a cross-realm trust with a KDC in a different realm. The cross-realm principal password, which must be identical across realms.</p>
     * 
     */
    @Import(name="crossRealmTrustPrincipalPassword")
    private @Nullable Output crossRealmTrustPrincipalPassword;

    /**
     * @return <p>Required only when establishing a cross-realm trust with a KDC in a different realm. The cross-realm principal password, which must be identical across realms.</p>
     * 
     */
    public Optional> crossRealmTrustPrincipalPassword() {
        return Optional.ofNullable(this.crossRealmTrustPrincipalPassword);
    }

    /**
     * <p>The password used within the cluster for the kadmin service on the cluster-dedicated KDC, which maintains Kerberos principals, password policies, and keytabs for the cluster.</p>
     * 
     */
    @Import(name="kdcAdminPassword")
    private @Nullable Output kdcAdminPassword;

    /**
     * @return <p>The password used within the cluster for the kadmin service on the cluster-dedicated KDC, which maintains Kerberos principals, password policies, and keytabs for the cluster.</p>
     * 
     */
    public Optional> kdcAdminPassword() {
        return Optional.ofNullable(this.kdcAdminPassword);
    }

    /**
     * <p>The name of the Kerberos realm to which all nodes in a cluster belong. For example, <code>EC2.INTERNAL</code>. </p>
     * 
     */
    @Import(name="realm")
    private @Nullable Output realm;

    /**
     * @return <p>The name of the Kerberos realm to which all nodes in a cluster belong. For example, <code>EC2.INTERNAL</code>. </p>
     * 
     */
    public Optional> realm() {
        return Optional.ofNullable(this.realm);
    }

    private KerberosAttributesArgs() {}

    private KerberosAttributesArgs(KerberosAttributesArgs $) {
        this.adDomainJoinPassword = $.adDomainJoinPassword;
        this.adDomainJoinUser = $.adDomainJoinUser;
        this.crossRealmTrustPrincipalPassword = $.crossRealmTrustPrincipalPassword;
        this.kdcAdminPassword = $.kdcAdminPassword;
        this.realm = $.realm;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(KerberosAttributesArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private KerberosAttributesArgs $;

        public Builder() {
            $ = new KerberosAttributesArgs();
        }

        public Builder(KerberosAttributesArgs defaults) {
            $ = new KerberosAttributesArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param adDomainJoinPassword <p>The Active Directory password for <code>ADDomainJoinUser</code>.</p>
         * 
         * @return builder
         * 
         */
        public Builder adDomainJoinPassword(@Nullable Output adDomainJoinPassword) {
            $.adDomainJoinPassword = adDomainJoinPassword;
            return this;
        }

        /**
         * @param adDomainJoinPassword <p>The Active Directory password for <code>ADDomainJoinUser</code>.</p>
         * 
         * @return builder
         * 
         */
        public Builder adDomainJoinPassword(String adDomainJoinPassword) {
            return adDomainJoinPassword(Output.of(adDomainJoinPassword));
        }

        /**
         * @param adDomainJoinUser <p>Required only when establishing a cross-realm trust with an Active Directory domain. A user with sufficient privileges to join resources to the domain.</p>
         * 
         * @return builder
         * 
         */
        public Builder adDomainJoinUser(@Nullable Output adDomainJoinUser) {
            $.adDomainJoinUser = adDomainJoinUser;
            return this;
        }

        /**
         * @param adDomainJoinUser <p>Required only when establishing a cross-realm trust with an Active Directory domain. A user with sufficient privileges to join resources to the domain.</p>
         * 
         * @return builder
         * 
         */
        public Builder adDomainJoinUser(String adDomainJoinUser) {
            return adDomainJoinUser(Output.of(adDomainJoinUser));
        }

        /**
         * @param crossRealmTrustPrincipalPassword <p>Required only when establishing a cross-realm trust with a KDC in a different realm. The cross-realm principal password, which must be identical across realms.</p>
         * 
         * @return builder
         * 
         */
        public Builder crossRealmTrustPrincipalPassword(@Nullable Output crossRealmTrustPrincipalPassword) {
            $.crossRealmTrustPrincipalPassword = crossRealmTrustPrincipalPassword;
            return this;
        }

        /**
         * @param crossRealmTrustPrincipalPassword <p>Required only when establishing a cross-realm trust with a KDC in a different realm. The cross-realm principal password, which must be identical across realms.</p>
         * 
         * @return builder
         * 
         */
        public Builder crossRealmTrustPrincipalPassword(String crossRealmTrustPrincipalPassword) {
            return crossRealmTrustPrincipalPassword(Output.of(crossRealmTrustPrincipalPassword));
        }

        /**
         * @param kdcAdminPassword <p>The password used within the cluster for the kadmin service on the cluster-dedicated KDC, which maintains Kerberos principals, password policies, and keytabs for the cluster.</p>
         * 
         * @return builder
         * 
         */
        public Builder kdcAdminPassword(@Nullable Output kdcAdminPassword) {
            $.kdcAdminPassword = kdcAdminPassword;
            return this;
        }

        /**
         * @param kdcAdminPassword <p>The password used within the cluster for the kadmin service on the cluster-dedicated KDC, which maintains Kerberos principals, password policies, and keytabs for the cluster.</p>
         * 
         * @return builder
         * 
         */
        public Builder kdcAdminPassword(String kdcAdminPassword) {
            return kdcAdminPassword(Output.of(kdcAdminPassword));
        }

        /**
         * @param realm <p>The name of the Kerberos realm to which all nodes in a cluster belong. For example, <code>EC2.INTERNAL</code>. </p>
         * 
         * @return builder
         * 
         */
        public Builder realm(@Nullable Output realm) {
            $.realm = realm;
            return this;
        }

        /**
         * @param realm <p>The name of the Kerberos realm to which all nodes in a cluster belong. For example, <code>EC2.INTERNAL</code>. </p>
         * 
         * @return builder
         * 
         */
        public Builder realm(String realm) {
            return realm(Output.of(realm));
        }

        public KerberosAttributesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy