
com.pulumi.azurenative.migrate.outputs.ThirdPartyManagementSettingsResponse 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.migrate.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Double;
import java.util.Objects;
@CustomType
public final class ThirdPartyManagementSettingsResponse {
/**
* @return License Cost.
*
*/
private Double licenseCost;
/**
* @return Support Cost.
*
*/
private Double supportCost;
private ThirdPartyManagementSettingsResponse() {}
/**
* @return License Cost.
*
*/
public Double licenseCost() {
return this.licenseCost;
}
/**
* @return Support Cost.
*
*/
public Double supportCost() {
return this.supportCost;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ThirdPartyManagementSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Double licenseCost;
private Double supportCost;
public Builder() {}
public Builder(ThirdPartyManagementSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.licenseCost = defaults.licenseCost;
this.supportCost = defaults.supportCost;
}
@CustomType.Setter
public Builder licenseCost(Double licenseCost) {
if (licenseCost == null) {
throw new MissingRequiredPropertyException("ThirdPartyManagementSettingsResponse", "licenseCost");
}
this.licenseCost = licenseCost;
return this;
}
@CustomType.Setter
public Builder supportCost(Double supportCost) {
if (supportCost == null) {
throw new MissingRequiredPropertyException("ThirdPartyManagementSettingsResponse", "supportCost");
}
this.supportCost = supportCost;
return this;
}
public ThirdPartyManagementSettingsResponse build() {
final var _resultValue = new ThirdPartyManagementSettingsResponse();
_resultValue.licenseCost = licenseCost;
_resultValue.supportCost = supportCost;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy