
com.pulumi.azurenative.datafactory.outputs.MapperAttributeReferenceResponse 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.azurenative.datafactory.outputs.MapperConnectionReferenceResponse;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class MapperAttributeReferenceResponse {
/**
* @return Name of the table.
*
*/
private @Nullable String entity;
/**
* @return The connection reference for the connection.
*
*/
private @Nullable MapperConnectionReferenceResponse entityConnectionReference;
/**
* @return Name of the column.
*
*/
private @Nullable String name;
private MapperAttributeReferenceResponse() {}
/**
* @return Name of the table.
*
*/
public Optional entity() {
return Optional.ofNullable(this.entity);
}
/**
* @return The connection reference for the connection.
*
*/
public Optional entityConnectionReference() {
return Optional.ofNullable(this.entityConnectionReference);
}
/**
* @return Name of the column.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MapperAttributeReferenceResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String entity;
private @Nullable MapperConnectionReferenceResponse entityConnectionReference;
private @Nullable String name;
public Builder() {}
public Builder(MapperAttributeReferenceResponse defaults) {
Objects.requireNonNull(defaults);
this.entity = defaults.entity;
this.entityConnectionReference = defaults.entityConnectionReference;
this.name = defaults.name;
}
@CustomType.Setter
public Builder entity(@Nullable String entity) {
this.entity = entity;
return this;
}
@CustomType.Setter
public Builder entityConnectionReference(@Nullable MapperConnectionReferenceResponse entityConnectionReference) {
this.entityConnectionReference = entityConnectionReference;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
public MapperAttributeReferenceResponse build() {
final var _resultValue = new MapperAttributeReferenceResponse();
_resultValue.entity = entity;
_resultValue.entityConnectionReference = entityConnectionReference;
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy