Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.network.implementation;
import com.microsoft.azure.SubResource;
import com.microsoft.azure.management.network.VpnConnectionStatus;
import com.microsoft.azure.management.network.VirtualNetworkGatewayConnectionProtocol;
import java.util.List;
import com.microsoft.azure.management.network.IpsecPolicy;
import com.microsoft.azure.management.network.ProvisioningState;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
VpnSiteLinkConnection Resource.
/**
* VpnSiteLinkConnection Resource.
*/
@JsonFlatten
public class VpnSiteLinkConnectionInner extends SubResource {
Id of the connected vpn site link.
/**
* Id of the connected vpn site link.
*/
@JsonProperty(value = "properties.vpnSiteLink")
private SubResource vpnSiteLink;
Routing weight for vpn connection.
/**
* Routing weight for vpn connection.
*/
@JsonProperty(value = "properties.routingWeight")
private Integer routingWeight;
The connection status. Possible values include: 'Unknown', 'Connecting',
'Connected', 'NotConnected'.
/**
* The connection status. Possible values include: 'Unknown', 'Connecting',
* 'Connected', 'NotConnected'.
*/
@JsonProperty(value = "properties.connectionStatus")
private VpnConnectionStatus connectionStatus;
Connection protocol used for this connection. Possible values include:
'IKEv2', 'IKEv1'.
/**
* Connection protocol used for this connection. Possible values include:
* 'IKEv2', 'IKEv1'.
*/
@JsonProperty(value = "properties.vpnConnectionProtocolType")
private VirtualNetworkGatewayConnectionProtocol vpnConnectionProtocolType;
Ingress bytes transferred.
/**
* Ingress bytes transferred.
*/
@JsonProperty(value = "properties.ingressBytesTransferred", access = JsonProperty.Access.WRITE_ONLY)
private Long ingressBytesTransferred;
Egress bytes transferred.
/**
* Egress bytes transferred.
*/
@JsonProperty(value = "properties.egressBytesTransferred", access = JsonProperty.Access.WRITE_ONLY)
private Long egressBytesTransferred;
Expected bandwidth in MBPS.
/**
* Expected bandwidth in MBPS.
*/
@JsonProperty(value = "properties.connectionBandwidth")
private Integer connectionBandwidth;
SharedKey for the vpn connection.
/**
* SharedKey for the vpn connection.
*/
@JsonProperty(value = "properties.sharedKey")
private String sharedKey;
EnableBgp flag.
/**
* EnableBgp flag.
*/
@JsonProperty(value = "properties.enableBgp")
private Boolean enableBgp;
Enable policy-based traffic selectors.
/**
* Enable policy-based traffic selectors.
*/
@JsonProperty(value = "properties.usePolicyBasedTrafficSelectors")
private Boolean usePolicyBasedTrafficSelectors;
The IPSec Policies to be considered by this connection.
/**
* The IPSec Policies to be considered by this connection.
*/
@JsonProperty(value = "properties.ipsecPolicies")
private List<IpsecPolicy> ipsecPolicies;
EnableBgp flag.
/**
* EnableBgp flag.
*/
@JsonProperty(value = "properties.enableRateLimiting")
private Boolean enableRateLimiting;
Use local azure ip to initiate connection.
/**
* Use local azure ip to initiate connection.
*/
@JsonProperty(value = "properties.useLocalAzureIpAddress")
private Boolean useLocalAzureIpAddress;
The provisioning state of the VPN site link connection resource.
Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'.
/**
* The provisioning state of the VPN site link connection resource.
* Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'.
*/
@JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY)
private ProvisioningState provisioningState;
The name of the resource that is unique within a resource group. This
name can be used to access the resource.
/**
* The name of the resource that is unique within a resource group. This
* name can be used to access the resource.
*/
@JsonProperty(value = "name")
private String name;
A unique read-only string that changes whenever the resource is updated.
/**
* A unique read-only string that changes whenever the resource is updated.
*/
@JsonProperty(value = "etag", access = JsonProperty.Access.WRITE_ONLY)
private String etag;
Resource type.
/**
* Resource type.
*/
@JsonProperty(value = "type", access = JsonProperty.Access.WRITE_ONLY)
private String type;
Get id of the connected vpn site link.
Returns: the vpnSiteLink value
/**
* Get id of the connected vpn site link.
*
* @return the vpnSiteLink value
*/
public SubResource vpnSiteLink() {
return this.vpnSiteLink;
}
Set id of the connected vpn site link.
Params: - vpnSiteLink – the vpnSiteLink value to set
Returns: the VpnSiteLinkConnectionInner object itself.
/**
* Set id of the connected vpn site link.
*
* @param vpnSiteLink the vpnSiteLink value to set
* @return the VpnSiteLinkConnectionInner object itself.
*/
public VpnSiteLinkConnectionInner withVpnSiteLink(SubResource vpnSiteLink) {
this.vpnSiteLink = vpnSiteLink;
return this;
}
Get routing weight for vpn connection.
Returns: the routingWeight value
/**
* Get routing weight for vpn connection.
*
* @return the routingWeight value
*/
public Integer routingWeight() {
return this.routingWeight;
}
Set routing weight for vpn connection.
Params: - routingWeight – the routingWeight value to set
Returns: the VpnSiteLinkConnectionInner object itself.
/**
* Set routing weight for vpn connection.
*
* @param routingWeight the routingWeight value to set
* @return the VpnSiteLinkConnectionInner object itself.
*/
public VpnSiteLinkConnectionInner withRoutingWeight(Integer routingWeight) {
this.routingWeight = routingWeight;
return this;
}
Get the connection status. Possible values include: 'Unknown', 'Connecting', 'Connected', 'NotConnected'.
Returns: the connectionStatus value
/**
* Get the connection status. Possible values include: 'Unknown', 'Connecting', 'Connected', 'NotConnected'.
*
* @return the connectionStatus value
*/
public VpnConnectionStatus connectionStatus() {
return this.connectionStatus;
}
Set the connection status. Possible values include: 'Unknown', 'Connecting', 'Connected', 'NotConnected'.
Params: - connectionStatus – the connectionStatus value to set
Returns: the VpnSiteLinkConnectionInner object itself.
/**
* Set the connection status. Possible values include: 'Unknown', 'Connecting', 'Connected', 'NotConnected'.
*
* @param connectionStatus the connectionStatus value to set
* @return the VpnSiteLinkConnectionInner object itself.
*/
public VpnSiteLinkConnectionInner withConnectionStatus(VpnConnectionStatus connectionStatus) {
this.connectionStatus = connectionStatus;
return this;
}
Get connection protocol used for this connection. Possible values include: 'IKEv2', 'IKEv1'.
Returns: the vpnConnectionProtocolType value
/**
* Get connection protocol used for this connection. Possible values include: 'IKEv2', 'IKEv1'.
*
* @return the vpnConnectionProtocolType value
*/
public VirtualNetworkGatewayConnectionProtocol vpnConnectionProtocolType() {
return this.vpnConnectionProtocolType;
}
Set connection protocol used for this connection. Possible values include: 'IKEv2', 'IKEv1'.
Params: - vpnConnectionProtocolType – the vpnConnectionProtocolType value to set
Returns: the VpnSiteLinkConnectionInner object itself.
/**
* Set connection protocol used for this connection. Possible values include: 'IKEv2', 'IKEv1'.
*
* @param vpnConnectionProtocolType the vpnConnectionProtocolType value to set
* @return the VpnSiteLinkConnectionInner object itself.
*/
public VpnSiteLinkConnectionInner withVpnConnectionProtocolType(VirtualNetworkGatewayConnectionProtocol vpnConnectionProtocolType) {
this.vpnConnectionProtocolType = vpnConnectionProtocolType;
return this;
}
Get ingress bytes transferred.
Returns: the ingressBytesTransferred value
/**
* Get ingress bytes transferred.
*
* @return the ingressBytesTransferred value
*/
public Long ingressBytesTransferred() {
return this.ingressBytesTransferred;
}
Get egress bytes transferred.
Returns: the egressBytesTransferred value
/**
* Get egress bytes transferred.
*
* @return the egressBytesTransferred value
*/
public Long egressBytesTransferred() {
return this.egressBytesTransferred;
}
Get expected bandwidth in MBPS.
Returns: the connectionBandwidth value
/**
* Get expected bandwidth in MBPS.
*
* @return the connectionBandwidth value
*/
public Integer connectionBandwidth() {
return this.connectionBandwidth;
}
Set expected bandwidth in MBPS.
Params: - connectionBandwidth – the connectionBandwidth value to set
Returns: the VpnSiteLinkConnectionInner object itself.
/**
* Set expected bandwidth in MBPS.
*
* @param connectionBandwidth the connectionBandwidth value to set
* @return the VpnSiteLinkConnectionInner object itself.
*/
public VpnSiteLinkConnectionInner withConnectionBandwidth(Integer connectionBandwidth) {
this.connectionBandwidth = connectionBandwidth;
return this;
}
Get sharedKey for the vpn connection.
Returns: the sharedKey value
/**
* Get sharedKey for the vpn connection.
*
* @return the sharedKey value
*/
public String sharedKey() {
return this.sharedKey;
}
Set sharedKey for the vpn connection.
Params: - sharedKey – the sharedKey value to set
Returns: the VpnSiteLinkConnectionInner object itself.
/**
* Set sharedKey for the vpn connection.
*
* @param sharedKey the sharedKey value to set
* @return the VpnSiteLinkConnectionInner object itself.
*/
public VpnSiteLinkConnectionInner withSharedKey(String sharedKey) {
this.sharedKey = sharedKey;
return this;
}
Get enableBgp flag.
Returns: the enableBgp value
/**
* Get enableBgp flag.
*
* @return the enableBgp value
*/
public Boolean enableBgp() {
return this.enableBgp;
}
Set enableBgp flag.
Params: - enableBgp – the enableBgp value to set
Returns: the VpnSiteLinkConnectionInner object itself.
/**
* Set enableBgp flag.
*
* @param enableBgp the enableBgp value to set
* @return the VpnSiteLinkConnectionInner object itself.
*/
public VpnSiteLinkConnectionInner withEnableBgp(Boolean enableBgp) {
this.enableBgp = enableBgp;
return this;
}
Get enable policy-based traffic selectors.
Returns: the usePolicyBasedTrafficSelectors value
/**
* Get enable policy-based traffic selectors.
*
* @return the usePolicyBasedTrafficSelectors value
*/
public Boolean usePolicyBasedTrafficSelectors() {
return this.usePolicyBasedTrafficSelectors;
}
Set enable policy-based traffic selectors.
Params: - usePolicyBasedTrafficSelectors – the usePolicyBasedTrafficSelectors value to set
Returns: the VpnSiteLinkConnectionInner object itself.
/**
* Set enable policy-based traffic selectors.
*
* @param usePolicyBasedTrafficSelectors the usePolicyBasedTrafficSelectors value to set
* @return the VpnSiteLinkConnectionInner object itself.
*/
public VpnSiteLinkConnectionInner withUsePolicyBasedTrafficSelectors(Boolean usePolicyBasedTrafficSelectors) {
this.usePolicyBasedTrafficSelectors = usePolicyBasedTrafficSelectors;
return this;
}
Get the IPSec Policies to be considered by this connection.
Returns: the ipsecPolicies value
/**
* Get the IPSec Policies to be considered by this connection.
*
* @return the ipsecPolicies value
*/
public List<IpsecPolicy> ipsecPolicies() {
return this.ipsecPolicies;
}
Set the IPSec Policies to be considered by this connection.
Params: - ipsecPolicies – the ipsecPolicies value to set
Returns: the VpnSiteLinkConnectionInner object itself.
/**
* Set the IPSec Policies to be considered by this connection.
*
* @param ipsecPolicies the ipsecPolicies value to set
* @return the VpnSiteLinkConnectionInner object itself.
*/
public VpnSiteLinkConnectionInner withIpsecPolicies(List<IpsecPolicy> ipsecPolicies) {
this.ipsecPolicies = ipsecPolicies;
return this;
}
Get enableBgp flag.
Returns: the enableRateLimiting value
/**
* Get enableBgp flag.
*
* @return the enableRateLimiting value
*/
public Boolean enableRateLimiting() {
return this.enableRateLimiting;
}
Set enableBgp flag.
Params: - enableRateLimiting – the enableRateLimiting value to set
Returns: the VpnSiteLinkConnectionInner object itself.
/**
* Set enableBgp flag.
*
* @param enableRateLimiting the enableRateLimiting value to set
* @return the VpnSiteLinkConnectionInner object itself.
*/
public VpnSiteLinkConnectionInner withEnableRateLimiting(Boolean enableRateLimiting) {
this.enableRateLimiting = enableRateLimiting;
return this;
}
Get use local azure ip to initiate connection.
Returns: the useLocalAzureIpAddress value
/**
* Get use local azure ip to initiate connection.
*
* @return the useLocalAzureIpAddress value
*/
public Boolean useLocalAzureIpAddress() {
return this.useLocalAzureIpAddress;
}
Set use local azure ip to initiate connection.
Params: - useLocalAzureIpAddress – the useLocalAzureIpAddress value to set
Returns: the VpnSiteLinkConnectionInner object itself.
/**
* Set use local azure ip to initiate connection.
*
* @param useLocalAzureIpAddress the useLocalAzureIpAddress value to set
* @return the VpnSiteLinkConnectionInner object itself.
*/
public VpnSiteLinkConnectionInner withUseLocalAzureIpAddress(Boolean useLocalAzureIpAddress) {
this.useLocalAzureIpAddress = useLocalAzureIpAddress;
return this;
}
Get the provisioning state of the VPN site link connection resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'.
Returns: the provisioningState value
/**
* Get the provisioning state of the VPN site link connection resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'.
*
* @return the provisioningState value
*/
public ProvisioningState provisioningState() {
return this.provisioningState;
}
Get the name of the resource that is unique within a resource group. This name can be used to access the resource.
Returns: the name value
/**
* Get the name of the resource that is unique within a resource group. This name can be used to access the resource.
*
* @return the name value
*/
public String name() {
return this.name;
}
Set the name of the resource that is unique within a resource group. This name can be used to access the resource.
Params: - name – the name value to set
Returns: the VpnSiteLinkConnectionInner object itself.
/**
* Set the name of the resource that is unique within a resource group. This name can be used to access the resource.
*
* @param name the name value to set
* @return the VpnSiteLinkConnectionInner object itself.
*/
public VpnSiteLinkConnectionInner withName(String name) {
this.name = name;
return this;
}
Get a unique read-only string that changes whenever the resource is updated.
Returns: the etag value
/**
* Get a unique read-only string that changes whenever the resource is updated.
*
* @return the etag value
*/
public String etag() {
return this.etag;
}
Get resource type.
Returns: the type value
/**
* Get resource type.
*
* @return the type value
*/
public String type() {
return this.type;
}
}