com.azure.resourcemanager.network.models.BgpSettings 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;
import java.util.List;
/**
* BGP settings details.
*/
@Fluent
public final class BgpSettings {
/*
* 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;
/*
* The weight added to routes learned from this BGP speaker.
*/
@JsonProperty(value = "peerWeight")
private Integer peerWeight;
/*
* BGP peering address with IP configuration ID for virtual network gateway.
*/
@JsonProperty(value = "bgpPeeringAddresses")
private List bgpPeeringAddresses;
/**
* Creates an instance of BgpSettings class.
*/
public BgpSettings() {
}
/**
* 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 BgpSettings object itself.
*/
public BgpSettings 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 BgpSettings object itself.
*/
public BgpSettings withBgpPeeringAddress(String bgpPeeringAddress) {
this.bgpPeeringAddress = bgpPeeringAddress;
return this;
}
/**
* Get the peerWeight property: The weight added to routes learned from this BGP speaker.
*
* @return the peerWeight value.
*/
public Integer peerWeight() {
return this.peerWeight;
}
/**
* Set the peerWeight property: The weight added to routes learned from this BGP speaker.
*
* @param peerWeight the peerWeight value to set.
* @return the BgpSettings object itself.
*/
public BgpSettings withPeerWeight(Integer peerWeight) {
this.peerWeight = peerWeight;
return this;
}
/**
* Get the bgpPeeringAddresses property: BGP peering address with IP configuration ID for virtual network gateway.
*
* @return the bgpPeeringAddresses value.
*/
public List bgpPeeringAddresses() {
return this.bgpPeeringAddresses;
}
/**
* Set the bgpPeeringAddresses property: BGP peering address with IP configuration ID for virtual network gateway.
*
* @param bgpPeeringAddresses the bgpPeeringAddresses value to set.
* @return the BgpSettings object itself.
*/
public BgpSettings withBgpPeeringAddresses(List bgpPeeringAddresses) {
this.bgpPeeringAddresses = bgpPeeringAddresses;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (bgpPeeringAddresses() != null) {
bgpPeeringAddresses().forEach(e -> e.validate());
}
}
}