Sha256: d97a4d6096fd0acbdc1162a298c362319e2d33afa20ff1f635fdfc776301447a
Contents?: true
Size: 1.06 KB
Versions: 21
Compression:
Stored size: 1.06 KB
Contents
module Fog module Network class AzureRM # This class provides the actual implementation for service calls. class Real def check_local_net_gateway_exists(resource_group_name, local_network_gateway_name) msg = "Checking Local Network Gateway #{local_network_gateway_name}" Fog::Logger.debug msg begin @network_client.local_network_gateways.get(resource_group_name, local_network_gateway_name) Fog::Logger.debug "Local Network Gateway #{local_network_gateway_name} exists." true rescue MsRestAzure::AzureOperationError => e if resource_not_found?(e) Fog::Logger.debug "Local Network Gateway #{local_network_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_local_net_gateway_exists(*) true end end end end end
Version data entries
21 entries across 21 versions & 3 rubygems