
com.pulumi.azurenative.network.inputs.GetVirtualNetworkLinkPlainArgs 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.network.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetVirtualNetworkLinkPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetVirtualNetworkLinkPlainArgs Empty = new GetVirtualNetworkLinkPlainArgs();
/**
* The name of the Private DNS zone (without a terminating dot).
*
*/
@Import(name="privateZoneName", required=true)
private String privateZoneName;
/**
* @return The name of the Private DNS zone (without a terminating dot).
*
*/
public String privateZoneName() {
return this.privateZoneName;
}
/**
* The name of the resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name of the virtual network link.
*
*/
@Import(name="virtualNetworkLinkName", required=true)
private String virtualNetworkLinkName;
/**
* @return The name of the virtual network link.
*
*/
public String virtualNetworkLinkName() {
return this.virtualNetworkLinkName;
}
private GetVirtualNetworkLinkPlainArgs() {}
private GetVirtualNetworkLinkPlainArgs(GetVirtualNetworkLinkPlainArgs $) {
this.privateZoneName = $.privateZoneName;
this.resourceGroupName = $.resourceGroupName;
this.virtualNetworkLinkName = $.virtualNetworkLinkName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetVirtualNetworkLinkPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetVirtualNetworkLinkPlainArgs $;
public Builder() {
$ = new GetVirtualNetworkLinkPlainArgs();
}
public Builder(GetVirtualNetworkLinkPlainArgs defaults) {
$ = new GetVirtualNetworkLinkPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param privateZoneName The name of the Private DNS zone (without a terminating dot).
*
* @return builder
*
*/
public Builder privateZoneName(String privateZoneName) {
$.privateZoneName = privateZoneName;
return this;
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param virtualNetworkLinkName The name of the virtual network link.
*
* @return builder
*
*/
public Builder virtualNetworkLinkName(String virtualNetworkLinkName) {
$.virtualNetworkLinkName = virtualNetworkLinkName;
return this;
}
public GetVirtualNetworkLinkPlainArgs build() {
if ($.privateZoneName == null) {
throw new MissingRequiredPropertyException("GetVirtualNetworkLinkPlainArgs", "privateZoneName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetVirtualNetworkLinkPlainArgs", "resourceGroupName");
}
if ($.virtualNetworkLinkName == null) {
throw new MissingRequiredPropertyException("GetVirtualNetworkLinkPlainArgs", "virtualNetworkLinkName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy