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

com.pulumi.ise.identitymanagement.inputs.IdentitySourceSequenceState Maven / Gradle / Ivy

Go to download

A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.

There is a newer version: 0.2.0-alpha.1727134725
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.ise.identitymanagement.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
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 IdentitySourceSequenceState extends com.pulumi.resources.ResourceArgs {

    public static final IdentitySourceSequenceState Empty = new IdentitySourceSequenceState();

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

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

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

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

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

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

    @Import(name="identitySources")
    private @Nullable Output> identitySources;

    public Optional>> identitySources() {
        return Optional.ofNullable(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 IdentitySourceSequenceState() {}

    private IdentitySourceSequenceState(IdentitySourceSequenceState $) {
        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(IdentitySourceSequenceState defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private IdentitySourceSequenceState $;

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

        public Builder(IdentitySourceSequenceState defaults) {
            $ = new IdentitySourceSequenceState(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(@Nullable 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(@Nullable 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(@Nullable 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 IdentitySourceSequenceState build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy