Sha256: bb33ed9cada6dac7c6f5e3968d42500b212132e893187d430b33105771752b5e
Contents?: true
Size: 1.17 KB
Versions: 17
Compression:
Stored size: 1.17 KB
Contents
module Fog module Network class AzureRM # This class provides the actual implementation for service calls. class Real def check_net_sec_rule_exists(resource_group_name, network_security_group_name, security_rule_name) msg = "Checking Network Security Rule #{security_rule_name}" Fog::Logger.debug msg begin @network_client.security_rules.get(resource_group_name, network_security_group_name, security_rule_name) Fog::Logger.debug "Network Security Rule #{security_rule_name} exists." true rescue MsRestAzure::AzureOperationError => e if !e.body['error'].nil? && (e.body['error']['code'] == ERROR_CODE_RESOURCE_NOT_FOUND || e.body['error']['code'] == ERROR_CODE_NOT_FOUND) Fog::Logger.debug "Network Security Rule #{security_rule_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_net_sec_rule_exists(*) true end end end end end
Version data entries
17 entries across 17 versions & 3 rubygems