Sha256: 3d42d76290bb51aee5a95a0b2d4afefd07c8daafcbb1799a4b8f76309d7e5035
Contents?: true
Size: 1 KB
Versions: 25
Compression:
Stored size: 1 KB
Contents
module Fog module Network class AzureRM # This class provides the actual implementation for service calls. class Real def check_load_balancer_exists(resource_group_name, load_balancer_name) msg = "Checking Load Balancer #{load_balancer_name}" Fog::Logger.debug msg begin @network_client.load_balancers.get(resource_group_name, load_balancer_name) Fog::Logger.debug "Load Balancer #{load_balancer_name} exists." true rescue MsRestAzure::AzureOperationError => e if e.body['error']['code'] == 'ResourceNotFound' Fog::Logger.debug "Load Balancer #{load_balancer_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_load_balancer_exists(*) true end end end end end
Version data entries
25 entries across 25 versions & 3 rubygems