Method: HPE3PAR_API#flash_cache_exists?
- Defined in:
- lib/puppet/util/hpe3par_api.rb
#flash_cache_exists?(debug = false) ⇒ Boolean
918 919 920 921 922 923 924 925 926 |
# File 'lib/puppet/util/hpe3par_api.rb', line 918 def flash_cache_exists?(debug = false) cl = Hpe3parSdk::Client.new(@rest_url, debug: debug) begin cl.login(@url.user, @url.password) cl.flash_cache_exists? ensure cl.logout end end |