com.microsoft.azure.management.network.VirtualHubRouteTable Maven / Gradle / Ivy
/**
* 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;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* VirtualHub route table.
*/
public class VirtualHubRouteTable {
/**
* List of all routes.
*/
@JsonProperty(value = "routes")
private List routes;
/**
* Get list of all routes.
*
* @return the routes value
*/
public List routes() {
return this.routes;
}
/**
* Set list of all routes.
*
* @param routes the routes value to set
* @return the VirtualHubRouteTable object itself.
*/
public VirtualHubRouteTable withRoutes(List routes) {
this.routes = routes;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy