|
4 | 4 | Aspose.PDF Cloud API Reference |
5 | 5 |
|
6 | 6 |
|
7 | | -Copyright (c) 2023 Aspose.PDF Cloud |
| 7 | +Copyright (c) 2024 Aspose.PDF Cloud |
8 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy |
9 | 9 | of this software and associated documentation files (the "Software"), to deal |
10 | 10 | in the Software without restriction, including without limitation the rights |
@@ -17500,6 +17500,7 @@ def get_pdf_in_storage_to_svg(self, name, **kwargs): |
17500 | 17500 | :param bool compress_output_to_zip_archive: Specifies whether output will be created as one zip-archive. |
17501 | 17501 | :param str folder: The document folder. |
17502 | 17502 | :param str storage: The document storage. |
| 17503 | + :param str password: The password (Base64). |
17503 | 17504 | :return: file |
17504 | 17505 | If the method is called asynchronously, |
17505 | 17506 | returns the request thread. |
@@ -17528,12 +17529,13 @@ def get_pdf_in_storage_to_svg_with_http_info(self, name, **kwargs): |
17528 | 17529 | :param bool compress_output_to_zip_archive: Specifies whether output will be created as one zip-archive. |
17529 | 17530 | :param str folder: The document folder. |
17530 | 17531 | :param str storage: The document storage. |
| 17532 | + :param str password: The password (Base64). |
17531 | 17533 | :return: file |
17532 | 17534 | If the method is called asynchronously, |
17533 | 17535 | returns the request thread. |
17534 | 17536 | """ |
17535 | 17537 |
|
17536 | | - all_params = ['name', 'compress_output_to_zip_archive', 'folder', 'storage'] |
| 17538 | + all_params = ['name', 'compress_output_to_zip_archive', 'folder', 'storage', 'password'] |
17537 | 17539 | all_params.append('callback') |
17538 | 17540 | all_params.append('_return_http_data_only') |
17539 | 17541 | all_params.append('_preload_content') |
@@ -17566,6 +17568,8 @@ def get_pdf_in_storage_to_svg_with_http_info(self, name, **kwargs): |
17566 | 17568 | query_params.append(('folder', params['folder'])) |
17567 | 17569 | if 'storage' in params: |
17568 | 17570 | query_params.append(('storage', params['storage'])) |
| 17571 | + if 'password' in params: |
| 17572 | + query_params.append(('password', params['password'])) |
17569 | 17573 |
|
17570 | 17574 | header_params = {} |
17571 | 17575 |
|
@@ -37269,6 +37273,7 @@ def put_pdf_in_request_to_svg(self, out_path, **kwargs): |
37269 | 37273 | for asynchronous request. (optional) |
37270 | 37274 | :param str out_path: Full resulting filename (ex. /folder1/folder2/result.svg) (required) |
37271 | 37275 | :param str storage: The document storage. |
| 37276 | + :param str password: The password (Base64). |
37272 | 37277 | :param file file: A file to be converted. |
37273 | 37278 | :return: AsposeResponse |
37274 | 37279 | If the method is called asynchronously, |
@@ -37296,13 +37301,14 @@ def put_pdf_in_request_to_svg_with_http_info(self, out_path, **kwargs): |
37296 | 37301 | for asynchronous request. (optional) |
37297 | 37302 | :param str out_path: Full resulting filename (ex. /folder1/folder2/result.svg) (required) |
37298 | 37303 | :param str storage: The document storage. |
| 37304 | + :param str password: The password (Base64). |
37299 | 37305 | :param file file: A file to be converted. |
37300 | 37306 | :return: AsposeResponse |
37301 | 37307 | If the method is called asynchronously, |
37302 | 37308 | returns the request thread. |
37303 | 37309 | """ |
37304 | 37310 |
|
37305 | | - all_params = ['out_path', 'storage', 'file'] |
| 37311 | + all_params = ['out_path', 'storage', 'password', 'file'] |
37306 | 37312 | all_params.append('callback') |
37307 | 37313 | all_params.append('_return_http_data_only') |
37308 | 37314 | all_params.append('_preload_content') |
@@ -37331,6 +37337,8 @@ def put_pdf_in_request_to_svg_with_http_info(self, out_path, **kwargs): |
37331 | 37337 | query_params.append(('outPath', params['out_path'])) |
37332 | 37338 | if 'storage' in params: |
37333 | 37339 | query_params.append(('storage', params['storage'])) |
| 37340 | + if 'password' in params: |
| 37341 | + query_params.append(('password', params['password'])) |
37334 | 37342 |
|
37335 | 37343 | header_params = {} |
37336 | 37344 |
|
@@ -39053,6 +39061,7 @@ def put_pdf_in_storage_to_svg(self, name, out_path, **kwargs): |
39053 | 39061 | :param str out_path: Full resulting filename (ex. /folder1/folder2/result.svg) (required) |
39054 | 39062 | :param str folder: The document folder. |
39055 | 39063 | :param str storage: The document storage. |
| 39064 | + :param str password: The password (Base64). |
39056 | 39065 | :return: AsposeResponse |
39057 | 39066 | If the method is called asynchronously, |
39058 | 39067 | returns the request thread. |
@@ -39081,12 +39090,13 @@ def put_pdf_in_storage_to_svg_with_http_info(self, name, out_path, **kwargs): |
39081 | 39090 | :param str out_path: Full resulting filename (ex. /folder1/folder2/result.svg) (required) |
39082 | 39091 | :param str folder: The document folder. |
39083 | 39092 | :param str storage: The document storage. |
| 39093 | + :param str password: The password (Base64). |
39084 | 39094 | :return: AsposeResponse |
39085 | 39095 | If the method is called asynchronously, |
39086 | 39096 | returns the request thread. |
39087 | 39097 | """ |
39088 | 39098 |
|
39089 | | - all_params = ['name', 'out_path', 'folder', 'storage'] |
| 39099 | + all_params = ['name', 'out_path', 'folder', 'storage', 'password'] |
39090 | 39100 | all_params.append('callback') |
39091 | 39101 | all_params.append('_return_http_data_only') |
39092 | 39102 | all_params.append('_preload_content') |
@@ -39122,6 +39132,8 @@ def put_pdf_in_storage_to_svg_with_http_info(self, name, out_path, **kwargs): |
39122 | 39132 | query_params.append(('folder', params['folder'])) |
39123 | 39133 | if 'storage' in params: |
39124 | 39134 | query_params.append(('storage', params['storage'])) |
| 39135 | + if 'password' in params: |
| 39136 | + query_params.append(('password', params['password'])) |
39125 | 39137 |
|
39126 | 39138 | header_params = {} |
39127 | 39139 |
|
|
0 commit comments