Class: AsposeImagingCloud::UploadFileRequest

Inherits:
ImagingRequest show all
Defined in:
lib/aspose-imaging-cloud/models/requests/upload_file_request.rb

Overview

Request model for upload_file operation.

Instance Method Summary collapse

Constructor Details

#initialize(path, file, storage_name = nil) ⇒ UploadFileRequest

Upload file

Parameters:

  • path (String)

    Path where to upload including filename and extension e.g. /file.ext or /Folder 1/file.ext If the content is multipart and path does not contains the file name it tries to get them from filename parameter from Content-Disposition header.

  • file (File)

    File to upload

  • storage_name (String) (defaults to: nil)

    Storage name



38
39
40
41
42
# File 'lib/aspose-imaging-cloud/models/requests/upload_file_request.rb', line 38

def initialize(path, file, storage_name = nil)
  @path = path
  @file = file
  @storage_name = storage_name
end

Instance Method Details

#to_http_info(config) ⇒ Object



44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/aspose-imaging-cloud/models/requests/upload_file_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.upload_file"
  end

  # verify the required parameter 'file' is set
  if config.client_side_validation && @file.nil?
    raise ArgumentError, "Missing the required parameter 'file' when calling ImagingApi.upload_file"
  end

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

  # query parameters
  query_params = {}
  query_params[:storageName] = @storage_name unless @storage_name.nil?

  # form parameters
  form_params = {}
  form_params['File'] = @file

  # 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(['multipart/form-data'])

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