com.pulumi.azure.containerservice.outputs.GroupDnsConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.containerservice.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class GroupDnsConfig {
/**
* @return A list of nameservers the containers will search out to resolve requests. Changing this forces a new resource to be created.
*
*/
private List nameservers;
/**
* @return A list of [resolver configuration options](https://man7.org/linux/man-pages/man5/resolv.conf.5.html). Changing this forces a new resource to be created.
*
*/
private @Nullable List options;
/**
* @return A list of search domains that DNS requests will search along. Changing this forces a new resource to be created.
*
*/
private @Nullable List searchDomains;
private GroupDnsConfig() {}
/**
* @return A list of nameservers the containers will search out to resolve requests. Changing this forces a new resource to be created.
*
*/
public List nameservers() {
return this.nameservers;
}
/**
* @return A list of [resolver configuration options](https://man7.org/linux/man-pages/man5/resolv.conf.5.html). Changing this forces a new resource to be created.
*
*/
public List options() {
return this.options == null ? List.of() : this.options;
}
/**
* @return A list of search domains that DNS requests will search along. Changing this forces a new resource to be created.
*
*/
public List searchDomains() {
return this.searchDomains == null ? List.of() : this.searchDomains;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GroupDnsConfig defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List nameservers;
private @Nullable List options;
private @Nullable List searchDomains;
public Builder() {}
public Builder(GroupDnsConfig defaults) {
Objects.requireNonNull(defaults);
this.nameservers = defaults.nameservers;
this.options = defaults.options;
this.searchDomains = defaults.searchDomains;
}
@CustomType.Setter
public Builder nameservers(List nameservers) {
if (nameservers == null) {
throw new MissingRequiredPropertyException("GroupDnsConfig", "nameservers");
}
this.nameservers = nameservers;
return this;
}
public Builder nameservers(String... nameservers) {
return nameservers(List.of(nameservers));
}
@CustomType.Setter
public Builder options(@Nullable List options) {
this.options = options;
return this;
}
public Builder options(String... options) {
return options(List.of(options));
}
@CustomType.Setter
public Builder searchDomains(@Nullable List searchDomains) {
this.searchDomains = searchDomains;
return this;
}
public Builder searchDomains(String... searchDomains) {
return searchDomains(List.of(searchDomains));
}
public GroupDnsConfig build() {
final var _resultValue = new GroupDnsConfig();
_resultValue.nameservers = nameservers;
_resultValue.options = options;
_resultValue.searchDomains = searchDomains;
return _resultValue;
}
}
}