Class: Fog::Terremark::Shared::InternetServices
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::Terremark::Shared::InternetServices
- Defined in:
- lib/fog/terremark/models/shared/internetservices.rb
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
Methods inherited from Collection
#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#all ⇒ Object
24 25 26 27 |
# File 'lib/fog/terremark/models/shared/internetservices.rb', line 24 def all data = connection.get_internet_services(vdc_id).body["InternetServices"] load(data) end |
#get(service_id) ⇒ Object
29 30 31 32 33 |
# File 'lib/fog/terremark/models/shared/internetservices.rb', line 29 def get(service_id) data = connection.get_internet_services(vdc_id) internet_service = services.body["InternetServices"].select {|item| item["Id"] == service_id} new(internetservice) end |
#vdc_id ⇒ Object
35 36 37 |
# File 'lib/fog/terremark/models/shared/internetservices.rb', line 35 def vdc_id @vdc_id ||= connection.default_vdc_id end |