
com.pulumi.azurenative.compute.outputs.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsResponse 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.compute.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsResponse {
/**
* @return The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
*
*/
private String domainNameLabel;
private VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsResponse() {}
/**
* @return The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
*
*/
public String domainNameLabel() {
return this.domainNameLabel;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String domainNameLabel;
public Builder() {}
public Builder(VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.domainNameLabel = defaults.domainNameLabel;
}
@CustomType.Setter
public Builder domainNameLabel(String domainNameLabel) {
if (domainNameLabel == null) {
throw new MissingRequiredPropertyException("VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsResponse", "domainNameLabel");
}
this.domainNameLabel = domainNameLabel;
return this;
}
public VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsResponse build() {
final var _resultValue = new VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsResponse();
_resultValue.domainNameLabel = domainNameLabel;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy