Sha256: e4e2ba21eedd2abadad9c56faedb65a1ba0195cb7fe844884e0ea1b7f6385dec

Contents?: true

Size: 1.07 KB

Versions: 25

Compression:

Stored size: 1.07 KB

Contents

module Fog
  module Network
    class AzureRM
      # Mock class for Network Request
      class Real
        def check_vnet_gateway_connection_exists(resource_group_name, gateway_connection_name)
          msg = "Checking Virtual Network Gateway Connection #{gateway_connection_name}"
          Fog::Logger.debug msg
          begin
            @network_client.virtual_network_gateway_connections.get(resource_group_name, gateway_connection_name)
            Fog::Logger.debug "Virtual Network Gateway Connection #{gateway_connection_name} exists."
            true
          rescue MsRestAzure::AzureOperationError => e
            if e.body['error']['code'] == 'ResourceNotFound'
              Fog::Logger.debug "Virtual Network Gateway Connection #{gateway_connection_name} doesn't exist."
              false
            else
              raise_azure_exception(e, msg)
            end
          end
        end
      end

      # Mock class for Network Request
      class Mock
        def check_vnet_gateway_connection_exists(*)
          true
        end
      end
    end
  end
end

Version data entries

25 entries across 25 versions & 3 rubygems

Version Path
fog-azure-rm-0.2.4 lib/fog/azurerm/requests/network/check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.2.3 lib/fog/azurerm/requests/network/check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.2.2 lib/fog/azurerm/requests/network/check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.2.1 lib/fog/azurerm/requests/network/check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.2.0 lib/fog/azurerm/requests/network/check_vnet_gateway_connection_exists.rb