Sha256: 2266c6cbcc191087872b4437ecc82df854b6724509bb486355ff27882387e145

Contents?: true

Size: 1.02 KB

Versions: 21

Compression:

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

21 entries across 21 versions & 3 rubygems

Version Path
fog-azure-rm-0.4.1 lib/fog/azurerm/requests/application_gateway/check_ag_exists.rb