com.pulumi.azurenative.recommendationsservice.outputs.ModelingResourceResponseProperties 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.recommendationsservice.outputs;
import com.pulumi.azurenative.recommendationsservice.outputs.ModelingInputDataResponse;
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 ModelingResourceResponseProperties {
/**
* @return Modeling features controls the set of supported scenarios\models being computed. This can only be set at Modeling creation.
*
*/
private @Nullable String features;
/**
* @return Modeling frequency controls the modeling compute frequency.
*
*/
private @Nullable String frequency;
/**
* @return The configuration to raw CDM data to be used as Modeling resource input.
*
*/
private @Nullable ModelingInputDataResponse inputData;
/**
* @return The resource provisioning state.
*
*/
private String provisioningState;
/**
* @return Modeling size controls the maximum supported input data size.
*
*/
private @Nullable String size;
private ModelingResourceResponseProperties() {}
/**
* @return Modeling features controls the set of supported scenarios\models being computed. This can only be set at Modeling creation.
*
*/
public Optional features() {
return Optional.ofNullable(this.features);
}
/**
* @return Modeling frequency controls the modeling compute frequency.
*
*/
public Optional frequency() {
return Optional.ofNullable(this.frequency);
}
/**
* @return The configuration to raw CDM data to be used as Modeling resource input.
*
*/
public Optional inputData() {
return Optional.ofNullable(this.inputData);
}
/**
* @return The resource provisioning state.
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return Modeling size controls the maximum supported input data size.
*
*/
public Optional size() {
return Optional.ofNullable(this.size);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ModelingResourceResponseProperties defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String features;
private @Nullable String frequency;
private @Nullable ModelingInputDataResponse inputData;
private String provisioningState;
private @Nullable String size;
public Builder() {}
public Builder(ModelingResourceResponseProperties defaults) {
Objects.requireNonNull(defaults);
this.features = defaults.features;
this.frequency = defaults.frequency;
this.inputData = defaults.inputData;
this.provisioningState = defaults.provisioningState;
this.size = defaults.size;
}
@CustomType.Setter
public Builder features(@Nullable String features) {
this.features = features;
return this;
}
@CustomType.Setter
public Builder frequency(@Nullable String frequency) {
this.frequency = frequency;
return this;
}
@CustomType.Setter
public Builder inputData(@Nullable ModelingInputDataResponse inputData) {
this.inputData = inputData;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("ModelingResourceResponseProperties", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder size(@Nullable String size) {
this.size = size;
return this;
}
public ModelingResourceResponseProperties build() {
final var _resultValue = new ModelingResourceResponseProperties();
_resultValue.features = features;
_resultValue.frequency = frequency;
_resultValue.inputData = inputData;
_resultValue.provisioningState = provisioningState;
_resultValue.size = size;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy