
com.pulumi.azurenative.machinelearningservices.outputs.ImageLimitSettingsResponse 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.machinelearningservices.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ImageLimitSettingsResponse {
/**
* @return Maximum number of concurrent AutoML iterations.
*
*/
private @Nullable Integer maxConcurrentTrials;
/**
* @return Maximum number of AutoML iterations.
*
*/
private @Nullable Integer maxTrials;
/**
* @return AutoML job timeout.
*
*/
private @Nullable String timeout;
private ImageLimitSettingsResponse() {}
/**
* @return Maximum number of concurrent AutoML iterations.
*
*/
public Optional maxConcurrentTrials() {
return Optional.ofNullable(this.maxConcurrentTrials);
}
/**
* @return Maximum number of AutoML iterations.
*
*/
public Optional maxTrials() {
return Optional.ofNullable(this.maxTrials);
}
/**
* @return AutoML job timeout.
*
*/
public Optional timeout() {
return Optional.ofNullable(this.timeout);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ImageLimitSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer maxConcurrentTrials;
private @Nullable Integer maxTrials;
private @Nullable String timeout;
public Builder() {}
public Builder(ImageLimitSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.maxConcurrentTrials = defaults.maxConcurrentTrials;
this.maxTrials = defaults.maxTrials;
this.timeout = defaults.timeout;
}
@CustomType.Setter
public Builder maxConcurrentTrials(@Nullable Integer maxConcurrentTrials) {
this.maxConcurrentTrials = maxConcurrentTrials;
return this;
}
@CustomType.Setter
public Builder maxTrials(@Nullable Integer maxTrials) {
this.maxTrials = maxTrials;
return this;
}
@CustomType.Setter
public Builder timeout(@Nullable String timeout) {
this.timeout = timeout;
return this;
}
public ImageLimitSettingsResponse build() {
final var _resultValue = new ImageLimitSettingsResponse();
_resultValue.maxConcurrentTrials = maxConcurrentTrials;
_resultValue.maxTrials = maxTrials;
_resultValue.timeout = timeout;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy