com.pulumi.azure.network.outputs.PointToPointVpnGatewayConnectionConfiguration 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.network.outputs;
import com.pulumi.azure.network.outputs.PointToPointVpnGatewayConnectionConfigurationRoute;
import com.pulumi.azure.network.outputs.PointToPointVpnGatewayConnectionConfigurationVpnClientAddressPool;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class PointToPointVpnGatewayConnectionConfiguration {
/**
* @return Should Internet Security be enabled to secure internet traffic? Changing this forces a new resource to be created. Defaults to `false`.
*
*/
private @Nullable Boolean internetSecurityEnabled;
/**
* @return The Name which should be used for this Connection Configuration.
*
*/
private String name;
/**
* @return A `route` block as defined below.
*
*/
private @Nullable PointToPointVpnGatewayConnectionConfigurationRoute route;
/**
* @return A `vpn_client_address_pool` block as defined below.
*
*/
private PointToPointVpnGatewayConnectionConfigurationVpnClientAddressPool vpnClientAddressPool;
private PointToPointVpnGatewayConnectionConfiguration() {}
/**
* @return Should Internet Security be enabled to secure internet traffic? Changing this forces a new resource to be created. Defaults to `false`.
*
*/
public Optional internetSecurityEnabled() {
return Optional.ofNullable(this.internetSecurityEnabled);
}
/**
* @return The Name which should be used for this Connection Configuration.
*
*/
public String name() {
return this.name;
}
/**
* @return A `route` block as defined below.
*
*/
public Optional route() {
return Optional.ofNullable(this.route);
}
/**
* @return A `vpn_client_address_pool` block as defined below.
*
*/
public PointToPointVpnGatewayConnectionConfigurationVpnClientAddressPool vpnClientAddressPool() {
return this.vpnClientAddressPool;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(PointToPointVpnGatewayConnectionConfiguration defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Boolean internetSecurityEnabled;
private String name;
private @Nullable PointToPointVpnGatewayConnectionConfigurationRoute route;
private PointToPointVpnGatewayConnectionConfigurationVpnClientAddressPool vpnClientAddressPool;
public Builder() {}
public Builder(PointToPointVpnGatewayConnectionConfiguration defaults) {
Objects.requireNonNull(defaults);
this.internetSecurityEnabled = defaults.internetSecurityEnabled;
this.name = defaults.name;
this.route = defaults.route;
this.vpnClientAddressPool = defaults.vpnClientAddressPool;
}
@CustomType.Setter
public Builder internetSecurityEnabled(@Nullable Boolean internetSecurityEnabled) {
this.internetSecurityEnabled = internetSecurityEnabled;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("PointToPointVpnGatewayConnectionConfiguration", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder route(@Nullable PointToPointVpnGatewayConnectionConfigurationRoute route) {
this.route = route;
return this;
}
@CustomType.Setter
public Builder vpnClientAddressPool(PointToPointVpnGatewayConnectionConfigurationVpnClientAddressPool vpnClientAddressPool) {
if (vpnClientAddressPool == null) {
throw new MissingRequiredPropertyException("PointToPointVpnGatewayConnectionConfiguration", "vpnClientAddressPool");
}
this.vpnClientAddressPool = vpnClientAddressPool;
return this;
}
public PointToPointVpnGatewayConnectionConfiguration build() {
final var _resultValue = new PointToPointVpnGatewayConnectionConfiguration();
_resultValue.internetSecurityEnabled = internetSecurityEnabled;
_resultValue.name = name;
_resultValue.route = route;
_resultValue.vpnClientAddressPool = vpnClientAddressPool;
return _resultValue;
}
}
}