blob: 3da0e34cd583ae61db99d78074027e622dda6879 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jclouds.openstack.neutron.v2_0.extensions;
import javax.inject.Named;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.core.MediaType;
import org.jclouds.Fallbacks;
import org.jclouds.collect.PagedIterable;
import org.jclouds.javax.annotation.Nullable;
import org.jclouds.openstack.keystone.v2_0.KeystoneFallbacks.EmptyPaginatedCollectionOnNotFoundOr404;
import org.jclouds.openstack.keystone.v2_0.filters.AuthenticateRequest;
import org.jclouds.openstack.neutron.v2_0.domain.ReferenceWithName;
import org.jclouds.openstack.neutron.v2_0.domain.Router;
import org.jclouds.openstack.neutron.v2_0.domain.RouterInterface;
import org.jclouds.openstack.neutron.v2_0.functions.ParseRouterDetails;
import org.jclouds.openstack.neutron.v2_0.functions.ParseRouters;
import org.jclouds.openstack.neutron.v2_0.options.CreateRouterOptions;
import org.jclouds.openstack.neutron.v2_0.options.EmptyOptions;
import org.jclouds.openstack.neutron.v2_0.options.UpdateRouterOptions;
import org.jclouds.openstack.v2_0.options.PaginationOptions;
import org.jclouds.rest.annotations.Fallback;
import org.jclouds.rest.annotations.MapBinder;
import org.jclouds.rest.annotations.PayloadParam;
import org.jclouds.rest.annotations.QueryParams;
import org.jclouds.rest.annotations.RequestFilters;
import org.jclouds.rest.annotations.ResponseParser;
import org.jclouds.rest.annotations.SelectJson;
import org.jclouds.rest.annotations.Transform;
/**
* Provides access to Router operations for the OpenStack Networking (Neutron) v2 API.
* <p/>
* A logical entity for forwarding packets across internal subnets and NATting them on external
* networks through an appropriate external gateway.
*
* @deprecated Please use {@link org.jclouds.openstack.neutron.v2.extensions.RouterApi} instead.
* To be removed in jclouds 2.0.
*/
@Deprecated
@Path("/v2.0/routers")
@RequestFilters(AuthenticateRequest.class)
@Consumes(MediaType.APPLICATION_JSON)
public interface RouterApi {
/**
* Returns the list of all routers currently defined in Neutron for the current tenant. The list provides the unique
* identifier of each router configured for the tenant
*
* @return the list of all router references configured for the tenant.
*/
@Named("router:list")
@GET
@ResponseParser(ParseRouters.class)
@Transform(ParseRouters.ToPagedIterable.class)
@Fallback(Fallbacks.EmptyPagedIterableOnNotFoundOr404.class)
@QueryParams(keys = {"fields", "fields", "fields"}, values = {"id", "tenant_id", "name"})
PagedIterable<? extends ReferenceWithName> list();
/**
* @see <a href="http://docs.openstack.org/api/openstack-network/2.0/content/pagination.html">api doc</a>
*/
@Named("router:list")
@GET
@ResponseParser(ParseRouters.class)
@Fallback(EmptyPaginatedCollectionOnNotFoundOr404.class)
@QueryParams(keys = {"fields", "fields", "fields"}, values = {"id", "tenant_id", "name"})
PagedIterable<? extends ReferenceWithName> list(PaginationOptions options);
/**
* Returns all routers currently defined in Neutron for the current tenant.
*
* @return the list of all routers configured for the tenant
*/
@Named("router:list")
@GET
@ResponseParser(ParseRouterDetails.class)
@Transform(ParseRouterDetails.ToPagedIterable.class)
@Fallback(Fallbacks.EmptyPagedIterableOnNotFoundOr404.class)
PagedIterable<? extends Router> listInDetail();
/**
* @see <a href="http://docs.openstack.org/api/openstack-network/2.0/content/pagination.html">api doc</a>
*/
@Named("router:list")
@GET
@ResponseParser(ParseRouterDetails.class)
@Fallback(EmptyPaginatedCollectionOnNotFoundOr404.class)
PagedIterable<? extends Router> listInDetail(PaginationOptions options);
/**
* Returns the specific router.
*
* @param id the id of the router to return
* @return Router or null if not found
*/
@Named("router:get")
@GET
@Path("/{id}")
@SelectJson("router")
@Fallback(Fallbacks.NullOnNotFoundOr404.class)
@Nullable
Router get(@PathParam("id") String id);
/**
* Create a new router
*
* @param options optional arguments
* @return the newly created router
*/
@Named("router:create")
@POST
@SelectJson("router")
@MapBinder(CreateRouterOptions.class)
Router create(CreateRouterOptions... options);
/**
* Update a router
*
* @param id the id of the router to update
* @param options the attributes to update
* @return true if update successful, false if not
*/
@Named("router:update")
@PUT
@Path("/{id}")
@MapBinder(UpdateRouterOptions.class)
@Fallback(Fallbacks.FalseOnNotFoundOr404.class)
boolean update(@PathParam("id") String id, UpdateRouterOptions... options);
/**
* Deletes the specified router
*
* @param id the id of the router to delete
* @return true if delete successful, false if not
*/
@Named("router:delete")
@DELETE
@Path("/{id}")
@Fallback(Fallbacks.FalseOnNotFoundOr404.class)
boolean delete(@PathParam("id") String id);
/**
* Add a interface to a router to connect to the specified subnet
*
* @param routerId the id of the router to create the interface at
* @param subnetId the id of the subnet to connect with the interface
* @return the newly-created router interface
*/
@Named("router:addInterfaceForSubnet")
@PUT
@Path("/{id}/add_router_interface")
@MapBinder(EmptyOptions.class)
RouterInterface addInterfaceForSubnet(@PathParam("id") String routerId, @PayloadParam("subnet_id") String subnetId);
/**
* Add a interface to a router to connect to the specified port
*
* @param routerId the id of the router to create the interface at
* @param portId the id of the port to connect with the interface
* @return the newly-created router interface
*/
@Named("router:addInterfaceForPort")
@PUT
@Path("{id}/add_router_interface")
@MapBinder(EmptyOptions.class)
RouterInterface addInterfaceForPort(@PathParam("id") String routerId, @PayloadParam("port_id") String portId);
/**
* Remove the interface where the specified subnet is connected to
*
* @param routerId the id of the router to remove the interface from
* @param subnetId the id of the subnet to disconnect from the interface
*/
@Named("router:removeInterfaceForSubnet")
@PUT
@Path("/{id}/remove_router_interface")
@MapBinder(EmptyOptions.class)
boolean removeInterfaceForSubnet(@PathParam("id") String routerId, @PayloadParam("subnet_id") String subnetId);
/**
* Remove the interface where the specified port is connected to
*
* @param routerId the id of the router to remove the interface from
* @param portId the id of the port to disconnect from the interface
*/
@Named("router:removeInterfaceForPort")
@PUT
@Path("{id}/remove_router_interface")
@MapBinder(EmptyOptions.class)
boolean removeInterfaceForPort(@PathParam("id") String routerId, @PayloadParam("port_id") String portId);
}