Class: AsposeImagingCloud::CopyFolderRequest

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

Overview

Request model for copy_folder operation.

Instance Method Summary collapse

Constructor Details

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

Copy folder

Parameters:

  • src_path (String)

    Source folder path e.g. '/src'

  • dest_path (String)

    Destination folder path e.g. '/dst'

  • src_storage_name (String) (defaults to: nil)

    Source storage name

  • dest_storage_name (String) (defaults to: nil)

    Destination storage name



39
40
41
42
43
44
# File 'lib/aspose-imaging-cloud/models/requests/copy_folder_request.rb', line 39

def initialize(src_path, dest_path, src_storage_name = nil, dest_storage_name = nil)
  @src_path = src_path
  @dest_path = dest_path
  @src_storage_name = src_storage_name
  @dest_storage_name = dest_storage_name
end

Instance Method Details

#to_http_info(config) ⇒ Object



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
84
85
86
# File 'lib/aspose-imaging-cloud/models/requests/copy_folder_request.rb', line 46

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_folder"
  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_folder"
  end

  # resource path
  local_var_path = '/imaging/storage/folder/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?

  # 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