class VCloudSdk::Xml::Org

Public Instance Methods

catalogs() click to toggle source
# File lib/ruby_vcloud_sdk/xml/wrapper_classes/org.rb, line 17
def catalogs
  get_nodes(XML_TYPE[:LINK],
            { type: MEDIA_TYPE[:CATALOG] },
            true)
end
disks() click to toggle source
# File lib/ruby_vcloud_sdk/xml/wrapper_classes/org.rb, line 43
def disks
  get_nodes(XML_TYPE[:LINK],
            { type: MEDIA_TYPE[:DISK] },
            true)
end
network(name) click to toggle source
# File lib/ruby_vcloud_sdk/xml/wrapper_classes/org.rb, line 36
def network(name)
  get_nodes(XML_TYPE[:LINK],
            { type: MEDIA_TYPE[:ORG_NETWORK],
              name: name },
            true).first
end
networks() click to toggle source
# File lib/ruby_vcloud_sdk/xml/wrapper_classes/org.rb, line 30
def networks
  get_nodes(XML_TYPE[:LINK],
            { type: MEDIA_TYPE[:ORG_NETWORK] },
            true)
end
vdcs() click to toggle source
# File lib/ruby_vcloud_sdk/xml/wrapper_classes/org.rb, line 4
def vdcs
  get_nodes(XML_TYPE[:LINK],
            { type: MEDIA_TYPE[:VDC] },
            true)
end