comet_backup_ruby_sdk 1.7.0 → 1.11.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/.gitignore +1 -0
- data/CHANGELOG.md +27 -0
- data/Gemfile.lock +3 -3
- data/README.md +1 -1
- data/RELEASING.md +1 -0
- data/comet_backup_ruby_sdk.gemspec +2 -2
- data/lib/comet/comet_server.rb +171 -3
- data/lib/comet/definitions.rb +26 -2
- data/lib/comet/models/admin_security_options.rb +23 -0
- data/lib/comet/models/admin_web_authn_registration.rb +112 -0
- data/lib/comet/models/allowed_admin_user.rb +212 -0
- data/lib/comet/models/b2destination_location.rb +8 -0
- data/lib/comet/models/b2virtual_storage_role_settings.rb +6 -0
- data/lib/comet/models/browse_office_365list_virtual_accounts_response.rb +99 -0
- data/lib/comet/models/device_config.rb +11 -0
- data/lib/comet/models/dispatcher_windisk_snapshot_response.rb +99 -0
- data/lib/comet/models/email_report_generated_preview.rb +25 -0
- data/lib/comet/models/my_sqlconnection.rb +39 -0
- data/lib/comet/models/office_365connection.rb +8 -0
- data/lib/comet/models/office_365custom_setting_v2.rb +108 -0
- data/lib/comet/models/office_365mixed_virtual_account.rb +203 -0
- data/lib/comet/models/server_meta_branding_properties.rb +9 -0
- data/lib/comet/models/stat_result.rb +9 -0
- data/lib/comet/models/web_authn_authenticator_selection.rb +96 -0
- data/lib/comet/models/web_authn_credential.rb +105 -0
- data/lib/comet/models/web_authn_credential_assertion.rb +74 -0
- data/lib/comet/models/web_authn_credential_descriptor.rb +101 -0
- data/lib/comet/models/web_authn_credential_entity.rb +86 -0
- data/lib/comet/models/web_authn_credential_parameter.rb +84 -0
- data/lib/comet/models/web_authn_public_key_credential_creation_options.rb +173 -0
- data/lib/comet/models/web_authn_public_key_credential_request_options.rb +141 -0
- data/lib/comet/models/web_authn_registration_challenge_response.rb +101 -0
- data/lib/comet/models/web_authn_relying_party_entity.rb +95 -0
- data/lib/comet/models/web_authn_sign_request.rb +83 -0
- data/lib/comet/models/web_authn_sign_response.rb +84 -0
- data/lib/comet/models/web_authn_user_entity.rb +105 -0
- data/lib/comet/models/webhook_option.rb +16 -0
- data/lib/comet_backup_ruby_sdk.rb +19 -0
- metadata +24 -4
@@ -0,0 +1,95 @@
|
|
1
|
+
#!/usr/bin/env ruby --enable-frozen-string-literal
|
2
|
+
#
|
3
|
+
# Copyright (c) 2020-2021 Comet Licensing Ltd.
|
4
|
+
# Please see the LICENSE file for usage information.
|
5
|
+
#
|
6
|
+
# SPDX-License-Identifier: MIT
|
7
|
+
#
|
8
|
+
# frozen_string_literal: true
|
9
|
+
|
10
|
+
require 'json'
|
11
|
+
|
12
|
+
module Comet
|
13
|
+
|
14
|
+
# WebAuthnRelyingPartyEntity is a typed class wrapper around the underlying Comet Server API data structure.
|
15
|
+
class WebAuthnRelyingPartyEntity
|
16
|
+
|
17
|
+
# @type [String] name
|
18
|
+
attr_accessor :name
|
19
|
+
|
20
|
+
# @type [String] icon
|
21
|
+
attr_accessor :icon
|
22
|
+
|
23
|
+
# @type [String] id
|
24
|
+
attr_accessor :id
|
25
|
+
|
26
|
+
# @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
|
27
|
+
attr_accessor :unknown_json_fields
|
28
|
+
|
29
|
+
def initialize
|
30
|
+
clear
|
31
|
+
end
|
32
|
+
|
33
|
+
def clear
|
34
|
+
@name = ''
|
35
|
+
@icon = ''
|
36
|
+
@id = ''
|
37
|
+
@unknown_json_fields = {}
|
38
|
+
end
|
39
|
+
|
40
|
+
# @param [String] json_string The complete object in JSON format
|
41
|
+
def from_json(json_string)
|
42
|
+
raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
|
43
|
+
|
44
|
+
from_hash(JSON.parse(json_string))
|
45
|
+
end
|
46
|
+
|
47
|
+
# @param [Hash] obj The complete object as a Ruby hash
|
48
|
+
def from_hash(obj)
|
49
|
+
raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
|
50
|
+
|
51
|
+
obj.each do |k, v|
|
52
|
+
case k
|
53
|
+
when 'name'
|
54
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
55
|
+
|
56
|
+
@name = v
|
57
|
+
when 'icon'
|
58
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
59
|
+
|
60
|
+
@icon = v
|
61
|
+
when 'id'
|
62
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
63
|
+
|
64
|
+
@id = v
|
65
|
+
else
|
66
|
+
@unknown_json_fields[k] = v
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
# @return [Hash] The complete object as a Ruby hash
|
72
|
+
def to_hash
|
73
|
+
ret = {}
|
74
|
+
ret['name'] = @name
|
75
|
+
unless @icon.nil?
|
76
|
+
ret['icon'] = @icon
|
77
|
+
end
|
78
|
+
ret['id'] = @id
|
79
|
+
@unknown_json_fields.each do |k, v|
|
80
|
+
ret[k] = v
|
81
|
+
end
|
82
|
+
ret
|
83
|
+
end
|
84
|
+
|
85
|
+
# @return [Hash] The complete object as a Ruby hash
|
86
|
+
def to_h
|
87
|
+
to_hash
|
88
|
+
end
|
89
|
+
|
90
|
+
# @return [String] The complete object as a JSON string
|
91
|
+
def to_json(options = {})
|
92
|
+
to_hash.to_json(options)
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
#!/usr/bin/env ruby --enable-frozen-string-literal
|
2
|
+
#
|
3
|
+
# Copyright (c) 2020-2021 Comet Licensing Ltd.
|
4
|
+
# Please see the LICENSE file for usage information.
|
5
|
+
#
|
6
|
+
# SPDX-License-Identifier: MIT
|
7
|
+
#
|
8
|
+
# frozen_string_literal: true
|
9
|
+
|
10
|
+
require 'json'
|
11
|
+
|
12
|
+
module Comet
|
13
|
+
|
14
|
+
# WebAuthnSignRequest is a typed class wrapper around the underlying Comet Server API data structure.
|
15
|
+
class WebAuthnSignRequest
|
16
|
+
|
17
|
+
# @type [String] challenge_id
|
18
|
+
attr_accessor :challenge_id
|
19
|
+
|
20
|
+
# @type [Comet::WebAuthnCredentialAssertion] assertion
|
21
|
+
attr_accessor :assertion
|
22
|
+
|
23
|
+
# @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
|
24
|
+
attr_accessor :unknown_json_fields
|
25
|
+
|
26
|
+
def initialize
|
27
|
+
clear
|
28
|
+
end
|
29
|
+
|
30
|
+
def clear
|
31
|
+
@challenge_id = ''
|
32
|
+
@assertion = Comet::WebAuthnCredentialAssertion.new
|
33
|
+
@unknown_json_fields = {}
|
34
|
+
end
|
35
|
+
|
36
|
+
# @param [String] json_string The complete object in JSON format
|
37
|
+
def from_json(json_string)
|
38
|
+
raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
|
39
|
+
|
40
|
+
from_hash(JSON.parse(json_string))
|
41
|
+
end
|
42
|
+
|
43
|
+
# @param [Hash] obj The complete object as a Ruby hash
|
44
|
+
def from_hash(obj)
|
45
|
+
raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
|
46
|
+
|
47
|
+
obj.each do |k, v|
|
48
|
+
case k
|
49
|
+
when 'ChallengeID'
|
50
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
51
|
+
|
52
|
+
@challenge_id = v
|
53
|
+
when 'Assertion'
|
54
|
+
@assertion = Comet::WebAuthnCredentialAssertion.new
|
55
|
+
@assertion.from_hash(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['ChallengeID'] = @challenge_id
|
66
|
+
ret['Assertion'] = @assertion
|
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,84 @@
|
|
1
|
+
#!/usr/bin/env ruby --enable-frozen-string-literal
|
2
|
+
#
|
3
|
+
# Copyright (c) 2020-2021 Comet Licensing Ltd.
|
4
|
+
# Please see the LICENSE file for usage information.
|
5
|
+
#
|
6
|
+
# SPDX-License-Identifier: MIT
|
7
|
+
#
|
8
|
+
# frozen_string_literal: true
|
9
|
+
|
10
|
+
require 'json'
|
11
|
+
|
12
|
+
module Comet
|
13
|
+
|
14
|
+
# WebAuthnSignResponse is a typed class wrapper around the underlying Comet Server API data structure.
|
15
|
+
class WebAuthnSignResponse
|
16
|
+
|
17
|
+
# @type [String] challenge_id
|
18
|
+
attr_accessor :challenge_id
|
19
|
+
|
20
|
+
# @type [String] credential_json
|
21
|
+
attr_accessor :credential_json
|
22
|
+
|
23
|
+
# @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
|
24
|
+
attr_accessor :unknown_json_fields
|
25
|
+
|
26
|
+
def initialize
|
27
|
+
clear
|
28
|
+
end
|
29
|
+
|
30
|
+
def clear
|
31
|
+
@challenge_id = ''
|
32
|
+
@credential_json = ''
|
33
|
+
@unknown_json_fields = {}
|
34
|
+
end
|
35
|
+
|
36
|
+
# @param [String] json_string The complete object in JSON format
|
37
|
+
def from_json(json_string)
|
38
|
+
raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
|
39
|
+
|
40
|
+
from_hash(JSON.parse(json_string))
|
41
|
+
end
|
42
|
+
|
43
|
+
# @param [Hash] obj The complete object as a Ruby hash
|
44
|
+
def from_hash(obj)
|
45
|
+
raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
|
46
|
+
|
47
|
+
obj.each do |k, v|
|
48
|
+
case k
|
49
|
+
when 'ChallengeID'
|
50
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
51
|
+
|
52
|
+
@challenge_id = v
|
53
|
+
when 'CredentialJSON'
|
54
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
55
|
+
|
56
|
+
@credential_json = v
|
57
|
+
else
|
58
|
+
@unknown_json_fields[k] = v
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
# @return [Hash] The complete object as a Ruby hash
|
64
|
+
def to_hash
|
65
|
+
ret = {}
|
66
|
+
ret['ChallengeID'] = @challenge_id
|
67
|
+
ret['CredentialJSON'] = @credential_json
|
68
|
+
@unknown_json_fields.each do |k, v|
|
69
|
+
ret[k] = v
|
70
|
+
end
|
71
|
+
ret
|
72
|
+
end
|
73
|
+
|
74
|
+
# @return [Hash] The complete object as a Ruby hash
|
75
|
+
def to_h
|
76
|
+
to_hash
|
77
|
+
end
|
78
|
+
|
79
|
+
# @return [String] The complete object as a JSON string
|
80
|
+
def to_json(options = {})
|
81
|
+
to_hash.to_json(options)
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
@@ -0,0 +1,105 @@
|
|
1
|
+
#!/usr/bin/env ruby --enable-frozen-string-literal
|
2
|
+
#
|
3
|
+
# Copyright (c) 2020-2021 Comet Licensing Ltd.
|
4
|
+
# Please see the LICENSE file for usage information.
|
5
|
+
#
|
6
|
+
# SPDX-License-Identifier: MIT
|
7
|
+
#
|
8
|
+
# frozen_string_literal: true
|
9
|
+
|
10
|
+
require 'base64'
|
11
|
+
require 'json'
|
12
|
+
|
13
|
+
module Comet
|
14
|
+
|
15
|
+
# WebAuthnUserEntity is a typed class wrapper around the underlying Comet Server API data structure.
|
16
|
+
class WebAuthnUserEntity
|
17
|
+
|
18
|
+
# @type [String] name
|
19
|
+
attr_accessor :name
|
20
|
+
|
21
|
+
# @type [String] icon
|
22
|
+
attr_accessor :icon
|
23
|
+
|
24
|
+
# @type [String] display_name
|
25
|
+
attr_accessor :display_name
|
26
|
+
|
27
|
+
# @type [Array<Object>] id
|
28
|
+
attr_accessor :id
|
29
|
+
|
30
|
+
# @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
|
31
|
+
attr_accessor :unknown_json_fields
|
32
|
+
|
33
|
+
def initialize
|
34
|
+
clear
|
35
|
+
end
|
36
|
+
|
37
|
+
def clear
|
38
|
+
@name = ''
|
39
|
+
@icon = ''
|
40
|
+
@display_name = ''
|
41
|
+
@id = []
|
42
|
+
@unknown_json_fields = {}
|
43
|
+
end
|
44
|
+
|
45
|
+
# @param [String] json_string The complete object in JSON format
|
46
|
+
def from_json(json_string)
|
47
|
+
raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
|
48
|
+
|
49
|
+
from_hash(JSON.parse(json_string))
|
50
|
+
end
|
51
|
+
|
52
|
+
# @param [Hash] obj The complete object as a Ruby hash
|
53
|
+
def from_hash(obj)
|
54
|
+
raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
|
55
|
+
|
56
|
+
obj.each do |k, v|
|
57
|
+
case k
|
58
|
+
when 'name'
|
59
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
60
|
+
|
61
|
+
@name = v
|
62
|
+
when 'icon'
|
63
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
64
|
+
|
65
|
+
@icon = v
|
66
|
+
when 'displayName'
|
67
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
68
|
+
|
69
|
+
@display_name = v
|
70
|
+
when 'id'
|
71
|
+
@id = Base64.decode64(v)
|
72
|
+
else
|
73
|
+
@unknown_json_fields[k] = v
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
# @return [Hash] The complete object as a Ruby hash
|
79
|
+
def to_hash
|
80
|
+
ret = {}
|
81
|
+
ret['name'] = @name
|
82
|
+
unless @icon.nil?
|
83
|
+
ret['icon'] = @icon
|
84
|
+
end
|
85
|
+
unless @display_name.nil?
|
86
|
+
ret['displayName'] = @display_name
|
87
|
+
end
|
88
|
+
ret['id'] = Base64.strict_encode64(@id)
|
89
|
+
@unknown_json_fields.each do |k, v|
|
90
|
+
ret[k] = v
|
91
|
+
end
|
92
|
+
ret
|
93
|
+
end
|
94
|
+
|
95
|
+
# @return [Hash] The complete object as a Ruby hash
|
96
|
+
def to_h
|
97
|
+
to_hash
|
98
|
+
end
|
99
|
+
|
100
|
+
# @return [String] The complete object as a JSON string
|
101
|
+
def to_json(options = {})
|
102
|
+
to_hash.to_json(options)
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
@@ -20,6 +20,9 @@ module Comet
|
|
20
20
|
# @type [Array<Number>] white_listed_event_types
|
21
21
|
attr_accessor :white_listed_event_types
|
22
22
|
|
23
|
+
# @type [Hash{String => String}] custom_headers
|
24
|
+
attr_accessor :custom_headers
|
25
|
+
|
23
26
|
# @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
|
24
27
|
attr_accessor :unknown_json_fields
|
25
28
|
|
@@ -30,6 +33,7 @@ module Comet
|
|
30
33
|
def clear
|
31
34
|
@url = ''
|
32
35
|
@white_listed_event_types = []
|
36
|
+
@custom_headers = {}
|
33
37
|
@unknown_json_fields = {}
|
34
38
|
end
|
35
39
|
|
@@ -61,6 +65,17 @@ module Comet
|
|
61
65
|
@white_listed_event_types[i1] = v1
|
62
66
|
end
|
63
67
|
end
|
68
|
+
when 'CustomHeaders'
|
69
|
+
@custom_headers = {}
|
70
|
+
if v.nil?
|
71
|
+
@custom_headers = {}
|
72
|
+
else
|
73
|
+
v.each do |k1, v1|
|
74
|
+
raise TypeError, "'v1' expected String, got #{v1.class}" unless v1.is_a? String
|
75
|
+
|
76
|
+
@custom_headers[k1] = v1
|
77
|
+
end
|
78
|
+
end
|
64
79
|
else
|
65
80
|
@unknown_json_fields[k] = v
|
66
81
|
end
|
@@ -72,6 +87,7 @@ module Comet
|
|
72
87
|
ret = {}
|
73
88
|
ret['URL'] = @url
|
74
89
|
ret['WhiteListedEventTypes'] = @white_listed_event_types
|
90
|
+
ret['CustomHeaders'] = @custom_headers
|
75
91
|
@unknown_json_fields.each do |k, v|
|
76
92
|
ret[k] = v
|
77
93
|
end
|
@@ -17,6 +17,8 @@ require_relative 'comet/models/admin_resource_response'
|
|
17
17
|
require_relative 'comet/models/admin_security_options'
|
18
18
|
require_relative 'comet/models/admin_u2fregistration'
|
19
19
|
require_relative 'comet/models/admin_user_permissions'
|
20
|
+
require_relative 'comet/models/admin_web_authn_registration'
|
21
|
+
require_relative 'comet/models/allowed_admin_user'
|
20
22
|
require_relative 'comet/models/available_download'
|
21
23
|
require_relative 'comet/models/azure_destination_location'
|
22
24
|
require_relative 'comet/models/b2destination_location'
|
@@ -33,6 +35,7 @@ require_relative 'comet/models/branding_properties'
|
|
33
35
|
require_relative 'comet/models/browse_disk_drives_response'
|
34
36
|
require_relative 'comet/models/browse_edbresponse'
|
35
37
|
require_relative 'comet/models/browse_hvresponse'
|
38
|
+
require_relative 'comet/models/browse_office_365list_virtual_accounts_response'
|
36
39
|
require_relative 'comet/models/browse_office_365objects_response'
|
37
40
|
require_relative 'comet/models/browse_sqlserver_response'
|
38
41
|
require_relative 'comet/models/browse_vssresponse'
|
@@ -57,6 +60,7 @@ require_relative 'comet/models/disk_drive'
|
|
57
60
|
require_relative 'comet/models/dispatcher_admin_sources_response'
|
58
61
|
require_relative 'comet/models/dispatcher_stored_objects_response'
|
59
62
|
require_relative 'comet/models/dispatcher_vault_snapshots_response'
|
63
|
+
require_relative 'comet/models/dispatcher_windisk_snapshot_response'
|
60
64
|
require_relative 'comet/models/edbfile_info'
|
61
65
|
require_relative 'comet/models/email_options'
|
62
66
|
require_relative 'comet/models/email_report_config'
|
@@ -84,6 +88,8 @@ require_relative 'comet/models/news_entry'
|
|
84
88
|
require_relative 'comet/models/office_365connection'
|
85
89
|
require_relative 'comet/models/office_365credential'
|
86
90
|
require_relative 'comet/models/office_365custom_setting'
|
91
|
+
require_relative 'comet/models/office_365custom_setting_v2'
|
92
|
+
require_relative 'comet/models/office_365mixed_virtual_account'
|
87
93
|
require_relative 'comet/models/office_365object_info'
|
88
94
|
require_relative 'comet/models/organization'
|
89
95
|
require_relative 'comet/models/organization_response'
|
@@ -149,6 +155,19 @@ require_relative 'comet/models/vault_snapshot'
|
|
149
155
|
require_relative 'comet/models/vsscomponent'
|
150
156
|
require_relative 'comet/models/vsswriter_info'
|
151
157
|
require_relative 'comet/models/wasabi_virtual_storage_role_settings'
|
158
|
+
require_relative 'comet/models/web_authn_authenticator_selection'
|
159
|
+
require_relative 'comet/models/web_authn_credential'
|
160
|
+
require_relative 'comet/models/web_authn_credential_assertion'
|
161
|
+
require_relative 'comet/models/web_authn_credential_descriptor'
|
162
|
+
require_relative 'comet/models/web_authn_credential_entity'
|
163
|
+
require_relative 'comet/models/web_authn_credential_parameter'
|
164
|
+
require_relative 'comet/models/web_authn_public_key_credential_creation_options'
|
165
|
+
require_relative 'comet/models/web_authn_public_key_credential_request_options'
|
166
|
+
require_relative 'comet/models/web_authn_registration_challenge_response'
|
167
|
+
require_relative 'comet/models/web_authn_relying_party_entity'
|
168
|
+
require_relative 'comet/models/web_authn_sign_request'
|
169
|
+
require_relative 'comet/models/web_authn_sign_response'
|
170
|
+
require_relative 'comet/models/web_authn_user_entity'
|
152
171
|
require_relative 'comet/models/web_interface_branding_properties'
|
153
172
|
require_relative 'comet/models/webhook_option'
|
154
173
|
require_relative 'comet/models/win_smbauth'
|
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: 1.
|
4
|
+
version: 1.11.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: 2021-
|
11
|
+
date: 2021-12-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 2.1.4
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 2.1.4
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: minitest
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -73,6 +73,7 @@ executables: []
|
|
73
73
|
extensions: []
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
|
+
- ".gitignore"
|
76
77
|
- ".rubocop.yml"
|
77
78
|
- CHANGELOG.md
|
78
79
|
- Gemfile
|
@@ -92,6 +93,8 @@ files:
|
|
92
93
|
- lib/comet/models/admin_security_options.rb
|
93
94
|
- lib/comet/models/admin_u2fregistration.rb
|
94
95
|
- lib/comet/models/admin_user_permissions.rb
|
96
|
+
- lib/comet/models/admin_web_authn_registration.rb
|
97
|
+
- lib/comet/models/allowed_admin_user.rb
|
95
98
|
- lib/comet/models/available_download.rb
|
96
99
|
- lib/comet/models/azure_destination_location.rb
|
97
100
|
- lib/comet/models/b2destination_location.rb
|
@@ -108,6 +111,7 @@ files:
|
|
108
111
|
- lib/comet/models/browse_disk_drives_response.rb
|
109
112
|
- lib/comet/models/browse_edbresponse.rb
|
110
113
|
- lib/comet/models/browse_hvresponse.rb
|
114
|
+
- lib/comet/models/browse_office_365list_virtual_accounts_response.rb
|
111
115
|
- lib/comet/models/browse_office_365objects_response.rb
|
112
116
|
- lib/comet/models/browse_sqlserver_response.rb
|
113
117
|
- lib/comet/models/browse_vssresponse.rb
|
@@ -132,6 +136,7 @@ files:
|
|
132
136
|
- lib/comet/models/dispatcher_admin_sources_response.rb
|
133
137
|
- lib/comet/models/dispatcher_stored_objects_response.rb
|
134
138
|
- lib/comet/models/dispatcher_vault_snapshots_response.rb
|
139
|
+
- lib/comet/models/dispatcher_windisk_snapshot_response.rb
|
135
140
|
- lib/comet/models/edbfile_info.rb
|
136
141
|
- lib/comet/models/email_options.rb
|
137
142
|
- lib/comet/models/email_report_config.rb
|
@@ -159,6 +164,8 @@ files:
|
|
159
164
|
- lib/comet/models/office_365connection.rb
|
160
165
|
- lib/comet/models/office_365credential.rb
|
161
166
|
- lib/comet/models/office_365custom_setting.rb
|
167
|
+
- lib/comet/models/office_365custom_setting_v2.rb
|
168
|
+
- lib/comet/models/office_365mixed_virtual_account.rb
|
162
169
|
- lib/comet/models/office_365object_info.rb
|
163
170
|
- lib/comet/models/organization.rb
|
164
171
|
- lib/comet/models/organization_response.rb
|
@@ -224,6 +231,19 @@ files:
|
|
224
231
|
- lib/comet/models/vsscomponent.rb
|
225
232
|
- lib/comet/models/vsswriter_info.rb
|
226
233
|
- lib/comet/models/wasabi_virtual_storage_role_settings.rb
|
234
|
+
- lib/comet/models/web_authn_authenticator_selection.rb
|
235
|
+
- lib/comet/models/web_authn_credential.rb
|
236
|
+
- lib/comet/models/web_authn_credential_assertion.rb
|
237
|
+
- lib/comet/models/web_authn_credential_descriptor.rb
|
238
|
+
- lib/comet/models/web_authn_credential_entity.rb
|
239
|
+
- lib/comet/models/web_authn_credential_parameter.rb
|
240
|
+
- lib/comet/models/web_authn_public_key_credential_creation_options.rb
|
241
|
+
- lib/comet/models/web_authn_public_key_credential_request_options.rb
|
242
|
+
- lib/comet/models/web_authn_registration_challenge_response.rb
|
243
|
+
- lib/comet/models/web_authn_relying_party_entity.rb
|
244
|
+
- lib/comet/models/web_authn_sign_request.rb
|
245
|
+
- lib/comet/models/web_authn_sign_response.rb
|
246
|
+
- lib/comet/models/web_authn_user_entity.rb
|
227
247
|
- lib/comet/models/web_interface_branding_properties.rb
|
228
248
|
- lib/comet/models/webhook_option.rb
|
229
249
|
- lib/comet/models/win_smbauth.rb
|