VirtualNetworkGatewayInner.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.annotation.JsonFlatten;
import com.azure.core.management.Resource;
import com.azure.core.management.SubResource;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.network.models.AddressSpace;
import com.azure.resourcemanager.network.models.BgpSettings;
import com.azure.resourcemanager.network.models.ProvisioningState;
import com.azure.resourcemanager.network.models.VirtualNetworkGatewaySku;
import com.azure.resourcemanager.network.models.VirtualNetworkGatewayType;
import com.azure.resourcemanager.network.models.VpnClientConfiguration;
import com.azure.resourcemanager.network.models.VpnGatewayGeneration;
import com.azure.resourcemanager.network.models.VpnType;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** A common class for general resource information. */
@JsonFlatten
@Fluent
public class VirtualNetworkGatewayInner extends Resource {
@JsonIgnore private final ClientLogger logger = new ClientLogger(VirtualNetworkGatewayInner.class);
/*
* A unique read-only string that changes whenever the resource is updated.
*/
@JsonProperty(value = "etag", access = JsonProperty.Access.WRITE_ONLY)
private String etag;
/*
* IP configurations for virtual network gateway.
*/
@JsonProperty(value = "properties.ipConfigurations")
private List<VirtualNetworkGatewayIpConfigurationInner> ipConfigurations;
/*
* The type of this virtual network gateway.
*/
@JsonProperty(value = "properties.gatewayType")
private VirtualNetworkGatewayType gatewayType;
/*
* The type of this virtual network gateway.
*/
@JsonProperty(value = "properties.vpnType")
private VpnType vpnType;
/*
* The generation for this VirtualNetworkGateway. Must be None if
* gatewayType is not VPN.
*/
@JsonProperty(value = "properties.vpnGatewayGeneration")
private VpnGatewayGeneration vpnGatewayGeneration;
/*
* Whether BGP is enabled for this virtual network gateway or not.
*/
@JsonProperty(value = "properties.enableBgp")
private Boolean enableBgp;
/*
* Whether private IP needs to be enabled on this gateway for connections
* or not.
*/
@JsonProperty(value = "properties.enablePrivateIpAddress")
private Boolean enablePrivateIpAddress;
/*
* ActiveActive flag.
*/
@JsonProperty(value = "properties.activeActive")
private Boolean active;
/*
* The reference to the LocalNetworkGateway resource which represents local
* network site having default routes. Assign Null value in case of
* removing existing default site setting.
*/
@JsonProperty(value = "properties.gatewayDefaultSite")
private SubResource gatewayDefaultSite;
/*
* The reference to the VirtualNetworkGatewaySku resource which represents
* the SKU selected for Virtual network gateway.
*/
@JsonProperty(value = "properties.sku")
private VirtualNetworkGatewaySku sku;
/*
* The reference to the VpnClientConfiguration resource which represents
* the P2S VpnClient configurations.
*/
@JsonProperty(value = "properties.vpnClientConfiguration")
private VpnClientConfiguration vpnClientConfiguration;
/*
* Virtual network gateway's BGP speaker settings.
*/
@JsonProperty(value = "properties.bgpSettings")
private BgpSettings bgpSettings;
/*
* The reference to the address space resource which represents the custom
* routes address space specified by the customer for virtual network
* gateway and VpnClient.
*/
@JsonProperty(value = "properties.customRoutes")
private AddressSpace customRoutes;
/*
* The resource GUID property of the virtual network gateway resource.
*/
@JsonProperty(value = "properties.resourceGuid", access = JsonProperty.Access.WRITE_ONLY)
private String resourceGuid;
/*
* The provisioning state of the virtual network gateway resource.
*/
@JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY)
private ProvisioningState provisioningState;
/*
* Whether dns forwarding is enabled or not.
*/
@JsonProperty(value = "properties.enableDnsForwarding")
private Boolean enableDnsForwarding;
/*
* The IP address allocated by the gateway to which dns requests can be
* sent.
*/
@JsonProperty(value = "properties.inboundDnsForwardingEndpoint", access = JsonProperty.Access.WRITE_ONLY)
private String inboundDnsForwardingEndpoint;
/*
* Resource ID.
*/
@JsonProperty(value = "id")
private String id;
/**
* Get the etag property: A unique read-only string that changes whenever the resource is updated.
*
* @return the etag value.
*/
public String etag() {
return this.etag;
}
/**
* Get the ipConfigurations property: IP configurations for virtual network gateway.
*
* @return the ipConfigurations value.
*/
public List<VirtualNetworkGatewayIpConfigurationInner> ipConfigurations() {
return this.ipConfigurations;
}
/**
* Set the ipConfigurations property: IP configurations for virtual network gateway.
*
* @param ipConfigurations the ipConfigurations value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withIpConfigurations(
List<VirtualNetworkGatewayIpConfigurationInner> ipConfigurations) {
this.ipConfigurations = ipConfigurations;
return this;
}
/**
* Get the gatewayType property: The type of this virtual network gateway.
*
* @return the gatewayType value.
*/
public VirtualNetworkGatewayType gatewayType() {
return this.gatewayType;
}
/**
* Set the gatewayType property: The type of this virtual network gateway.
*
* @param gatewayType the gatewayType value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withGatewayType(VirtualNetworkGatewayType gatewayType) {
this.gatewayType = gatewayType;
return this;
}
/**
* Get the vpnType property: The type of this virtual network gateway.
*
* @return the vpnType value.
*/
public VpnType vpnType() {
return this.vpnType;
}
/**
* Set the vpnType property: The type of this virtual network gateway.
*
* @param vpnType the vpnType value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withVpnType(VpnType vpnType) {
this.vpnType = vpnType;
return this;
}
/**
* Get the vpnGatewayGeneration property: The generation for this VirtualNetworkGateway. Must be None if gatewayType
* is not VPN.
*
* @return the vpnGatewayGeneration value.
*/
public VpnGatewayGeneration vpnGatewayGeneration() {
return this.vpnGatewayGeneration;
}
/**
* Set the vpnGatewayGeneration property: The generation for this VirtualNetworkGateway. Must be None if gatewayType
* is not VPN.
*
* @param vpnGatewayGeneration the vpnGatewayGeneration value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withVpnGatewayGeneration(VpnGatewayGeneration vpnGatewayGeneration) {
this.vpnGatewayGeneration = vpnGatewayGeneration;
return this;
}
/**
* Get the enableBgp property: Whether BGP is enabled for this virtual network gateway or not.
*
* @return the enableBgp value.
*/
public Boolean enableBgp() {
return this.enableBgp;
}
/**
* Set the enableBgp property: Whether BGP is enabled for this virtual network gateway or not.
*
* @param enableBgp the enableBgp value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withEnableBgp(Boolean enableBgp) {
this.enableBgp = enableBgp;
return this;
}
/**
* Get the enablePrivateIpAddress property: Whether private IP needs to be enabled on this gateway for connections
* or not.
*
* @return the enablePrivateIpAddress value.
*/
public Boolean enablePrivateIpAddress() {
return this.enablePrivateIpAddress;
}
/**
* Set the enablePrivateIpAddress property: Whether private IP needs to be enabled on this gateway for connections
* or not.
*
* @param enablePrivateIpAddress the enablePrivateIpAddress value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withEnablePrivateIpAddress(Boolean enablePrivateIpAddress) {
this.enablePrivateIpAddress = enablePrivateIpAddress;
return this;
}
/**
* Get the active property: ActiveActive flag.
*
* @return the active value.
*/
public Boolean active() {
return this.active;
}
/**
* Set the active property: ActiveActive flag.
*
* @param active the active value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withActive(Boolean active) {
this.active = active;
return this;
}
/**
* Get the gatewayDefaultSite property: The reference to the LocalNetworkGateway resource which represents local
* network site having default routes. Assign Null value in case of removing existing default site setting.
*
* @return the gatewayDefaultSite value.
*/
public SubResource gatewayDefaultSite() {
return this.gatewayDefaultSite;
}
/**
* Set the gatewayDefaultSite property: The reference to the LocalNetworkGateway resource which represents local
* network site having default routes. Assign Null value in case of removing existing default site setting.
*
* @param gatewayDefaultSite the gatewayDefaultSite value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withGatewayDefaultSite(SubResource gatewayDefaultSite) {
this.gatewayDefaultSite = gatewayDefaultSite;
return this;
}
/**
* Get the sku property: The reference to the VirtualNetworkGatewaySku resource which represents the SKU selected
* for Virtual network gateway.
*
* @return the sku value.
*/
public VirtualNetworkGatewaySku sku() {
return this.sku;
}
/**
* Set the sku property: The reference to the VirtualNetworkGatewaySku resource which represents the SKU selected
* for Virtual network gateway.
*
* @param sku the sku value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withSku(VirtualNetworkGatewaySku sku) {
this.sku = sku;
return this;
}
/**
* Get the vpnClientConfiguration property: The reference to the VpnClientConfiguration resource which represents
* the P2S VpnClient configurations.
*
* @return the vpnClientConfiguration value.
*/
public VpnClientConfiguration vpnClientConfiguration() {
return this.vpnClientConfiguration;
}
/**
* Set the vpnClientConfiguration property: The reference to the VpnClientConfiguration resource which represents
* the P2S VpnClient configurations.
*
* @param vpnClientConfiguration the vpnClientConfiguration value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withVpnClientConfiguration(VpnClientConfiguration vpnClientConfiguration) {
this.vpnClientConfiguration = vpnClientConfiguration;
return this;
}
/**
* Get the bgpSettings property: Virtual network gateway's BGP speaker settings.
*
* @return the bgpSettings value.
*/
public BgpSettings bgpSettings() {
return this.bgpSettings;
}
/**
* Set the bgpSettings property: Virtual network gateway's BGP speaker settings.
*
* @param bgpSettings the bgpSettings value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withBgpSettings(BgpSettings bgpSettings) {
this.bgpSettings = bgpSettings;
return this;
}
/**
* Get the customRoutes property: The reference to the address space resource which represents the custom routes
* address space specified by the customer for virtual network gateway and VpnClient.
*
* @return the customRoutes value.
*/
public AddressSpace customRoutes() {
return this.customRoutes;
}
/**
* Set the customRoutes property: The reference to the address space resource which represents the custom routes
* address space specified by the customer for virtual network gateway and VpnClient.
*
* @param customRoutes the customRoutes value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withCustomRoutes(AddressSpace customRoutes) {
this.customRoutes = customRoutes;
return this;
}
/**
* Get the resourceGuid property: The resource GUID property of the virtual network gateway resource.
*
* @return the resourceGuid value.
*/
public String resourceGuid() {
return this.resourceGuid;
}
/**
* Get the provisioningState property: The provisioning state of the virtual network gateway resource.
*
* @return the provisioningState value.
*/
public ProvisioningState provisioningState() {
return this.provisioningState;
}
/**
* Get the enableDnsForwarding property: Whether dns forwarding is enabled or not.
*
* @return the enableDnsForwarding value.
*/
public Boolean enableDnsForwarding() {
return this.enableDnsForwarding;
}
/**
* Set the enableDnsForwarding property: Whether dns forwarding is enabled or not.
*
* @param enableDnsForwarding the enableDnsForwarding value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withEnableDnsForwarding(Boolean enableDnsForwarding) {
this.enableDnsForwarding = enableDnsForwarding;
return this;
}
/**
* Get the inboundDnsForwardingEndpoint property: The IP address allocated by the gateway to which dns requests can
* be sent.
*
* @return the inboundDnsForwardingEndpoint value.
*/
public String inboundDnsForwardingEndpoint() {
return this.inboundDnsForwardingEndpoint;
}
/**
* Get the id property: Resource ID.
*
* @return the id value.
*/
public String id() {
return this.id;
}
/**
* Set the id property: Resource ID.
*
* @param id the id value to set.
* @return the VirtualNetworkGatewayInner object itself.
*/
public VirtualNetworkGatewayInner withId(String id) {
this.id = id;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (ipConfigurations() != null) {
ipConfigurations().forEach(e -> e.validate());
}
if (sku() != null) {
sku().validate();
}
if (vpnClientConfiguration() != null) {
vpnClientConfiguration().validate();
}
if (bgpSettings() != null) {
bgpSettings().validate();
}
if (customRoutes() != null) {
customRoutes().validate();
}
}
}