com.pulumi.azure.network.inputs.VpnGatewayConnectionVpnLinkCustomBgpAddressArgs 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.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 VpnGatewayConnectionVpnLinkCustomBgpAddressArgs extends com.pulumi.resources.ResourceArgs {
public static final VpnGatewayConnectionVpnLinkCustomBgpAddressArgs Empty = new VpnGatewayConnectionVpnLinkCustomBgpAddressArgs();
/**
* The custom bgp ip address which belongs to the IP Configuration.
*
*/
@Import(name="ipAddress", required=true)
private Output ipAddress;
/**
* @return The custom bgp ip address which belongs to the IP Configuration.
*
*/
public Output ipAddress() {
return this.ipAddress;
}
/**
* The ID of the IP Configuration which belongs to the VPN Gateway.
*
*/
@Import(name="ipConfigurationId", required=true)
private Output ipConfigurationId;
/**
* @return The ID of the IP Configuration which belongs to the VPN Gateway.
*
*/
public Output ipConfigurationId() {
return this.ipConfigurationId;
}
private VpnGatewayConnectionVpnLinkCustomBgpAddressArgs() {}
private VpnGatewayConnectionVpnLinkCustomBgpAddressArgs(VpnGatewayConnectionVpnLinkCustomBgpAddressArgs $) {
this.ipAddress = $.ipAddress;
this.ipConfigurationId = $.ipConfigurationId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VpnGatewayConnectionVpnLinkCustomBgpAddressArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private VpnGatewayConnectionVpnLinkCustomBgpAddressArgs $;
public Builder() {
$ = new VpnGatewayConnectionVpnLinkCustomBgpAddressArgs();
}
public Builder(VpnGatewayConnectionVpnLinkCustomBgpAddressArgs defaults) {
$ = new VpnGatewayConnectionVpnLinkCustomBgpAddressArgs(Objects.requireNonNull(defaults));
}
/**
* @param ipAddress The custom bgp ip address which belongs to the IP Configuration.
*
* @return builder
*
*/
public Builder ipAddress(Output ipAddress) {
$.ipAddress = ipAddress;
return this;
}
/**
* @param ipAddress The custom bgp ip address which belongs to the IP Configuration.
*
* @return builder
*
*/
public Builder ipAddress(String ipAddress) {
return ipAddress(Output.of(ipAddress));
}
/**
* @param ipConfigurationId The ID of the IP Configuration which belongs to the VPN Gateway.
*
* @return builder
*
*/
public Builder ipConfigurationId(Output ipConfigurationId) {
$.ipConfigurationId = ipConfigurationId;
return this;
}
/**
* @param ipConfigurationId The ID of the IP Configuration which belongs to the VPN Gateway.
*
* @return builder
*
*/
public Builder ipConfigurationId(String ipConfigurationId) {
return ipConfigurationId(Output.of(ipConfigurationId));
}
public VpnGatewayConnectionVpnLinkCustomBgpAddressArgs build() {
if ($.ipAddress == null) {
throw new MissingRequiredPropertyException("VpnGatewayConnectionVpnLinkCustomBgpAddressArgs", "ipAddress");
}
if ($.ipConfigurationId == null) {
throw new MissingRequiredPropertyException("VpnGatewayConnectionVpnLinkCustomBgpAddressArgs", "ipConfigurationId");
}
return $;
}
}
}