aspose_pdf_cloud 23.11.0 → 23.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +14 -5
- data/docs/PdfApi.md +31 -19
- data/lib/aspose_pdf_cloud/api/pdf_api.rb +74 -38
- data/lib/aspose_pdf_cloud/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f28a974a9d73980e1263a3ea725cc602595d6602a6a964fcba1992e7709c12f2
|
|
4
|
+
data.tar.gz: 44c9ed4d0332f39c7588eb211677925317090213a33cf6764e6f534c7bcbfd61
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d281370a0f871ba269abf311ef73f0632f73bcf22ce245af93f671708338ed51e2b183328aec9b37f23ccf33b3c19e6f00cd98d417fb9665dbb6f99e0c5595ff
|
|
7
|
+
data.tar.gz: c4fad596a0903b67d5340a56620cb613fc7815551f08f63d5f3d87e11b92feac6f051643cc48abf8c88612c6aa90582042b4d1bf8c9c7ad07b7fc2114c4f11b1
|
data/README.md
CHANGED
|
@@ -29,10 +29,19 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
|
|
|
29
29
|
## Read PDF Formats
|
|
30
30
|
MHT, PCL, PS, XSLFO, MD
|
|
31
31
|
|
|
32
|
-
## Enhancements in Version 23.
|
|
33
|
-
- Support to
|
|
32
|
+
## Enhancements in Version 23.12
|
|
33
|
+
- Support to update bookmark in password protected PDF document.
|
|
34
|
+
- Support to delete bookmarks from password protected PDF document.
|
|
35
|
+
- Support to add bookmarks to password protected PDF document.
|
|
36
|
+
- Support to delete properties of password protected PDF document.
|
|
37
|
+
- Support to add properties of password protected PDF document.
|
|
38
|
+
- Support to read properties of password protected PDF document.
|
|
34
39
|
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
|
|
35
40
|
|
|
41
|
+
## Bugs fixed in Version 23.12
|
|
42
|
+
- PDF to XLSX Conversion clubs data in one cell.
|
|
43
|
+
- GetDocumentBookmarks does not get bookmarks from protected PDF.
|
|
44
|
+
|
|
36
45
|
## Installation
|
|
37
46
|
|
|
38
47
|
### Build a gem
|
|
@@ -46,15 +55,15 @@ gem build aspose_pdf_cloud.gemspec
|
|
|
46
55
|
Then either install the gem locally:
|
|
47
56
|
|
|
48
57
|
```shell
|
|
49
|
-
gem install ./aspose_pdf_cloud-23.
|
|
58
|
+
gem install ./aspose_pdf_cloud-23.12.0.gem
|
|
50
59
|
```
|
|
51
|
-
(for development, run `gem install --dev ./aspose_pdf_cloud-23.
|
|
60
|
+
(for development, run `gem install --dev ./aspose_pdf_cloud-23.12.0.gem` to install the development dependencies)
|
|
52
61
|
|
|
53
62
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
54
63
|
|
|
55
64
|
Finally add this to the Gemfile:
|
|
56
65
|
|
|
57
|
-
gem 'aspose_pdf_cloud', '~> 23.
|
|
66
|
+
gem 'aspose_pdf_cloud', '~> 23.12.0'
|
|
58
67
|
|
|
59
68
|
### Install from Git
|
|
60
69
|
|
data/docs/PdfApi.md
CHANGED
|
@@ -480,6 +480,7 @@ Name | Type | Description | Notes
|
|
|
480
480
|
**bookmark_path** | **String**| The bookmark path. |
|
|
481
481
|
**folder** | **String**| The document folder. | [optional]
|
|
482
482
|
**storage** | **String**| The document storage. | [optional]
|
|
483
|
+
**password** | **String**| The password (Base64). | [optional]
|
|
483
484
|
|
|
484
485
|
### Return type
|
|
485
486
|
|
|
@@ -528,6 +529,7 @@ Name | Type | Description | Notes
|
|
|
528
529
|
**name** | **String**| The document name. |
|
|
529
530
|
**folder** | **String**| The document folder. | [optional]
|
|
530
531
|
**storage** | **String**| The document storage. | [optional]
|
|
532
|
+
**password** | **String**| The password (Base64). | [optional]
|
|
531
533
|
|
|
532
534
|
### Return type
|
|
533
535
|
|
|
@@ -871,9 +873,10 @@ Delete custom document properties.
|
|
|
871
873
|
|
|
872
874
|
Name | Type | Description | Notes
|
|
873
875
|
------------- | ------------- | ------------- | -------------
|
|
874
|
-
**name** | **String**|
|
|
875
|
-
**storage** | **String**|
|
|
876
|
-
**folder** | **String**|
|
|
876
|
+
**name** | **String**| The document name. |
|
|
877
|
+
**storage** | **String**| The document storage. | [optional]
|
|
878
|
+
**folder** | **String**| The document folder. | [optional]
|
|
879
|
+
**password** | **String**| The password (Base64). | [optional]
|
|
877
880
|
|
|
878
881
|
### Return type
|
|
879
882
|
|
|
@@ -895,10 +898,11 @@ Delete document property.
|
|
|
895
898
|
|
|
896
899
|
Name | Type | Description | Notes
|
|
897
900
|
------------- | ------------- | ------------- | -------------
|
|
898
|
-
**name** | **String**|
|
|
899
|
-
**property_name** | **String**|
|
|
900
|
-
**storage** | **String**|
|
|
901
|
-
**folder** | **String**|
|
|
901
|
+
**name** | **String**| The document name. |
|
|
902
|
+
**property_name** | **String**| Property name. |
|
|
903
|
+
**storage** | **String**| The document storage. | [optional]
|
|
904
|
+
**folder** | **String**| The document folder. | [optional]
|
|
905
|
+
**password** | **String**| The password (Base64). | [optional]
|
|
902
906
|
|
|
903
907
|
### Return type
|
|
904
908
|
|
|
@@ -999,6 +1003,7 @@ Name | Type | Description | Notes
|
|
|
999
1003
|
**bookmark_path** | **String**| The bookmark path. |
|
|
1000
1004
|
**folder** | **String**| The document folder. | [optional]
|
|
1001
1005
|
**storage** | **String**| The document storage. | [optional]
|
|
1006
|
+
**password** | **String**| The password (Base64). | [optional]
|
|
1002
1007
|
|
|
1003
1008
|
### Return type
|
|
1004
1009
|
|
|
@@ -1024,6 +1029,7 @@ Name | Type | Description | Notes
|
|
|
1024
1029
|
**bookmark_path** | **String**| The bookmark path. |
|
|
1025
1030
|
**folder** | **String**| The document folder. | [optional]
|
|
1026
1031
|
**storage** | **String**| The document storage. | [optional]
|
|
1032
|
+
**password** | **String**| The password (Base64). | [optional]
|
|
1027
1033
|
|
|
1028
1034
|
### Return type
|
|
1029
1035
|
|
|
@@ -1268,6 +1274,7 @@ Name | Type | Description | Notes
|
|
|
1268
1274
|
**name** | **String**| The document name. |
|
|
1269
1275
|
**folder** | **String**| The document folder. | [optional]
|
|
1270
1276
|
**storage** | **String**| The document storage. | [optional]
|
|
1277
|
+
**password** | **String**| The password (Base64). | [optional]
|
|
1271
1278
|
|
|
1272
1279
|
### Return type
|
|
1273
1280
|
|
|
@@ -1674,9 +1681,10 @@ Read document properties.
|
|
|
1674
1681
|
|
|
1675
1682
|
Name | Type | Description | Notes
|
|
1676
1683
|
------------- | ------------- | ------------- | -------------
|
|
1677
|
-
**name** | **String**|
|
|
1678
|
-
**storage** | **String**|
|
|
1679
|
-
**folder** | **String**|
|
|
1684
|
+
**name** | **String**| The document name. |
|
|
1685
|
+
**storage** | **String**| The document storage. | [optional]
|
|
1686
|
+
**folder** | **String**| The document folder. | [optional]
|
|
1687
|
+
**password** | **String**| The password (Base64). | [optional]
|
|
1680
1688
|
|
|
1681
1689
|
### Return type
|
|
1682
1690
|
|
|
@@ -1698,10 +1706,11 @@ Read document property by name.
|
|
|
1698
1706
|
|
|
1699
1707
|
Name | Type | Description | Notes
|
|
1700
1708
|
------------- | ------------- | ------------- | -------------
|
|
1701
|
-
**name** | **String**|
|
|
1702
|
-
**property_name** | **String**|
|
|
1703
|
-
**storage** | **String**|
|
|
1704
|
-
**folder** | **String**|
|
|
1709
|
+
**name** | **String**| The document name. |
|
|
1710
|
+
**property_name** | **String**| Property name. |
|
|
1711
|
+
**storage** | **String**| The document storage. | [optional]
|
|
1712
|
+
**folder** | **String**| The document folder. | [optional]
|
|
1713
|
+
**password** | **String**| The password (Base64). | [optional]
|
|
1705
1714
|
|
|
1706
1715
|
### Return type
|
|
1707
1716
|
|
|
@@ -5152,6 +5161,7 @@ Name | Type | Description | Notes
|
|
|
5152
5161
|
**bookmarks** | [**Array<Bookmark>**](Bookmark.md)| The array of bookmark. |
|
|
5153
5162
|
**folder** | **String**| The document folder. | [optional]
|
|
5154
5163
|
**storage** | **String**| The document storage. | [optional]
|
|
5164
|
+
**password** | **String**| The password (Base64). | [optional]
|
|
5155
5165
|
|
|
5156
5166
|
### Return type
|
|
5157
5167
|
|
|
@@ -6744,6 +6754,7 @@ Name | Type | Description | Notes
|
|
|
6744
6754
|
**bookmark** | [**Bookmark**](Bookmark.md)| The bookmark. |
|
|
6745
6755
|
**folder** | **String**| The document folder. | [optional]
|
|
6746
6756
|
**storage** | **String**| The document storage. | [optional]
|
|
6757
|
+
**password** | **String**| The password (Base64). | [optional]
|
|
6747
6758
|
|
|
6748
6759
|
### Return type
|
|
6749
6760
|
|
|
@@ -9129,11 +9140,12 @@ Add/update document property.
|
|
|
9129
9140
|
|
|
9130
9141
|
Name | Type | Description | Notes
|
|
9131
9142
|
------------- | ------------- | ------------- | -------------
|
|
9132
|
-
**name** | **String**|
|
|
9133
|
-
**property_name** | **String**|
|
|
9134
|
-
**value** | **String**|
|
|
9135
|
-
**storage** | **String**|
|
|
9136
|
-
**folder** | **String**|
|
|
9143
|
+
**name** | **String**| The document name. |
|
|
9144
|
+
**property_name** | **String**| Property name. |
|
|
9145
|
+
**value** | **String**| Property value. |
|
|
9146
|
+
**storage** | **String**| The document storage. | [optional]
|
|
9147
|
+
**folder** | **String**| The document folder. | [optional]
|
|
9148
|
+
**password** | **String**| The password (Base64). | [optional]
|
|
9137
9149
|
|
|
9138
9150
|
### Return type
|
|
9139
9151
|
|
|
@@ -344,6 +344,7 @@ module AsposePdfCloud
|
|
|
344
344
|
# @param [Hash] opts the optional parameters
|
|
345
345
|
# @option opts [String] :folder The document folder.
|
|
346
346
|
# @option opts [String] :storage The document storage.
|
|
347
|
+
# @option opts [String] :password The password (Base64).
|
|
347
348
|
# @return [AsposeResponse]
|
|
348
349
|
def delete_bookmark(name, bookmark_path, opts = {})
|
|
349
350
|
@api_client.request_token_if_needed
|
|
@@ -365,6 +366,7 @@ module AsposePdfCloud
|
|
|
365
366
|
# @param [Hash] opts the optional parameters
|
|
366
367
|
# @option opts [String] :folder The document folder.
|
|
367
368
|
# @option opts [String] :storage The document storage.
|
|
369
|
+
# @option opts [String] :password The password (Base64).
|
|
368
370
|
# @return [Array<(AsposeResponse, Fixnum, Hash)>] AsposeResponse data, response status code and response headers
|
|
369
371
|
def delete_bookmark_with_http_info(name, bookmark_path, opts = {})
|
|
370
372
|
if @api_client.config.debugging
|
|
@@ -385,6 +387,7 @@ module AsposePdfCloud
|
|
|
385
387
|
query_params = {}
|
|
386
388
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
|
387
389
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
|
390
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
|
388
391
|
|
|
389
392
|
# header parameters
|
|
390
393
|
header_params = {}
|
|
@@ -493,6 +496,7 @@ module AsposePdfCloud
|
|
|
493
496
|
# @param [Hash] opts the optional parameters
|
|
494
497
|
# @option opts [String] :folder The document folder.
|
|
495
498
|
# @option opts [String] :storage The document storage.
|
|
499
|
+
# @option opts [String] :password The password (Base64).
|
|
496
500
|
# @return [AsposeResponse]
|
|
497
501
|
def delete_document_bookmarks(name, opts = {})
|
|
498
502
|
@api_client.request_token_if_needed
|
|
@@ -513,6 +517,7 @@ module AsposePdfCloud
|
|
|
513
517
|
# @param [Hash] opts the optional parameters
|
|
514
518
|
# @option opts [String] :folder The document folder.
|
|
515
519
|
# @option opts [String] :storage The document storage.
|
|
520
|
+
# @option opts [String] :password The password (Base64).
|
|
516
521
|
# @return [Array<(AsposeResponse, Fixnum, Hash)>] AsposeResponse data, response status code and response headers
|
|
517
522
|
def delete_document_bookmarks_with_http_info(name, opts = {})
|
|
518
523
|
if @api_client.config.debugging
|
|
@@ -529,6 +534,7 @@ module AsposePdfCloud
|
|
|
529
534
|
query_params = {}
|
|
530
535
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
|
531
536
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
|
537
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
|
532
538
|
|
|
533
539
|
# header parameters
|
|
534
540
|
header_params = {}
|
|
@@ -1549,10 +1555,11 @@ module AsposePdfCloud
|
|
|
1549
1555
|
|
|
1550
1556
|
# Delete custom document properties.
|
|
1551
1557
|
#
|
|
1552
|
-
# @param name
|
|
1558
|
+
# @param name The document name.
|
|
1553
1559
|
# @param [Hash] opts the optional parameters
|
|
1554
|
-
# @option opts [String] :storage
|
|
1555
|
-
# @option opts [String] :folder
|
|
1560
|
+
# @option opts [String] :storage The document storage.
|
|
1561
|
+
# @option opts [String] :folder The document folder.
|
|
1562
|
+
# @option opts [String] :password The password (Base64).
|
|
1556
1563
|
# @return [AsposeResponse]
|
|
1557
1564
|
def delete_properties(name, opts = {})
|
|
1558
1565
|
@api_client.request_token_if_needed
|
|
@@ -1569,10 +1576,11 @@ module AsposePdfCloud
|
|
|
1569
1576
|
|
|
1570
1577
|
# Delete custom document properties.
|
|
1571
1578
|
#
|
|
1572
|
-
# @param name
|
|
1579
|
+
# @param name The document name.
|
|
1573
1580
|
# @param [Hash] opts the optional parameters
|
|
1574
|
-
# @option opts [String] :storage
|
|
1575
|
-
# @option opts [String] :folder
|
|
1581
|
+
# @option opts [String] :storage The document storage.
|
|
1582
|
+
# @option opts [String] :folder The document folder.
|
|
1583
|
+
# @option opts [String] :password The password (Base64).
|
|
1576
1584
|
# @return [Array<(AsposeResponse, Fixnum, Hash)>] AsposeResponse data, response status code and response headers
|
|
1577
1585
|
def delete_properties_with_http_info(name, opts = {})
|
|
1578
1586
|
if @api_client.config.debugging
|
|
@@ -1589,6 +1597,7 @@ module AsposePdfCloud
|
|
|
1589
1597
|
query_params = {}
|
|
1590
1598
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
|
1591
1599
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
|
1600
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
|
1592
1601
|
|
|
1593
1602
|
# header parameters
|
|
1594
1603
|
header_params = {}
|
|
@@ -1621,11 +1630,12 @@ module AsposePdfCloud
|
|
|
1621
1630
|
|
|
1622
1631
|
# Delete document property.
|
|
1623
1632
|
#
|
|
1624
|
-
# @param name
|
|
1625
|
-
# @param property_name
|
|
1633
|
+
# @param name The document name.
|
|
1634
|
+
# @param property_name Property name.
|
|
1626
1635
|
# @param [Hash] opts the optional parameters
|
|
1627
|
-
# @option opts [String] :storage
|
|
1628
|
-
# @option opts [String] :folder
|
|
1636
|
+
# @option opts [String] :storage The document storage.
|
|
1637
|
+
# @option opts [String] :folder The document folder.
|
|
1638
|
+
# @option opts [String] :password The password (Base64).
|
|
1629
1639
|
# @return [AsposeResponse]
|
|
1630
1640
|
def delete_property(name, property_name, opts = {})
|
|
1631
1641
|
@api_client.request_token_if_needed
|
|
@@ -1642,11 +1652,12 @@ module AsposePdfCloud
|
|
|
1642
1652
|
|
|
1643
1653
|
# Delete document property.
|
|
1644
1654
|
#
|
|
1645
|
-
# @param name
|
|
1646
|
-
# @param property_name
|
|
1655
|
+
# @param name The document name.
|
|
1656
|
+
# @param property_name Property name.
|
|
1647
1657
|
# @param [Hash] opts the optional parameters
|
|
1648
|
-
# @option opts [String] :storage
|
|
1649
|
-
# @option opts [String] :folder
|
|
1658
|
+
# @option opts [String] :storage The document storage.
|
|
1659
|
+
# @option opts [String] :folder The document folder.
|
|
1660
|
+
# @option opts [String] :password The password (Base64).
|
|
1650
1661
|
# @return [Array<(AsposeResponse, Fixnum, Hash)>] AsposeResponse data, response status code and response headers
|
|
1651
1662
|
def delete_property_with_http_info(name, property_name, opts = {})
|
|
1652
1663
|
if @api_client.config.debugging
|
|
@@ -1667,6 +1678,7 @@ module AsposePdfCloud
|
|
|
1667
1678
|
query_params = {}
|
|
1668
1679
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
|
1669
1680
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
|
1681
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
|
1670
1682
|
|
|
1671
1683
|
# header parameters
|
|
1672
1684
|
header_params = {}
|
|
@@ -1935,6 +1947,7 @@ module AsposePdfCloud
|
|
|
1935
1947
|
# @param [Hash] opts the optional parameters
|
|
1936
1948
|
# @option opts [String] :folder The document folder.
|
|
1937
1949
|
# @option opts [String] :storage The document storage.
|
|
1950
|
+
# @option opts [String] :password The password (Base64).
|
|
1938
1951
|
# @return [BookmarkResponse]
|
|
1939
1952
|
def get_bookmark(name, bookmark_path, opts = {})
|
|
1940
1953
|
@api_client.request_token_if_needed
|
|
@@ -1956,6 +1969,7 @@ module AsposePdfCloud
|
|
|
1956
1969
|
# @param [Hash] opts the optional parameters
|
|
1957
1970
|
# @option opts [String] :folder The document folder.
|
|
1958
1971
|
# @option opts [String] :storage The document storage.
|
|
1972
|
+
# @option opts [String] :password The password (Base64).
|
|
1959
1973
|
# @return [Array<(BookmarkResponse, Fixnum, Hash)>] BookmarkResponse data, response status code and response headers
|
|
1960
1974
|
def get_bookmark_with_http_info(name, bookmark_path, opts = {})
|
|
1961
1975
|
if @api_client.config.debugging
|
|
@@ -1976,6 +1990,7 @@ module AsposePdfCloud
|
|
|
1976
1990
|
query_params = {}
|
|
1977
1991
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
|
1978
1992
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
|
1993
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
|
1979
1994
|
|
|
1980
1995
|
# header parameters
|
|
1981
1996
|
header_params = {}
|
|
@@ -2013,6 +2028,7 @@ module AsposePdfCloud
|
|
|
2013
2028
|
# @param [Hash] opts the optional parameters
|
|
2014
2029
|
# @option opts [String] :folder The document folder.
|
|
2015
2030
|
# @option opts [String] :storage The document storage.
|
|
2031
|
+
# @option opts [String] :password The password (Base64).
|
|
2016
2032
|
# @return [BookmarksResponse]
|
|
2017
2033
|
def get_bookmarks(name, bookmark_path, opts = {})
|
|
2018
2034
|
@api_client.request_token_if_needed
|
|
@@ -2034,6 +2050,7 @@ module AsposePdfCloud
|
|
|
2034
2050
|
# @param [Hash] opts the optional parameters
|
|
2035
2051
|
# @option opts [String] :folder The document folder.
|
|
2036
2052
|
# @option opts [String] :storage The document storage.
|
|
2053
|
+
# @option opts [String] :password The password (Base64).
|
|
2037
2054
|
# @return [Array<(BookmarksResponse, Fixnum, Hash)>] BookmarksResponse data, response status code and response headers
|
|
2038
2055
|
def get_bookmarks_with_http_info(name, bookmark_path, opts = {})
|
|
2039
2056
|
if @api_client.config.debugging
|
|
@@ -2054,6 +2071,7 @@ module AsposePdfCloud
|
|
|
2054
2071
|
query_params = {}
|
|
2055
2072
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
|
2056
2073
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
|
2074
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
|
2057
2075
|
|
|
2058
2076
|
# header parameters
|
|
2059
2077
|
header_params = {}
|
|
@@ -2762,6 +2780,7 @@ module AsposePdfCloud
|
|
|
2762
2780
|
# @param [Hash] opts the optional parameters
|
|
2763
2781
|
# @option opts [String] :folder The document folder.
|
|
2764
2782
|
# @option opts [String] :storage The document storage.
|
|
2783
|
+
# @option opts [String] :password The password (Base64).
|
|
2765
2784
|
# @return [BookmarksResponse]
|
|
2766
2785
|
def get_document_bookmarks(name, opts = {})
|
|
2767
2786
|
@api_client.request_token_if_needed
|
|
@@ -2782,6 +2801,7 @@ module AsposePdfCloud
|
|
|
2782
2801
|
# @param [Hash] opts the optional parameters
|
|
2783
2802
|
# @option opts [String] :folder The document folder.
|
|
2784
2803
|
# @option opts [String] :storage The document storage.
|
|
2804
|
+
# @option opts [String] :password The password (Base64).
|
|
2785
2805
|
# @return [Array<(BookmarksResponse, Fixnum, Hash)>] BookmarksResponse data, response status code and response headers
|
|
2786
2806
|
def get_document_bookmarks_with_http_info(name, opts = {})
|
|
2787
2807
|
if @api_client.config.debugging
|
|
@@ -2798,6 +2818,7 @@ module AsposePdfCloud
|
|
|
2798
2818
|
query_params = {}
|
|
2799
2819
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
|
2800
2820
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
|
2821
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
|
2801
2822
|
|
|
2802
2823
|
# header parameters
|
|
2803
2824
|
header_params = {}
|
|
@@ -3988,10 +4009,11 @@ module AsposePdfCloud
|
|
|
3988
4009
|
|
|
3989
4010
|
# Read document properties.
|
|
3990
4011
|
#
|
|
3991
|
-
# @param name
|
|
4012
|
+
# @param name The document name.
|
|
3992
4013
|
# @param [Hash] opts the optional parameters
|
|
3993
|
-
# @option opts [String] :storage
|
|
3994
|
-
# @option opts [String] :folder
|
|
4014
|
+
# @option opts [String] :storage The document storage.
|
|
4015
|
+
# @option opts [String] :folder The document folder.
|
|
4016
|
+
# @option opts [String] :password The password (Base64).
|
|
3995
4017
|
# @return [DocumentPropertiesResponse]
|
|
3996
4018
|
def get_document_properties(name, opts = {})
|
|
3997
4019
|
@api_client.request_token_if_needed
|
|
@@ -4008,10 +4030,11 @@ module AsposePdfCloud
|
|
|
4008
4030
|
|
|
4009
4031
|
# Read document properties.
|
|
4010
4032
|
#
|
|
4011
|
-
# @param name
|
|
4033
|
+
# @param name The document name.
|
|
4012
4034
|
# @param [Hash] opts the optional parameters
|
|
4013
|
-
# @option opts [String] :storage
|
|
4014
|
-
# @option opts [String] :folder
|
|
4035
|
+
# @option opts [String] :storage The document storage.
|
|
4036
|
+
# @option opts [String] :folder The document folder.
|
|
4037
|
+
# @option opts [String] :password The password (Base64).
|
|
4015
4038
|
# @return [Array<(DocumentPropertiesResponse, Fixnum, Hash)>] DocumentPropertiesResponse data, response status code and response headers
|
|
4016
4039
|
def get_document_properties_with_http_info(name, opts = {})
|
|
4017
4040
|
if @api_client.config.debugging
|
|
@@ -4028,6 +4051,7 @@ module AsposePdfCloud
|
|
|
4028
4051
|
query_params = {}
|
|
4029
4052
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
|
4030
4053
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
|
4054
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
|
4031
4055
|
|
|
4032
4056
|
# header parameters
|
|
4033
4057
|
header_params = {}
|
|
@@ -4060,11 +4084,12 @@ module AsposePdfCloud
|
|
|
4060
4084
|
|
|
4061
4085
|
# Read document property by name.
|
|
4062
4086
|
#
|
|
4063
|
-
# @param name
|
|
4064
|
-
# @param property_name
|
|
4087
|
+
# @param name The document name.
|
|
4088
|
+
# @param property_name Property name.
|
|
4065
4089
|
# @param [Hash] opts the optional parameters
|
|
4066
|
-
# @option opts [String] :storage
|
|
4067
|
-
# @option opts [String] :folder
|
|
4090
|
+
# @option opts [String] :storage The document storage.
|
|
4091
|
+
# @option opts [String] :folder The document folder.
|
|
4092
|
+
# @option opts [String] :password The password (Base64).
|
|
4068
4093
|
# @return [DocumentPropertyResponse]
|
|
4069
4094
|
def get_document_property(name, property_name, opts = {})
|
|
4070
4095
|
@api_client.request_token_if_needed
|
|
@@ -4081,11 +4106,12 @@ module AsposePdfCloud
|
|
|
4081
4106
|
|
|
4082
4107
|
# Read document property by name.
|
|
4083
4108
|
#
|
|
4084
|
-
# @param name
|
|
4085
|
-
# @param property_name
|
|
4109
|
+
# @param name The document name.
|
|
4110
|
+
# @param property_name Property name.
|
|
4086
4111
|
# @param [Hash] opts the optional parameters
|
|
4087
|
-
# @option opts [String] :storage
|
|
4088
|
-
# @option opts [String] :folder
|
|
4112
|
+
# @option opts [String] :storage The document storage.
|
|
4113
|
+
# @option opts [String] :folder The document folder.
|
|
4114
|
+
# @option opts [String] :password The password (Base64).
|
|
4089
4115
|
# @return [Array<(DocumentPropertyResponse, Fixnum, Hash)>] DocumentPropertyResponse data, response status code and response headers
|
|
4090
4116
|
def get_document_property_with_http_info(name, property_name, opts = {})
|
|
4091
4117
|
if @api_client.config.debugging
|
|
@@ -4106,6 +4132,7 @@ module AsposePdfCloud
|
|
|
4106
4132
|
query_params = {}
|
|
4107
4133
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
|
4108
4134
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
|
4135
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
|
4109
4136
|
|
|
4110
4137
|
# header parameters
|
|
4111
4138
|
header_params = {}
|
|
@@ -14767,6 +14794,7 @@ module AsposePdfCloud
|
|
|
14767
14794
|
# @param [Hash] opts the optional parameters
|
|
14768
14795
|
# @option opts [String] :folder The document folder.
|
|
14769
14796
|
# @option opts [String] :storage The document storage.
|
|
14797
|
+
# @option opts [String] :password The password (Base64).
|
|
14770
14798
|
# @return [BookmarksResponse]
|
|
14771
14799
|
def post_bookmark(name, bookmark_path, bookmarks, opts = {})
|
|
14772
14800
|
@api_client.request_token_if_needed
|
|
@@ -14789,6 +14817,7 @@ module AsposePdfCloud
|
|
|
14789
14817
|
# @param [Hash] opts the optional parameters
|
|
14790
14818
|
# @option opts [String] :folder The document folder.
|
|
14791
14819
|
# @option opts [String] :storage The document storage.
|
|
14820
|
+
# @option opts [String] :password The password (Base64).
|
|
14792
14821
|
# @return [Array<(BookmarksResponse, Fixnum, Hash)>] BookmarksResponse data, response status code and response headers
|
|
14793
14822
|
def post_bookmark_with_http_info(name, bookmark_path, bookmarks, opts = {})
|
|
14794
14823
|
if @api_client.config.debugging
|
|
@@ -14813,6 +14842,7 @@ module AsposePdfCloud
|
|
|
14813
14842
|
query_params = {}
|
|
14814
14843
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
|
14815
14844
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
|
14845
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
|
14816
14846
|
|
|
14817
14847
|
# header parameters
|
|
14818
14848
|
header_params = {}
|
|
@@ -19824,6 +19854,7 @@ module AsposePdfCloud
|
|
|
19824
19854
|
# @param [Hash] opts the optional parameters
|
|
19825
19855
|
# @option opts [String] :folder The document folder.
|
|
19826
19856
|
# @option opts [String] :storage The document storage.
|
|
19857
|
+
# @option opts [String] :password The password (Base64).
|
|
19827
19858
|
# @return [BookmarkResponse]
|
|
19828
19859
|
def put_bookmark(name, bookmark_path, bookmark, opts = {})
|
|
19829
19860
|
@api_client.request_token_if_needed
|
|
@@ -19846,6 +19877,7 @@ module AsposePdfCloud
|
|
|
19846
19877
|
# @param [Hash] opts the optional parameters
|
|
19847
19878
|
# @option opts [String] :folder The document folder.
|
|
19848
19879
|
# @option opts [String] :storage The document storage.
|
|
19880
|
+
# @option opts [String] :password The password (Base64).
|
|
19849
19881
|
# @return [Array<(BookmarkResponse, Fixnum, Hash)>] BookmarkResponse data, response status code and response headers
|
|
19850
19882
|
def put_bookmark_with_http_info(name, bookmark_path, bookmark, opts = {})
|
|
19851
19883
|
if @api_client.config.debugging
|
|
@@ -19870,6 +19902,7 @@ module AsposePdfCloud
|
|
|
19870
19902
|
query_params = {}
|
|
19871
19903
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
|
19872
19904
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
|
19905
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
|
19873
19906
|
|
|
19874
19907
|
# header parameters
|
|
19875
19908
|
header_params = {}
|
|
@@ -27455,12 +27488,13 @@ module AsposePdfCloud
|
|
|
27455
27488
|
|
|
27456
27489
|
# Add/update document property.
|
|
27457
27490
|
#
|
|
27458
|
-
# @param name
|
|
27459
|
-
# @param property_name
|
|
27460
|
-
# @param value
|
|
27491
|
+
# @param name The document name.
|
|
27492
|
+
# @param property_name Property name.
|
|
27493
|
+
# @param value Property value.
|
|
27461
27494
|
# @param [Hash] opts the optional parameters
|
|
27462
|
-
# @option opts [String] :storage
|
|
27463
|
-
# @option opts [String] :folder
|
|
27495
|
+
# @option opts [String] :storage The document storage.
|
|
27496
|
+
# @option opts [String] :folder The document folder.
|
|
27497
|
+
# @option opts [String] :password The password (Base64).
|
|
27464
27498
|
# @return [DocumentPropertyResponse]
|
|
27465
27499
|
def put_set_property(name, property_name, value, opts = {})
|
|
27466
27500
|
@api_client.request_token_if_needed
|
|
@@ -27477,12 +27511,13 @@ module AsposePdfCloud
|
|
|
27477
27511
|
|
|
27478
27512
|
# Add/update document property.
|
|
27479
27513
|
#
|
|
27480
|
-
# @param name
|
|
27481
|
-
# @param property_name
|
|
27482
|
-
# @param value
|
|
27514
|
+
# @param name The document name.
|
|
27515
|
+
# @param property_name Property name.
|
|
27516
|
+
# @param value Property value.
|
|
27483
27517
|
# @param [Hash] opts the optional parameters
|
|
27484
|
-
# @option opts [String] :storage
|
|
27485
|
-
# @option opts [String] :folder
|
|
27518
|
+
# @option opts [String] :storage The document storage.
|
|
27519
|
+
# @option opts [String] :folder The document folder.
|
|
27520
|
+
# @option opts [String] :password The password (Base64).
|
|
27486
27521
|
# @return [Array<(DocumentPropertyResponse, Fixnum, Hash)>] DocumentPropertyResponse data, response status code and response headers
|
|
27487
27522
|
def put_set_property_with_http_info(name, property_name, value, opts = {})
|
|
27488
27523
|
if @api_client.config.debugging
|
|
@@ -27508,6 +27543,7 @@ module AsposePdfCloud
|
|
|
27508
27543
|
query_params[:'value'] = value
|
|
27509
27544
|
query_params[:'storage'] = opts[:'storage'] if !opts[:'storage'].nil?
|
|
27510
27545
|
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
|
|
27546
|
+
query_params[:'password'] = opts[:'password'] if !opts[:'password'].nil?
|
|
27511
27547
|
|
|
27512
27548
|
# header parameters
|
|
27513
27549
|
header_params = {}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aspose_pdf_cloud
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 23.
|
|
4
|
+
version: 23.12.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aspose PDF Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-12-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|