Sha256: adb50a16169180c3a2b2f4ff6a064b3c94d93ea5573c2ba93a56231d139a0bed

Contents?: true

Size: 1.04 KB

Versions: 21

Compression:

Stored size: 1.04 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 resource_not_found?(e)
              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

21 entries across 21 versions & 3 rubygems

Version Path
fog-azure-rm-0.4.1 lib/fog/azurerm/requests/network/check_vnet_gateway_connection_exists.rb