Sha256: dcee97a69e09bf4ffb89aadea8ab57793656355dc758eec9849dd5943e0b05a7
Contents?: true
Size: 698 Bytes
Versions: 26
Compression:
Stored size: 698 Bytes
Contents
module Fog module Vcloud class Compute class Network < Fog::Vcloud::Model identity :href, :aliases => :Href attribute :links, :aliases => :Link, :type => :array ignore_attributes :xmlns, :xmlns_i, :xmlns_xsi, :xmlns_xsd attribute :name, :aliases => :Name attribute :description, :aliases => :Description attribute :configuration, :aliases => :Configuration attribute :provider_info, :aliases => :ProviderInfo def parent_network return nil if configuration[:ParentNetwork].nil? @parent_network ||= connection.get_network(configuration[:ParentNetwork][:href]) end end end end end
Version data entries
26 entries across 26 versions & 12 rubygems