class IronTitan::ImagesApi

Attributes

api_client[RW]

Public Class Methods

new(api_client = ApiClient.default) click to toggle source
# File lib/iron_titan/api/images_api.rb, line 19
def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Public Instance Methods

image_id_get(id, opts = {}) click to toggle source

Get information for image id. This gives more details about on image, such as the image name and other statistics. @param id ID of the image. @param [Hash] opts the optional parameters @return [ImageWrapper]

# File lib/iron_titan/api/images_api.rb, line 28
def image_id_get(id, opts = {})
  data, status_code, headers = image_id_get_with_http_info(id, opts)
  return data
end
image_id_get_with_http_info(id, opts = {}) click to toggle source

Get information for image id. This gives more details about on image, such as the image name and other statistics. @param id ID of the image. @param [Hash] opts the optional parameters @return [Array<(ImageWrapper, Fixnum, Hash)>] ImageWrapper data, response status code and response headers

# File lib/iron_titan/api/images_api.rb, line 38
def image_id_get_with_http_info(id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug "Calling API: ImagesApi#image_id_get ..."
  end
  
  # verify the required parameter 'id' is set
  fail "Missing the required parameter 'id' when calling image_id_get" if id.nil?
  
  # resource path
  local_var_path = "/image/{id}".sub('{format}','json').sub('{' + 'id' + '}', id.to_s)

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}

  # HTTP header 'Accept' (if needed)
  _header_accept = ['application/json']
  _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result

  # HTTP header 'Content-Type'
  _header_content_type = ['application/json']
  header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type)

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  
  auth_names = []
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'ImageWrapper')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ImagesApi#image_id_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
images_get(opts = {}) click to toggle source

Get all image names. TODO: Using images for lack of a better term. See github.com/iron-io/titan/issues/43 for discussion. @param [Hash] opts the optional parameters @return [ImagesWrapper]

# File lib/iron_titan/api/images_api.rb, line 87
def images_get(opts = {})
  data, status_code, headers = images_get_with_http_info(opts)
  return data
end
images_get_with_http_info(opts = {}) click to toggle source

Get all image names. TODO: Using images for lack of a better term. See github.com/iron-io/titan/issues/43 for discussion. @param [Hash] opts the optional parameters @return [Array<(ImagesWrapper, Fixnum, Hash)>] ImagesWrapper data, response status code and response headers

# File lib/iron_titan/api/images_api.rb, line 96
def images_get_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug "Calling API: ImagesApi#images_get ..."
  end
  
  # resource path
  local_var_path = "/images".sub('{format}','json')

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}

  # HTTP header 'Accept' (if needed)
  _header_accept = ['application/json']
  _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result

  # HTTP header 'Content-Type'
  _header_content_type = ['application/json']
  header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type)

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  
  auth_names = []
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'ImagesWrapper')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ImagesApi#images_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end