
com.pulumi.azurenative.network.inputs.GetPrivateDnsZoneGroupArgs 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.network.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;
public final class GetPrivateDnsZoneGroupArgs extends com.pulumi.resources.InvokeArgs {
public static final GetPrivateDnsZoneGroupArgs Empty = new GetPrivateDnsZoneGroupArgs();
/**
* The name of the private dns zone group.
*
*/
@Import(name="privateDnsZoneGroupName", required=true)
private Output privateDnsZoneGroupName;
/**
* @return The name of the private dns zone group.
*
*/
public Output privateDnsZoneGroupName() {
return this.privateDnsZoneGroupName;
}
/**
* The name of the private endpoint.
*
*/
@Import(name="privateEndpointName", required=true)
private Output privateEndpointName;
/**
* @return The name of the private endpoint.
*
*/
public Output privateEndpointName() {
return this.privateEndpointName;
}
/**
* The name of the resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetPrivateDnsZoneGroupArgs() {}
private GetPrivateDnsZoneGroupArgs(GetPrivateDnsZoneGroupArgs $) {
this.privateDnsZoneGroupName = $.privateDnsZoneGroupName;
this.privateEndpointName = $.privateEndpointName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPrivateDnsZoneGroupArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetPrivateDnsZoneGroupArgs $;
public Builder() {
$ = new GetPrivateDnsZoneGroupArgs();
}
public Builder(GetPrivateDnsZoneGroupArgs defaults) {
$ = new GetPrivateDnsZoneGroupArgs(Objects.requireNonNull(defaults));
}
/**
* @param privateDnsZoneGroupName The name of the private dns zone group.
*
* @return builder
*
*/
public Builder privateDnsZoneGroupName(Output privateDnsZoneGroupName) {
$.privateDnsZoneGroupName = privateDnsZoneGroupName;
return this;
}
/**
* @param privateDnsZoneGroupName The name of the private dns zone group.
*
* @return builder
*
*/
public Builder privateDnsZoneGroupName(String privateDnsZoneGroupName) {
return privateDnsZoneGroupName(Output.of(privateDnsZoneGroupName));
}
/**
* @param privateEndpointName The name of the private endpoint.
*
* @return builder
*
*/
public Builder privateEndpointName(Output privateEndpointName) {
$.privateEndpointName = privateEndpointName;
return this;
}
/**
* @param privateEndpointName The name of the private endpoint.
*
* @return builder
*
*/
public Builder privateEndpointName(String privateEndpointName) {
return privateEndpointName(Output.of(privateEndpointName));
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetPrivateDnsZoneGroupArgs build() {
if ($.privateDnsZoneGroupName == null) {
throw new MissingRequiredPropertyException("GetPrivateDnsZoneGroupArgs", "privateDnsZoneGroupName");
}
if ($.privateEndpointName == null) {
throw new MissingRequiredPropertyException("GetPrivateDnsZoneGroupArgs", "privateEndpointName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetPrivateDnsZoneGroupArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy