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

com.pulumi.azurenative.datafactory.outputs.ExecutePipelineActivityPolicyResponse 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.outputs;

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

@CustomType
public final class ExecutePipelineActivityPolicyResponse {
    /**
     * @return When set to true, Input from activity is considered as secure and will not be logged to monitoring.
     * 
     */
    private @Nullable Boolean secureInput;

    private ExecutePipelineActivityPolicyResponse() {}
    /**
     * @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);
    }

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

    public static Builder builder(ExecutePipelineActivityPolicyResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Boolean secureInput;
        public Builder() {}
        public Builder(ExecutePipelineActivityPolicyResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.secureInput = defaults.secureInput;
        }

        @CustomType.Setter
        public Builder secureInput(@Nullable Boolean secureInput) {

            this.secureInput = secureInput;
            return this;
        }
        public ExecutePipelineActivityPolicyResponse build() {
            final var _resultValue = new ExecutePipelineActivityPolicyResponse();
            _resultValue.secureInput = secureInput;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy