Sha256: 64efacae1fef293635208d98a3dff5d5a1c533a32d70c5e95f894bce27a2b165

Contents?: true

Size: 1.11 KB

Versions: 21

Compression:

Stored size: 1.11 KB

Contents

module Fog
  module Network
    class AzureRM
      # This class provides the actual implementation for service calls.
      class Real
        def check_express_route_cir_auth_exists(resource_group_name, circuit_name, authorization_name)
          msg = "Checking Express Route Circuit Authorization #{authorization_name}"
          Fog::Logger.debug msg
          begin
            @network_client.express_route_circuit_authorizations.get(resource_group_name, circuit_name, authorization_name)
            Fog::Logger.debug "Express Route Circuit Authorization #{authorization_name} exists."
            true
          rescue MsRestAzure::AzureOperationError => e
            if resource_not_found?(e)
              Fog::Logger.debug "Express Route Circuit Authorization #{authorization_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_cir_auth_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_cir_auth_exists.rb
fog-azure-rm-0.5.3 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.5.2 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
far-gem-0.5.6 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.5.1 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
far-gem-0.5.5 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.5.0 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
far-gem-0.5.4 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
far-gem-0.5.3 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.4.9 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
far-gem-0.5.2 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.4.8 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.4.7 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.4.6 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.4.5 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-temp-0.0.5 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.4.4 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.4.3 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
far-gem-0.5.1 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.4.2 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb