Class: Fog::Compute::Brightbox::CloudIps
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Brightbox::CloudIps
- Defined in:
- lib/fog/brightbox/models/compute/cloud_ips.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
12 13 14 15 |
# File 'lib/fog/brightbox/models/compute/cloud_ips.rb', line 12 def all data = service.list_cloud_ips load(data) end |
#allocate ⇒ Object
25 26 27 28 |
# File 'lib/fog/brightbox/models/compute/cloud_ips.rb', line 25 def allocate data = service.create_cloud_ip new(data) end |
#get(identifier) ⇒ Object
17 18 19 20 21 22 23 |
# File 'lib/fog/brightbox/models/compute/cloud_ips.rb', line 17 def get(identifier) return nil if identifier.nil? || identifier == "" data = service.get_cloud_ip(identifier) new(data) rescue Excon::Errors::NotFound nil end |