Class: Comet::WindowsCodeSignProperties
- Inherits:
-
Object
- Object
- Comet::WindowsCodeSignProperties
- Defined in:
- lib/models/windows_code_sign_properties.rb,
lib/comet/models/windows_code_sign_properties.rb
Overview
WindowsCodeSignProperties is a typed class wrapper around the underlying Comet Server API data structure.
Instance Attribute Summary collapse
-
#unknown_json_fields ⇒ Object
Returns the value of attribute unknown_json_fields.
-
#windows_code_sign_pkcs11certfile ⇒ Object
Returns the value of attribute windows_code_sign_pkcs11certfile.
-
#windows_code_sign_pkcs11engine ⇒ Object
Returns the value of attribute windows_code_sign_pkcs11engine.
-
#windows_code_sign_pkcs11key_id ⇒ Object
Returns the value of attribute windows_code_sign_pkcs11key_id.
-
#windows_code_sign_pkcs11module ⇒ Object
Returns the value of attribute windows_code_sign_pkcs11module.
-
#windows_code_sign_pkcs11password ⇒ Object
Returns the value of attribute windows_code_sign_pkcs11password.
-
#windows_code_sign_pkcs11password_format ⇒ Object
Returns the value of attribute windows_code_sign_pkcs11password_format.
-
#windows_code_sign_pkcs12file_path ⇒ Object
Returns the value of attribute windows_code_sign_pkcs12file_path.
-
#windows_code_sign_pkcs12password ⇒ Object
Returns the value of attribute windows_code_sign_pkcs12password.
-
#windows_code_sign_pkcs12password_format ⇒ Object
Returns the value of attribute windows_code_sign_pkcs12password_format.
Instance Method Summary collapse
- #clear ⇒ Object
- #from_hash(obj) ⇒ Object
- #from_json(json_string) ⇒ Object
-
#initialize ⇒ WindowsCodeSignProperties
constructor
A new instance of WindowsCodeSignProperties.
-
#to_h ⇒ Hash
The complete object as a Ruby hash.
-
#to_hash ⇒ Hash
The complete object as a Ruby hash.
-
#to_json(options = {}) ⇒ String
The complete object as a JSON string.
Constructor Details
#initialize ⇒ WindowsCodeSignProperties
Returns a new instance of WindowsCodeSignProperties.
47 48 49 |
# File 'lib/models/windows_code_sign_properties.rb', line 47 def initialize clear end |
Instance Attribute Details
#unknown_json_fields ⇒ Object
Returns the value of attribute unknown_json_fields.
45 46 47 |
# File 'lib/models/windows_code_sign_properties.rb', line 45 def unknown_json_fields @unknown_json_fields end |
#windows_code_sign_pkcs11certfile ⇒ Object
Returns the value of attribute windows_code_sign_pkcs11certfile.
33 34 35 |
# File 'lib/models/windows_code_sign_properties.rb', line 33 def windows_code_sign_pkcs11certfile @windows_code_sign_pkcs11certfile end |
#windows_code_sign_pkcs11engine ⇒ Object
Returns the value of attribute windows_code_sign_pkcs11engine.
27 28 29 |
# File 'lib/models/windows_code_sign_properties.rb', line 27 def windows_code_sign_pkcs11engine @windows_code_sign_pkcs11engine end |
#windows_code_sign_pkcs11key_id ⇒ Object
Returns the value of attribute windows_code_sign_pkcs11key_id.
36 37 38 |
# File 'lib/models/windows_code_sign_properties.rb', line 36 def windows_code_sign_pkcs11key_id @windows_code_sign_pkcs11key_id end |
#windows_code_sign_pkcs11module ⇒ Object
Returns the value of attribute windows_code_sign_pkcs11module.
30 31 32 |
# File 'lib/models/windows_code_sign_properties.rb', line 30 def windows_code_sign_pkcs11module @windows_code_sign_pkcs11module end |
#windows_code_sign_pkcs11password ⇒ Object
Returns the value of attribute windows_code_sign_pkcs11password.
42 43 44 |
# File 'lib/models/windows_code_sign_properties.rb', line 42 def windows_code_sign_pkcs11password @windows_code_sign_pkcs11password end |
#windows_code_sign_pkcs11password_format ⇒ Object
Returns the value of attribute windows_code_sign_pkcs11password_format.
39 40 41 |
# File 'lib/models/windows_code_sign_properties.rb', line 39 def windows_code_sign_pkcs11password_format @windows_code_sign_pkcs11password_format end |
#windows_code_sign_pkcs12file_path ⇒ Object
Returns the value of attribute windows_code_sign_pkcs12file_path.
18 19 20 |
# File 'lib/models/windows_code_sign_properties.rb', line 18 def windows_code_sign_pkcs12file_path @windows_code_sign_pkcs12file_path end |
#windows_code_sign_pkcs12password ⇒ Object
Returns the value of attribute windows_code_sign_pkcs12password.
24 25 26 |
# File 'lib/models/windows_code_sign_properties.rb', line 24 def windows_code_sign_pkcs12password @windows_code_sign_pkcs12password end |
#windows_code_sign_pkcs12password_format ⇒ Object
Returns the value of attribute windows_code_sign_pkcs12password_format.
21 22 23 |
# File 'lib/models/windows_code_sign_properties.rb', line 21 def windows_code_sign_pkcs12password_format @windows_code_sign_pkcs12password_format end |
Instance Method Details
#clear ⇒ Object
51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/models/windows_code_sign_properties.rb', line 51 def clear @windows_code_sign_pkcs12file_path = '' @windows_code_sign_pkcs12password_format = 0 @windows_code_sign_pkcs12password = '' @windows_code_sign_pkcs11engine = '' @windows_code_sign_pkcs11module = '' @windows_code_sign_pkcs11certfile = '' @windows_code_sign_pkcs11key_id = '' @windows_code_sign_pkcs11password_format = 0 @windows_code_sign_pkcs11password = '' @unknown_json_fields = {} end |
#from_hash(obj) ⇒ Object
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/models/windows_code_sign_properties.rb', line 72 def from_hash(obj) raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash obj.each do |k, v| case k when 'WindowsCodeSignPKCS12FilePath' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @windows_code_sign_pkcs12file_path = v when 'WindowsCodeSignPKCS12PasswordFormat' raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric @windows_code_sign_pkcs12password_format = v when 'WindowsCodeSignPKCS12Password' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @windows_code_sign_pkcs12password = v when 'WindowsCodeSignPKCS11Engine' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @windows_code_sign_pkcs11engine = v when 'WindowsCodeSignPKCS11Module' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @windows_code_sign_pkcs11module = v when 'WindowsCodeSignPKCS11Certfile' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @windows_code_sign_pkcs11certfile = v when 'WindowsCodeSignPKCS11KeyID' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @windows_code_sign_pkcs11key_id = v when 'WindowsCodeSignPKCS11PasswordFormat' raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric @windows_code_sign_pkcs11password_format = v when 'WindowsCodeSignPKCS11Password' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @windows_code_sign_pkcs11password = v else @unknown_json_fields[k] = v end end end |
#from_json(json_string) ⇒ Object
65 66 67 68 69 |
# File 'lib/models/windows_code_sign_properties.rb', line 65 def from_json(json_string) raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String from_hash(JSON.parse(json_string)) end |
#to_h ⇒ Hash
Returns The complete object as a Ruby hash.
138 139 140 |
# File 'lib/models/windows_code_sign_properties.rb', line 138 def to_h to_hash end |
#to_hash ⇒ Hash
Returns The complete object as a Ruby hash.
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'lib/models/windows_code_sign_properties.rb', line 120 def to_hash ret = {} ret['WindowsCodeSignPKCS12FilePath'] = @windows_code_sign_pkcs12file_path ret['WindowsCodeSignPKCS12PasswordFormat'] = @windows_code_sign_pkcs12password_format ret['WindowsCodeSignPKCS12Password'] = @windows_code_sign_pkcs12password ret['WindowsCodeSignPKCS11Engine'] = @windows_code_sign_pkcs11engine ret['WindowsCodeSignPKCS11Module'] = @windows_code_sign_pkcs11module ret['WindowsCodeSignPKCS11Certfile'] = @windows_code_sign_pkcs11certfile ret['WindowsCodeSignPKCS11KeyID'] = @windows_code_sign_pkcs11key_id ret['WindowsCodeSignPKCS11PasswordFormat'] = @windows_code_sign_pkcs11password_format ret['WindowsCodeSignPKCS11Password'] = @windows_code_sign_pkcs11password @unknown_json_fields.each do |k, v| ret[k] = v end ret end |
#to_json(options = {}) ⇒ String
Returns The complete object as a JSON string.
143 144 145 |
# File 'lib/models/windows_code_sign_properties.rb', line 143 def to_json( = {}) to_hash.to_json() end |