# File lib/fog/ecloud/models/compute/trusted_network_group.rb, line 22 def delete data = connection.trusted_network_groups_delete(href).body task = Fog::Compute::Ecloud::Tasks.new(:connection => connection, :href => data[:href])[0] end
# File lib/fog/ecloud/models/compute/trusted_network_group.rb, line 16 def edit(options) options[:uri] = href data = connection.trusted_network_groups_edit(options).body task = Fog::Compute::Ecloud::Tasks.new(:connection => connection, :href => data[:href])[0] end
# File lib/fog/ecloud/models/compute/trusted_network_group.rb, line 27 def id href.scan(/\d+/)[0] end
# File lib/fog/ecloud/models/compute/trusted_network_group.rb, line 12 def internet_services @internet_services ||= Fog::Compute::Ecloud::InternetServices.new(:connection => connection, :href => href) end