Exemplo n.º 1
0
 def delete_bgp_speaker(self, bgp_speaker_id):
     http_delete(self.endpoint_url + "bgp-speakers/" + bgp_speaker_id,
                 token=self.api.httpclient.auth_token)
Exemplo n.º 2
0
 def delete_l2_gateway_connection(self, l2gw_conn_id):
     url = self.endpoint_url + 'l2-gateway-connections/'
     http_delete(url + l2gw_conn_id, token=self.api.httpclient.auth_token)
Exemplo n.º 3
0
 def delete_remote_mac_entry(self, gwdev_id, rme_id):
     url = (self.endpoint_url + 'gw/gateway_devices/' + gwdev_id +
            '/remote_mac_entries/' + rme_id)
     http_delete(url, token=self.api.httpclient.auth_token)
Exemplo n.º 4
0
 def delete_gateway_device(self, gw_dev_id):
     url = self.endpoint_url + 'gw/gateway_devices/'
     http_delete(url + gw_dev_id, token=self.api.httpclient.auth_token)
Exemplo n.º 5
0
 def delete_l2_gateway(self, l2gw_id):
     url = self.endpoint_url + 'l2-gateways/'
     http_delete(url + l2gw_id, token=self.api.httpclient.auth_token)
Exemplo n.º 6
0
 def delete_bgp_speaker(self, bgp_speaker_id):
     http_delete(self.endpoint_url + "bgp-speakers/" + bgp_speaker_id,
                 token=self.api.httpclient.auth_token)
Exemplo n.º 7
0
 def delete_remote_mac_entry(self, gwdev_id, rme_id):
     url = (self.endpoint_url + 'gw/gateway_devices/' + gwdev_id +
            '/remote_mac_entries/' + rme_id)
     http_delete(url, token=self.api.httpclient.auth_token)
Exemplo n.º 8
0
 def delete_l2_gateway_connection(self, l2gw_conn_id):
     url = self.endpoint_url + 'l2-gateway-connections/'
     http_delete(url + l2gw_conn_id, token=self.api.httpclient.auth_token)
Exemplo n.º 9
0
 def delete_l2_gateway(self, l2gw_id):
     url = self.endpoint_url + 'l2-gateways/'
     http_delete(url + l2gw_id, token=self.api.httpclient.auth_token)
Exemplo n.º 10
0
 def delete_gateway_device(self, gw_dev_id):
     url = self.endpoint_url + 'gw/gateway_devices/'
     http_delete(url + gw_dev_id, token=self.api.httpclient.auth_token)