Sha256: 70fe83c418c9bd8787aa0fc2e673f5a78f6b86afa7c2579c3a2f568179ee0c56
Contents?: true
Size: 994 Bytes
Versions: 14
Compression:
Stored size: 994 Bytes
Contents
module Fog module Compute class Ecloud class TrustedNetworkGroup < Fog::Ecloud::Model identity :href attribute :name, :aliases => :Name attribute :type, :aliases => :Type attribute :other_links, :aliases => :Links attribute :hosts, :aliases => :Hosts def internet_services @internet_services ||= Fog::Compute::Ecloud::InternetServices.new(:connection => connection, :href => href) end 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 def delete data = connection.trusted_network_groups_delete(href).body task = Fog::Compute::Ecloud::Tasks.new(:connection => connection, :href => data[:href])[0] end def id href.scan(/\d+/)[0] end end end end end
Version data entries
14 entries across 14 versions & 8 rubygems