class VCloudSdk::Xml::Org
Public Instance Methods
catalog_link(name)
click to toggle source
# File lib/ruby_vcloud_sdk/xml/wrapper_classes/org.rb, line 23 def catalog_link(name) get_nodes(XML_TYPE[:LINK], { type: MEDIA_TYPE[:CATALOG], name: name }, true).first end
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
vdc_link(name)
click to toggle source
# File lib/ruby_vcloud_sdk/xml/wrapper_classes/org.rb, line 10 def vdc_link(name) get_nodes(XML_TYPE[:LINK], { type: MEDIA_TYPE[:VDC], name: name }, true).first 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