Class: Fog::Ecloud::Collection
- Inherits:
-
Collection
- Object
- Collection
- Fog::Ecloud::Collection
show all
- Defined in:
- lib/fog/ecloud/collection.rb
Direct Known Subclasses
Compute::Ecloud::AdminOrganizations, Compute::Ecloud::ApiKeys, Compute::Ecloud::Associations, Compute::Ecloud::AuthenticationLevels, Compute::Ecloud::BackupInternetServices, Compute::Ecloud::Catalog, Compute::Ecloud::CatalogConfigurations, Compute::Ecloud::ComputePools, Compute::Ecloud::CpuUsageDetailSummary, Compute::Ecloud::DetachedDisks, Compute::Ecloud::Environments, Compute::Ecloud::FirewallAcls, Compute::Ecloud::Groups, Compute::Ecloud::GuestProcesses, Compute::Ecloud::HardwareConfigurations, Compute::Ecloud::InternetServices, Compute::Ecloud::IpAddresses, Compute::Ecloud::Layouts, Compute::Ecloud::Locations, Compute::Ecloud::LoginBanners, Compute::Ecloud::MemoryUsageDetailSummary, Compute::Ecloud::Monitors, Compute::Ecloud::Networks, Compute::Ecloud::Nodes, Compute::Ecloud::OperatingSystemFamilies, Compute::Ecloud::OperatingSystems, Compute::Ecloud::Organizations, Compute::Ecloud::PasswordComplexityRules, Compute::Ecloud::PhysicalDevices, Compute::Ecloud::PublicIps, Compute::Ecloud::Rnats, Compute::Ecloud::Roles, Compute::Ecloud::Rows, Compute::Ecloud::ServerConfigurationOptions, Compute::Ecloud::Servers, Compute::Ecloud::SshKeys, Compute::Ecloud::StorageUsageDetailSummary, Compute::Ecloud::SupportTickets, Compute::Ecloud::Tags, Compute::Ecloud::Tasks, Compute::Ecloud::Templates, Compute::Ecloud::TrustedNetworkGroups, Compute::Ecloud::Users, Compute::Ecloud::VirtualMachineAssignedIps
Instance Method Summary
collapse
Instance Method Details
#check_href!(opts = {}) ⇒ Object
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# File 'lib/fog/ecloud/collection.rb', line 9
def check_href!(opts = {})
unless href
opts = { :parent => opts } if opts.is_a?(String)
msg = ":href missing, call with a :href pointing to #{if opts[:message]
opts[:message]
elsif opts[:parent]
"the #{opts[:parent]} whos #{self.class.to_s.split('::').last.downcase} you want to enumerate"
else
"the resource"
end}"
raise Fog::Errors::Error.new(msg)
end
end
|
#load(objects) ⇒ Object
4
5
6
7
|
# File 'lib/fog/ecloud/collection.rb', line 4
def load(objects)
objects = [ objects ] if objects.is_a?(Hash)
super
end
|