comet_backup_ruby_sdk 2.6.0 → 2.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b5e28127380597ea90859ac7f6d8bfc0577e55ae772621809a406923d966859
4
- data.tar.gz: 9688cfb057919eb7ba1ef32b0466b264555d87081e17d3e18891cb46fee5e82e
3
+ metadata.gz: 2343c8ab5eb2780d894920a96b4c770e7f2c25535e6bb2f11dc47167ece4b504
4
+ data.tar.gz: ce4fdb0e3c4d253f2573d230d0fc2f1a726bc0483805198dfcb27584a7fc956e
5
5
  SHA512:
6
- metadata.gz: 8e00d003558c7df673a1c25dd8e223a59163e60fa12dbcc26d23479e469cc3aadecfe91d3bb82051769f887cacad1b2c916886a0f91f7e3711a9316788a0fa6f
7
- data.tar.gz: a58dc8f7d1f47f82ed49031221d91b6e6b508f5cc35c52e22e2e342b95ca44a3d80753d7687aae38ea67fc33d4ea66825f5f27a8650c15142603f34ae0e5bff3
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- comet_backup_ruby_sdk (2.6.0)
4
+ comet_backup_ruby_sdk (2.7.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -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.6.0'
15
+ spec.version = '2.7.0'
16
16
  spec.authors = ['Comet Licensing Ltd.']
17
17
  spec.email = ['hello@cometbackup.com']
18
18
 
@@ -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.