com.azure.resourcemanager.network.models.VpnLinkBgpSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// 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.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* BGP settings details for a link.
*/
@Fluent
public final class VpnLinkBgpSettings {
/*
* The BGP speaker's ASN.
*/
@JsonProperty(value = "asn")
private Long asn;
/*
* The BGP peering address and BGP identifier of this BGP speaker.
*/
@JsonProperty(value = "bgpPeeringAddress")
private String bgpPeeringAddress;
/**
* Creates an instance of VpnLinkBgpSettings class.
*/
public VpnLinkBgpSettings() {
}
/**
* Get the asn property: The BGP speaker's ASN.
*
* @return the asn value.
*/
public Long asn() {
return this.asn;
}
/**
* Set the asn property: The BGP speaker's ASN.
*
* @param asn the asn value to set.
* @return the VpnLinkBgpSettings object itself.
*/
public VpnLinkBgpSettings withAsn(Long asn) {
this.asn = asn;
return this;
}
/**
* Get the bgpPeeringAddress property: The BGP peering address and BGP identifier of this BGP speaker.
*
* @return the bgpPeeringAddress value.
*/
public String bgpPeeringAddress() {
return this.bgpPeeringAddress;
}
/**
* Set the bgpPeeringAddress property: The BGP peering address and BGP identifier of this BGP speaker.
*
* @param bgpPeeringAddress the bgpPeeringAddress value to set.
* @return the VpnLinkBgpSettings object itself.
*/
public VpnLinkBgpSettings withBgpPeeringAddress(String bgpPeeringAddress) {
this.bgpPeeringAddress = bgpPeeringAddress;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}