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