
com.pulumi.azurenative.migrate.outputs.SolutionDetailsResponse 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.migrate.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SolutionDetailsResponse {
/**
* @return Gets or sets the count of assessments reported by the solution.
*
*/
private @Nullable Integer assessmentCount;
/**
* @return Gets or sets the extended details reported by the solution.
*
*/
private @Nullable Map extendedDetails;
/**
* @return Gets or sets the count of groups reported by the solution.
*
*/
private @Nullable Integer groupCount;
private SolutionDetailsResponse() {}
/**
* @return Gets or sets the count of assessments reported by the solution.
*
*/
public Optional assessmentCount() {
return Optional.ofNullable(this.assessmentCount);
}
/**
* @return Gets or sets the extended details reported by the solution.
*
*/
public Map extendedDetails() {
return this.extendedDetails == null ? Map.of() : this.extendedDetails;
}
/**
* @return Gets or sets the count of groups reported by the solution.
*
*/
public Optional groupCount() {
return Optional.ofNullable(this.groupCount);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SolutionDetailsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer assessmentCount;
private @Nullable Map extendedDetails;
private @Nullable Integer groupCount;
public Builder() {}
public Builder(SolutionDetailsResponse defaults) {
Objects.requireNonNull(defaults);
this.assessmentCount = defaults.assessmentCount;
this.extendedDetails = defaults.extendedDetails;
this.groupCount = defaults.groupCount;
}
@CustomType.Setter
public Builder assessmentCount(@Nullable Integer assessmentCount) {
this.assessmentCount = assessmentCount;
return this;
}
@CustomType.Setter
public Builder extendedDetails(@Nullable Map extendedDetails) {
this.extendedDetails = extendedDetails;
return this;
}
@CustomType.Setter
public Builder groupCount(@Nullable Integer groupCount) {
this.groupCount = groupCount;
return this;
}
public SolutionDetailsResponse build() {
final var _resultValue = new SolutionDetailsResponse();
_resultValue.assessmentCount = assessmentCount;
_resultValue.extendedDetails = extendedDetails;
_resultValue.groupCount = groupCount;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy