Class: AsposeImagingCloud::CopyFileRequest

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

Overview

Request model for copy_file operation.

Instance Method Summary collapse

Constructor Details

#initialize(src_path, dest_path, src_storage_name = nil, dest_storage_name = nil, version_id = nil) ⇒ CopyFileRequest

Copy file

Parameters:

  • src_path (String)

    Source file path e.g. '/folder/file.ext'

  • dest_path (String)

    Destination file path

  • src_storage_name (String) (defaults to: nil)

    Source storage name

  • dest_storage_name (String) (defaults to: nil)

    Destination storage name

  • version_id (String) (defaults to: nil)

    File version ID to copy



40
41
42
43
44
45
46
# File 'lib/aspose-imaging-cloud/models/requests/copy_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/copy_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.copy_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.copy_file"
  end

  # resource path
  local_var_path = '/imaging/storage/file/copy/{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