lib/fog/azurerm/models/network/express_route_circuits.rb in fog-azure-rm-0.1.2 vs lib/fog/azurerm/models/network/express_route_circuits.rb in fog-azure-rm-0.2.0

- old
+ new

@@ -18,9 +18,13 @@ def get(resource_group_name, name) circuit = service.get_express_route_circuit(resource_group_name, name) express_route_circuit = Fog::Network::AzureRM::ExpressRouteCircuit.new(service: service) express_route_circuit.merge_attributes(Fog::Network::AzureRM::ExpressRouteCircuit.parse(circuit)) end + + def check_express_route_circuit_exists(resource_group_name, name) + service.check_express_route_circuit_exists(resource_group_name, name) + end end end end end