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

com.pulumi.ise.identitymanagement.IdentitySourceSequenceArgs 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.ise.identitymanagement;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import com.pulumi.ise.identitymanagement.inputs.IdentitySourceSequenceIdentitySourceArgs;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final IdentitySourceSequenceArgs Empty = new IdentitySourceSequenceArgs();

    /**
     * Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
     * 
     */
    @Import(name="breakOnStoreFail", required=true)
    private Output breakOnStoreFail;

    /**
     * @return Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
     * 
     */
    public Output breakOnStoreFail() {
        return this.breakOnStoreFail;
    }

    /**
     * Certificate Authentication Profile, empty if doesn't exist
     * 
     */
    @Import(name="certificateAuthenticationProfile", required=true)
    private Output certificateAuthenticationProfile;

    /**
     * @return Certificate Authentication Profile, empty if doesn't exist
     * 
     */
    public Output certificateAuthenticationProfile() {
        return this.certificateAuthenticationProfile;
    }

    /**
     * Description
     * 
     */
    @Import(name="description")
    private @Nullable Output description;

    /**
     * @return Description
     * 
     */
    public Optional> description() {
        return Optional.ofNullable(this.description);
    }

    @Import(name="identitySources", required=true)
    private Output> identitySources;

    public Output> identitySources() {
        return this.identitySources;
    }

    /**
     * The name of the identity source sequence
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The name of the identity source sequence
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    private IdentitySourceSequenceArgs() {}

    private IdentitySourceSequenceArgs(IdentitySourceSequenceArgs $) {
        this.breakOnStoreFail = $.breakOnStoreFail;
        this.certificateAuthenticationProfile = $.certificateAuthenticationProfile;
        this.description = $.description;
        this.identitySources = $.identitySources;
        this.name = $.name;
    }

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

    public static final class Builder {
        private IdentitySourceSequenceArgs $;

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

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

        /**
         * @param breakOnStoreFail Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
         * 
         * @return builder
         * 
         */
        public Builder breakOnStoreFail(Output breakOnStoreFail) {
            $.breakOnStoreFail = breakOnStoreFail;
            return this;
        }

        /**
         * @param breakOnStoreFail Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
         * 
         * @return builder
         * 
         */
        public Builder breakOnStoreFail(Boolean breakOnStoreFail) {
            return breakOnStoreFail(Output.of(breakOnStoreFail));
        }

        /**
         * @param certificateAuthenticationProfile Certificate Authentication Profile, empty if doesn't exist
         * 
         * @return builder
         * 
         */
        public Builder certificateAuthenticationProfile(Output certificateAuthenticationProfile) {
            $.certificateAuthenticationProfile = certificateAuthenticationProfile;
            return this;
        }

        /**
         * @param certificateAuthenticationProfile Certificate Authentication Profile, empty if doesn't exist
         * 
         * @return builder
         * 
         */
        public Builder certificateAuthenticationProfile(String certificateAuthenticationProfile) {
            return certificateAuthenticationProfile(Output.of(certificateAuthenticationProfile));
        }

        /**
         * @param description Description
         * 
         * @return builder
         * 
         */
        public Builder description(@Nullable Output description) {
            $.description = description;
            return this;
        }

        /**
         * @param description Description
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

        public Builder identitySources(Output> identitySources) {
            $.identitySources = identitySources;
            return this;
        }

        public Builder identitySources(List identitySources) {
            return identitySources(Output.of(identitySources));
        }

        public Builder identitySources(IdentitySourceSequenceIdentitySourceArgs... identitySources) {
            return identitySources(List.of(identitySources));
        }

        /**
         * @param name The name of the identity source sequence
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The name of the identity source sequence
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        public IdentitySourceSequenceArgs build() {
            if ($.breakOnStoreFail == null) {
                throw new MissingRequiredPropertyException("IdentitySourceSequenceArgs", "breakOnStoreFail");
            }
            if ($.certificateAuthenticationProfile == null) {
                throw new MissingRequiredPropertyException("IdentitySourceSequenceArgs", "certificateAuthenticationProfile");
            }
            if ($.identitySources == null) {
                throw new MissingRequiredPropertyException("IdentitySourceSequenceArgs", "identitySources");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy