class AsposeImagingCloud::GetImageSearchStatusRequest

Request model for get_image_search_status operation.

Public Class Methods

new(search_context_id, folder = nil, storage = nil) click to toggle source

Gets the search context status. @param [String] search_context_id The search context identifier. @param [String] folder The folder. @param [String] storage The storage.

# File lib/aspose-imaging-cloud/models/requests/get_image_search_status_request.rb, line 38
def initialize(search_context_id, folder = nil, storage = nil)
  @search_context_id = search_context_id
  @folder = folder
  @storage = storage
end

Public Instance Methods

to_http_info(config) click to toggle source
# File lib/aspose-imaging-cloud/models/requests/get_image_search_status_request.rb, line 44
def to_http_info(config)
  # verify the required parameter 'search_context_id' is set
  if config.client_side_validation && @search_context_id.nil?
    raise ArgumentError, "Missing the required parameter 'search_context_id' when calling ImagingApi.get_image_search_status"
  end

  # resource path
  local_var_path = '/imaging/ai/imageSearch/{searchContextId}/status'.sub('{' + 'searchContextId' + '}', @search_context_id.to_s)

  # query parameters
  query_params = {}
  query_params[:folder] = @folder unless @folder.nil?
  query_params[:storage] = @storage unless @storage.nil?

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = ['JWT']

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = form_params.any? ? 'multipart/form-data' : select_header_content_type(['application/json'])

  AsposeImagingCloud::HttpRequest.new(local_var_path,
                                  header_params,
                                  query_params,
                                  form_params,
                                  post_body,
                                  auth_names)
end