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

com.pulumi.vault.pkiSecret.inputs.BackendConfigEstAuthenticatorsArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing HashiCorp Vault cloud resources.

There is a newer version: 6.5.0-alpha.1732775348
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.vault.pkiSecret.inputs;

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


public final class BackendConfigEstAuthenticatorsArgs extends com.pulumi.resources.ResourceArgs {

    public static final BackendConfigEstAuthenticatorsArgs Empty = new BackendConfigEstAuthenticatorsArgs();

    /**
     * "The accessor (required) and cert_role (optional) properties for cert auth backends".
     * 
     */
    @Import(name="cert")
    private @Nullable Output> cert;

    /**
     * @return "The accessor (required) and cert_role (optional) properties for cert auth backends".
     * 
     */
    public Optional>> cert() {
        return Optional.ofNullable(this.cert);
    }

    /**
     * "The accessor (required) property for user pass auth backends".
     * 
     */
    @Import(name="userpass")
    private @Nullable Output> userpass;

    /**
     * @return "The accessor (required) property for user pass auth backends".
     * 
     */
    public Optional>> userpass() {
        return Optional.ofNullable(this.userpass);
    }

    private BackendConfigEstAuthenticatorsArgs() {}

    private BackendConfigEstAuthenticatorsArgs(BackendConfigEstAuthenticatorsArgs $) {
        this.cert = $.cert;
        this.userpass = $.userpass;
    }

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

    public static final class Builder {
        private BackendConfigEstAuthenticatorsArgs $;

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

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

        /**
         * @param cert "The accessor (required) and cert_role (optional) properties for cert auth backends".
         * 
         * @return builder
         * 
         */
        public Builder cert(@Nullable Output> cert) {
            $.cert = cert;
            return this;
        }

        /**
         * @param cert "The accessor (required) and cert_role (optional) properties for cert auth backends".
         * 
         * @return builder
         * 
         */
        public Builder cert(Map cert) {
            return cert(Output.of(cert));
        }

        /**
         * @param userpass "The accessor (required) property for user pass auth backends".
         * 
         * @return builder
         * 
         */
        public Builder userpass(@Nullable Output> userpass) {
            $.userpass = userpass;
            return this;
        }

        /**
         * @param userpass "The accessor (required) property for user pass auth backends".
         * 
         * @return builder
         * 
         */
        public Builder userpass(Map userpass) {
            return userpass(Output.of(userpass));
        }

        public BackendConfigEstAuthenticatorsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy