com.pulumi.azurenative.datafactory.outputs.SSISPropertyOverrideResponse 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 com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.Object;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SSISPropertyOverrideResponse {
/**
* @return Whether SSIS package property override value is sensitive data. Value will be encrypted in SSISDB if it is true
*
*/
private @Nullable Boolean isSensitive;
/**
* @return SSIS package property override value. Type: string (or Expression with resultType string).
*
*/
private Object value;
private SSISPropertyOverrideResponse() {}
/**
* @return Whether SSIS package property override value is sensitive data. Value will be encrypted in SSISDB if it is true
*
*/
public Optional isSensitive() {
return Optional.ofNullable(this.isSensitive);
}
/**
* @return SSIS package property override value. Type: string (or Expression with resultType string).
*
*/
public Object value() {
return this.value;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SSISPropertyOverrideResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Boolean isSensitive;
private Object value;
public Builder() {}
public Builder(SSISPropertyOverrideResponse defaults) {
Objects.requireNonNull(defaults);
this.isSensitive = defaults.isSensitive;
this.value = defaults.value;
}
@CustomType.Setter
public Builder isSensitive(@Nullable Boolean isSensitive) {
this.isSensitive = isSensitive;
return this;
}
@CustomType.Setter
public Builder value(Object value) {
if (value == null) {
throw new MissingRequiredPropertyException("SSISPropertyOverrideResponse", "value");
}
this.value = value;
return this;
}
public SSISPropertyOverrideResponse build() {
final var _resultValue = new SSISPropertyOverrideResponse();
_resultValue.isSensitive = isSensitive;
_resultValue.value = value;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy