
com.pulumi.azurenative.compute.inputs.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs 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.compute.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* Describes a virtual machines scale sets network configuration's DNS settings.
*
*/
public final class VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs extends com.pulumi.resources.ResourceArgs {
public static final VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs Empty = new VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs();
/**
* 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
*
*/
@Import(name="domainNameLabel", required=true)
private Output domainNameLabel;
/**
* @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 Output domainNameLabel() {
return this.domainNameLabel;
}
private VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs() {}
private VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs(VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs $) {
this.domainNameLabel = $.domainNameLabel;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs $;
public Builder() {
$ = new VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs();
}
public Builder(VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs defaults) {
$ = new VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs(Objects.requireNonNull(defaults));
}
/**
* @param domainNameLabel 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
*
* @return builder
*
*/
public Builder domainNameLabel(Output domainNameLabel) {
$.domainNameLabel = domainNameLabel;
return this;
}
/**
* @param domainNameLabel 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
*
* @return builder
*
*/
public Builder domainNameLabel(String domainNameLabel) {
return domainNameLabel(Output.of(domainNameLabel));
}
public VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs build() {
if ($.domainNameLabel == null) {
throw new MissingRequiredPropertyException("VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs", "domainNameLabel");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy