
com.pulumi.azurenative.datafactory.outputs.GetExposureControlFeatureValueByFactoryResult 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.datafactory.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetExposureControlFeatureValueByFactoryResult {
/**
* @return The feature name.
*
*/
private String featureName;
/**
* @return The feature value.
*
*/
private String value;
private GetExposureControlFeatureValueByFactoryResult() {}
/**
* @return The feature name.
*
*/
public String featureName() {
return this.featureName;
}
/**
* @return The feature value.
*
*/
public String value() {
return this.value;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetExposureControlFeatureValueByFactoryResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String featureName;
private String value;
public Builder() {}
public Builder(GetExposureControlFeatureValueByFactoryResult defaults) {
Objects.requireNonNull(defaults);
this.featureName = defaults.featureName;
this.value = defaults.value;
}
@CustomType.Setter
public Builder featureName(String featureName) {
if (featureName == null) {
throw new MissingRequiredPropertyException("GetExposureControlFeatureValueByFactoryResult", "featureName");
}
this.featureName = featureName;
return this;
}
@CustomType.Setter
public Builder value(String value) {
if (value == null) {
throw new MissingRequiredPropertyException("GetExposureControlFeatureValueByFactoryResult", "value");
}
this.value = value;
return this;
}
public GetExposureControlFeatureValueByFactoryResult build() {
final var _resultValue = new GetExposureControlFeatureValueByFactoryResult();
_resultValue.featureName = featureName;
_resultValue.value = value;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy