class CloudControl::API::Image

Public Instance Methods

list(options = {}) click to toggle source
# File lib/cloudcontrol/api/image.rb, line 3
def list(options = {})
  org_endpoint '/image/osImage'
  query_params options
  get_simple
end
list_customer_images(options = {}) click to toggle source
# File lib/cloudcontrol/api/image.rb, line 9
def list_customer_images(options = {})
  org_endpoint '/image/customerImage'
  query_params options
  get_simple
end
list_image_exports_inprogress(options = {}) click to toggle source
# File lib/cloudcontrol/api/image.rb, line 22
def list_image_exports_inprogress(options = {})
  org_endpoint '/image/exportInProgress'
  query_params options
  get_simple
end
list_ovf_packages(options = {}) click to toggle source
# File lib/cloudcontrol/api/image.rb, line 15
def list_ovf_packages(options = {})
  # Api does not support filtering on this.
  org_endpoint '/image/ovfPackage'
  query_params options
  get_simple
end