Sha256: a7de415b5ca0a59d2de2569566f0e56096f380f2f221d24a6093a5c51b3a899c
Contents?: true
Size: 1.13 KB
Versions: 21
Compression:
Stored size: 1.13 KB
Contents
module Fog module TrafficManager class AzureRM # This class provides the actual implementation for service calls. class Real def check_traffic_manager_endpoint_exists(resource_group, traffic_manager_profile_name, traffic_manager_end_point, type) msg = "Checking Traffic Manager Endpoint #{traffic_manager_end_point}" Fog::Logger.debug msg begin @traffic_mgmt_client.endpoints.get(resource_group, traffic_manager_profile_name, type, traffic_manager_end_point) Fog::Logger.debug "Traffic Manager Endpoint #{traffic_manager_end_point} exists." true rescue MsRestAzure::AzureOperationError => e if resource_not_found?(e) Fog::Logger.debug "Traffic Manager Endpoint #{traffic_manager_end_point} 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_traffic_manager_endpoint_exists(*) true end end end end end
Version data entries
21 entries across 21 versions & 3 rubygems