Skip to content

Commit 81b2d73

Browse files
committed
20220110 update : update sdk code for spec json.
1 parent 1dce663 commit 81b2d73

File tree

259 files changed

+547
-285
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

259 files changed

+547
-285
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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/21.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/22.1)
22

33

44
# Ruby SDK for Spreadsheet Processing in the Cloud
@@ -21,7 +21,7 @@ Ruby Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate Mic
2121
- Convert worksheets to PDF, XPS & SVG formats.
2222
- [Convert Excel files to popular formats](https://docs.aspose.cloud/cells/convert-excel-workbook-to-different-file-formats/).
2323

24-
## Feature & Enhancements in Version 21.12
24+
## Feature & Enhancements in Version 22.1
2525

2626
- Improvement for conversion API.
2727
- Improvement for batch data import to support to set cell formula.

lib/aspose_cells_cloud.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=begin
22
--------------------------------------------------------------------------------------------------------------------
3-
Copyright (c) 2021 Aspose.Cells Cloud
3+
Copyright (c) 2022 Aspose.Cells Cloud
44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal
66
in the Software without restriction, including without limitation the rights

lib/aspose_cells_cloud/api/cells_api.rb

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=begin
22
--------------------------------------------------------------------------------------------------------------------
3-
Copyright (c) 2021 Aspose.Cells Cloud
3+
Copyright (c) 2022 Aspose.Cells Cloud
44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal
66
in the Software without restriction, including without limitation the rights
@@ -13277,6 +13277,7 @@ def cells_ranges_put_worksheet_cells_range_with_http_info(name, sheet_name, rang
1327713277
# @option opts [BOOLEAN] :is_auto_fit_columns Autofit columns. (default to false)
1327813278
# @option opts [String] :folder The document folder.
1327913279
# @option opts [String] :storage_name storage name.
13280+
# @option opts [String] :out_storage_name output storage name.
1328013281
# @return [SaveResponse]
1328113282
def cells_save_as_post_document_save_as(name, opts = {})
1328213283
data, _status_code, _headers = cells_save_as_post_document_save_as_with_http_info(name, opts)
@@ -13293,6 +13294,7 @@ def cells_save_as_post_document_save_as(name, opts = {})
1329313294
# @option opts [BOOLEAN] :is_auto_fit_columns Autofit columns.
1329413295
# @option opts [String] :folder The document folder.
1329513296
# @option opts [String] :storage_name storage name.
13297+
# @option opts [String] :out_storage_name output storage name.
1329613298
# @return [Array<(SaveResponse, Fixnum, Hash)>] SaveResponse data, response status code and response headers
1329713299
def cells_save_as_post_document_save_as_with_http_info(name, opts = {})
1329813300
if @api_client.config.debugging
@@ -13313,6 +13315,7 @@ def cells_save_as_post_document_save_as_with_http_info(name, opts = {})
1331313315
query_params[:'isAutoFitColumns'] = opts[:'is_auto_fit_columns'] if !opts[:'is_auto_fit_columns'].nil?
1331413316
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
1331513317
query_params[:'storageName'] = opts[:'storage_name'] if !opts[:'storage_name'].nil?
13318+
query_params[:'outStorageName'] = opts[:'out_storage_name'] if !opts[:'out_storage_name'].nil?
1331613319

1331713320
# header parameters
1331813321
header_params = {}
@@ -14933,6 +14936,7 @@ def cells_workbook_get_page_count_with_http_info(name, opts = {})
1493314936
# @option opts [String] :folder The document folder.
1493414937
# @option opts [String] :storage_name storage name.
1493514938
# @option opts [String] :out_path The document output folder.
14939+
# @option opts [String] :out_storage_name output storage name.
1493614940
# @return [File]
1493714941
def cells_workbook_get_workbook(name, opts = {})
1493814942
data, _status_code, _headers = cells_workbook_get_workbook_with_http_info(name, opts)
@@ -14950,6 +14954,7 @@ def cells_workbook_get_workbook(name, opts = {})
1495014954
# @option opts [String] :folder The document folder.
1495114955
# @option opts [String] :storage_name storage name.
1495214956
# @option opts [String] :out_path The document output folder.
14957+
# @option opts [String] :out_storage_name output storage name.
1495314958
# @return [Array<(File, Fixnum, Hash)>] File data, response status code and response headers
1495414959
def cells_workbook_get_workbook_with_http_info(name, opts = {})
1495514960
if @api_client.config.debugging
@@ -14972,6 +14977,7 @@ def cells_workbook_get_workbook_with_http_info(name, opts = {})
1497214977
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
1497314978
query_params[:'storageName'] = opts[:'storage_name'] if !opts[:'storage_name'].nil?
1497414979
query_params[:'outPath'] = opts[:'out_path'] if !opts[:'out_path'].nil?
14980+
query_params[:'outStorageName'] = opts[:'out_storage_name'] if !opts[:'out_storage_name'].nil?
1497514981

1497614982
# header parameters
1497714983
header_params = {}
@@ -15810,6 +15816,7 @@ def cells_workbook_post_workbook_calculate_formula_with_http_info(name, opts = {
1581015816
# @option opts [String] :folder The workbook folder full path.
1581115817
# @option opts [String] :storage_name storage name.
1581215818
# @option opts [String] :out_path Path to save result
15819+
# @option opts [String] :out_storage_name output storage name.
1581315820
# @return [File]
1581415821
def cells_workbook_post_workbook_get_smart_marker_result(name, opts = {})
1581515822
data, _status_code, _headers = cells_workbook_post_workbook_get_smart_marker_result_with_http_info(name, opts)
@@ -15824,6 +15831,7 @@ def cells_workbook_post_workbook_get_smart_marker_result(name, opts = {})
1582415831
# @option opts [String] :folder The workbook folder full path.
1582515832
# @option opts [String] :storage_name storage name.
1582615833
# @option opts [String] :out_path Path to save result
15834+
# @option opts [String] :out_storage_name output storage name.
1582715835
# @return [Array<(File, Fixnum, Hash)>] File data, response status code and response headers
1582815836
def cells_workbook_post_workbook_get_smart_marker_result_with_http_info(name, opts = {})
1582915837
if @api_client.config.debugging
@@ -15843,6 +15851,7 @@ def cells_workbook_post_workbook_get_smart_marker_result_with_http_info(name, op
1584315851
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
1584415852
query_params[:'storageName'] = opts[:'storage_name'] if !opts[:'storage_name'].nil?
1584515853
query_params[:'outPath'] = opts[:'out_path'] if !opts[:'out_path'].nil?
15854+
query_params[:'outStorageName'] = opts[:'out_storage_name'] if !opts[:'out_storage_name'].nil?
1584615855

1584715856
# header parameters
1584815857
header_params = {}
@@ -15948,6 +15957,7 @@ def cells_workbook_post_workbook_settings_with_http_info(name, opts = {})
1594815957
# @option opts [String] :folder The workbook folder.
1594915958
# @option opts [String] :out_folder out Folder.
1595015959
# @option opts [String] :storage_name storage name.
15960+
# @option opts [String] :out_storage_name output storage name.
1595115961
# @return [SplitResultResponse]
1595215962
def cells_workbook_post_workbook_split(name, opts = {})
1595315963
data, _status_code, _headers = cells_workbook_post_workbook_split_with_http_info(name, opts)
@@ -15966,6 +15976,7 @@ def cells_workbook_post_workbook_split(name, opts = {})
1596615976
# @option opts [String] :folder The workbook folder.
1596715977
# @option opts [String] :out_folder out Folder.
1596815978
# @option opts [String] :storage_name storage name.
15979+
# @option opts [String] :out_storage_name output storage name.
1596915980
# @return [Array<(SplitResultResponse, Fixnum, Hash)>] SplitResultResponse data, response status code and response headers
1597015981
def cells_workbook_post_workbook_split_with_http_info(name, opts = {})
1597115982
if @api_client.config.debugging
@@ -15989,6 +16000,7 @@ def cells_workbook_post_workbook_split_with_http_info(name, opts = {})
1598916000
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
1599016001
query_params[:'outFolder'] = opts[:'out_folder'] if !opts[:'out_folder'].nil?
1599116002
query_params[:'storageName'] = opts[:'storage_name'] if !opts[:'storage_name'].nil?
16003+
query_params[:'outStorageName'] = opts[:'out_storage_name'] if !opts[:'out_storage_name'].nil?
1599216004

1599316005
# header parameters
1599416006
header_params = {}
@@ -16024,6 +16036,7 @@ def cells_workbook_post_workbook_split_with_http_info(name, opts = {})
1602416036
# @param [Hash] opts the optional parameters
1602516037
# @option opts [String] :folder Source workbook folder.
1602616038
# @option opts [String] :storage_name storage name.
16039+
# @option opts [String] :merged_storage_name merged file storage name.
1602716040
# @return [WorkbookResponse]
1602816041
def cells_workbook_post_workbooks_merge(name, merge_with, opts = {})
1602916042
data, _status_code, _headers = cells_workbook_post_workbooks_merge_with_http_info(name, merge_with, opts)
@@ -16037,6 +16050,7 @@ def cells_workbook_post_workbooks_merge(name, merge_with, opts = {})
1603716050
# @param [Hash] opts the optional parameters
1603816051
# @option opts [String] :folder Source workbook folder.
1603916052
# @option opts [String] :storage_name storage name.
16053+
# @option opts [String] :merged_storage_name merged file storage name.
1604016054
# @return [Array<(WorkbookResponse, Fixnum, Hash)>] WorkbookResponse data, response status code and response headers
1604116055
def cells_workbook_post_workbooks_merge_with_http_info(name, merge_with, opts = {})
1604216056
if @api_client.config.debugging
@@ -16059,6 +16073,7 @@ def cells_workbook_post_workbooks_merge_with_http_info(name, merge_with, opts =
1605916073
query_params[:'mergeWith'] = merge_with
1606016074
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
1606116075
query_params[:'storageName'] = opts[:'storage_name'] if !opts[:'storage_name'].nil?
16076+
query_params[:'mergedStorageName'] = opts[:'merged_storage_name'] if !opts[:'merged_storage_name'].nil?
1606216077

1606316078
# header parameters
1606416079
header_params = {}

lib/aspose_cells_cloud/api/lite_cells_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=begin
22
--------------------------------------------------------------------------------------------------------------------
3-
Copyright (c) 2021 Aspose.Cells Cloud
3+
Copyright (c) 2022 Aspose.Cells Cloud
44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal
66
in the Software without restriction, including without limitation the rights

lib/aspose_cells_cloud/api_client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=begin
22
--------------------------------------------------------------------------------------------------------------------
3-
Copyright (c) 2021 Aspose.Cells Cloud
3+
Copyright (c) 2022 Aspose.Cells Cloud
44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal
66
in the Software without restriction, including without limitation the rights

lib/aspose_cells_cloud/api_error.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=begin
22
--------------------------------------------------------------------------------------------------------------------
3-
Copyright (c) 2021 Aspose.Cells Cloud
3+
Copyright (c) 2022 Aspose.Cells Cloud
44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal
66
in the Software without restriction, including without limitation the rights

lib/aspose_cells_cloud/configuration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=begin
22
--------------------------------------------------------------------------------------------------------------------
3-
Copyright (c) 2021 Aspose.Cells Cloud
3+
Copyright (c) 2022 Aspose.Cells Cloud
44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal
66
in the Software without restriction, including without limitation the rights

lib/aspose_cells_cloud/models/above_average.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=begin
22
--------------------------------------------------------------------------------------------------------------------
3-
Copyright (c) 2021 Aspose.Cells Cloud
3+
Copyright (c) 2022 Aspose.Cells Cloud
44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal
66
in the Software without restriction, including without limitation the rights

lib/aspose_cells_cloud/models/access_token_response.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=begin
22
--------------------------------------------------------------------------------------------------------------------
3-
Copyright (c) 2021 Aspose.Cells Cloud
3+
Copyright (c) 2022 Aspose.Cells Cloud
44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal
66
in the Software without restriction, including without limitation the rights

lib/aspose_cells_cloud/models/area.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=begin
22
--------------------------------------------------------------------------------------------------------------------
3-
Copyright (c) 2021 Aspose.Cells Cloud
3+
Copyright (c) 2022 Aspose.Cells Cloud
44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal
66
in the Software without restriction, including without limitation the rights

0 commit comments

Comments
 (0)