All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.network.fluent.models.VirtualHubProperties Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

The newest version!
// 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.management.SubResource;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.network.models.HubRoutingPreference;
import com.azure.resourcemanager.network.models.PreferredRoutingGateway;
import com.azure.resourcemanager.network.models.ProvisioningState;
import com.azure.resourcemanager.network.models.RoutingState;
import com.azure.resourcemanager.network.models.VirtualHubRouteTable;
import com.azure.resourcemanager.network.models.VirtualRouterAutoScaleConfiguration;
import java.io.IOException;
import java.util.List;

/**
 * Parameters for VirtualHub.
 */
@Fluent
public final class VirtualHubProperties implements JsonSerializable {
    /*
     * The VirtualWAN to which the VirtualHub belongs.
     */
    private SubResource virtualWan;

    /*
     * The VpnGateway associated with this VirtualHub.
     */
    private SubResource vpnGateway;

    /*
     * The P2SVpnGateway associated with this VirtualHub.
     */
    private SubResource p2SVpnGateway;

    /*
     * The expressRouteGateway associated with this VirtualHub.
     */
    private SubResource expressRouteGateway;

    /*
     * The azureFirewall associated with this VirtualHub.
     */
    private SubResource azureFirewall;

    /*
     * The securityPartnerProvider associated with this VirtualHub.
     */
    private SubResource securityPartnerProvider;

    /*
     * Address-prefix for this VirtualHub.
     */
    private String addressPrefix;

    /*
     * The routeTable associated with this virtual hub.
     */
    private VirtualHubRouteTable routeTable;

    /*
     * The provisioning state of the virtual hub resource.
     */
    private ProvisioningState provisioningState;

    /*
     * The Security Provider name.
     */
    private String securityProviderName;

    /*
     * List of all virtual hub route table v2s associated with this VirtualHub.
     */
    private List virtualHubRouteTableV2S;

    /*
     * The sku of this VirtualHub.
     */
    private String sku;

    /*
     * The routing state.
     */
    private RoutingState routingState;

    /*
     * List of references to Bgp Connections.
     */
    private List bgpConnections;

    /*
     * List of references to IpConfigurations.
     */
    private List ipConfigurations;

    /*
     * List of references to RouteMaps.
     */
    private List routeMaps;

    /*
     * VirtualRouter ASN.
     */
    private Long virtualRouterAsn;

    /*
     * VirtualRouter IPs.
     */
    private List virtualRouterIps;

    /*
     * Flag to control transit for VirtualRouter hub.
     */
    private Boolean allowBranchToBranchTraffic;

    /*
     * The preferred gateway to route on-prem traffic
     */
    private PreferredRoutingGateway preferredRoutingGateway;

    /*
     * The hubRoutingPreference of this VirtualHub.
     */
    private HubRoutingPreference hubRoutingPreference;

    /*
     * The VirtualHub Router autoscale configuration.
     */
    private VirtualRouterAutoScaleConfiguration virtualRouterAutoScaleConfiguration;

    /**
     * Creates an instance of VirtualHubProperties class.
     */
    public VirtualHubProperties() {
    }

    /**
     * Get the virtualWan property: The VirtualWAN to which the VirtualHub belongs.
     * 
     * @return the virtualWan value.
     */
    public SubResource virtualWan() {
        return this.virtualWan;
    }

    /**
     * Set the virtualWan property: The VirtualWAN to which the VirtualHub belongs.
     * 
     * @param virtualWan the virtualWan value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withVirtualWan(SubResource virtualWan) {
        this.virtualWan = virtualWan;
        return this;
    }

    /**
     * Get the vpnGateway property: The VpnGateway associated with this VirtualHub.
     * 
     * @return the vpnGateway value.
     */
    public SubResource vpnGateway() {
        return this.vpnGateway;
    }

    /**
     * Set the vpnGateway property: The VpnGateway associated with this VirtualHub.
     * 
     * @param vpnGateway the vpnGateway value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withVpnGateway(SubResource vpnGateway) {
        this.vpnGateway = vpnGateway;
        return this;
    }

    /**
     * Get the p2SVpnGateway property: The P2SVpnGateway associated with this VirtualHub.
     * 
     * @return the p2SVpnGateway value.
     */
    public SubResource p2SVpnGateway() {
        return this.p2SVpnGateway;
    }

    /**
     * Set the p2SVpnGateway property: The P2SVpnGateway associated with this VirtualHub.
     * 
     * @param p2SVpnGateway the p2SVpnGateway value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withP2SVpnGateway(SubResource p2SVpnGateway) {
        this.p2SVpnGateway = p2SVpnGateway;
        return this;
    }

    /**
     * Get the expressRouteGateway property: The expressRouteGateway associated with this VirtualHub.
     * 
     * @return the expressRouteGateway value.
     */
    public SubResource expressRouteGateway() {
        return this.expressRouteGateway;
    }

    /**
     * Set the expressRouteGateway property: The expressRouteGateway associated with this VirtualHub.
     * 
     * @param expressRouteGateway the expressRouteGateway value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withExpressRouteGateway(SubResource expressRouteGateway) {
        this.expressRouteGateway = expressRouteGateway;
        return this;
    }

    /**
     * Get the azureFirewall property: The azureFirewall associated with this VirtualHub.
     * 
     * @return the azureFirewall value.
     */
    public SubResource azureFirewall() {
        return this.azureFirewall;
    }

    /**
     * Set the azureFirewall property: The azureFirewall associated with this VirtualHub.
     * 
     * @param azureFirewall the azureFirewall value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withAzureFirewall(SubResource azureFirewall) {
        this.azureFirewall = azureFirewall;
        return this;
    }

    /**
     * Get the securityPartnerProvider property: The securityPartnerProvider associated with this VirtualHub.
     * 
     * @return the securityPartnerProvider value.
     */
    public SubResource securityPartnerProvider() {
        return this.securityPartnerProvider;
    }

    /**
     * Set the securityPartnerProvider property: The securityPartnerProvider associated with this VirtualHub.
     * 
     * @param securityPartnerProvider the securityPartnerProvider value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withSecurityPartnerProvider(SubResource securityPartnerProvider) {
        this.securityPartnerProvider = securityPartnerProvider;
        return this;
    }

    /**
     * Get the addressPrefix property: Address-prefix for this VirtualHub.
     * 
     * @return the addressPrefix value.
     */
    public String addressPrefix() {
        return this.addressPrefix;
    }

    /**
     * Set the addressPrefix property: Address-prefix for this VirtualHub.
     * 
     * @param addressPrefix the addressPrefix value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withAddressPrefix(String addressPrefix) {
        this.addressPrefix = addressPrefix;
        return this;
    }

    /**
     * Get the routeTable property: The routeTable associated with this virtual hub.
     * 
     * @return the routeTable value.
     */
    public VirtualHubRouteTable routeTable() {
        return this.routeTable;
    }

    /**
     * Set the routeTable property: The routeTable associated with this virtual hub.
     * 
     * @param routeTable the routeTable value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withRouteTable(VirtualHubRouteTable routeTable) {
        this.routeTable = routeTable;
        return this;
    }

    /**
     * Get the provisioningState property: The provisioning state of the virtual hub resource.
     * 
     * @return the provisioningState value.
     */
    public ProvisioningState provisioningState() {
        return this.provisioningState;
    }

    /**
     * Get the securityProviderName property: The Security Provider name.
     * 
     * @return the securityProviderName value.
     */
    public String securityProviderName() {
        return this.securityProviderName;
    }

    /**
     * Set the securityProviderName property: The Security Provider name.
     * 
     * @param securityProviderName the securityProviderName value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withSecurityProviderName(String securityProviderName) {
        this.securityProviderName = securityProviderName;
        return this;
    }

    /**
     * Get the virtualHubRouteTableV2S property: List of all virtual hub route table v2s associated with this
     * VirtualHub.
     * 
     * @return the virtualHubRouteTableV2S value.
     */
    public List virtualHubRouteTableV2S() {
        return this.virtualHubRouteTableV2S;
    }

    /**
     * Set the virtualHubRouteTableV2S property: List of all virtual hub route table v2s associated with this
     * VirtualHub.
     * 
     * @param virtualHubRouteTableV2S the virtualHubRouteTableV2S value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withVirtualHubRouteTableV2S(List virtualHubRouteTableV2S) {
        this.virtualHubRouteTableV2S = virtualHubRouteTableV2S;
        return this;
    }

    /**
     * Get the sku property: The sku of this VirtualHub.
     * 
     * @return the sku value.
     */
    public String sku() {
        return this.sku;
    }

    /**
     * Set the sku property: The sku of this VirtualHub.
     * 
     * @param sku the sku value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withSku(String sku) {
        this.sku = sku;
        return this;
    }

    /**
     * Get the routingState property: The routing state.
     * 
     * @return the routingState value.
     */
    public RoutingState routingState() {
        return this.routingState;
    }

    /**
     * Get the bgpConnections property: List of references to Bgp Connections.
     * 
     * @return the bgpConnections value.
     */
    public List bgpConnections() {
        return this.bgpConnections;
    }

    /**
     * Get the ipConfigurations property: List of references to IpConfigurations.
     * 
     * @return the ipConfigurations value.
     */
    public List ipConfigurations() {
        return this.ipConfigurations;
    }

    /**
     * Get the routeMaps property: List of references to RouteMaps.
     * 
     * @return the routeMaps value.
     */
    public List routeMaps() {
        return this.routeMaps;
    }

    /**
     * Get the virtualRouterAsn property: VirtualRouter ASN.
     * 
     * @return the virtualRouterAsn value.
     */
    public Long virtualRouterAsn() {
        return this.virtualRouterAsn;
    }

    /**
     * Set the virtualRouterAsn property: VirtualRouter ASN.
     * 
     * @param virtualRouterAsn the virtualRouterAsn value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withVirtualRouterAsn(Long virtualRouterAsn) {
        this.virtualRouterAsn = virtualRouterAsn;
        return this;
    }

    /**
     * Get the virtualRouterIps property: VirtualRouter IPs.
     * 
     * @return the virtualRouterIps value.
     */
    public List virtualRouterIps() {
        return this.virtualRouterIps;
    }

    /**
     * Set the virtualRouterIps property: VirtualRouter IPs.
     * 
     * @param virtualRouterIps the virtualRouterIps value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withVirtualRouterIps(List virtualRouterIps) {
        this.virtualRouterIps = virtualRouterIps;
        return this;
    }

    /**
     * Get the allowBranchToBranchTraffic property: Flag to control transit for VirtualRouter hub.
     * 
     * @return the allowBranchToBranchTraffic value.
     */
    public Boolean allowBranchToBranchTraffic() {
        return this.allowBranchToBranchTraffic;
    }

    /**
     * Set the allowBranchToBranchTraffic property: Flag to control transit for VirtualRouter hub.
     * 
     * @param allowBranchToBranchTraffic the allowBranchToBranchTraffic value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withAllowBranchToBranchTraffic(Boolean allowBranchToBranchTraffic) {
        this.allowBranchToBranchTraffic = allowBranchToBranchTraffic;
        return this;
    }

    /**
     * Get the preferredRoutingGateway property: The preferred gateway to route on-prem traffic.
     * 
     * @return the preferredRoutingGateway value.
     */
    public PreferredRoutingGateway preferredRoutingGateway() {
        return this.preferredRoutingGateway;
    }

    /**
     * Set the preferredRoutingGateway property: The preferred gateway to route on-prem traffic.
     * 
     * @param preferredRoutingGateway the preferredRoutingGateway value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withPreferredRoutingGateway(PreferredRoutingGateway preferredRoutingGateway) {
        this.preferredRoutingGateway = preferredRoutingGateway;
        return this;
    }

    /**
     * Get the hubRoutingPreference property: The hubRoutingPreference of this VirtualHub.
     * 
     * @return the hubRoutingPreference value.
     */
    public HubRoutingPreference hubRoutingPreference() {
        return this.hubRoutingPreference;
    }

    /**
     * Set the hubRoutingPreference property: The hubRoutingPreference of this VirtualHub.
     * 
     * @param hubRoutingPreference the hubRoutingPreference value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withHubRoutingPreference(HubRoutingPreference hubRoutingPreference) {
        this.hubRoutingPreference = hubRoutingPreference;
        return this;
    }

    /**
     * Get the virtualRouterAutoScaleConfiguration property: The VirtualHub Router autoscale configuration.
     * 
     * @return the virtualRouterAutoScaleConfiguration value.
     */
    public VirtualRouterAutoScaleConfiguration virtualRouterAutoScaleConfiguration() {
        return this.virtualRouterAutoScaleConfiguration;
    }

    /**
     * Set the virtualRouterAutoScaleConfiguration property: The VirtualHub Router autoscale configuration.
     * 
     * @param virtualRouterAutoScaleConfiguration the virtualRouterAutoScaleConfiguration value to set.
     * @return the VirtualHubProperties object itself.
     */
    public VirtualHubProperties withVirtualRouterAutoScaleConfiguration(
        VirtualRouterAutoScaleConfiguration virtualRouterAutoScaleConfiguration) {
        this.virtualRouterAutoScaleConfiguration = virtualRouterAutoScaleConfiguration;
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (routeTable() != null) {
            routeTable().validate();
        }
        if (virtualHubRouteTableV2S() != null) {
            virtualHubRouteTableV2S().forEach(e -> e.validate());
        }
        if (virtualRouterAutoScaleConfiguration() != null) {
            virtualRouterAutoScaleConfiguration().validate();
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        jsonWriter.writeJsonField("virtualWan", this.virtualWan);
        jsonWriter.writeJsonField("vpnGateway", this.vpnGateway);
        jsonWriter.writeJsonField("p2SVpnGateway", this.p2SVpnGateway);
        jsonWriter.writeJsonField("expressRouteGateway", this.expressRouteGateway);
        jsonWriter.writeJsonField("azureFirewall", this.azureFirewall);
        jsonWriter.writeJsonField("securityPartnerProvider", this.securityPartnerProvider);
        jsonWriter.writeStringField("addressPrefix", this.addressPrefix);
        jsonWriter.writeJsonField("routeTable", this.routeTable);
        jsonWriter.writeStringField("securityProviderName", this.securityProviderName);
        jsonWriter.writeArrayField("virtualHubRouteTableV2s", this.virtualHubRouteTableV2S,
            (writer, element) -> writer.writeJson(element));
        jsonWriter.writeStringField("sku", this.sku);
        jsonWriter.writeNumberField("virtualRouterAsn", this.virtualRouterAsn);
        jsonWriter.writeArrayField("virtualRouterIps", this.virtualRouterIps,
            (writer, element) -> writer.writeString(element));
        jsonWriter.writeBooleanField("allowBranchToBranchTraffic", this.allowBranchToBranchTraffic);
        jsonWriter.writeStringField("preferredRoutingGateway",
            this.preferredRoutingGateway == null ? null : this.preferredRoutingGateway.toString());
        jsonWriter.writeStringField("hubRoutingPreference",
            this.hubRoutingPreference == null ? null : this.hubRoutingPreference.toString());
        jsonWriter.writeJsonField("virtualRouterAutoScaleConfiguration", this.virtualRouterAutoScaleConfiguration);
        return jsonWriter.writeEndObject();
    }

    /**
     * Reads an instance of VirtualHubProperties from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of VirtualHubProperties if the JsonReader was pointing to an instance of it, or null if it
     * was pointing to JSON null.
     * @throws IOException If an error occurs while reading the VirtualHubProperties.
     */
    public static VirtualHubProperties fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            VirtualHubProperties deserializedVirtualHubProperties = new VirtualHubProperties();
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("virtualWan".equals(fieldName)) {
                    deserializedVirtualHubProperties.virtualWan = SubResource.fromJson(reader);
                } else if ("vpnGateway".equals(fieldName)) {
                    deserializedVirtualHubProperties.vpnGateway = SubResource.fromJson(reader);
                } else if ("p2SVpnGateway".equals(fieldName)) {
                    deserializedVirtualHubProperties.p2SVpnGateway = SubResource.fromJson(reader);
                } else if ("expressRouteGateway".equals(fieldName)) {
                    deserializedVirtualHubProperties.expressRouteGateway = SubResource.fromJson(reader);
                } else if ("azureFirewall".equals(fieldName)) {
                    deserializedVirtualHubProperties.azureFirewall = SubResource.fromJson(reader);
                } else if ("securityPartnerProvider".equals(fieldName)) {
                    deserializedVirtualHubProperties.securityPartnerProvider = SubResource.fromJson(reader);
                } else if ("addressPrefix".equals(fieldName)) {
                    deserializedVirtualHubProperties.addressPrefix = reader.getString();
                } else if ("routeTable".equals(fieldName)) {
                    deserializedVirtualHubProperties.routeTable = VirtualHubRouteTable.fromJson(reader);
                } else if ("provisioningState".equals(fieldName)) {
                    deserializedVirtualHubProperties.provisioningState
                        = ProvisioningState.fromString(reader.getString());
                } else if ("securityProviderName".equals(fieldName)) {
                    deserializedVirtualHubProperties.securityProviderName = reader.getString();
                } else if ("virtualHubRouteTableV2s".equals(fieldName)) {
                    List virtualHubRouteTableV2S
                        = reader.readArray(reader1 -> VirtualHubRouteTableV2Inner.fromJson(reader1));
                    deserializedVirtualHubProperties.virtualHubRouteTableV2S = virtualHubRouteTableV2S;
                } else if ("sku".equals(fieldName)) {
                    deserializedVirtualHubProperties.sku = reader.getString();
                } else if ("routingState".equals(fieldName)) {
                    deserializedVirtualHubProperties.routingState = RoutingState.fromString(reader.getString());
                } else if ("bgpConnections".equals(fieldName)) {
                    List bgpConnections = reader.readArray(reader1 -> SubResource.fromJson(reader1));
                    deserializedVirtualHubProperties.bgpConnections = bgpConnections;
                } else if ("ipConfigurations".equals(fieldName)) {
                    List ipConfigurations = reader.readArray(reader1 -> SubResource.fromJson(reader1));
                    deserializedVirtualHubProperties.ipConfigurations = ipConfigurations;
                } else if ("routeMaps".equals(fieldName)) {
                    List routeMaps = reader.readArray(reader1 -> SubResource.fromJson(reader1));
                    deserializedVirtualHubProperties.routeMaps = routeMaps;
                } else if ("virtualRouterAsn".equals(fieldName)) {
                    deserializedVirtualHubProperties.virtualRouterAsn = reader.getNullable(JsonReader::getLong);
                } else if ("virtualRouterIps".equals(fieldName)) {
                    List virtualRouterIps = reader.readArray(reader1 -> reader1.getString());
                    deserializedVirtualHubProperties.virtualRouterIps = virtualRouterIps;
                } else if ("allowBranchToBranchTraffic".equals(fieldName)) {
                    deserializedVirtualHubProperties.allowBranchToBranchTraffic
                        = reader.getNullable(JsonReader::getBoolean);
                } else if ("preferredRoutingGateway".equals(fieldName)) {
                    deserializedVirtualHubProperties.preferredRoutingGateway
                        = PreferredRoutingGateway.fromString(reader.getString());
                } else if ("hubRoutingPreference".equals(fieldName)) {
                    deserializedVirtualHubProperties.hubRoutingPreference
                        = HubRoutingPreference.fromString(reader.getString());
                } else if ("virtualRouterAutoScaleConfiguration".equals(fieldName)) {
                    deserializedVirtualHubProperties.virtualRouterAutoScaleConfiguration
                        = VirtualRouterAutoScaleConfiguration.fromJson(reader);
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedVirtualHubProperties;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy