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