com.pulumi.azurenative.datafactory.outputs.SecureInputOutputPolicyResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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 SecureInputOutputPolicyResponse {
/**
* @return When set to true, Input from activity is considered as secure and will not be logged to monitoring.
*
*/
private @Nullable Boolean secureInput;
/**
* @return When set to true, Output from activity is considered as secure and will not be logged to monitoring.
*
*/
private @Nullable Boolean secureOutput;
private SecureInputOutputPolicyResponse() {}
/**
* @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);
}
/**
* @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);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SecureInputOutputPolicyResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Boolean secureInput;
private @Nullable Boolean secureOutput;
public Builder() {}
public Builder(SecureInputOutputPolicyResponse defaults) {
Objects.requireNonNull(defaults);
this.secureInput = defaults.secureInput;
this.secureOutput = defaults.secureOutput;
}
@CustomType.Setter
public Builder secureInput(@Nullable Boolean secureInput) {
this.secureInput = secureInput;
return this;
}
@CustomType.Setter
public Builder secureOutput(@Nullable Boolean secureOutput) {
this.secureOutput = secureOutput;
return this;
}
public SecureInputOutputPolicyResponse build() {
final var _resultValue = new SecureInputOutputPolicyResponse();
_resultValue.secureInput = secureInput;
_resultValue.secureOutput = secureOutput;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy