Sha256: f30446d12d7352e4a11dad02ff4a4d23f17462b8fd6d2ec5f7bff3888bcaf809

Contents?: true

Size: 1.13 KB

Versions: 18

Compression:

Stored size: 1.13 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 e.body['error']['code'] == 'ResourceNotFound'
              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

18 entries across 18 versions & 3 rubygems

Version Path
fog-azure-rm-temp-0.0.4 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-temp-0.0.3 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.3.3 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-temp-0.0.2 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-temp-0.0.1 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.3.2 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-downgraded-0.3.1 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.3.1 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-downgraded-0.3.0 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.3.0 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.2.7 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.2.6 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.2.5 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.2.4 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.2.3 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.2.2 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.2.1 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb
fog-azure-rm-0.2.0 lib/fog/azurerm/requests/network/check_express_route_cir_auth_exists.rb