2016-01-27 15:29:30 +03:00
/* -------------------------------------------------------------------------- */
2024-07-29 15:25:20 +03:00
/* Copyright 2002-2024, OpenNebula Project, OpenNebula Systems */
2016-01-27 15:29:30 +03:00
/* */
/* Licensed 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. */
/* -------------------------------------------------------------------------- */
# ifndef REQUEST_MANAGER_VIRTUAL_ROUTER_H
# define REQUEST_MANAGER_VIRTUAL_ROUTER_H
# include "Request.h"
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
class RequestManagerVirtualRouter : public Request
{
protected :
2020-07-02 23:42:10 +03:00
RequestManagerVirtualRouter ( const std : : string & method_name ,
const std : : string & help ,
const std : : string & params ) ;
2016-01-27 15:29:30 +03:00
2019-12-10 13:45:15 +03:00
~ RequestManagerVirtualRouter ( ) = default ;
2016-01-27 15:29:30 +03:00
} ;
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
class VirtualRouterInstantiate : public RequestManagerVirtualRouter
{
public :
2017-05-07 22:52:34 +03:00
VirtualRouterInstantiate ( ) : RequestManagerVirtualRouter (
2024-06-03 12:40:24 +03:00
" one.vrouter.instantiate " , " Instantiates a new virtual machine "
" associated to a virtual router " , " A:siiisbs " ) { }
2016-01-27 15:29:30 +03:00
2019-12-10 13:45:15 +03:00
~ VirtualRouterInstantiate ( ) = default ;
2016-01-27 15:29:30 +03:00
void request_execute ( xmlrpc_c : : paramList const & _paramList ,
2019-07-05 18:23:21 +03:00
RequestAttributes & att ) override ;
2016-01-27 15:29:30 +03:00
} ;
2016-01-28 18:06:18 +03:00
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
class VirtualRouterAttachNic : public RequestManagerVirtualRouter
{
public :
2017-05-07 22:52:34 +03:00
VirtualRouterAttachNic ( ) : RequestManagerVirtualRouter ( " one.vrouter.attachnic " ,
2024-06-03 12:40:24 +03:00
" Attaches a new NIC to the virtual router, and its virtual machines " ,
" A:sis " ) { }
2016-01-28 18:06:18 +03:00
2019-12-10 13:45:15 +03:00
~ VirtualRouterAttachNic ( ) = default ;
2016-01-28 18:06:18 +03:00
void request_execute ( xmlrpc_c : : paramList const & _paramList ,
2019-07-05 18:23:21 +03:00
RequestAttributes & att ) override ;
2016-01-28 18:06:18 +03:00
} ;
2016-01-28 19:20:52 +03:00
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
class VirtualRouterDetachNic : public RequestManagerVirtualRouter
{
public :
2017-05-07 22:52:34 +03:00
VirtualRouterDetachNic ( ) : RequestManagerVirtualRouter ( " one.vrouter.detachnic " ,
2024-06-03 12:40:24 +03:00
" Detaches a NIC from a virtual router, and its virtual machines " , " A:sii " ) { }
2016-01-28 19:20:52 +03:00
2019-12-10 13:45:15 +03:00
~ VirtualRouterDetachNic ( ) = default ;
2016-01-28 19:20:52 +03:00
void request_execute ( xmlrpc_c : : paramList const & _paramList ,
2019-07-05 18:23:21 +03:00
RequestAttributes & att ) override ;
2016-01-28 19:20:52 +03:00
} ;
2016-01-27 15:29:30 +03:00
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
# endif