comet_backup_ruby_sdk 2.41.0 → 2.42.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.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/Gemfile.lock +1 -1
  4. data/comet_backup_ruby_sdk.gemspec +1 -1
  5. data/lib/comet/comet_server.rb +95 -4
  6. data/lib/comet/definitions.rb +41 -7
  7. data/lib/comet/models/backup_job_detail.rb +12 -0
  8. data/lib/comet/models/block_info.rb +82 -0
  9. data/lib/comet/models/browse_proxmox_nodes_response.rb +99 -0
  10. data/lib/comet/models/browse_proxmox_response.rb +98 -0
  11. data/lib/comet/models/browse_proxmox_storage_response.rb +98 -0
  12. data/lib/comet/models/external_authentication_source.rb +3 -3
  13. data/lib/comet/models/office_365custom_setting_v2.rb +16 -5
  14. data/lib/comet/models/partition.rb +20 -0
  15. data/lib/comet/models/proxmox_connection.rb +72 -0
  16. data/lib/comet/models/proxmox_restore_target_options.rb +92 -0
  17. data/lib/comet/models/pvebackup_disk.rb +86 -0
  18. data/lib/comet/models/pvebackup_node.rb +100 -0
  19. data/lib/comet/models/pvebackup_vm.rb +122 -0
  20. data/lib/comet/models/pvedisk.rb +137 -0
  21. data/lib/comet/models/pveparams.rb +138 -0
  22. data/lib/comet/models/pverestore_selection.rb +94 -0
  23. data/lib/comet/models/pvestorage_name.rb +83 -0
  24. data/lib/comet/models/pvevm.rb +148 -0
  25. data/lib/comet/models/registration_lobby_connection.rb +11 -0
  26. data/lib/comet/models/remote_server_address.rb +3 -3
  27. data/lib/comet/models/remote_storage_option.rb +3 -3
  28. data/lib/comet/models/replica_server.rb +3 -3
  29. data/lib/comet/models/request_storage_vault_response_message.rb +17 -0
  30. data/lib/comet/models/restore_job_advanced_options.rb +11 -0
  31. data/lib/comet/models/retention_range.rb +18 -0
  32. data/lib/comet/models/schedule_config.rb +18 -0
  33. data/lib/comet/models/self_backup_export_options.rb +2 -2
  34. data/lib/comet/models/self_backup_target.rb +2 -2
  35. data/lib/comet/models/user_policy.rb +11 -0
  36. data/lib/comet_backup_ruby_sdk.rb +16 -0
  37. metadata +16 -2
@@ -0,0 +1,137 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright (c) 2020-2025 Comet Licensing Ltd.
4
+ # Please see the LICENSE file for usage information.
5
+ #
6
+ # SPDX-License-Identifier: MIT
7
+
8
+ require 'json'
9
+
10
+ module Comet
11
+
12
+ # PVEDisk is a typed class wrapper around the underlying Comet Server API data structure.
13
+ class PVEDisk
14
+
15
+ # @type [String] device
16
+ attr_accessor :device
17
+
18
+ # @type [Number] device_num
19
+ attr_accessor :device_num
20
+
21
+ # @type [String] storage_id
22
+ attr_accessor :storage_id
23
+
24
+ # @type [String] volume
25
+ attr_accessor :volume
26
+
27
+ # @type [String] size
28
+ attr_accessor :size
29
+
30
+ # @type [String] format
31
+ attr_accessor :format
32
+
33
+ # @type [String] options
34
+ attr_accessor :options
35
+
36
+ # @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
37
+ attr_accessor :unknown_json_fields
38
+
39
+ def initialize
40
+ clear
41
+ end
42
+
43
+ def clear
44
+ @device = ''
45
+ @device_num = 0
46
+ @storage_id = ''
47
+ @volume = ''
48
+ @size = ''
49
+ @format = ''
50
+ @options = ''
51
+ @unknown_json_fields = {}
52
+ end
53
+
54
+ # @param [String] json_string The complete object in JSON format
55
+ def from_json(json_string)
56
+ raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
57
+
58
+ from_hash(JSON.parse(json_string))
59
+ end
60
+
61
+ # @param [Hash] obj The complete object as a Ruby hash
62
+ def from_hash(obj)
63
+ raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
64
+
65
+ obj.each do |k, v|
66
+ case k
67
+ when 'Device'
68
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
69
+
70
+ @device = v
71
+ when 'DeviceNum'
72
+ raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
73
+
74
+ @device_num = v
75
+ when 'StorageID'
76
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
77
+
78
+ @storage_id = v
79
+ when 'Volume'
80
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
81
+
82
+ @volume = v
83
+ when 'Size'
84
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
85
+
86
+ @size = v
87
+ when 'Format'
88
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
89
+
90
+ @format = v
91
+ when 'Options'
92
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
93
+
94
+ @options = v
95
+ else
96
+ @unknown_json_fields[k] = v
97
+ end
98
+ end
99
+ end
100
+
101
+ # @return [Hash] The complete object as a Ruby hash
102
+ def to_hash
103
+ ret = {}
104
+ ret['Device'] = @device
105
+ ret['DeviceNum'] = @device_num
106
+ unless @storage_id.nil?
107
+ ret['StorageID'] = @storage_id
108
+ end
109
+ unless @volume.nil?
110
+ ret['Volume'] = @volume
111
+ end
112
+ unless @size.nil?
113
+ ret['Size'] = @size
114
+ end
115
+ unless @format.nil?
116
+ ret['Format'] = @format
117
+ end
118
+ unless @options.nil?
119
+ ret['Options'] = @options
120
+ end
121
+ @unknown_json_fields.each do |k, v|
122
+ ret[k] = v
123
+ end
124
+ ret
125
+ end
126
+
127
+ # @return [Hash] The complete object as a Ruby hash
128
+ def to_h
129
+ to_hash
130
+ end
131
+
132
+ # @return [String] The complete object as a JSON string
133
+ def to_json(options = {})
134
+ to_hash.to_json(options)
135
+ end
136
+ end
137
+ end
@@ -0,0 +1,138 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright (c) 2020-2025 Comet Licensing Ltd.
4
+ # Please see the LICENSE file for usage information.
5
+ #
6
+ # SPDX-License-Identifier: MIT
7
+
8
+ require 'json'
9
+
10
+ module Comet
11
+
12
+ # PVEParams is a typed class wrapper around the underlying Comet Server API data structure.
13
+ class PVEParams
14
+
15
+ # @type [Boolean] everything
16
+ attr_accessor :everything
17
+
18
+ # @type [Array<Comet::PVEBackupNode>] exclusions
19
+ attr_accessor :exclusions
20
+
21
+ # @type [String] method
22
+ attr_accessor :method
23
+
24
+ # @type [Number] quota
25
+ attr_accessor :quota
26
+
27
+ # @type [Comet::SSHConnection] sshconnection
28
+ attr_accessor :sshconnection
29
+
30
+ # @type [Array<Comet::PVEBackupNode>] selections
31
+ attr_accessor :selections
32
+
33
+ # @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
34
+ attr_accessor :unknown_json_fields
35
+
36
+ def initialize
37
+ clear
38
+ end
39
+
40
+ def clear
41
+ @exclusions = []
42
+ @method = ''
43
+ @quota = 0
44
+ @sshconnection = Comet::SSHConnection.new
45
+ @selections = []
46
+ @unknown_json_fields = {}
47
+ end
48
+
49
+ # @param [String] json_string The complete object in JSON format
50
+ def from_json(json_string)
51
+ raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
52
+
53
+ from_hash(JSON.parse(json_string))
54
+ end
55
+
56
+ # @param [Hash] obj The complete object as a Ruby hash
57
+ def from_hash(obj)
58
+ raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
59
+
60
+ obj.each do |k, v|
61
+ case k
62
+ when 'Everything'
63
+ @everything = v
64
+ when 'Exclusions'
65
+ if v.nil?
66
+ @exclusions = []
67
+ else
68
+ @exclusions = Array.new(v.length)
69
+ v.each_with_index do |v1, i1|
70
+ @exclusions[i1] = Comet::PVEBackupNode.new
71
+ @exclusions[i1].from_hash(v1)
72
+ end
73
+ end
74
+ when 'Method'
75
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
76
+
77
+ @method = v
78
+ when 'Quota'
79
+ raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
80
+
81
+ @quota = v
82
+ when 'SSHConnection'
83
+ @sshconnection = Comet::SSHConnection.new
84
+ @sshconnection.from_hash(v)
85
+ when 'Selections'
86
+ if v.nil?
87
+ @selections = []
88
+ else
89
+ @selections = Array.new(v.length)
90
+ v.each_with_index do |v1, i1|
91
+ @selections[i1] = Comet::PVEBackupNode.new
92
+ @selections[i1].from_hash(v1)
93
+ end
94
+ end
95
+ else
96
+ @unknown_json_fields[k] = v
97
+ end
98
+ end
99
+ end
100
+
101
+ # @return [Hash] The complete object as a Ruby hash
102
+ def to_hash
103
+ ret = {}
104
+ unless @everything.nil?
105
+ ret['Everything'] = @everything
106
+ end
107
+ unless @exclusions.nil?
108
+ ret['Exclusions'] = @exclusions
109
+ end
110
+ unless @method.nil?
111
+ ret['Method'] = @method
112
+ end
113
+ unless @quota.nil?
114
+ ret['Quota'] = @quota
115
+ end
116
+ unless @sshconnection.nil?
117
+ ret['SSHConnection'] = @sshconnection
118
+ end
119
+ unless @selections.nil?
120
+ ret['Selections'] = @selections
121
+ end
122
+ @unknown_json_fields.each do |k, v|
123
+ ret[k] = v
124
+ end
125
+ ret
126
+ end
127
+
128
+ # @return [Hash] The complete object as a Ruby hash
129
+ def to_h
130
+ to_hash
131
+ end
132
+
133
+ # @return [String] The complete object as a JSON string
134
+ def to_json(options = {})
135
+ to_hash.to_json(options)
136
+ end
137
+ end
138
+ end
@@ -0,0 +1,94 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright (c) 2020-2025 Comet Licensing Ltd.
4
+ # Please see the LICENSE file for usage information.
5
+ #
6
+ # SPDX-License-Identifier: MIT
7
+
8
+ require 'json'
9
+
10
+ module Comet
11
+
12
+ # PVERestoreSelection is a typed class wrapper around the underlying Comet Server API data structure.
13
+ class PVERestoreSelection
14
+
15
+ # @type [String] id
16
+ attr_accessor :id
17
+
18
+ # @type [String] name
19
+ attr_accessor :name
20
+
21
+ # @type [Comet::PVEVM] target_vm
22
+ attr_accessor :target_vm
23
+
24
+ # @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
25
+ attr_accessor :unknown_json_fields
26
+
27
+ def initialize
28
+ clear
29
+ end
30
+
31
+ def clear
32
+ @id = ''
33
+ @name = ''
34
+ @target_vm = Comet::PVEVM.new
35
+ @unknown_json_fields = {}
36
+ end
37
+
38
+ # @param [String] json_string The complete object in JSON format
39
+ def from_json(json_string)
40
+ raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
41
+
42
+ from_hash(JSON.parse(json_string))
43
+ end
44
+
45
+ # @param [Hash] obj The complete object as a Ruby hash
46
+ def from_hash(obj)
47
+ raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
48
+
49
+ obj.each do |k, v|
50
+ case k
51
+ when 'ID'
52
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
53
+
54
+ @id = v
55
+ when 'Name'
56
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
57
+
58
+ @name = v
59
+ when 'TargetVM'
60
+ @target_vm = Comet::PVEVM.new
61
+ @target_vm.from_hash(v)
62
+ else
63
+ @unknown_json_fields[k] = v
64
+ end
65
+ end
66
+ end
67
+
68
+ # @return [Hash] The complete object as a Ruby hash
69
+ def to_hash
70
+ ret = {}
71
+ unless @id.nil?
72
+ ret['ID'] = @id
73
+ end
74
+ unless @name.nil?
75
+ ret['Name'] = @name
76
+ end
77
+ ret['TargetVM'] = @target_vm
78
+ @unknown_json_fields.each do |k, v|
79
+ ret[k] = v
80
+ end
81
+ ret
82
+ end
83
+
84
+ # @return [Hash] The complete object as a Ruby hash
85
+ def to_h
86
+ to_hash
87
+ end
88
+
89
+ # @return [String] The complete object as a JSON string
90
+ def to_json(options = {})
91
+ to_hash.to_json(options)
92
+ end
93
+ end
94
+ end
@@ -0,0 +1,83 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright (c) 2020-2025 Comet Licensing Ltd.
4
+ # Please see the LICENSE file for usage information.
5
+ #
6
+ # SPDX-License-Identifier: MIT
7
+
8
+ require 'json'
9
+
10
+ module Comet
11
+
12
+ # PVEStorageName is a typed class wrapper around the underlying Comet Server API data structure.
13
+ # PVEStorageName contains the name and type of storage configured on a Proxmox Cluster
14
+ class PVEStorageName
15
+
16
+ # @type [String] name
17
+ attr_accessor :name
18
+
19
+ # @type [String] type
20
+ attr_accessor :type
21
+
22
+ # @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
23
+ attr_accessor :unknown_json_fields
24
+
25
+ def initialize
26
+ clear
27
+ end
28
+
29
+ def clear
30
+ @name = ''
31
+ @type = ''
32
+ @unknown_json_fields = {}
33
+ end
34
+
35
+ # @param [String] json_string The complete object in JSON format
36
+ def from_json(json_string)
37
+ raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
38
+
39
+ from_hash(JSON.parse(json_string))
40
+ end
41
+
42
+ # @param [Hash] obj The complete object as a Ruby hash
43
+ def from_hash(obj)
44
+ raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
45
+
46
+ obj.each do |k, v|
47
+ case k
48
+ when 'Name'
49
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
50
+
51
+ @name = v
52
+ when 'Type'
53
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
54
+
55
+ @type = v
56
+ else
57
+ @unknown_json_fields[k] = v
58
+ end
59
+ end
60
+ end
61
+
62
+ # @return [Hash] The complete object as a Ruby hash
63
+ def to_hash
64
+ ret = {}
65
+ ret['Name'] = @name
66
+ ret['Type'] = @type
67
+ @unknown_json_fields.each do |k, v|
68
+ ret[k] = v
69
+ end
70
+ ret
71
+ end
72
+
73
+ # @return [Hash] The complete object as a Ruby hash
74
+ def to_h
75
+ to_hash
76
+ end
77
+
78
+ # @return [String] The complete object as a JSON string
79
+ def to_json(options = {})
80
+ to_hash.to_json(options)
81
+ end
82
+ end
83
+ end
@@ -0,0 +1,148 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright (c) 2020-2025 Comet Licensing Ltd.
4
+ # Please see the LICENSE file for usage information.
5
+ #
6
+ # SPDX-License-Identifier: MIT
7
+
8
+ require 'json'
9
+
10
+ module Comet
11
+
12
+ # PVEVM is a typed class wrapper around the underlying Comet Server API data structure.
13
+ class PVEVM
14
+
15
+ # @type [String] cpu
16
+ attr_accessor :cpu
17
+
18
+ # @type [Array<Comet::PVEDisk>] disks
19
+ attr_accessor :disks
20
+
21
+ # @type [String] memory
22
+ attr_accessor :memory
23
+
24
+ # @type [String] name
25
+ attr_accessor :name
26
+
27
+ # @type [String] node
28
+ attr_accessor :node
29
+
30
+ # @type [String] ostype
31
+ attr_accessor :ostype
32
+
33
+ # @type [Boolean] running
34
+ attr_accessor :running
35
+
36
+ # @type [String] type
37
+ attr_accessor :type
38
+
39
+ # @type [String] vmid
40
+ attr_accessor :vmid
41
+
42
+ # @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
43
+ attr_accessor :unknown_json_fields
44
+
45
+ def initialize
46
+ clear
47
+ end
48
+
49
+ def clear
50
+ @cpu = ''
51
+ @disks = []
52
+ @memory = ''
53
+ @name = ''
54
+ @node = ''
55
+ @ostype = ''
56
+ @type = ''
57
+ @vmid = ''
58
+ @unknown_json_fields = {}
59
+ end
60
+
61
+ # @param [String] json_string The complete object in JSON format
62
+ def from_json(json_string)
63
+ raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
64
+
65
+ from_hash(JSON.parse(json_string))
66
+ end
67
+
68
+ # @param [Hash] obj The complete object as a Ruby hash
69
+ def from_hash(obj)
70
+ raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
71
+
72
+ obj.each do |k, v|
73
+ case k
74
+ when 'CPU'
75
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
76
+
77
+ @cpu = v
78
+ when 'Disks'
79
+ if v.nil?
80
+ @disks = []
81
+ else
82
+ @disks = Array.new(v.length)
83
+ v.each_with_index do |v1, i1|
84
+ @disks[i1] = Comet::PVEDisk.new
85
+ @disks[i1].from_hash(v1)
86
+ end
87
+ end
88
+ when 'Memory'
89
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
90
+
91
+ @memory = v
92
+ when 'Name'
93
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
94
+
95
+ @name = v
96
+ when 'Node'
97
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
98
+
99
+ @node = v
100
+ when 'OSType'
101
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
102
+
103
+ @ostype = v
104
+ when 'Running'
105
+ @running = v
106
+ when 'Type'
107
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
108
+
109
+ @type = v
110
+ when 'VMID'
111
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
112
+
113
+ @vmid = v
114
+ else
115
+ @unknown_json_fields[k] = v
116
+ end
117
+ end
118
+ end
119
+
120
+ # @return [Hash] The complete object as a Ruby hash
121
+ def to_hash
122
+ ret = {}
123
+ ret['CPU'] = @cpu
124
+ ret['Disks'] = @disks
125
+ ret['Memory'] = @memory
126
+ ret['Name'] = @name
127
+ ret['Node'] = @node
128
+ ret['OSType'] = @ostype
129
+ ret['Running'] = @running
130
+ ret['Type'] = @type
131
+ ret['VMID'] = @vmid
132
+ @unknown_json_fields.each do |k, v|
133
+ ret[k] = v
134
+ end
135
+ ret
136
+ end
137
+
138
+ # @return [Hash] The complete object as a Ruby hash
139
+ def to_h
140
+ to_hash
141
+ end
142
+
143
+ # @return [String] The complete object as a JSON string
144
+ def to_json(options = {})
145
+ to_hash.to_json(options)
146
+ end
147
+ end
148
+ end
@@ -36,6 +36,9 @@ module Comet
36
36
  # @type [String] ipaddress
37
37
  attr_accessor :ipaddress
38
38
 
39
+ # @type [String] host
40
+ attr_accessor :host
41
+
39
42
  # @type [Number] connection_time
40
43
  attr_accessor :connection_time
41
44
 
@@ -55,6 +58,7 @@ module Comet
55
58
  @reported_platform_version = Comet::OSInfo.new
56
59
  @device_time_zone = ''
57
60
  @ipaddress = ''
61
+ @host = ''
58
62
  @connection_time = 0
59
63
  @unknown_json_fields = {}
60
64
  end
@@ -103,6 +107,10 @@ module Comet
103
107
  raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
104
108
 
105
109
  @ipaddress = v
110
+ when 'Host'
111
+ raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
112
+
113
+ @host = v
106
114
  when 'ConnectionTime'
107
115
  raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
108
116
 
@@ -130,6 +138,9 @@ module Comet
130
138
  unless @ipaddress.nil?
131
139
  ret['IPAddress'] = @ipaddress
132
140
  end
141
+ unless @host.nil?
142
+ ret['Host'] = @host
143
+ end
133
144
  ret['ConnectionTime'] = @connection_time
134
145
  @unknown_json_fields.each do |k, v|
135
146
  ret[k] = v
@@ -18,15 +18,15 @@ module Comet
18
18
  # @type [String] description
19
19
  attr_accessor :description
20
20
 
21
- # For use with Comet Server (Storage Role / Auth Role)
21
+ # For use with Comet Server (Storage Gateway / Management Console)
22
22
  # @type [String] remote_address
23
23
  attr_accessor :remote_address
24
24
 
25
- # For use with Comet Server (Storage Role / Auth Role)
25
+ # For use with Comet Server (Storage Gateway / Management Console)
26
26
  # @type [String] username
27
27
  attr_accessor :username
28
28
 
29
- # For use with Comet Server (Storage Role / Auth Role)
29
+ # For use with Comet Server (Storage Gateway / Management Console)
30
30
  # @type [String] password
31
31
  attr_accessor :password
32
32
 
@@ -18,15 +18,15 @@ module Comet
18
18
  # @type [String] description
19
19
  attr_accessor :description
20
20
 
21
- # For use with Comet Server (Storage Role / Auth Role)
21
+ # For use with Comet Server (Storage Gateway / Management Console)
22
22
  # @type [String] remote_address
23
23
  attr_accessor :remote_address
24
24
 
25
- # For use with Comet Server (Storage Role / Auth Role)
25
+ # For use with Comet Server (Storage Gateway / Management Console)
26
26
  # @type [String] username
27
27
  attr_accessor :username
28
28
 
29
- # For use with Comet Server (Storage Role / Auth Role)
29
+ # For use with Comet Server (Storage Gateway / Management Console)
30
30
  # @type [String] password
31
31
  attr_accessor :password
32
32
 
@@ -18,15 +18,15 @@ module Comet
18
18
  # @type [String] description
19
19
  attr_accessor :description
20
20
 
21
- # For use with Comet Server (Storage Role / Auth Role)
21
+ # For use with Comet Server (Storage Gateway / Management Console)
22
22
  # @type [String] remote_address
23
23
  attr_accessor :remote_address
24
24
 
25
- # For use with Comet Server (Storage Role / Auth Role)
25
+ # For use with Comet Server (Storage Gateway / Management Console)
26
26
  # @type [String] username
27
27
  attr_accessor :username
28
28
 
29
- # For use with Comet Server (Storage Role / Auth Role)
29
+ # For use with Comet Server (Storage Gateway / Management Console)
30
30
  # @type [String] password
31
31
  attr_accessor :password
32
32