Sha256: 31d96e7927309ed6ba94c9181092db23211b59d1402f9cb60622f016523efe0d

Contents?: true

Size: 1019 Bytes

Versions: 21

Compression:

Stored size: 1019 Bytes

Contents

module Fog
  module Network
    class AzureRM
      # This class provides the actual implementation for service calls.
      class Real
        def check_express_route_circuit_exists(resource_group_name, circuit_name)
          msg = "Checking Express Route Circuit #{circuit_name}"
          Fog::Logger.debug msg
          begin
            @network_client.express_route_circuits.get(resource_group_name, circuit_name)
            Fog::Logger.debug "Express Route Circuit #{circuit_name} exists."
            true
          rescue MsRestAzure::AzureOperationError => e
            if resource_not_found?(e)
              Fog::Logger.debug "Express Route Circuit #{circuit_name} doesn't exist."
              false
            else
              raise_azure_exception(e, msg)
            end
          end
        end
      end
      # This class provides the mock implementation for unit tests.
      class Mock
        def check_express_route_circuit_exists(*)
          true
        end
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 3 rubygems

Version Path
fog-azure-rm-0.6.0 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-0.5.3 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-0.5.2 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
far-gem-0.5.6 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-0.5.1 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
far-gem-0.5.5 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-0.5.0 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
far-gem-0.5.4 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
far-gem-0.5.3 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-0.4.9 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
far-gem-0.5.2 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-0.4.8 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-0.4.7 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-0.4.6 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-0.4.5 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-temp-0.0.5 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-0.4.4 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-0.4.3 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
far-gem-0.5.1 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb
fog-azure-rm-0.4.2 lib/fog/azurerm/requests/network/check_express_route_circuit_exists.rb