
com.pulumi.azurenative.healthcareapis.outputs.AnalyticsConnectorDataLakeDataDestinationResponse 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.healthcareapis.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AnalyticsConnectorDataLakeDataDestinationResponse {
/**
* @return The name for the Data Lake.
*
*/
private String dataLakeName;
/**
* @return Name of data destination.
*
*/
private @Nullable String name;
/**
* @return Type of data destination.
* Expected value is 'datalake'.
*
*/
private String type;
private AnalyticsConnectorDataLakeDataDestinationResponse() {}
/**
* @return The name for the Data Lake.
*
*/
public String dataLakeName() {
return this.dataLakeName;
}
/**
* @return Name of data destination.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* @return Type of data destination.
* Expected value is 'datalake'.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AnalyticsConnectorDataLakeDataDestinationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String dataLakeName;
private @Nullable String name;
private String type;
public Builder() {}
public Builder(AnalyticsConnectorDataLakeDataDestinationResponse defaults) {
Objects.requireNonNull(defaults);
this.dataLakeName = defaults.dataLakeName;
this.name = defaults.name;
this.type = defaults.type;
}
@CustomType.Setter
public Builder dataLakeName(String dataLakeName) {
if (dataLakeName == null) {
throw new MissingRequiredPropertyException("AnalyticsConnectorDataLakeDataDestinationResponse", "dataLakeName");
}
this.dataLakeName = dataLakeName;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("AnalyticsConnectorDataLakeDataDestinationResponse", "type");
}
this.type = type;
return this;
}
public AnalyticsConnectorDataLakeDataDestinationResponse build() {
final var _resultValue = new AnalyticsConnectorDataLakeDataDestinationResponse();
_resultValue.dataLakeName = dataLakeName;
_resultValue.name = name;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy