Class: AsposeImagingCloud::MoveFileRequest
- Inherits:
-
ImagingRequest
- Object
- ImagingRequest
- AsposeImagingCloud::MoveFileRequest
- Defined in:
- lib/aspose-imaging-cloud/models/requests/move_file_request.rb
Overview
Request model for move_file operation.
Instance Method Summary collapse
-
#initialize(src_path, dest_path, src_storage_name = nil, dest_storage_name = nil, version_id = nil) ⇒ MoveFileRequest
constructor
Move file.
- #to_http_info(config) ⇒ Object
Constructor Details
#initialize(src_path, dest_path, src_storage_name = nil, dest_storage_name = nil, version_id = nil) ⇒ MoveFileRequest
Move file
40 41 42 43 44 45 46 |
# File 'lib/aspose-imaging-cloud/models/requests/move_file_request.rb', line 40 def initialize(src_path, dest_path, src_storage_name = nil, dest_storage_name = nil, version_id = nil) @src_path = src_path @dest_path = dest_path @src_storage_name = src_storage_name @dest_storage_name = dest_storage_name @version_id = version_id end |
Instance Method Details
#to_http_info(config) ⇒ Object
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 84 85 86 87 88 89 |
# File 'lib/aspose-imaging-cloud/models/requests/move_file_request.rb', line 48 def to_http_info(config) # verify the required parameter 'src_path' is set if config.client_side_validation && @src_path.nil? raise ArgumentError, "Missing the required parameter 'src_path' when calling ImagingApi.move_file" end # verify the required parameter 'dest_path' is set if config.client_side_validation && @dest_path.nil? raise ArgumentError, "Missing the required parameter 'dest_path' when calling ImagingApi.move_file" end # resource path local_var_path = '/imaging/storage/file/move/{srcPath}'.sub('{' + 'srcPath' + '}', @src_path.to_s) # query parameters query_params = {} query_params[:destPath] = @dest_path query_params[:srcStorageName] = @src_storage_name unless @src_storage_name.nil? query_params[:destStorageName] = @dest_storage_name unless @dest_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 |