Skip to content

Commit 9967525

Browse files
committed
Support new formats, add new api about getting public key, and optimize convert workbook and auto fit workbook and worksheet.
1 parent dd606cd commit 9967525

File tree

824 files changed

+35650
-9432
lines changed

Some content is hidden

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

824 files changed

+35650
-9432
lines changed

.classpath

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,19 @@
3232
<attribute name="m2e-apt" value="true"/>
3333
</attributes>
3434
</classpathentry>
35+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
36+
<attributes>
37+
<attribute name="maven.pomderived" value="true"/>
38+
<attribute name="optional" value="true"/>
39+
</attributes>
40+
</classpathentry>
41+
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
42+
<attributes>
43+
<attribute name="maven.pomderived" value="true"/>
44+
<attribute name="test" value="true"/>
45+
<attribute name="optional" value="true"/>
46+
</attributes>
47+
</classpathentry>
3548
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
3649
<attributes>
3750
<attribute name="optional" value="true"/>

.idea/misc.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 205 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/api/add-picture-in-cell.md

Lines changed: 45 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
1-
# **addPictureInCell API**
1+
# **Spreadsheet Cloud API: addPictureInCell**
22

33
add new picture in the cells.
44

5-
```bash
65

7-
POST http://api.aspose.cloud/v3.0//cells/{name}/worksheets/{sheetName}/pictures/addPictureInCell
6+
## **Quick Start**
87

8+
- **Base URL**: `http://api.aspose.cloud/v3.0`
9+
- **Authentication Method**: `JWT (OAuth2, application)` **Token URL**: `https://api.aspose.cloud/connect/token`
10+
## **Interface Details**
11+
12+
### **Endpoint**
13+
14+
```
15+
POST http://api.aspose.cloud/v3.0/cells/{name}/worksheets/{sheetName}/pictures/addPictureInCell
916
```
17+
### **Function Description**
1018

11-
## The request parameters of **addPictureInCell** API are:
19+
### The request parameters of **addPictureInCell** API are:
1220

1321
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
1422
| :- | :- | :- |:- |
@@ -19,5 +27,38 @@ POST http://api.aspose.cloud/v3.0//cells/{name}/worksheets/{sheetName}/pictures/
1927
|folder|String|Query||
2028
|storageName|String|Query||
2129

30+
### **Response Description**
31+
```json
32+
{
33+
"Name": "CellsCloudResponse",
34+
"Type": "Class",
35+
"IsAbstract": false,
36+
"Properties": [
37+
{
38+
"Name": "Code",
39+
"Nullable": true,
40+
"ReadOnly": false,
41+
"IsInherit": false,
42+
"DataType": {
43+
"Identifier": "Integer",
44+
"Name": "integer"
45+
}
46+
},
47+
{
48+
"Name": "Status",
49+
"Nullable": true,
50+
"ReadOnly": false,
51+
"IsInherit": false,
52+
"DataType": {
53+
"Identifier": "String",
54+
"Name": "string"
55+
}
56+
}
57+
]
58+
}
59+
```
60+
61+
62+
## OpenAPI Specification
2263

2364
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/PicturesController/AddPictureInCell) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# **Spreadsheet Cloud API: checkCloudServiceHealth**
2+
3+
Check the Health Status of Aspose.Cells Cloud Service.
4+
5+
6+
## **Quick Start**
7+
8+
- **Base URL**: `http://api.aspose.cloud/v4.0`
9+
- **Authentication Method**: `JWT (OAuth2, application)` **Token URL**: `https://api.aspose.cloud/connect/token`
10+
## **Interface Details**
11+
12+
### **Endpoint**
13+
14+
```
15+
GET http://api.aspose.cloud/v4.0/cells/status/check
16+
```
17+
### **Function Description**
18+
This API provides real-time monitoring of Aspose.Cells Cloud service availability and operational status.Returns key health metrics such as service connectivity, response latency, and error rates(if applicable).Use cases:▸ Pre-flight checks before executing critical operations dependent on Aspose.Cells Cloud.▸ Automated service status monitoring for SLA compliance.▸ Diagnostic tooling during integration troubleshooting.Considerations:▸ Requires valid API credentials with read-only health check permissions.▸ Response codes (e.g., 200 OK for healthy, 503 Maintenance for downtime) must be programmatically handled.▸ Implement retry logic with exponential backoff if transient failures are detected.▸ Monitor API rate limits to avoid excessive health check calls.▸ Combine with logging/alerting systems for proactive incident response.
19+
20+
### The request parameters of **checkCloudServiceHealth** API are:
21+
22+
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
23+
| :- | :- | :- |:- |
24+
25+
### **Response Description**
26+
```json
27+
{
28+
String
29+
}
30+
```
31+
32+
33+
## OpenAPI Specification
34+
35+
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/CellsStatusController/CheckCloudServiceHealth) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.

0 commit comments

Comments
 (0)