comet_backup_ruby_sdk 2.28.0 → 2.30.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: 53738547ff60dcbe3a712a5c3c40c0b352e16a929ba9a89eec0c70dfb8198e89
4
- data.tar.gz: cb227d89fa7af1f8922459f79731672043fe218c832049b816c95f1e8e8999e0
3
+ metadata.gz: 832fa5d784fa0c88447667e790e7df1d9ba763cf16bad52d95cc5e424d269295
4
+ data.tar.gz: 61f0062770a95677bd8b46fd4680a38da83e97ee1204e2e07e45ed6a887c7466
5
5
  SHA512:
6
- metadata.gz: 4fedea7d6a7205cb39ca517f45d854d2d56603d237dbac9cb8e95557221a842385cb3024b3c621e6e4e32005b9720071dfff0c3d8b7b762bb5d130254c2ae951
7
- data.tar.gz: 28d2d0c72aacb5a3b3ec9c7d8c713e82fbcde52cdda79fcc981ef018fa1208d9388a1b0718288e4c41d40bb582e91da252c8ee98c1188706cd80ccb717366aa7
6
+ metadata.gz: b1c798286f65a14255073d5c45b126a28a041acc5edf61403e59b67a41dc92e6e63a8b7e38141a61de32e6525b28b1ff2d76f379d6f1f51bdccccd05bff0bb5a
7
+ data.tar.gz: a8e94c646cac7b1f52e8adcda71c113c6d156061eeff8277fad08aacfa98dcac57ca61dfbd1a0ec589bb53117f8027a3b92010c6cdcc26db9ca04a696dafaf2d
data/.gitignore CHANGED
File without changes
data/.rubocop.yml CHANGED
File without changes
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 2024-05-17 v2.30.0
4
+
5
+ - Based on Comet 24.3.8
6
+ - Added support for configuring Software Build Role builder count
7
+ - Added LastStartTime field to job statistics
8
+
9
+ ## 2024-05-14 v2.29.0
10
+
11
+ - Based on Comet 24.3.7
12
+ - Added support for configuring concurrency in Microsoft 365 Protected Items
13
+
3
14
  ## 2024-05-02 v2.28.0
4
15
 
5
16
  - Based on Comet 24.3.6
data/Gemfile CHANGED
File without changes
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- comet_backup_ruby_sdk (2.28.0)
4
+ comet_backup_ruby_sdk (2.30.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/LICENSE CHANGED
File without changes
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
File without changes
@@ -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.28.0'
15
+ spec.version = '2.30.0'
16
16
  spec.authors = ['Comet Licensing Ltd.']
17
17
  spec.email = ['hello@cometbackup.com']
18
18
 
@@ -7,13 +7,13 @@
7
7
 
8
8
  module Comet
9
9
 
10
- APPLICATION_VERSION = '24.3.6'
10
+ APPLICATION_VERSION = '24.3.8'
11
11
 
12
12
  APPLICATION_VERSION_MAJOR = 24
13
13
 
14
14
  APPLICATION_VERSION_MINOR = 3
15
15
 
16
- APPLICATION_VERSION_REVISION = 6
16
+ APPLICATION_VERSION_REVISION = 8
17
17
 
18
18
  # AutoRetentionLevel: The system will automatically choose how often to run an automatic Retention Pass after each backup job.
19
19
  BACKUPJOBAUTORETENTION_AUTOMATIC = 0
@@ -42,6 +42,11 @@ module Comet
42
42
  # @type [Number] auto_retention_level
43
43
  attr_accessor :auto_retention_level
44
44
 
45
+ # Desired concurrency count. If Zero, uses mode defaults
46
+ # @type [Number] concurrency_count
47
+ attr_accessor :concurrency_count
48
+
49
+ # Log verbosity level. LOG_DEBUG has the greatest verbosity
45
50
  # @type [String] log_level
46
51
  attr_accessor :log_level
47
52
 
@@ -56,6 +61,7 @@ module Comet
56
61
  @stop_after = 0
57
62
  @limit_vault_speed_bps = 0
58
63
  @auto_retention_level = 0
64
+ @concurrency_count = 0
59
65
  @log_level = ''
60
66
  @unknown_json_fields = {}
61
67
  end
@@ -93,6 +99,10 @@ module Comet
93
99
  raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
94
100
 
95
101
  @auto_retention_level = v
102
+ when 'ConcurrencyCount'
103
+ raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
104
+
105
+ @concurrency_count = v
96
106
  when 'LogLevel'
97
107
  raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
98
108
 
@@ -113,6 +123,7 @@ module Comet
113
123
  ret['UseOnDiskIndexes'] = @use_on_disk_indexes
114
124
  ret['AllowZeroFilesSuccess'] = @allow_zero_files_success
115
125
  ret['AutoRetentionLevel'] = @auto_retention_level
126
+ ret['ConcurrencyCount'] = @concurrency_count
116
127
  ret['LogLevel'] = @log_level
117
128
  @unknown_json_fields.each do |k, v|
118
129
  ret[k] = v
@@ -72,6 +72,11 @@ module Comet
72
72
  # @type [Number] auto_retention_level
73
73
  attr_accessor :auto_retention_level
74
74
 
75
+ # Desired concurrency count. If Zero, uses mode defaults
76
+ # @type [Number] concurrency_count
77
+ attr_accessor :concurrency_count
78
+
79
+ # Log verbosity level. LOG_DEBUG has the greatest verbosity
75
80
  # @type [String] log_level
76
81
  attr_accessor :log_level
77
82
 
@@ -102,6 +107,7 @@ module Comet
102
107
  @stop_after = 0
103
108
  @limit_vault_speed_bps = 0
104
109
  @auto_retention_level = 0
110
+ @concurrency_count = 0
105
111
  @log_level = ''
106
112
  @schedules = []
107
113
  @event_triggers = Comet::BackupRuleEventTriggers.new
@@ -194,6 +200,10 @@ module Comet
194
200
  raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
195
201
 
196
202
  @auto_retention_level = v
203
+ when 'ConcurrencyCount'
204
+ raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
205
+
206
+ @concurrency_count = v
197
207
  when 'LogLevel'
198
208
  raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
199
209
 
@@ -235,6 +245,7 @@ module Comet
235
245
  ret['UseOnDiskIndexes'] = @use_on_disk_indexes
236
246
  ret['AllowZeroFilesSuccess'] = @allow_zero_files_success
237
247
  ret['AutoRetentionLevel'] = @auto_retention_level
248
+ ret['ConcurrencyCount'] = @concurrency_count
238
249
  ret['LogLevel'] = @log_level
239
250
  ret['Schedules'] = @schedules
240
251
  ret['EventTriggers'] = @event_triggers
@@ -12,8 +12,8 @@ module Comet
12
12
  # Office365Connection is a typed class wrapper around the underlying Comet Server API data structure.
13
13
  class Office365Connection
14
14
 
15
- # @type [String] feature_flag
16
- attr_accessor :feature_flag
15
+ # @type [Number] concurrency
16
+ attr_accessor :concurrency
17
17
 
18
18
  # @type [Comet::Office365Credential] credential
19
19
  attr_accessor :credential
@@ -21,15 +21,21 @@ module Comet
21
21
  # @type [Comet::Office365CustomSetting] custom_setting
22
22
  attr_accessor :custom_setting
23
23
 
24
+ # @type [Comet::Office365CustomSettingV2] custom_setting_v2
25
+ attr_accessor :custom_setting_v2
26
+
27
+ # @type [String] feature_flag
28
+ attr_accessor :feature_flag
29
+
30
+ # @type [String] log_level
31
+ attr_accessor :log_level
32
+
24
33
  # @type [Array<String>] mailbox_unique_members
25
34
  attr_accessor :mailbox_unique_members
26
35
 
27
36
  # @type [Array<String>] site_unique_members
28
37
  attr_accessor :site_unique_members
29
38
 
30
- # @type [Comet::Office365CustomSettingV2] custom_setting_v2
31
- attr_accessor :custom_setting_v2
32
-
33
39
  # @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
34
40
  attr_accessor :unknown_json_fields
35
41
 
@@ -38,12 +44,14 @@ module Comet
38
44
  end
39
45
 
40
46
  def clear
41
- @feature_flag = ''
47
+ @concurrency = 0
42
48
  @credential = Comet::Office365Credential.new
43
49
  @custom_setting = Comet::Office365CustomSetting.new
50
+ @custom_setting_v2 = Comet::Office365CustomSettingV2.new
51
+ @feature_flag = ''
52
+ @log_level = ''
44
53
  @mailbox_unique_members = []
45
54
  @site_unique_members = []
46
- @custom_setting_v2 = Comet::Office365CustomSettingV2.new
47
55
  @unknown_json_fields = {}
48
56
  end
49
57
 
@@ -60,16 +68,27 @@ module Comet
60
68
 
61
69
  obj.each do |k, v|
62
70
  case k
63
- when 'FeatureFlag'
64
- raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
71
+ when 'Concurrency'
72
+ raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
65
73
 
66
- @feature_flag = v
74
+ @concurrency = v
67
75
  when 'Credential'
68
76
  @credential = Comet::Office365Credential.new
69
77
  @credential.from_hash(v)
70
78
  when 'CustomSetting'
71
79
  @custom_setting = Comet::Office365CustomSetting.new
72
80
  @custom_setting.from_hash(v)
81
+ when 'CustomSettingV2'
82
+ @custom_setting_v2 = Comet::Office365CustomSettingV2.new
83
+ @custom_setting_v2.from_hash(v)
84
+ when 'FeatureFlag'
85
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
86
+
87
+ @feature_flag = v
88
+ when 'LogLevel'
89
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
90
+
91
+ @log_level = v
73
92
  when 'MailboxUniqueMembers'
74
93
  if v.nil?
75
94
  @mailbox_unique_members = []
@@ -92,9 +111,6 @@ module Comet
92
111
  @site_unique_members[i1] = v1
93
112
  end
94
113
  end
95
- when 'CustomSettingV2'
96
- @custom_setting_v2 = Comet::Office365CustomSettingV2.new
97
- @custom_setting_v2.from_hash(v)
98
114
  else
99
115
  @unknown_json_fields[k] = v
100
116
  end
@@ -104,12 +120,14 @@ module Comet
104
120
  # @return [Hash] The complete object as a Ruby hash
105
121
  def to_hash
106
122
  ret = {}
107
- ret['FeatureFlag'] = @feature_flag
123
+ ret['Concurrency'] = @concurrency
108
124
  ret['Credential'] = @credential
109
125
  ret['CustomSetting'] = @custom_setting
126
+ ret['CustomSettingV2'] = @custom_setting_v2
127
+ ret['FeatureFlag'] = @feature_flag
128
+ ret['LogLevel'] = @log_level
110
129
  ret['MailboxUniqueMembers'] = @mailbox_unique_members
111
130
  ret['SiteUniqueMembers'] = @site_unique_members
112
- ret['CustomSettingV2'] = @custom_setting_v2
113
131
  @unknown_json_fields.each do |k, v|
114
132
  ret[k] = v
115
133
  end
@@ -18,6 +18,11 @@ module Comet
18
18
  # @type [Boolean] allow_unauthenticated_downloads
19
19
  attr_accessor :allow_unauthenticated_downloads
20
20
 
21
+ # 0 will default to CPU core count - 2
22
+ # This field is available in Comet 24.3.8 and later.
23
+ # @type [Number] max_builders
24
+ attr_accessor :max_builders
25
+
21
26
  # @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
22
27
  attr_accessor :unknown_json_fields
23
28
 
@@ -26,6 +31,7 @@ module Comet
26
31
  end
27
32
 
28
33
  def clear
34
+ @max_builders = 0
29
35
  @unknown_json_fields = {}
30
36
  end
31
37
 
@@ -46,6 +52,10 @@ module Comet
46
52
  @role_enabled = v
47
53
  when 'AllowUnauthenticatedDownloads'
48
54
  @allow_unauthenticated_downloads = v
55
+ when 'MaxBuilders'
56
+ raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
57
+
58
+ @max_builders = v
49
59
  else
50
60
  @unknown_json_fields[k] = v
51
61
  end
@@ -57,6 +67,7 @@ module Comet
57
67
  ret = {}
58
68
  ret['RoleEnabled'] = @role_enabled
59
69
  ret['AllowUnauthenticatedDownloads'] = @allow_unauthenticated_downloads
70
+ ret['MaxBuilders'] = @max_builders
60
71
  @unknown_json_fields.each do |k, v|
61
72
  ret[k] = v
62
73
  end
@@ -12,6 +12,9 @@ module Comet
12
12
  # SourceStatistics is a typed class wrapper around the underlying Comet Server API data structure.
13
13
  class SourceStatistics
14
14
 
15
+ # @type [Number] last_start_time
16
+ attr_accessor :last_start_time
17
+
15
18
  # @type [Comet::BackupJobDetail] last_backup_job
16
19
  attr_accessor :last_backup_job
17
20
 
@@ -26,6 +29,7 @@ module Comet
26
29
  end
27
30
 
28
31
  def clear
32
+ @last_start_time = 0
29
33
  @last_backup_job = Comet::BackupJobDetail.new
30
34
  @last_successful_backup_job = Comet::BackupJobDetail.new
31
35
  @unknown_json_fields = {}
@@ -44,6 +48,10 @@ module Comet
44
48
 
45
49
  obj.each do |k, v|
46
50
  case k
51
+ when 'LastStartTime'
52
+ raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
53
+
54
+ @last_start_time = v
47
55
  when 'LastBackupJob'
48
56
  @last_backup_job = Comet::BackupJobDetail.new
49
57
  @last_backup_job.from_hash(v)
@@ -59,6 +67,7 @@ module Comet
59
67
  # @return [Hash] The complete object as a Ruby hash
60
68
  def to_hash
61
69
  ret = {}
70
+ ret['LastStartTime'] = @last_start_time
62
71
  ret['LastBackupJob'] = @last_backup_job
63
72
  ret['LastSuccessfulBackupJob'] = @last_successful_backup_job
64
73
  @unknown_json_fields.each do |k, v|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: comet_backup_ruby_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.28.0
4
+ version: 2.30.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Comet Licensing Ltd.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-08 00:00:00.000000000 Z
11
+ date: 2024-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler