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

com.pulumi.azurenative.datafactory.inputs.SecureInputOutputPolicyArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.azurenative.datafactory.inputs;

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


/**
 * Execution policy for an activity that supports secure input and output.
 * 
 */
public final class SecureInputOutputPolicyArgs extends com.pulumi.resources.ResourceArgs {

    public static final SecureInputOutputPolicyArgs Empty = new SecureInputOutputPolicyArgs();

    /**
     * When set to true, Input from activity is considered as secure and will not be logged to monitoring.
     * 
     */
    @Import(name="secureInput")
    private @Nullable Output secureInput;

    /**
     * @return When set to true, Input from activity is considered as secure and will not be logged to monitoring.
     * 
     */
    public Optional> secureInput() {
        return Optional.ofNullable(this.secureInput);
    }

    /**
     * When set to true, Output from activity is considered as secure and will not be logged to monitoring.
     * 
     */
    @Import(name="secureOutput")
    private @Nullable Output secureOutput;

    /**
     * @return When set to true, Output from activity is considered as secure and will not be logged to monitoring.
     * 
     */
    public Optional> secureOutput() {
        return Optional.ofNullable(this.secureOutput);
    }

    private SecureInputOutputPolicyArgs() {}

    private SecureInputOutputPolicyArgs(SecureInputOutputPolicyArgs $) {
        this.secureInput = $.secureInput;
        this.secureOutput = $.secureOutput;
    }

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

    public static final class Builder {
        private SecureInputOutputPolicyArgs $;

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

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

        /**
         * @param secureInput When set to true, Input from activity is considered as secure and will not be logged to monitoring.
         * 
         * @return builder
         * 
         */
        public Builder secureInput(@Nullable Output secureInput) {
            $.secureInput = secureInput;
            return this;
        }

        /**
         * @param secureInput When set to true, Input from activity is considered as secure and will not be logged to monitoring.
         * 
         * @return builder
         * 
         */
        public Builder secureInput(Boolean secureInput) {
            return secureInput(Output.of(secureInput));
        }

        /**
         * @param secureOutput When set to true, Output from activity is considered as secure and will not be logged to monitoring.
         * 
         * @return builder
         * 
         */
        public Builder secureOutput(@Nullable Output secureOutput) {
            $.secureOutput = secureOutput;
            return this;
        }

        /**
         * @param secureOutput When set to true, Output from activity is considered as secure and will not be logged to monitoring.
         * 
         * @return builder
         * 
         */
        public Builder secureOutput(Boolean secureOutput) {
            return secureOutput(Output.of(secureOutput));
        }

        public SecureInputOutputPolicyArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy