backup_internet_services()
click to toggle source
def backup_internet_services
@backup_internet_services ||= collection_based_on_type("application/vnd.tmrk.ecloud.internetServicesList+xml", BackupInternetServices)
end
catalog()
click to toggle source
def catalog
@catalog ||= collection_based_on_type("application/vnd.vmware.vcloud.catalog+xml")
end
compute_pools()
click to toggle source
def compute_pools
@compute_pools ||= Fog::Compute::Ecloud::ComputePools.
new( :connection => connection,
:href => href + "/computePools" )
end
firewall_acls()
click to toggle source
def firewall_acls
@firewall_acls ||= collection_based_on_type("application/vnd.tmrk.ecloud.firewallAclsList+xml")
end
internet_services()
click to toggle source
def internet_services
@internet_services ||= collection_based_on_type("application/vnd.tmrk.ecloud.internetServicesList+xml")
end
networks()
click to toggle source
def networks
@networks ||= Fog::Compute::Ecloud::Networks.
new( :connection => connection,
:href => href )
end
public_ips()
click to toggle source
def public_ips
@public_ips ||= collection_based_on_type("application/vnd.tmrk.ecloud.publicIpsList+xml")
end
servers()
click to toggle source
def servers
@servers ||= Fog::Compute::Ecloud::Servers.
new( :connection => connection,
:href => href )
end
tasks()
click to toggle source
def tasks
@tasks ||= Fog::Compute::Ecloud::Tasks.
new( :connection => connection,
:href => href + "/tasksList" )
end