aspose_cells_cloud 24.1.1 → 24.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +303 -91
  4. data/lib/aspose_cells_cloud/api/cells_api.rb +64 -0
  5. data/lib/aspose_cells_cloud/models/analyze_excel_request.rb +234 -0
  6. data/lib/aspose_cells_cloud/models/analyze_excel_response.rb +210 -0
  7. data/lib/aspose_cells_cloud/models/analyze_suggestion.rb +294 -0
  8. data/lib/aspose_cells_cloud/models/analyzed_column_description.rb +306 -0
  9. data/lib/aspose_cells_cloud/models/analyzed_result.rb +258 -0
  10. data/lib/aspose_cells_cloud/models/analyzed_table_description.rb +390 -0
  11. data/lib/aspose_cells_cloud/models/auto_fitter_options.rb +1 -13
  12. data/lib/aspose_cells_cloud/models/cell_area.rb +4 -4
  13. data/lib/aspose_cells_cloud/models/cells_cloud_file_info.rb +4 -4
  14. data/lib/aspose_cells_cloud/models/cells_document_properties.rb +1 -1
  15. data/lib/aspose_cells_cloud/models/chart.rb +3 -3
  16. data/lib/aspose_cells_cloud/models/color.rb +4 -4
  17. data/lib/aspose_cells_cloud/models/color_filter.rb +1 -1
  18. data/lib/aspose_cells_cloud/models/columns.rb +3 -3
  19. data/lib/aspose_cells_cloud/models/data_cleansing.rb +234 -0
  20. data/lib/aspose_cells_cloud/models/data_cleansing_request.rb +258 -0
  21. data/lib/aspose_cells_cloud/models/data_column_fill_value.rb +222 -0
  22. data/lib/aspose_cells_cloud/models/data_deduplication_request.rb +258 -0
  23. data/lib/aspose_cells_cloud/models/data_fill.rb +234 -0
  24. data/lib/aspose_cells_cloud/models/data_fill_request.rb +258 -0
  25. data/lib/aspose_cells_cloud/models/data_fill_value.rb +258 -0
  26. data/lib/aspose_cells_cloud/models/deduplication_region.rb +222 -0
  27. data/lib/aspose_cells_cloud/models/delete_incomplete_rows_request.rb +258 -0
  28. data/lib/aspose_cells_cloud/models/discover_chart.rb +270 -0
  29. data/lib/aspose_cells_cloud/models/discover_pivot_table.rb +282 -0
  30. data/lib/aspose_cells_cloud/models/excel_data_statistics.rb +222 -0
  31. data/lib/aspose_cells_cloud/models/file_info.rb +3 -3
  32. data/lib/aspose_cells_cloud/models/pdf_security_options.rb +1 -13
  33. data/lib/aspose_cells_cloud/models/workbook_settings.rb +1 -13
  34. data/lib/aspose_cells_cloud/models/worksheet_data_statistics.rb +318 -0
  35. data/lib/aspose_cells_cloud/requests/post_analyze_excel_request.rb +103 -0
  36. data/lib/aspose_cells_cloud/requests/post_data_cleansing_request.rb +103 -0
  37. data/lib/aspose_cells_cloud/requests/post_data_deduplication_request.rb +103 -0
  38. data/lib/aspose_cells_cloud/requests/post_data_fill_request.rb +103 -0
  39. data/lib/aspose_cells_cloud/requests/post_delete_incomplete_rows_request.rb +103 -0
  40. data/lib/aspose_cells_cloud/requests/post_workbook_data_cleansing_request.rb +149 -0
  41. data/lib/aspose_cells_cloud/requests/post_workbook_data_deduplication_request.rb +149 -0
  42. data/lib/aspose_cells_cloud/requests/post_workbook_data_fill_request.rb +149 -0
  43. data/lib/aspose_cells_cloud/version.rb +1 -1
  44. data/lib/aspose_cells_cloud.rb +27 -0
  45. data/spec/api/data_processing_controller_spec.rb +73 -0
  46. metadata +41 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 552a1c4948b45d871bbac97577cefe94533b24775b0b7916f7f416b319d2541f
4
- data.tar.gz: 6bdddabcca1a7d71cfd4f958d4a2a12bf40304f173e8c85678c1a2f24fc6c87f
3
+ metadata.gz: aafed91fd5ad7d98ee6419cfba2ee2848b047fcdb51f54caa0b5af02a40e6848
4
+ data.tar.gz: c74e7fb34b6de9b7eef3ef31ad8c42acbf5a97207d239d6411919f319668ff8c
5
5
  SHA512:
6
- metadata.gz: 4e503f90ce6bced2ef2e5ad718197a66dbe5b56eec31301814c1762cc6622efa9d3c8f5991f8bfbfdc781ba90dd70b0e69122f7ef8a2c68ec37e391cb621db57
7
- data.tar.gz: f01a0f334c977e77830a0bba04acb1719655b29c8423fa2b0b3d304e890c938551f36be927882cc17303e054655041e459c4ea36ebd7e4b8767a70b3d42358b4
6
+ metadata.gz: 04a1a41e6b5b55714df4d68b779ac2a525f4b531820300b2d87533dbe9dc897f3f1c373bc750170a74e1a9cab7d43921e92369d52d32b95a743fc8261e583adf
7
+ data.tar.gz: 879f04967f923f4e9410015739d5cd63fc894509a6581390f59012b91b62c2911159b425d570ed4daa948670dcce0d2a98194466248e1b2d61e66efd24c398b1
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 Aspose Pty Ltd
3
+ Copyright (c) 2024 Aspose Pty Ltd
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,31 +1,147 @@
1
- ![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![Gem](https://img.shields.io/gem/v/aspose_cells_cloud) ![Gem](https://img.shields.io/gem/dt/aspose_cells_cloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-ruby)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-ruby/23.12)
1
+ ![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![Gem](https://img.shields.io/gem/v/aspose_cells_cloud) ![Gem](https://img.shields.io/gem/dt/aspose_cells_cloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-ruby)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-ruby/24.3)
2
2
 
3
3
 
4
- # Ruby SDK for Spreadsheet Processing in the Cloud
4
+ Aspose.Cells Cloud for Ruby enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats.
5
5
 
6
- Ruby Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate Microsoft Excel® spreadsheet generation, manipulation, conversion & inspection features into your own applications.
7
6
 
8
- [Aspose.Cells Cloud SDK for Ruby](https://products.aspose.cloud/cells/ruby) offers Excel® file creation, editing, conversion, & rendering. Developers can format worksheets, rows, columns or cells to the most granular level, create & manipulate chart & pivot tables, render worksheets, charts and specific data ranges to PDF & images, add & calculate Excel's built-in and custom formulas and much more.
7
+ # Ruby package for Aspose.Cells Cloud
9
8
 
10
- ## Cloud Spreadsheet Processor in a Nutshell
9
+ Enhance your Ruby applications with the [Aspose.Cells Cloud](https://products.aspose.cloud/cells/ruby) , enabling seamless integration with [Excel, ODS, CSV, Json and other spreadsheet document formats](https://docs.aspose.cloud/cells/supported-file-formats/). With its powerful APIs, developers can effortlessly read, convert, create, edit, and manipulate the contents of Excel documents without the need for any office software installed on the machine.
11
10
 
12
- - Create Excel files via API or [Smart Markers](https://docs.aspose.cloud/cells/create-excel-workbook-from-a-smartmarker-template/).
13
- - [Create & refresh Pivot Tables](https://docs.aspose.cloud/cells/working-with-pivot-tables/) & Excel charts.
14
- - Split, merger, protect & un-protect spreadsheets.
15
- - Create & manipulate spark-lines & [conditional formatting](https://docs.aspose.cloud/cells/working-with-conditional-formatting/).
16
- - Convert charts, worksheets or data ranges to images or PDF.
17
- - Manage comments, bookmarks, OleObjects, hyperlinks & filters.
18
- - Set complex formulas & calculate results via API.
19
- - Set protection on workbook, worksheet, cell, column or row.
20
- - Create & manipulate named ranges.
21
- - Convert worksheets to PDF, XPS & SVG formats.
22
- - [Convert Excel files to popular formats](https://docs.aspose.cloud/cells/convert-excel-workbook-to-different-file-formats/).
11
+ ## Manipulate Excel and other spreadsheet files in the Cloud
23
12
 
13
+ - File Manipulation: Users can upload, download, delete, and manage Excel files stored in the cloud.
14
+ - Formatting: Supports formatting of cells, fonts, colors, and alignment modes in Excel files to cater to users' specific requirements.
15
+ - Data Processing: Powerful functions for data processing including reading, writing, modifying cell data, performing formula calculations, and formatting data.
16
+ - Formula Calculation: Built-in formula engine handles complex formula calculations in Excel and returns accurate results.
17
+ - Chart Manipulation: Users can create, edit, and delete charts from Excel files for data analysis and visualization needs.
18
+ - Table Processing: Offers robust processing capabilities for various form operations such as creation, editing, formatting, and conversion, meeting diverse form processing needs.
19
+ - Data Verification: Includes data verification function to set cell data type, range, uniqueness, ensuring data accuracy and integrity.
20
+ - Batch Processing: Supports batch processing of multiple Excel documents, such as batch format conversion, data extraction, and style application..
21
+ - Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
22
+ - Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.
24
23
 
25
- ## Feature & Enhancements in Version 23.12
24
+
25
+
26
+ ## Feature & Enhancements in Version 24.3
26
27
 
27
28
  Full list of issues covering all changes in this release:
28
29
 
30
+ - Support data deduplication.
31
+ - Support data filling.
32
+ - Support to delete incomplete rows.
33
+ - Support data cleansing.
34
+
35
+ ## Support file format
36
+
37
+ |**Format**|**Description**|**Load**|**Save**|
38
+ | :- | :- | :- | :- |
39
+ |[XLS](https://docs.fileformat.com/spreadsheet/xls/)|Excel 95/5.0 - 2003 Workbook.|√|√|
40
+ |[XLSX](https://docs.fileformat.com/spreadsheet/xlsx/)|Office Open XML SpreadsheetML Workbook or template file, with or without macros.|√|√|
41
+ |[XLSB](https://docs.fileformat.com/spreadsheet/xlsb/)|Excel Binary Workbook.|√|√|
42
+ |[XLSM](https://docs.fileformat.com/spreadsheet/xlsm/)|Excel Macro-Enabled Workbook.|√|√|
43
+ |[XLT](https://docs.fileformat.com/spreadsheet/xlt/)|Excel 97 - Excel 2003 Template.|√|√|
44
+ |[XLTX](https://docs.fileformat.com/spreadsheet/xltx/)|Excel Template.|√|√|
45
+ |[XLTM](https://docs.fileformat.com/spreadsheet/xltm/)|Excel Macro-Enabled Template.|√|√|
46
+ |[XLAM](https://docs.fileformat.com/spreadsheet/xlam/)|An Excel Macro-Enabled Add-In file that's used to add new functions to Excel.| |√|
47
+ |[CSV](https://docs.fileformat.com/spreadsheet/csv/)|CSV (Comma Separated Value) file.|√|√|
48
+ |[TSV](https://docs.fileformat.com/spreadsheet/tsv/)|TSV (Tab-separated values) file.|√|√|
49
+ |TabDelimited|Tab-delimited text file, same with TSV file.|√|√|
50
+ |[TXT](https://docs.fileformat.com/word-processing/txt/)|Delimited plain text file.|√|√|
51
+ |[HTML](https://docs.fileformat.com/web/html/)|HTML format.|√|√|
52
+ |[MHTML](https://docs.fileformat.com/web/mhtml/)|MHTML file.|√|√|
53
+ |[ODS](https://docs.fileformat.com/spreadsheet/ods/)|ODS (OpenDocument Spreadsheet).|√|√|
54
+ |SpreadsheetML|Excel 2003 XML file.|√|√|
55
+ |[Numbers](https://docs.fileformat.com/spreadsheet/numbers/)|The document is created by Apple's "Numbers" application which forms part of Apple's iWork office suite, a set of applications which run on the Mac OS X and iOS operating systems.|√||
56
+ |[JSON](https://docs.fileformat.com/web/json/)|JavaScript Object Notation|√|√|
57
+ |[DIF](https://docs.fileformat.com/spreadsheet/dif/)|Data Interchange Format.| |√|
58
+ |[PDF](https://docs.fileformat.com/pdf/)|Adobe Portable Document Format.| |√|
59
+ |[XPS](https://docs.fileformat.com/page-description-language/xps/)|XML Paper Specification Format.| |√|
60
+ |[SVG](https://docs.fileformat.com/page-description-language/svg/)|Scalable Vector Graphics Format.| |√|
61
+ |[TIFF](https://docs.fileformat.com/image/tiff/)|Tagged Image File Format| |√|
62
+ |[PNG](https://docs.fileformat.com/image/png/)|Portable Network Graphics Format| |√|
63
+ |[BMP](https://docs.fileformat.com/image/bmp/)|Bitmap Image Format| |√|
64
+ |[EMF](https://docs.fileformat.com/image/emf/)|Enhanced metafile Format| |√|
65
+ |[JPEG](https://docs.fileformat.com/image/jpeg/)|JPEG is a type of image format that is saved using the method of lossy compression.| |√|
66
+ |[GIF](https://docs.fileformat.com/image/gif/)|Graphical Interchange Format| |√|
67
+ |[MARKDOWN](https://docs.fileformat.com/word-processing/md/)|Represents a markdown document.| |√|
68
+ |[SXC](https://docs.fileformat.com/spreadsheet/sxc/)|An XML based format used by OpenOffice and StarOffice|√|√|
69
+ |[FODS](https://docs.fileformat.com/spreadsheet/fods/)|This is an Open Document format stored as flat XML.|√|√|
70
+ |[DOCX](https://docs.fileformat.com/word-processing/docx/)|A well-known format for Microsoft Word documents that is a combination of XML and binary files.||√|
71
+ |[PPTX](https://docs.fileformat.com/presentation/pptx/)|The PPTX format is based on the Microsoft PowerPoint open XML presentation file format.||√|
72
+
73
+
74
+ ## Quick Start Guide
75
+
76
+ To begin with Aspose.Cells Cloud, here's what you need to do:
77
+
78
+ 1. Sign up for an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) to obtain your application details.
79
+ 2. Install the Aspose.Cells Cloud Ruby Package from [RubyGems](https://rubygems.org/).
80
+ - execute the following command to get the latest Gem package.
81
+
82
+ ```console
83
+ gem 'aspose_cells_cloud', '~> 20.10'
84
+ ```
85
+
86
+ or install directly
87
+
88
+ ```console
89
+ gem install aspose_cells_cloud
90
+ ```
91
+
92
+ 3. Use the conversion code provided below as a reference to add or modify your application.
93
+
94
+ ```ruby
95
+ require 'openssl'
96
+ require 'bundler'
97
+ require 'aspose_cells_cloud'
98
+
99
+ @instance = AsposeCellsCloud::CellsApi.new(ENV['CellsCloudClientId'], ENV['CellsCloudClientSecret'],'v3.0',ENV['CellsCloudApiBaseUrl'])
100
+
101
+ remote_folder = 'TestData/In'
102
+
103
+ local_name = 'Book1.xlsx'
104
+ remote_name = 'Book1.xlsx'
105
+
106
+ format = "csv"
107
+
108
+
109
+ mapFiles = { }
110
+ mapFiles = { }
111
+ mapFiles[local_name] = ::File.open(File.expand_path("TestData/"+local_name),"r")
112
+
113
+ uploadrequest = AsposeCellsCloud::UploadFileRequest.new( { :UploadFiles=>mapFiles,:path=>remote_folder })
114
+ @instance.upload_file(uploadrequest)
115
+ mapFiles[local_name]= ::File.open(File.expand_path("TestData/"+local_name),"r")
116
+ request = AsposeCellsCloud::PutConvertWorkbookRequest.new(:File=>mapFiles,:format=>format);
117
+ @instance.put_convert_workbook(request);
118
+
119
+ ```
120
+
121
+ ## Aspose.Cells Cloud in Popular Languages
122
+
123
+ | .NET | Java | PHP | Python | Node.js | Android | Swift | Perl | GO |
124
+ |---|---|---|---|---|---|---|---|---|
125
+ | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-php) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-python) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-node) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-android) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-swift) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-go) |
126
+ | [NuGet](https://www.nuget.org/packages/Aspose.Cells-Cloud/) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-cells-cloud) | [Composer](https://packagist.org/packages/aspose/cells-sdk-php) | [PIP](https://pypi.org/project/asposecellscloud/) | [NPM](https://www.npmjs.com/package/asposecellscloud) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-cells-cloud-android) | [POD](https://cocoapods.org/pods/AsposeCellsCloud) | [CPAN](https://metacpan.org/release/AsposeCellsCloud-CellsApi) | [GO](https://pkg.go.dev/github.com/aspose-cells-cloud/aspose-cells-cloud-go/v20?tab=overview) |
127
+
128
+ [Product Page](https://products.aspose.cloud/cells/ruby) | [Documentation](https://docs.aspose.cloud/cells/) | [Live Demo](https://products.aspose.app/cells/family) | [API Reference](https://apireference.aspose.cloud/cells/) | [Code Samples](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/tree/master/spec) | [Blog](https://blog.aspose.cloud/category/cells/) | [Free Support](https://forum.aspose.cloud/c/cells) | [Free Trial](https://dashboard.aspose.cloud/#/apps)
129
+
130
+ # Release history version
131
+
132
+ ## Enhancements in Version 24.2.1
133
+
134
+ - Support data deduplication.
135
+
136
+ ## Enhancements in Version 24.1.1
137
+
138
+ - Fixed spelling mistakes for several functions.
139
+ - Add the PostFitTallToPages method for page setup controller.
140
+ - Add the PostFitWideToPages method for page setup controller.
141
+ - Optimize save options about paginated.
142
+
143
+ ## Enhancements in Version 23.12.0
144
+
29
145
  - Conversion APIs add region parameter.
30
146
  - Protection APIs add region parameter.
31
147
  - Assemble data API adds region parameter.
@@ -37,96 +153,192 @@ Full list of issues covering all changes in this release:
37
153
  - Reverse data API adds region parameter.
38
154
  - Rotate data API adds region parameter.
39
155
 
40
- ## Read & Write Spreadsheet Formats
156
+ ## Enhancements in Version 23.11
41
157
 
42
- **Microsoft Excel:** XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM
43
- **OpenOffice:** ODS
44
- **SpreadsheetML:** XML
45
- **Text:** CSV, TSV, TXT (TabDelimited)
46
- **Web:** HTML, MHTML
158
+ - Optimize import xml data into Excel file.
159
+ - Optimize import json data into Excel file.
160
+ - Remove deprecated functions, class and test case.
47
161
 
48
- ## Save Spreadsheets As
162
+ ## Enhancements in Version 23.10
49
163
 
50
- **Microsoft Excel:** XLS, XLSX, XLSB
51
- **OpenOffice:** ODS
52
- **SpreadsheetML:** XML
53
- **Text:** CSV, TSV, TXT (TabDelimited)
54
- **Web:** HTML, MHTML
55
- **Fixed Layout:** PDF, XPS
56
- **Images:** PNG, JPG, TIFF, SVG
57
- **Markdown:** MD
58
- **Other:** DIF
164
+ - Fix protect workbook request.
165
+ - Fix range copy API.
166
+ - Optimize workbook protect API.
59
167
 
60
- ## Read Other Formats
168
+ ## Enhancements in Version 23.9
61
169
 
62
- SXC, FODS
170
+ - Support to data sorting on range controller.
171
+ - Support to remove duplicate data on list object.
172
+ - Support to insert slicer for list object.
173
+ - Optimize list object and related objects.
63
174
 
64
- ## Integrated Storage API
175
+ ## Enhancements in Version 23.8
65
176
 
66
- Since version 19.9, SDK includes support of storage operations for better user experience and unification. It gives you an ability to;
177
+ - Support to lock API.
178
+ - Optimize protect API.
67
179
 
68
- - Upload, download, copy, move and delete files, including versions handling (if you are using Cloud storage that supports this feature - true by default).
69
- - Create, copy, move and delete folders.
70
- - Copy and move files and folders across separate storages in scope of a single operation.
71
- - Check if certain file, folder or storage exists.
180
+ ## Enhancements in Version 23.7
72
181
 
73
- ## Get Started with Aspose.Cells Cloud SDK for Ruby
182
+ - Support to repair API.
183
+ - Remove GetExtractBarcodes API.
74
184
 
75
- First, you need to register an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) and get the application information.
185
+ ## Enhancements in Version 23.6
76
186
 
77
- Next, execute the following command to get the latest Gem package.
187
+ - Support to batch lock multi-files.
188
+ - Support to batch unlock multi-files.
189
+ - Support to protect lock multi-files.
190
+ - Support to split lock multi-files.
191
+ - Fix put document property api.
78
192
 
79
- ```console
80
- gem 'aspose_cells_cloud', '~> 20.10'
81
- ```
193
+ ## Enhancements in Version 23.5
82
194
 
83
- or install directly
195
+ - Fix few method names for spelling error.
84
196
 
85
- ```console
86
- gem install aspose_cells_cloud
87
- ```
197
+ ## Enhancements in Version 23.4
88
198
 
89
- ## Delete Row from a Worksheet via Ruby Code
199
+ -Add import xml data api.
200
+ -Add export xml data api.
90
201
 
91
- ```ruby
92
- class Row
93
-
94
- include AsposeCellsCloud
95
-
96
- def initialize
97
- #Get Client Secret and Client Id from https://cloud.aspose.com
98
- @instance = AsposeCellsCloud::CellsApi.new($client_id,$client_secret,"v3.0")
99
- end
100
-
101
- def upload_file(file_name)
102
- remote_folder = 'TestData/In'
103
- local_name = 'Book1.xlsx'
104
- remote_name = 'Book1.xlsx'
105
- mapFiles = { }
106
- mapFiles[local_name] = ::File.open(File.expand_path("TestData/"+local_name),"r")
107
- uploadrequest = AsposeCellsCloud::UploadFileRequest.new( { :UploadFiles=>mapFiles,:path=>remote_folder })
108
- @instance.upload_file(uploadrequest)
109
- end
110
-
111
- # Delete worksheet row.
112
- def delete_worksheet_row
113
- remote_folder = 'TestData/In'
114
- remote_name = 'Book1.xlsx'
115
- request = AsposeCellsCloud::DeleteWorksheetRowRequest.new(:name=>remote_name,:sheetName=>'Sheet1',:rowIndex=>1,:folder=>remote_folder,:storageName=>'');
116
- @instance.delete_worksheet_row(request);
117
- end
118
-
119
- end
120
-
121
- row = Row.new()
122
- puts row.delete_worksheet_row
123
- ```
202
+ ## Enhancements in Version 23.3
124
203
 
125
- ## Aspose.Cells Cloud SDKs in Popular Languages
204
+ - Adopt the new model.
126
205
 
127
- | .NET | Java | PHP | Python | Node.js | Android | Swift | Perl | GO |
128
- |---|---|---|---|---|---|---|---|---|
129
- | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-php) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-python) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-node) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-android) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-swift) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-go) |
130
- | [NuGet](https://www.nuget.org/packages/Aspose.Cells-Cloud/) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-cells-cloud) | [Composer](https://packagist.org/packages/aspose/cells-sdk-php) | [PIP](https://pypi.org/project/asposecellscloud/) | [NPM](https://www.npmjs.com/package/asposecellscloud) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-cells-cloud-android) | [POD](https://cocoapods.org/pods/AsposeCellsCloud) | [CPAN](https://metacpan.org/release/AsposeCellsCloud-CellsApi) | [GO](https://pkg.go.dev/github.com/aspose-cells-cloud/aspose-cells-cloud-go/v20?tab=overview) |
206
+ ## Enhancements in Version 22.12
131
207
 
132
- [Product Page](https://products.aspose.cloud/cells/ruby) | [Documentation](https://docs.aspose.cloud/cells/) | [Live Demo](https://products.aspose.app/cells/family) | [API Reference](https://apireference.aspose.cloud/cells/) | [Code Samples](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/tree/master/spec) | [Blog](https://blog.aspose.cloud/category/cells/) | [Free Support](https://forum.aspose.cloud/c/cells) | [Free Trial](https://dashboard.aspose.cloud/#/apps)
208
+ - Support chart axis operations.
209
+
210
+ ## Enhancements in Version 22.11
211
+
212
+ - Add api for converting workbook to json.
213
+ - Add api for converting workbook to sql.
214
+ - Add api for converting workbook to csv.
215
+
216
+ ## Enhancements in Version 22.10
217
+
218
+ - Add api for converting workbook to pptx.
219
+ - Add api for converting workbook to html.
220
+ - Add api for converting workbook to markdown.
221
+
222
+ ## Enhancements in Version 22.9
223
+
224
+ - Add api for converting workbook to png.
225
+ - Add api for converting workbook to pdf.
226
+ - Add api for converting workbook to docx
227
+
228
+ ## Enhancements in Version 22.8
229
+
230
+ - Support transposing Excel Rows to Columns.
231
+
232
+ ## Enhancements in Version 22.7
233
+
234
+ - Add 4 kinds of Save Option.
235
+ - Add the checkExcelRestriction parameter for multiple APIs.
236
+
237
+ ## Enhancements in Version 22.5
238
+
239
+ - Add a new API for getting barcode description.
240
+
241
+ ## Enhancements in Version 22.4
242
+
243
+ - Export API adds extended query parameters.
244
+ - Convert API adds extended query parameters.
245
+ - SaveAs API adds extended query parameters.
246
+ - Get Workbook API adds extended query parameters.
247
+
248
+ ## Enhancements in Version 22.3
249
+
250
+ -Add new API about adding digital signature for cloud file.
251
+
252
+ ## Enhancements in Version 22.2
253
+
254
+ - Update return value for the DeleteUnprotectWorksheet API on Aspose.Cells Cloud.
255
+ - Update return value for the PutProtectWorksheet API on Aspose.Cells Cloud.
256
+ - Update return value for the PostSetCellHtmlString API on Aspose.Cells Cloud.
257
+ - Update return value for the PostUpdateWorksheetProperty API on Aspose.Cells Cloud.
258
+
259
+ ## Enhancements in Version 22.1
260
+
261
+ - SaveAs API add the parameter of target storage name.
262
+ - Workbok merged API add the parameter of merged file storage name.
263
+ - Workbok split API add the parameter of target storage name
264
+ - Workbok smart marker API add the parameter of output storage name.
265
+ - Batch convert API add the parameters of intput and output storage name.
266
+ - Remove AutoshapesController from Aspose.Cells Cloud.
267
+ - Rename LiteCellsApi to LightCellsApi.
268
+
269
+ ## Enhancements in Version 21.12
270
+
271
+ - Improvement for conversion API.
272
+ - Improvement for batch data import to support to set cell formula.
273
+ - Improvement for setting row height and column wight to support to set multi-rows and multi-columns.
274
+ - Support to set cell formula in batch data import.
275
+ - Add a new API for updating the list column.
276
+ - Add a new API for reversing columns and rows.
277
+ - Add new APIs for grouping and ungrouping shapes.
278
+
279
+ ## Enhancements in Version 21.11
280
+
281
+ - Add new API for workbook get page count on Aspose.Cells Cloud.
282
+ - Add new API for worksheet get page count on Aspose.Cells Cloud.
283
+ - Add new API for compress excel file on Aspose.Cells Cloud.
284
+ - Add new feature for replace API.
285
+
286
+ ## Enhancements in Version 21.10
287
+
288
+ - Add new API for support delete multiple worksheets in a single call.
289
+ - Add new API for supports batch convert excel files.
290
+
291
+ ## Enhancements in Version 21.9
292
+
293
+ - Correct the return type of the following REST APIs.
294
+
295
+ ## Enhancements in Version 21.8
296
+
297
+ - Improvement for getting list object Api.
298
+ - Add import Api.
299
+
300
+ ## Enhancements in Version 21.7
301
+
302
+ - Fix search API.
303
+ - Fix split API.
304
+
305
+ ## Enhancements in Version 21.6
306
+
307
+ - Improvement document properties.
308
+ - Update the return value of put/post/delete.
309
+ - Improvement export API.
310
+ - Improve split API.
311
+ - Improve merge API.
312
+ - Improve unlock API.
313
+ - Improve protected API.
314
+ - Improve watermark API.
315
+
316
+ ## Enhancements in Version 21.5
317
+
318
+ - Support autofit columns for workbook and worksheet.
319
+ - Improve add and post row/column APIs.
320
+ - Improve Task APIs.
321
+
322
+ ## Enhancements in Version 21.1
323
+
324
+ - Support to convert worksheet on task API
325
+ - Support to add and delete cell or range in worksheet.
326
+
327
+ ## Enhancements in Version 20.11
328
+
329
+ - Support Aspose.Cells Cloud for Docker.
330
+
331
+ ## Enhancements in Version 20.10
332
+
333
+ - Support to upload large file.
334
+
335
+ ## Enhancements in Version 20.9
336
+
337
+ - Support sparkline groups.
338
+ - Add API about updating pivot field.
339
+
340
+ ## Enhancements in Version 20.8
341
+
342
+ - Aspose.Cells Cloud API calls are not working with explicit storage name but only default storage.
343
+ - Get output file size without downloading during conversion.
344
+ - Enhancement for CellsShapesPutWorksheetShape API.
@@ -40,6 +40,14 @@ module AsposeCellsCloud
40
40
  @api_client.config.host = app_host
41
41
  end
42
42
 
43
+ # Perform business analysis of data in Excel files.
44
+
45
+ def post_analyze_excel( post_analyze_excel_request, opts = {})
46
+
47
+ data, _status_code, _headers = post_analyze_excel_request.create_http_request(@api_client,opts )
48
+ return data
49
+ end
50
+
43
51
  # Retrieve the description of auto filters from a worksheet.
44
52
 
45
53
  def get_worksheet_auto_filter( get_worksheet_auto_filter_request, opts = {})
@@ -961,6 +969,62 @@ module AsposeCellsCloud
961
969
  return data
962
970
  end
963
971
 
972
+ # Data cleaning of spreadsheet files is a data management process used to identify, correct, and remove errors, incompleteness, duplicates, or inaccuracies in tables and ranges.
973
+
974
+ def post_workbook_data_cleansing( post_workbook_data_cleansing_request, opts = {})
975
+
976
+ data, _status_code, _headers = post_workbook_data_cleansing_request.create_http_request(@api_client,opts )
977
+ return data
978
+ end
979
+
980
+ # Data cleansing of spreadsheet files is a data management process used to identify, correct, and remove errors, incompleteness, duplicates, or inaccuracies in tables and ranges.
981
+
982
+ def post_data_cleansing( post_data_cleansing_request, opts = {})
983
+
984
+ data, _status_code, _headers = post_data_cleansing_request.create_http_request(@api_client,opts )
985
+ return data
986
+ end
987
+
988
+ # Data deduplication of spreadsheet files is mainly used to eliminate duplicate data in tables and ranges.
989
+
990
+ def post_workbook_data_deduplication( post_workbook_data_deduplication_request, opts = {})
991
+
992
+ data, _status_code, _headers = post_workbook_data_deduplication_request.create_http_request(@api_client,opts )
993
+ return data
994
+ end
995
+
996
+ # Data deduplication of spreadsheet files is mainly used to eliminate duplicate data in tables and ranges.
997
+
998
+ def post_data_deduplication( post_data_deduplication_request, opts = {})
999
+
1000
+ data, _status_code, _headers = post_data_deduplication_request.create_http_request(@api_client,opts )
1001
+ return data
1002
+ end
1003
+
1004
+ # Data filling for spreadsheet files is primarily used to fill empty data in tables and ranges.
1005
+
1006
+ def post_workbook_data_fill( post_workbook_data_fill_request, opts = {})
1007
+
1008
+ data, _status_code, _headers = post_workbook_data_fill_request.create_http_request(@api_client,opts )
1009
+ return data
1010
+ end
1011
+
1012
+ # Data filling for spreadsheet files is primarily used to fill empty data in tables and ranges.
1013
+
1014
+ def post_data_fill( post_data_fill_request, opts = {})
1015
+
1016
+ data, _status_code, _headers = post_data_fill_request.create_http_request(@api_client,opts )
1017
+ return data
1018
+ end
1019
+
1020
+ # Deleting incomplete rows of spreadsheet files is mainly used to eliminate incomplete rows in tables and ranges.
1021
+
1022
+ def post_delete_incomplete_rows( post_delete_incomplete_rows_request, opts = {})
1023
+
1024
+ data, _status_code, _headers = post_delete_incomplete_rows_request.create_http_request(@api_client,opts )
1025
+ return data
1026
+ end
1027
+
964
1028
  # Retrieve descriptions of hyperlinks in the worksheet.
965
1029
 
966
1030
  def get_worksheet_hyperlinks( get_worksheet_hyperlinks_request, opts = {})