
com.pulumi.azurenative.securityinsights.outputs.FieldMappingResponse Maven / Gradle / Ivy
// *** 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.securityinsights.outputs;
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 FieldMappingResponse {
/**
* @return the column name to be mapped to the identifier
*
*/
private @Nullable String columnName;
/**
* @return the V3 identifier of the entity
*
*/
private @Nullable String identifier;
private FieldMappingResponse() {}
/**
* @return the column name to be mapped to the identifier
*
*/
public Optional columnName() {
return Optional.ofNullable(this.columnName);
}
/**
* @return the V3 identifier of the entity
*
*/
public Optional identifier() {
return Optional.ofNullable(this.identifier);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FieldMappingResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String columnName;
private @Nullable String identifier;
public Builder() {}
public Builder(FieldMappingResponse defaults) {
Objects.requireNonNull(defaults);
this.columnName = defaults.columnName;
this.identifier = defaults.identifier;
}
@CustomType.Setter
public Builder columnName(@Nullable String columnName) {
this.columnName = columnName;
return this;
}
@CustomType.Setter
public Builder identifier(@Nullable String identifier) {
this.identifier = identifier;
return this;
}
public FieldMappingResponse build() {
final var _resultValue = new FieldMappingResponse();
_resultValue.columnName = columnName;
_resultValue.identifier = identifier;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy