class AsposeImagingCloud::ObjectExistsRequest

Request model for object_exists operation.

Public Class Methods

new(path, storage_name = nil, version_id = nil) click to toggle source

Check if file or folder exists @param [String] path File or folder path e.g. '/file.ext' or '/folder' @param [String] storage_name Storage name @param [String] version_id File version ID

# File lib/aspose-imaging-cloud/models/requests/object_exists_request.rb, line 38
def initialize(path, storage_name = nil, version_id = nil)
  @path = path
  @storage_name = storage_name
  @version_id = version_id
end

Public Instance Methods

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

  # resource path
  local_var_path = '/imaging/storage/exist/{path}'.sub('{' + 'path' + '}', @path.to_s)

  # query parameters
  query_params = {}
  query_params[:storageName] = @storage_name unless @storage_name.nil?
  query_params[:versionId] = @version_id unless @version_id.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