Skip to content

Commit

Permalink
Release Aspose.Cells Cloud SDK 19.10
Browse files Browse the repository at this point in the history
  • Loading branch information
roywangaspose committed Oct 30, 2019
1 parent b40748a commit e8244a5
Show file tree
Hide file tree
Showing 30 changed files with 1,272 additions and 695 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Aspose.Cells Cloud SDK for Ruby [![NuGet](https://img.shields.io/nuget/v/Aspose.Cells-Cloud.svg)](https://www.nuget.org/packages/Aspose.Cells-Cloud/)
# Aspose.Cells Cloud SDK for Ruby

- API version: 3.0
- SDK version: 19.9
- SDK version: 19.10

This repository contains Aspose.Cells Cloud SDK for Ruby source code. This SDK allows you to work with Aspose.Cells Cloud REST APIs in your Ruby applications quickly and easily, with zero initial cost.

Expand Down
74 changes: 66 additions & 8 deletions docs/CellsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ Method | HTTP request | Description
[**cells_workbook_put_document_protect_from_changes**](CellsApi.md#cells_workbook_put_document_protect_from_changes) | **PUT** /cells/{name}/writeProtection | Protect document from changes.
[**cells_workbook_put_workbook_create**](CellsApi.md#cells_workbook_put_workbook_create) | **PUT** /cells/{name} | Create new workbook using deferent methods.
[**cells_worksheet_validations_delete_worksheet_validation**](CellsApi.md#cells_worksheet_validations_delete_worksheet_validation) | **DELETE** /cells/{name}/worksheets/{sheetName}/validations/{validationIndex} | Delete worksheet validation by index.
[**cells_worksheet_validations_delete_worksheet_validations**](CellsApi.md#cells_worksheet_validations_delete_worksheet_validations) | **DELETE** /cells/{name}/worksheets/{sheetName}/validations | Clear all validation in worksheet.
[**cells_worksheet_validations_get_worksheet_validation**](CellsApi.md#cells_worksheet_validations_get_worksheet_validation) | **GET** /cells/{name}/worksheets/{sheetName}/validations/{validationIndex} | Get worksheet validation by index.
[**cells_worksheet_validations_get_worksheet_validations**](CellsApi.md#cells_worksheet_validations_get_worksheet_validations) | **GET** /cells/{name}/worksheets/{sheetName}/validations | Get worksheet validations.
[**cells_worksheet_validations_post_worksheet_validation**](CellsApi.md#cells_worksheet_validations_post_worksheet_validation) | **POST** /cells/{name}/worksheets/{sheetName}/validations/{validationIndex} | Update worksheet validation by index.
Expand Down Expand Up @@ -2511,7 +2512,7 @@ sheet_name = 'sheet_name_example' # String |
cell_area = 'cell_area_example' # String |

opts = {
formatcondition: AsposeCellsCloud::FormatCondition.new, # FormatCondition |
format_condition: AsposeCellsCloud::FormatCondition.new, # FormatCondition |
folder: 'folder_example', # String |
storage: 'storage_example' # String | storage name.
}
Expand All @@ -2532,7 +2533,7 @@ Name | Type | Description | Notes
**name** | **String**| |
**sheet_name** | **String**| |
**cell_area** | **String**| |
**formatcondition** | [**FormatCondition**](FormatCondition.md)| | [optional]
**format_condition** | [**FormatCondition**](FormatCondition.md)| | [optional]
**folder** | **String**| | [optional]
**storage** | **String**| storage name. | [optional]

Expand Down Expand Up @@ -7883,7 +7884,7 @@ No authorization required


# **cells_post_set_cell_html_string**
> CellResponse cells_post_set_cell_html_string(name, sheet_name, cell_name, opts)
> CellResponse cells_post_set_cell_html_string(name, sheet_name, cell_name, html_string, opts)
Set htmlstring value into cell

Expand All @@ -7900,14 +7901,16 @@ sheet_name = 'sheet_name_example' # String | Worksheet name.

cell_name = 'cell_name_example' # String | The cell name.

html_string = 'B' # String |

opts = {
folder: 'folder_example', # String | The workbook folder.
storage: 'storage_example' # String | storage name.
}

begin
#Set htmlstring value into cell
result = api_instance.cells_post_set_cell_html_string(name, sheet_name, cell_name, opts)
result = api_instance.cells_post_set_cell_html_string(name, sheet_name, cell_name, html_string, opts)
p result
rescue AsposeCellsCloud::ApiError => e
puts "Exception when calling CellsApi->cells_post_set_cell_html_string: #{e}"
Expand All @@ -7921,6 +7924,7 @@ Name | Type | Description | Notes
**name** | **String**| Workbook name. |
**sheet_name** | **String**| Worksheet name. |
**cell_name** | **String**| The cell name. |
**html_string** | **String**| |
**folder** | **String**| The workbook folder. | [optional]
**storage** | **String**| storage name. | [optional]

Expand Down Expand Up @@ -10921,7 +10925,7 @@ No authorization required


# **cells_workbook_post_import_data**
> CellsCloudResponse cells_workbook_post_import_data(name, importdata, opts)
> CellsCloudResponse cells_workbook_post_import_data(name, import_data, opts)


Expand All @@ -10934,15 +10938,15 @@ api_instance = AsposeCellsCloud::CellsApi.new

name = 'name_example' # String |

importdata = AsposeCellsCloud::ImportOption.new # ImportOption |
import_data = AsposeCellsCloud::ImportOption.new # ImportOption |

opts = {
folder: 'folder_example', # String |
storage: 'storage_example' # String | storage name.
}

begin
result = api_instance.cells_workbook_post_import_data(name, importdata, opts)
result = api_instance.cells_workbook_post_import_data(name, import_data, opts)
p result
rescue AsposeCellsCloud::ApiError => e
puts "Exception when calling CellsApi->cells_workbook_post_import_data: #{e}"
Expand All @@ -10954,7 +10958,7 @@ end
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**name** | **String**| |
**importdata** | [**ImportOption**](ImportOption.md)| |
**import_data** | [**ImportOption**](ImportOption.md)| |
**folder** | **String**| | [optional]
**storage** | **String**| storage name. | [optional]

Expand Down Expand Up @@ -11633,6 +11637,60 @@ No authorization required



# **cells_worksheet_validations_delete_worksheet_validations**
> CellsCloudResponse cells_worksheet_validations_delete_worksheet_validations(name, sheet_name, opts)
Clear all validation in worksheet.

### Example
```ruby
# load the gem
require 'aspose_cells_cloud'

api_instance = AsposeCellsCloud::CellsApi.new

name = 'name_example' # String | Document name.

sheet_name = 'sheet_name_example' # String | Worksheet name.

opts = {
folder: 'folder_example', # String | Document's folder.
storage: 'storage_example' # String | storage name.
}

begin
#Clear all validation in worksheet.
result = api_instance.cells_worksheet_validations_delete_worksheet_validations(name, sheet_name, opts)
p result
rescue AsposeCellsCloud::ApiError => e
puts "Exception when calling CellsApi->cells_worksheet_validations_delete_worksheet_validations: #{e}"
end
```

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**name** | **String**| Document name. |
**sheet_name** | **String**| Worksheet name. |
**folder** | **String**| Document's folder. | [optional]
**storage** | **String**| storage name. | [optional]

### Return type

[**CellsCloudResponse**](CellsCloudResponse.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json



# **cells_worksheet_validations_get_worksheet_validation**
> ValidationResponse cells_worksheet_validations_get_worksheet_validation(name, sheet_name, validation_index, opts)
Expand Down
Loading

0 comments on commit e8244a5

Please sign in to comment.