
com.pulumi.azurenative.machinelearningservices.outputs.MarketplacePlanResponse 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 com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class MarketplacePlanResponse {
/**
* @return The Offer ID of the Marketplace Plan.
*
*/
private String offerId;
/**
* @return The Plan ID of the Marketplace Plan.
*
*/
private String planId;
/**
* @return The Publisher ID of the Marketplace Plan.
*
*/
private String publisherId;
private MarketplacePlanResponse() {}
/**
* @return The Offer ID of the Marketplace Plan.
*
*/
public String offerId() {
return this.offerId;
}
/**
* @return The Plan ID of the Marketplace Plan.
*
*/
public String planId() {
return this.planId;
}
/**
* @return The Publisher ID of the Marketplace Plan.
*
*/
public String publisherId() {
return this.publisherId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MarketplacePlanResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String offerId;
private String planId;
private String publisherId;
public Builder() {}
public Builder(MarketplacePlanResponse defaults) {
Objects.requireNonNull(defaults);
this.offerId = defaults.offerId;
this.planId = defaults.planId;
this.publisherId = defaults.publisherId;
}
@CustomType.Setter
public Builder offerId(String offerId) {
if (offerId == null) {
throw new MissingRequiredPropertyException("MarketplacePlanResponse", "offerId");
}
this.offerId = offerId;
return this;
}
@CustomType.Setter
public Builder planId(String planId) {
if (planId == null) {
throw new MissingRequiredPropertyException("MarketplacePlanResponse", "planId");
}
this.planId = planId;
return this;
}
@CustomType.Setter
public Builder publisherId(String publisherId) {
if (publisherId == null) {
throw new MissingRequiredPropertyException("MarketplacePlanResponse", "publisherId");
}
this.publisherId = publisherId;
return this;
}
public MarketplacePlanResponse build() {
final var _resultValue = new MarketplacePlanResponse();
_resultValue.offerId = offerId;
_resultValue.planId = planId;
_resultValue.publisherId = publisherId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy