comet_backup_ruby_sdk 2.6.0 → 2.7.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/CHANGELOG.md +9 -0
- data/Gemfile.lock +1 -1
- data/comet_backup_ruby_sdk.gemspec +1 -1
- data/lib/comet/comet_server.rb +58 -0
- data/lib/comet/definitions.rb +412 -404
- data/lib/comet/models/branding_options.rb +18 -0
- data/lib/comet/models/group_policy.rb +18 -0
- data/lib/comet/models/search_result_file_info.rb +136 -0
- data/lib/comet/models/search_snapshots_response.rb +104 -0
- data/lib/comet/models/self_backup_export_options.rb +6 -0
- data/lib/comet/models/self_backup_target.rb +6 -0
- data/lib/comet/models/server_meta_branding_properties.rb +9 -0
- data/lib/comet/models/web_interface_branding_properties.rb +18 -0
- data/lib/comet_backup_ruby_sdk.rb +2 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2343c8ab5eb2780d894920a96b4c770e7f2c25535e6bb2f11dc47167ece4b504
|
4
|
+
data.tar.gz: ce4fdb0e3c4d253f2573d230d0fc2f1a726bc0483805198dfcb27584a7fc956e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b49b8e8fe346fdffc94843b438a5ced538d19ed3e6dba340b2357d841aa169b34d284ad9866baf8e62af4ec6ab3516ab0d8c2df4f446f589d50f5f06bf886baf
|
7
|
+
data.tar.gz: ae85553f2ce9c8433351d38a8c72c2b755bfd64cd525a4afd20afb69fd1672c371d92d82b697717fe761a85c5edf3163a9f66fd16e11d5cce59c1458fcee04ac
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 2023-04-24 v2.7.0
|
4
|
+
|
5
|
+
- Based on Comet 23.3.5
|
6
|
+
- Support new `AdminDispatcherSearchSnapshots` API to remotely search for files in a Storage Vault
|
7
|
+
- Support new `AdminMetaRemoteStorageVaultTest` API to test connections for a Storage Template
|
8
|
+
- Support new `AccentColor` and `BrandingStyleType` branding options for the Comet Server web interface
|
9
|
+
- New Self-Backup option to include server logs
|
10
|
+
- Track creation and modification timestamps for `GroupPolicy` objects
|
11
|
+
|
3
12
|
## 2023-03-23 v2.6.0
|
4
13
|
|
5
14
|
- Based on Comet 23.3.1
|
data/Gemfile.lock
CHANGED
@@ -12,7 +12,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
12
12
|
|
13
13
|
Gem::Specification.new do |spec|
|
14
14
|
spec.name = 'comet_backup_ruby_sdk'
|
15
|
-
spec.version = '2.
|
15
|
+
spec.version = '2.7.0'
|
16
16
|
spec.authors = ['Comet Licensing Ltd.']
|
17
17
|
spec.email = ['hello@cometbackup.com']
|
18
18
|
|
data/lib/comet/comet_server.rb
CHANGED
@@ -2017,6 +2017,41 @@ module Comet
|
|
2017
2017
|
ret
|
2018
2018
|
end
|
2019
2019
|
|
2020
|
+
# AdminDispatcherSearchSnapshots
|
2021
|
+
#
|
2022
|
+
# Search storage vault snapshots.
|
2023
|
+
#
|
2024
|
+
# You must supply administrator authentication credentials to use this API.
|
2025
|
+
# This API requires the Auth Role to be enabled.
|
2026
|
+
#
|
2027
|
+
# @param [String] target_id The live connection GUID
|
2028
|
+
# @param [String] destination_id The Storage Vault GUID
|
2029
|
+
# @param [Array<String>] snapshot_ids Snapshots to search
|
2030
|
+
# @param [Comet::SearchClause] filter The search filter
|
2031
|
+
# @return [Comet::SearchSnapshotsResponse]
|
2032
|
+
def admin_dispatcher_search_snapshots(target_id, destination_id, snapshot_ids, filter)
|
2033
|
+
submit_params = {}
|
2034
|
+
raise TypeError, "'target_id' expected String, got #{target_id.class}" unless target_id.is_a? String
|
2035
|
+
|
2036
|
+
submit_params['TargetID'] = target_id
|
2037
|
+
raise TypeError, "'destination_id' expected String, got #{destination_id.class}" unless destination_id.is_a? String
|
2038
|
+
|
2039
|
+
submit_params['DestinationID'] = destination_id
|
2040
|
+
raise TypeError, "'snapshot_ids' expected Array, got #{snapshot_ids.class}" unless snapshot_ids.is_a? Array
|
2041
|
+
|
2042
|
+
submit_params['SnapshotIDs'] = snapshot_ids.to_json
|
2043
|
+
raise TypeError, "'filter' expected Comet::SearchClause, got #{filter.class}" unless filter.is_a? Comet::SearchClause
|
2044
|
+
|
2045
|
+
submit_params['Filter'] = filter.to_json
|
2046
|
+
|
2047
|
+
body = perform_request('api/v1/admin/dispatcher/search-snapshots', submit_params)
|
2048
|
+
json_body = JSON.parse body
|
2049
|
+
check_status json_body
|
2050
|
+
ret = Comet::SearchSnapshotsResponse.new
|
2051
|
+
ret.from_hash(json_body)
|
2052
|
+
ret
|
2053
|
+
end
|
2054
|
+
|
2020
2055
|
# AdminDispatcherUninstallSoftware
|
2021
2056
|
#
|
2022
2057
|
# Instruct a live connected device to self-uninstall the software.
|
@@ -2855,6 +2890,29 @@ module Comet
|
|
2855
2890
|
ret
|
2856
2891
|
end
|
2857
2892
|
|
2893
|
+
# AdminMetaRemoteStorageVaultTest
|
2894
|
+
#
|
2895
|
+
# Test the connection to the storage template.
|
2896
|
+
#
|
2897
|
+
# You must supply administrator authentication credentials to use this API.
|
2898
|
+
# Access to this API may be prevented on a per-administrator basis.
|
2899
|
+
#
|
2900
|
+
# @param [Comet::RemoteStorageOption] template_options Storage Template Vault Options
|
2901
|
+
# @return [Comet::CometAPIResponseMessage]
|
2902
|
+
def admin_meta_remote_storage_vault_test(template_options)
|
2903
|
+
submit_params = {}
|
2904
|
+
raise TypeError, "'template_options' expected Comet::RemoteStorageOption, got #{template_options.class}" unless template_options.is_a? Comet::RemoteStorageOption
|
2905
|
+
|
2906
|
+
submit_params['TemplateOptions'] = template_options.to_json
|
2907
|
+
|
2908
|
+
body = perform_request('api/v1/admin/meta/remote-storage-vault/test', submit_params)
|
2909
|
+
json_body = JSON.parse body
|
2910
|
+
check_status json_body
|
2911
|
+
ret = Comet::CometAPIResponseMessage.new
|
2912
|
+
ret.from_hash(json_body)
|
2913
|
+
ret
|
2914
|
+
end
|
2915
|
+
|
2858
2916
|
# AdminMetaResourceGet
|
2859
2917
|
#
|
2860
2918
|
# Get a resource file.
|