com.microsoft.azure.management.network.implementation.Ipv6PeeringConfigImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-network Show documentation
Show all versions of azure-mgmt-network Show documentation
This package contains Microsoft Azure Network Management SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.management.network.implementation;
import com.microsoft.azure.SubResource;
import com.microsoft.azure.management.apigeneration.LangDefinition;
import com.microsoft.azure.management.network.ExpressRouteCircuitPeeringConfig;
import com.microsoft.azure.management.network.ExpressRouteCrossConnectionPeering;
import com.microsoft.azure.management.network.Ipv6ExpressRouteCircuitPeeringConfig;
import com.microsoft.azure.management.network.Ipv6PeeringConfig;
import com.microsoft.azure.management.resources.fluentcore.model.implementation.IndexableWrapperImpl;
import java.util.ArrayList;
import java.util.List;
/**
* Implementation for Ipv6PeeringConfig.
*/
@LangDefinition
class Ipv6PeeringConfigImpl
extends IndexableWrapperImpl
implements
Ipv6PeeringConfig,
Ipv6PeeringConfig.Definition,
Ipv6PeeringConfig.UpdateDefinition,
Ipv6PeeringConfig.Update {
private final ExpressRouteCrossConnectionPeeringImpl parent;
Ipv6PeeringConfigImpl(Ipv6ExpressRouteCircuitPeeringConfig innerObject, ExpressRouteCrossConnectionPeeringImpl parent) {
super(innerObject);
this.parent = parent;
}
@Override
public Ipv6PeeringConfigImpl withAdvertisedPublicPrefixes(List publicPrefixes) {
ensureMicrosoftPeeringConfig().withAdvertisedPublicPrefixes(publicPrefixes);
return this;
}
@Override
public Ipv6PeeringConfigImpl withAdvertisedPublicPrefix(String publicPrefix) {
ExpressRouteCircuitPeeringConfig peeringConfig = ensureMicrosoftPeeringConfig();
if (peeringConfig.advertisedPublicPrefixes() == null) {
peeringConfig.withAdvertisedPublicPrefixes(new ArrayList());
}
peeringConfig.advertisedPublicPrefixes().add(publicPrefix);
return this;
}
@Override
public Ipv6PeeringConfigImpl withPrimaryPeerAddressPrefix(String addressPrefix) {
inner().withPrimaryPeerAddressPrefix(addressPrefix);
return this;
}
@Override
public Ipv6PeeringConfigImpl withSecondaryPeerAddressPrefix(String addressPrefix) {
inner().withSecondaryPeerAddressPrefix(addressPrefix);
return this;
}
@Override
public Ipv6PeeringConfigImpl withCustomerASN(int customerASN) {
ensureMicrosoftPeeringConfig().withCustomerASN(customerASN);
return this;
}
@Override
public Ipv6PeeringConfigImpl withRouteFilter(String routeFilterId) {
inner().withRouteFilter(new SubResource().withId(routeFilterId));
return this;
}
@Override
public Ipv6PeeringConfigImpl withoutRouteFilter() {
inner().withRouteFilter(null);
return this;
}
@Override
public Ipv6PeeringConfigImpl withRoutingRegistryName(String routingRegistryName) {
ensureMicrosoftPeeringConfig().withRoutingRegistryName(routingRegistryName);
return this;
}
private ExpressRouteCircuitPeeringConfig ensureMicrosoftPeeringConfig() {
if (inner().microsoftPeeringConfig() == null) {
inner().withMicrosoftPeeringConfig(new ExpressRouteCircuitPeeringConfig());
}
return inner().microsoftPeeringConfig();
}
@Override
public ExpressRouteCrossConnectionPeeringImpl attach() {
return parent.attachIpv6Config(this);
}
@Override
public ExpressRouteCrossConnectionPeeringImpl parent() {
return parent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy