Sha256: 915e627ef23f6c7ca194f46cc33f7474dc00be10f316099daa102daf34309556
Contents?: true
Size: 694 Bytes
Versions: 43
Compression:
Stored size: 694 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 ||= service.get_network(configuration[:ParentNetwork][:href]) end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems