Sha256: bdad05d8e6eaeff0c810db87bdb92e39fce76ff93bf428b0f437d80db9442ef5
Contents?: true
Size: 695 Bytes
Versions: 65
Compression:
Stored size: 695 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
65 entries across 65 versions & 6 rubygems