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