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

com.pulumi.keycloak.authentication.inputs.BindingsState Maven / Gradle / Ivy

There is a newer version: 5.4.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.keycloak.authentication.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;


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

    public static final BindingsState Empty = new BindingsState();

    /**
     * The alias of the flow to assign to the realm BrowserFlow.
     * 
     */
    @Import(name="browserFlow")
    private @Nullable Output browserFlow;

    /**
     * @return The alias of the flow to assign to the realm BrowserFlow.
     * 
     */
    public Optional> browserFlow() {
        return Optional.ofNullable(this.browserFlow);
    }

    /**
     * The alias of the flow to assign to the realm ClientAuthenticationFlow.
     * 
     */
    @Import(name="clientAuthenticationFlow")
    private @Nullable Output clientAuthenticationFlow;

    /**
     * @return The alias of the flow to assign to the realm ClientAuthenticationFlow.
     * 
     */
    public Optional> clientAuthenticationFlow() {
        return Optional.ofNullable(this.clientAuthenticationFlow);
    }

    /**
     * The alias of the flow to assign to the realm DirectGrantFlow.
     * 
     */
    @Import(name="directGrantFlow")
    private @Nullable Output directGrantFlow;

    /**
     * @return The alias of the flow to assign to the realm DirectGrantFlow.
     * 
     */
    public Optional> directGrantFlow() {
        return Optional.ofNullable(this.directGrantFlow);
    }

    /**
     * The alias of the flow to assign to the realm DockerAuthenticationFlow.
     * 
     */
    @Import(name="dockerAuthenticationFlow")
    private @Nullable Output dockerAuthenticationFlow;

    /**
     * @return The alias of the flow to assign to the realm DockerAuthenticationFlow.
     * 
     */
    public Optional> dockerAuthenticationFlow() {
        return Optional.ofNullable(this.dockerAuthenticationFlow);
    }

    /**
     * The realm the authentication flow binding exists in.
     * 
     */
    @Import(name="realmId")
    private @Nullable Output realmId;

    /**
     * @return The realm the authentication flow binding exists in.
     * 
     */
    public Optional> realmId() {
        return Optional.ofNullable(this.realmId);
    }

    /**
     * The alias of the flow to assign to the realm RegistrationFlow.
     * 
     */
    @Import(name="registrationFlow")
    private @Nullable Output registrationFlow;

    /**
     * @return The alias of the flow to assign to the realm RegistrationFlow.
     * 
     */
    public Optional> registrationFlow() {
        return Optional.ofNullable(this.registrationFlow);
    }

    /**
     * The alias of the flow to assign to the realm ResetCredentialsFlow.
     * 
     */
    @Import(name="resetCredentialsFlow")
    private @Nullable Output resetCredentialsFlow;

    /**
     * @return The alias of the flow to assign to the realm ResetCredentialsFlow.
     * 
     */
    public Optional> resetCredentialsFlow() {
        return Optional.ofNullable(this.resetCredentialsFlow);
    }

    private BindingsState() {}

    private BindingsState(BindingsState $) {
        this.browserFlow = $.browserFlow;
        this.clientAuthenticationFlow = $.clientAuthenticationFlow;
        this.directGrantFlow = $.directGrantFlow;
        this.dockerAuthenticationFlow = $.dockerAuthenticationFlow;
        this.realmId = $.realmId;
        this.registrationFlow = $.registrationFlow;
        this.resetCredentialsFlow = $.resetCredentialsFlow;
    }

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

    public static final class Builder {
        private BindingsState $;

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

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

        /**
         * @param browserFlow The alias of the flow to assign to the realm BrowserFlow.
         * 
         * @return builder
         * 
         */
        public Builder browserFlow(@Nullable Output browserFlow) {
            $.browserFlow = browserFlow;
            return this;
        }

        /**
         * @param browserFlow The alias of the flow to assign to the realm BrowserFlow.
         * 
         * @return builder
         * 
         */
        public Builder browserFlow(String browserFlow) {
            return browserFlow(Output.of(browserFlow));
        }

        /**
         * @param clientAuthenticationFlow The alias of the flow to assign to the realm ClientAuthenticationFlow.
         * 
         * @return builder
         * 
         */
        public Builder clientAuthenticationFlow(@Nullable Output clientAuthenticationFlow) {
            $.clientAuthenticationFlow = clientAuthenticationFlow;
            return this;
        }

        /**
         * @param clientAuthenticationFlow The alias of the flow to assign to the realm ClientAuthenticationFlow.
         * 
         * @return builder
         * 
         */
        public Builder clientAuthenticationFlow(String clientAuthenticationFlow) {
            return clientAuthenticationFlow(Output.of(clientAuthenticationFlow));
        }

        /**
         * @param directGrantFlow The alias of the flow to assign to the realm DirectGrantFlow.
         * 
         * @return builder
         * 
         */
        public Builder directGrantFlow(@Nullable Output directGrantFlow) {
            $.directGrantFlow = directGrantFlow;
            return this;
        }

        /**
         * @param directGrantFlow The alias of the flow to assign to the realm DirectGrantFlow.
         * 
         * @return builder
         * 
         */
        public Builder directGrantFlow(String directGrantFlow) {
            return directGrantFlow(Output.of(directGrantFlow));
        }

        /**
         * @param dockerAuthenticationFlow The alias of the flow to assign to the realm DockerAuthenticationFlow.
         * 
         * @return builder
         * 
         */
        public Builder dockerAuthenticationFlow(@Nullable Output dockerAuthenticationFlow) {
            $.dockerAuthenticationFlow = dockerAuthenticationFlow;
            return this;
        }

        /**
         * @param dockerAuthenticationFlow The alias of the flow to assign to the realm DockerAuthenticationFlow.
         * 
         * @return builder
         * 
         */
        public Builder dockerAuthenticationFlow(String dockerAuthenticationFlow) {
            return dockerAuthenticationFlow(Output.of(dockerAuthenticationFlow));
        }

        /**
         * @param realmId The realm the authentication flow binding exists in.
         * 
         * @return builder
         * 
         */
        public Builder realmId(@Nullable Output realmId) {
            $.realmId = realmId;
            return this;
        }

        /**
         * @param realmId The realm the authentication flow binding exists in.
         * 
         * @return builder
         * 
         */
        public Builder realmId(String realmId) {
            return realmId(Output.of(realmId));
        }

        /**
         * @param registrationFlow The alias of the flow to assign to the realm RegistrationFlow.
         * 
         * @return builder
         * 
         */
        public Builder registrationFlow(@Nullable Output registrationFlow) {
            $.registrationFlow = registrationFlow;
            return this;
        }

        /**
         * @param registrationFlow The alias of the flow to assign to the realm RegistrationFlow.
         * 
         * @return builder
         * 
         */
        public Builder registrationFlow(String registrationFlow) {
            return registrationFlow(Output.of(registrationFlow));
        }

        /**
         * @param resetCredentialsFlow The alias of the flow to assign to the realm ResetCredentialsFlow.
         * 
         * @return builder
         * 
         */
        public Builder resetCredentialsFlow(@Nullable Output resetCredentialsFlow) {
            $.resetCredentialsFlow = resetCredentialsFlow;
            return this;
        }

        /**
         * @param resetCredentialsFlow The alias of the flow to assign to the realm ResetCredentialsFlow.
         * 
         * @return builder
         * 
         */
        public Builder resetCredentialsFlow(String resetCredentialsFlow) {
            return resetCredentialsFlow(Output.of(resetCredentialsFlow));
        }

        public BindingsState build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy