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

com.pulumi.azurenative.awsconnector.inputs.AdvancedSecurityOptionsArgs 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.azurenative.awsconnector.inputs;

import com.pulumi.azurenative.awsconnector.inputs.SAMLOptionsOutputArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Definition of AdvancedSecurityOptions
 * 
 */
public final class AdvancedSecurityOptionsArgs extends com.pulumi.resources.ResourceArgs {

    public static final AdvancedSecurityOptionsArgs Empty = new AdvancedSecurityOptionsArgs();

    /**
     * <p>Date and time when the migration period will be disabled. Only necessary when <a href='https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing'>enabling fine-grained access control on an existing domain</a>.</p>
     * 
     */
    @Import(name="anonymousAuthDisableDate")
    private @Nullable Output anonymousAuthDisableDate;

    /**
     * @return <p>Date and time when the migration period will be disabled. Only necessary when <a href='https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing'>enabling fine-grained access control on an existing domain</a>.</p>
     * 
     */
    public Optional> anonymousAuthDisableDate() {
        return Optional.ofNullable(this.anonymousAuthDisableDate);
    }

    /**
     * <p>True if a 30-day migration period is enabled, during which administrators can create role mappings. Only necessary when <a href='https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing'>enabling fine-grained access control on an existing domain</a>.</p>
     * 
     */
    @Import(name="anonymousAuthEnabled")
    private @Nullable Output anonymousAuthEnabled;

    /**
     * @return <p>True if a 30-day migration period is enabled, during which administrators can create role mappings. Only necessary when <a href='https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing'>enabling fine-grained access control on an existing domain</a>.</p>
     * 
     */
    public Optional> anonymousAuthEnabled() {
        return Optional.ofNullable(this.anonymousAuthEnabled);
    }

    /**
     * <p>True if fine-grained access control is enabled.</p>
     * 
     */
    @Import(name="enabled")
    private @Nullable Output enabled;

    /**
     * @return <p>True if fine-grained access control is enabled.</p>
     * 
     */
    public Optional> enabled() {
        return Optional.ofNullable(this.enabled);
    }

    /**
     * <p>True if the internal user database is enabled.</p>
     * 
     */
    @Import(name="internalUserDatabaseEnabled")
    private @Nullable Output internalUserDatabaseEnabled;

    /**
     * @return <p>True if the internal user database is enabled.</p>
     * 
     */
    public Optional> internalUserDatabaseEnabled() {
        return Optional.ofNullable(this.internalUserDatabaseEnabled);
    }

    /**
     * <p>Container for information about the SAML configuration for OpenSearch Dashboards.</p>
     * 
     */
    @Import(name="samlOptions")
    private @Nullable Output samlOptions;

    /**
     * @return <p>Container for information about the SAML configuration for OpenSearch Dashboards.</p>
     * 
     */
    public Optional> samlOptions() {
        return Optional.ofNullable(this.samlOptions);
    }

    private AdvancedSecurityOptionsArgs() {}

    private AdvancedSecurityOptionsArgs(AdvancedSecurityOptionsArgs $) {
        this.anonymousAuthDisableDate = $.anonymousAuthDisableDate;
        this.anonymousAuthEnabled = $.anonymousAuthEnabled;
        this.enabled = $.enabled;
        this.internalUserDatabaseEnabled = $.internalUserDatabaseEnabled;
        this.samlOptions = $.samlOptions;
    }

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

    public static final class Builder {
        private AdvancedSecurityOptionsArgs $;

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

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

        /**
         * @param anonymousAuthDisableDate <p>Date and time when the migration period will be disabled. Only necessary when <a href='https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing'>enabling fine-grained access control on an existing domain</a>.</p>
         * 
         * @return builder
         * 
         */
        public Builder anonymousAuthDisableDate(@Nullable Output anonymousAuthDisableDate) {
            $.anonymousAuthDisableDate = anonymousAuthDisableDate;
            return this;
        }

        /**
         * @param anonymousAuthDisableDate <p>Date and time when the migration period will be disabled. Only necessary when <a href='https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing'>enabling fine-grained access control on an existing domain</a>.</p>
         * 
         * @return builder
         * 
         */
        public Builder anonymousAuthDisableDate(String anonymousAuthDisableDate) {
            return anonymousAuthDisableDate(Output.of(anonymousAuthDisableDate));
        }

        /**
         * @param anonymousAuthEnabled <p>True if a 30-day migration period is enabled, during which administrators can create role mappings. Only necessary when <a href='https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing'>enabling fine-grained access control on an existing domain</a>.</p>
         * 
         * @return builder
         * 
         */
        public Builder anonymousAuthEnabled(@Nullable Output anonymousAuthEnabled) {
            $.anonymousAuthEnabled = anonymousAuthEnabled;
            return this;
        }

        /**
         * @param anonymousAuthEnabled <p>True if a 30-day migration period is enabled, during which administrators can create role mappings. Only necessary when <a href='https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing'>enabling fine-grained access control on an existing domain</a>.</p>
         * 
         * @return builder
         * 
         */
        public Builder anonymousAuthEnabled(Boolean anonymousAuthEnabled) {
            return anonymousAuthEnabled(Output.of(anonymousAuthEnabled));
        }

        /**
         * @param enabled <p>True if fine-grained access control is enabled.</p>
         * 
         * @return builder
         * 
         */
        public Builder enabled(@Nullable Output enabled) {
            $.enabled = enabled;
            return this;
        }

        /**
         * @param enabled <p>True if fine-grained access control is enabled.</p>
         * 
         * @return builder
         * 
         */
        public Builder enabled(Boolean enabled) {
            return enabled(Output.of(enabled));
        }

        /**
         * @param internalUserDatabaseEnabled <p>True if the internal user database is enabled.</p>
         * 
         * @return builder
         * 
         */
        public Builder internalUserDatabaseEnabled(@Nullable Output internalUserDatabaseEnabled) {
            $.internalUserDatabaseEnabled = internalUserDatabaseEnabled;
            return this;
        }

        /**
         * @param internalUserDatabaseEnabled <p>True if the internal user database is enabled.</p>
         * 
         * @return builder
         * 
         */
        public Builder internalUserDatabaseEnabled(Boolean internalUserDatabaseEnabled) {
            return internalUserDatabaseEnabled(Output.of(internalUserDatabaseEnabled));
        }

        /**
         * @param samlOptions <p>Container for information about the SAML configuration for OpenSearch Dashboards.</p>
         * 
         * @return builder
         * 
         */
        public Builder samlOptions(@Nullable Output samlOptions) {
            $.samlOptions = samlOptions;
            return this;
        }

        /**
         * @param samlOptions <p>Container for information about the SAML configuration for OpenSearch Dashboards.</p>
         * 
         * @return builder
         * 
         */
        public Builder samlOptions(SAMLOptionsOutputArgs samlOptions) {
            return samlOptions(Output.of(samlOptions));
        }

        public AdvancedSecurityOptionsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy