Sha256: 9d6417319941308302260e36fd268610a0af65f51f52174ca75dd154efe285bc

Contents?: true

Size: 1.04 KB

Versions: 25

Compression:

Stored size: 1.04 KB

Contents

module Fog
  module ApplicationGateway
    class AzureRM
      # This class provides the actual implementation for service calls.
      class Real
        def check_ag_exists(resource_group_name, application_gateway_name)
          msg = "Checking Application Gateway: #{application_gateway_name}"
          Fog::Logger.debug msg
          begin
            @network_client.application_gateways.get(resource_group_name, application_gateway_name)
            Fog::Logger.debug "Application Gateway #{application_gateway_name} exists."
            true
          rescue MsRestAzure::AzureOperationError => e
            if e.body['error']['code'] == 'ResourceNotFound'
              Fog::Logger.debug "Application Gateway #{application_gateway_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_ag_exists(*)
          true
        end
      end
    end
  end
end

Version data entries

25 entries across 25 versions & 3 rubygems

Version Path
fog-azure-rm-0.4.0 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.3.9 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.3.8 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.3.7 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.3.6 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.3.5 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.3.4 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-temp-0.0.4 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-temp-0.0.3 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.3.3 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-temp-0.0.2 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-temp-0.0.1 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.3.2 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-downgraded-0.3.1 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.3.1 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-downgraded-0.3.0 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.3.0 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.2.7 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.2.6 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb
fog-azure-rm-0.2.5 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb