Method: Fog::Compute::CloudSigma::Vlans#get
- Defined in:
- lib/fog/cloudsigma/models/vlans.rb
#get(vlan) ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/fog/cloudsigma/models/vlans.rb', line 16 def get(vlan) resp = service.get_vlan(vlan) data = resp.body new(data) rescue Fog::CloudSigma::Errors::NotFound return nil end |