comet_backup_ruby_sdk 2.28.0 → 2.29.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: 3b58908f5502d1c0c6c9016746d7493bdb44d68a7b22f9b11a8dd65a2d411f40
4
+ data.tar.gz: 2152239666b491b1658c4f9a7dda5e52ca8a6962da4c3f9121e49c1c20909cf5
5
5
  SHA512:
6
- metadata.gz: 4fedea7d6a7205cb39ca517f45d854d2d56603d237dbac9cb8e95557221a842385cb3024b3c621e6e4e32005b9720071dfff0c3d8b7b762bb5d130254c2ae951
7
- data.tar.gz: 28d2d0c72aacb5a3b3ec9c7d8c713e82fbcde52cdda79fcc981ef018fa1208d9388a1b0718288e4c41d40bb582e91da252c8ee98c1188706cd80ccb717366aa7
6
+ metadata.gz: c58dc4078613707c4f277ecd66e7e425a5bb3b908ef13add1aa51cb92c0c40d1ef85527f4ce44f1d7cadd49603924809d4e27e4b4b9c4966dd58f990d8c40682
7
+ data.tar.gz: 1d0d9b7d7b5616d13366e355071d73089f52d7a9a273aacf5f47c0cb65240ed4b0559532207e401b6cbeceebdc072cbf10010960dbfc8d08afcb142ca1218953
data/.gitignore CHANGED
File without changes
data/.rubocop.yml CHANGED
File without changes
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 2024-05-14 v2.29.0
4
+
5
+ - Based on Comet 24.3.7
6
+ - Added support for configuring concurrency in Microsoft 365 Protected Items
7
+
3
8
  ## 2024-05-02 v2.28.0
4
9
 
5
10
  - 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.29.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.29.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.7'
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 = 7
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
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.29.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-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler