com.ovhcloud.pulumi.ovh.Domain.outputs.ZonePlanOptionConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-ovh Show documentation
Show all versions of pulumi-ovh Show documentation
A Pulumi package for creating and managing OVH 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.ovhcloud.pulumi.ovh.Domain.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class ZonePlanOptionConfiguration {
/**
* @return Identifier of the resource
*
*/
private String label;
/**
* @return Path to the resource in API.OVH.COM
*
*/
private String value;
private ZonePlanOptionConfiguration() {}
/**
* @return Identifier of the resource
*
*/
public String label() {
return this.label;
}
/**
* @return Path to the resource in API.OVH.COM
*
*/
public String value() {
return this.value;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ZonePlanOptionConfiguration defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String label;
private String value;
public Builder() {}
public Builder(ZonePlanOptionConfiguration defaults) {
Objects.requireNonNull(defaults);
this.label = defaults.label;
this.value = defaults.value;
}
@CustomType.Setter
public Builder label(String label) {
if (label == null) {
throw new MissingRequiredPropertyException("ZonePlanOptionConfiguration", "label");
}
this.label = label;
return this;
}
@CustomType.Setter
public Builder value(String value) {
if (value == null) {
throw new MissingRequiredPropertyException("ZonePlanOptionConfiguration", "value");
}
this.value = value;
return this;
}
public ZonePlanOptionConfiguration build() {
final var _resultValue = new ZonePlanOptionConfiguration();
_resultValue.label = label;
_resultValue.value = value;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy