akeyless 3.1.1 → 3.1.2

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 (78) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -1
  3. data/docs/AssocTargetItem.md +2 -0
  4. data/docs/CreateCertificate.md +3 -1
  5. data/docs/CreateClassicKey.md +6 -2
  6. data/docs/CreateDBTarget.md +4 -0
  7. data/docs/CreateDFCKey.md +3 -1
  8. data/docs/CreateDynamicSecret.md +3 -1
  9. data/docs/CreateKey.md +3 -1
  10. data/docs/CreatePKICertIssuer.md +3 -1
  11. data/docs/CreateRotatedSecret.md +3 -1
  12. data/docs/CreateSSHCertIssuer.md +3 -1
  13. data/docs/CreateSecret.md +3 -1
  14. data/docs/CreateTokenizer.md +3 -1
  15. data/docs/DSProducerDetails.md +8 -0
  16. data/docs/DecryptGPG.md +34 -0
  17. data/docs/DecryptGPGOutput.md +18 -0
  18. data/docs/EncryptGPG.md +32 -0
  19. data/docs/EncryptGPGOutput.md +18 -0
  20. data/docs/GatewayCreateProducerSnowflake.md +4 -0
  21. data/docs/GatewayUpdateItem.md +3 -1
  22. data/docs/GatewayUpdateProducerSnowflake.md +4 -0
  23. data/docs/GenCustomerFragment.md +4 -2
  24. data/docs/SignGPG.md +32 -0
  25. data/docs/SignGPGOutput.md +18 -0
  26. data/docs/TargetTypeDetailsInput.md +4 -0
  27. data/docs/UpdateDBTarget.md +4 -0
  28. data/docs/UpdateItem.md +3 -1
  29. data/docs/UpdatePKICertIssuer.md +3 -1
  30. data/docs/UpdateRotatedSecret.md +3 -1
  31. data/docs/UpdateSSHCertIssuer.md +3 -1
  32. data/docs/UploadPKCS12.md +3 -1
  33. data/docs/UploadRSA.md +3 -1
  34. data/docs/V2Api.md +252 -0
  35. data/docs/VerifyGPG.md +32 -0
  36. data/lib/akeyless/api/v2_api.rb +256 -0
  37. data/lib/akeyless/models/assoc_target_item.rb +11 -1
  38. data/lib/akeyless/models/create_certificate.rb +12 -2
  39. data/lib/akeyless/models/create_classic_key.rb +23 -3
  40. data/lib/akeyless/models/create_db_target.rb +21 -1
  41. data/lib/akeyless/models/create_dfc_key.rb +12 -2
  42. data/lib/akeyless/models/create_dynamic_secret.rb +12 -4
  43. data/lib/akeyless/models/create_key.rb +12 -2
  44. data/lib/akeyless/models/create_pki_cert_issuer.rb +12 -2
  45. data/lib/akeyless/models/create_rotated_secret.rb +12 -2
  46. data/lib/akeyless/models/create_secret.rb +12 -2
  47. data/lib/akeyless/models/create_ssh_cert_issuer.rb +12 -2
  48. data/lib/akeyless/models/create_tokenizer.rb +12 -2
  49. data/lib/akeyless/models/decrypt_gpg.rb +310 -0
  50. data/lib/akeyless/models/decrypt_gpg_output.rb +219 -0
  51. data/lib/akeyless/models/ds_producer_details.rb +40 -1
  52. data/lib/akeyless/models/encrypt_gpg.rb +300 -0
  53. data/lib/akeyless/models/encrypt_gpg_output.rb +219 -0
  54. data/lib/akeyless/models/gateway_create_producer_snowflake.rb +22 -2
  55. data/lib/akeyless/models/gateway_update_item.rb +14 -2
  56. data/lib/akeyless/models/gateway_update_producer_snowflake.rb +22 -2
  57. data/lib/akeyless/models/gen_customer_fragment.rb +15 -5
  58. data/lib/akeyless/models/sign_gpg.rb +300 -0
  59. data/lib/akeyless/models/sign_gpg_output.rb +219 -0
  60. data/lib/akeyless/models/target_type_details_input.rb +20 -1
  61. data/lib/akeyless/models/update_db_target.rb +21 -1
  62. data/lib/akeyless/models/update_item.rb +14 -2
  63. data/lib/akeyless/models/update_pki_cert_issuer.rb +12 -2
  64. data/lib/akeyless/models/update_rotated_secret.rb +14 -2
  65. data/lib/akeyless/models/update_ssh_cert_issuer.rb +12 -2
  66. data/lib/akeyless/models/upload_pkcs12.rb +12 -2
  67. data/lib/akeyless/models/upload_rsa.rb +12 -2
  68. data/lib/akeyless/models/verify_gpg.rb +300 -0
  69. data/lib/akeyless/version.rb +1 -1
  70. data/lib/akeyless.rb +7 -0
  71. data/spec/models/decrypt_gpg_output_spec.rb +34 -0
  72. data/spec/models/decrypt_gpg_spec.rb +82 -0
  73. data/spec/models/encrypt_gpg_output_spec.rb +34 -0
  74. data/spec/models/encrypt_gpg_spec.rb +76 -0
  75. data/spec/models/sign_gpg_output_spec.rb +34 -0
  76. data/spec/models/sign_gpg_spec.rb +76 -0
  77. data/spec/models/verify_gpg_spec.rb +76 -0
  78. metadata +30 -2
@@ -26,13 +26,16 @@ module Akeyless
26
26
 
27
27
  attr_accessor :delete_protection
28
28
 
29
+ # Description of the object
30
+ attr_accessor :description
31
+
29
32
  # Set output format to JSON
30
33
  attr_accessor :json
31
34
 
32
35
  # Current item name
33
36
  attr_accessor :name
34
37
 
35
- # New item metadata
38
+ # Deprecated - use description
36
39
  attr_accessor :new_metadata
37
40
 
38
41
  # New item name
@@ -102,6 +105,7 @@ module Akeyless
102
105
  :'add_tag' => :'add-tag',
103
106
  :'cert_file_data' => :'cert-file-data',
104
107
  :'delete_protection' => :'delete_protection',
108
+ :'description' => :'description',
105
109
  :'json' => :'json',
106
110
  :'name' => :'name',
107
111
  :'new_metadata' => :'new-metadata',
@@ -148,6 +152,7 @@ module Akeyless
148
152
  :'add_tag' => :'Array<String>',
149
153
  :'cert_file_data' => :'String',
150
154
  :'delete_protection' => :'String',
155
+ :'description' => :'String',
151
156
  :'json' => :'Boolean',
152
157
  :'name' => :'String',
153
158
  :'new_metadata' => :'String',
@@ -223,6 +228,12 @@ module Akeyless
223
228
  self.delete_protection = attributes[:'delete_protection']
224
229
  end
225
230
 
231
+ if attributes.key?(:'description')
232
+ self.description = attributes[:'description']
233
+ else
234
+ self.description = 'default_metadata'
235
+ end
236
+
226
237
  if attributes.key?(:'json')
227
238
  self.json = attributes[:'json']
228
239
  end
@@ -385,6 +396,7 @@ module Akeyless
385
396
  add_tag == o.add_tag &&
386
397
  cert_file_data == o.cert_file_data &&
387
398
  delete_protection == o.delete_protection &&
399
+ description == o.description &&
388
400
  json == o.json &&
389
401
  name == o.name &&
390
402
  new_metadata == o.new_metadata &&
@@ -427,7 +439,7 @@ module Akeyless
427
439
  # Calculates hash code according to all attributes.
428
440
  # @return [Integer] Hash code
429
441
  def hash
430
- [accessibility, add_tag, cert_file_data, delete_protection, json, name, new_metadata, new_name, rm_tag, secure_access_add_host, secure_access_allow_external_user, secure_access_allow_port_forwading, secure_access_aws_account_id, secure_access_aws_native_cli, secure_access_aws_region, secure_access_bastion_api, secure_access_bastion_issuer, secure_access_bastion_ssh, secure_access_cluster_endpoint, secure_access_dashboard_url, secure_access_db_name, secure_access_db_schema, secure_access_enable, secure_access_host, secure_access_rdp_domain, secure_access_rdp_user, secure_access_rm_host, secure_access_ssh_creds, secure_access_ssh_creds_user, secure_access_url, secure_access_use_internal_bastion, secure_access_web_browsing, secure_access_web_proxy, token, uid_token].hash
442
+ [accessibility, add_tag, cert_file_data, delete_protection, description, json, name, new_metadata, new_name, rm_tag, secure_access_add_host, secure_access_allow_external_user, secure_access_allow_port_forwading, secure_access_aws_account_id, secure_access_aws_native_cli, secure_access_aws_region, secure_access_bastion_api, secure_access_bastion_issuer, secure_access_bastion_ssh, secure_access_cluster_endpoint, secure_access_dashboard_url, secure_access_db_name, secure_access_db_schema, secure_access_enable, secure_access_host, secure_access_rdp_domain, secure_access_rdp_user, secure_access_rm_host, secure_access_ssh_creds, secure_access_ssh_creds_user, secure_access_url, secure_access_use_internal_bastion, secure_access_web_browsing, secure_access_web_proxy, token, uid_token].hash
431
443
  end
432
444
 
433
445
  # Builds the object from hash
@@ -39,6 +39,9 @@ module Akeyless
39
39
  # A comma-separated list of the country that will be set in the issued certificate
40
40
  attr_accessor :country
41
41
 
42
+ # Description of the object
43
+ attr_accessor :description
44
+
42
45
  # Set output format to JSON
43
46
  attr_accessor :json
44
47
 
@@ -48,7 +51,7 @@ module Akeyless
48
51
  # A comma-separated list of the locality that will be set in the issued certificate
49
52
  attr_accessor :locality
50
53
 
51
- # A metadata about the issuer
54
+ # Deprecated - use description
52
55
  attr_accessor :metadata
53
56
 
54
57
  # PKI certificate issuer name
@@ -107,6 +110,7 @@ module Akeyless
107
110
  :'client_flag' => :'client-flag',
108
111
  :'code_signing_flag' => :'code-signing-flag',
109
112
  :'country' => :'country',
113
+ :'description' => :'description',
110
114
  :'json' => :'json',
111
115
  :'key_usage' => :'key-usage',
112
116
  :'locality' => :'locality',
@@ -145,6 +149,7 @@ module Akeyless
145
149
  :'client_flag' => :'Boolean',
146
150
  :'code_signing_flag' => :'Boolean',
147
151
  :'country' => :'String',
152
+ :'description' => :'String',
148
153
  :'json' => :'Boolean',
149
154
  :'key_usage' => :'String',
150
155
  :'locality' => :'String',
@@ -222,6 +227,10 @@ module Akeyless
222
227
  self.country = attributes[:'country']
223
228
  end
224
229
 
230
+ if attributes.key?(:'description')
231
+ self.description = attributes[:'description']
232
+ end
233
+
225
234
  if attributes.key?(:'json')
226
235
  self.json = attributes[:'json']
227
236
  end
@@ -344,6 +353,7 @@ module Akeyless
344
353
  client_flag == o.client_flag &&
345
354
  code_signing_flag == o.code_signing_flag &&
346
355
  country == o.country &&
356
+ description == o.description &&
347
357
  json == o.json &&
348
358
  key_usage == o.key_usage &&
349
359
  locality == o.locality &&
@@ -374,7 +384,7 @@ module Akeyless
374
384
  # Calculates hash code according to all attributes.
375
385
  # @return [Integer] Hash code
376
386
  def hash
377
- [add_tag, allow_any_name, allow_subdomains, allowed_domains, allowed_uri_sans, client_flag, code_signing_flag, country, json, key_usage, locality, metadata, name, new_name, not_enforce_hostnames, not_require_cn, organizational_units, organizations, postal_code, province, rm_tag, server_flag, signer_key_name, street_address, token, ttl, uid_token].hash
387
+ [add_tag, allow_any_name, allow_subdomains, allowed_domains, allowed_uri_sans, client_flag, code_signing_flag, country, description, json, key_usage, locality, metadata, name, new_name, not_enforce_hostnames, not_require_cn, organizational_units, organizations, postal_code, province, rm_tag, server_flag, signer_key_name, street_address, token, ttl, uid_token].hash
378
388
  end
379
389
 
380
390
  # Builds the object from hash
@@ -31,6 +31,9 @@ module Akeyless
31
31
 
32
32
  attr_accessor :custom_payload
33
33
 
34
+ # Description of the object
35
+ attr_accessor :description
36
+
34
37
  # Base64-encoded service account private key text
35
38
  attr_accessor :gcp_key
36
39
 
@@ -45,7 +48,7 @@ module Akeyless
45
48
  # Secret name
46
49
  attr_accessor :name
47
50
 
48
- # New item metadata
51
+ # Deprecated - use description
49
52
  attr_accessor :new_metadata
50
53
 
51
54
  # New item name
@@ -133,6 +136,7 @@ module Akeyless
133
136
  :'auto_rotate' => :'auto-rotate',
134
137
  :'aws_region' => :'aws-region',
135
138
  :'custom_payload' => :'custom-payload',
139
+ :'description' => :'description',
136
140
  :'gcp_key' => :'gcp-key',
137
141
  :'json' => :'json',
138
142
  :'keep_prev_version' => :'keep-prev-version',
@@ -183,6 +187,7 @@ module Akeyless
183
187
  :'auto_rotate' => :'String',
184
188
  :'aws_region' => :'String',
185
189
  :'custom_payload' => :'String',
190
+ :'description' => :'String',
186
191
  :'gcp_key' => :'String',
187
192
  :'json' => :'Boolean',
188
193
  :'keep_prev_version' => :'String',
@@ -268,6 +273,12 @@ module Akeyless
268
273
  self.custom_payload = attributes[:'custom_payload']
269
274
  end
270
275
 
276
+ if attributes.key?(:'description')
277
+ self.description = attributes[:'description']
278
+ else
279
+ self.description = 'default_metadata'
280
+ end
281
+
271
282
  if attributes.key?(:'gcp_key')
272
283
  self.gcp_key = attributes[:'gcp_key']
273
284
  end
@@ -444,6 +455,7 @@ module Akeyless
444
455
  auto_rotate == o.auto_rotate &&
445
456
  aws_region == o.aws_region &&
446
457
  custom_payload == o.custom_payload &&
458
+ description == o.description &&
447
459
  gcp_key == o.gcp_key &&
448
460
  json == o.json &&
449
461
  keep_prev_version == o.keep_prev_version &&
@@ -488,7 +500,7 @@ module Akeyless
488
500
  # Calculates hash code according to all attributes.
489
501
  # @return [Integer] Hash code
490
502
  def hash
491
- [add_tag, api_id, api_key, auto_rotate, aws_region, custom_payload, gcp_key, json, keep_prev_version, key, name, new_metadata, new_name, new_version, rm_tag, rotated_password, rotated_username, rotation_hour, rotation_interval, rotator_creds_type, rotator_custom_cmd, secure_access_allow_external_user, secure_access_aws_account_id, secure_access_aws_native_cli, secure_access_bastion_issuer, secure_access_db_name, secure_access_db_schema, secure_access_enable, secure_access_host, secure_access_rdp_domain, secure_access_rdp_user, secure_access_web, secure_access_web_browsing, secure_access_web_proxy, ssh_password, ssh_username, storage_account_key_name, token, uid_token].hash
503
+ [add_tag, api_id, api_key, auto_rotate, aws_region, custom_payload, description, gcp_key, json, keep_prev_version, key, name, new_metadata, new_name, new_version, rm_tag, rotated_password, rotated_username, rotation_hour, rotation_interval, rotator_creds_type, rotator_custom_cmd, secure_access_allow_external_user, secure_access_aws_account_id, secure_access_aws_native_cli, secure_access_bastion_issuer, secure_access_db_name, secure_access_db_schema, secure_access_enable, secure_access_host, secure_access_rdp_domain, secure_access_rdp_user, secure_access_web, secure_access_web_browsing, secure_access_web_proxy, ssh_password, ssh_username, storage_account_key_name, token, uid_token].hash
492
504
  end
493
505
 
494
506
  # Builds the object from hash
@@ -21,13 +21,16 @@ module Akeyless
21
21
  # Users allowed to fetch the certificate, e.g root,ubuntu
22
22
  attr_accessor :allowed_users
23
23
 
24
+ # Description of the object
25
+ attr_accessor :description
26
+
24
27
  # Signed certificates with extensions, e.g permit-port-forwarding=\\\"\\\"
25
28
  attr_accessor :extensions
26
29
 
27
30
  # Set output format to JSON
28
31
  attr_accessor :json
29
32
 
30
- # A metadata about the issuer
33
+ # Deprecated - use description
31
34
  attr_accessor :metadata
32
35
 
33
36
  # SSH certificate issuer name
@@ -71,6 +74,7 @@ module Akeyless
71
74
  {
72
75
  :'add_tag' => :'add-tag',
73
76
  :'allowed_users' => :'allowed-users',
77
+ :'description' => :'description',
74
78
  :'extensions' => :'extensions',
75
79
  :'json' => :'json',
76
80
  :'metadata' => :'metadata',
@@ -101,6 +105,7 @@ module Akeyless
101
105
  {
102
106
  :'add_tag' => :'Array<String>',
103
107
  :'allowed_users' => :'String',
108
+ :'description' => :'String',
104
109
  :'extensions' => :'Hash<String, String>',
105
110
  :'json' => :'Boolean',
106
111
  :'metadata' => :'String',
@@ -152,6 +157,10 @@ module Akeyless
152
157
  self.allowed_users = attributes[:'allowed_users']
153
158
  end
154
159
 
160
+ if attributes.key?(:'description')
161
+ self.description = attributes[:'description']
162
+ end
163
+
155
164
  if attributes.key?(:'extensions')
156
165
  if (value = attributes[:'extensions']).is_a?(Hash)
157
166
  self.extensions = value
@@ -267,6 +276,7 @@ module Akeyless
267
276
  self.class == o.class &&
268
277
  add_tag == o.add_tag &&
269
278
  allowed_users == o.allowed_users &&
279
+ description == o.description &&
270
280
  extensions == o.extensions &&
271
281
  json == o.json &&
272
282
  metadata == o.metadata &&
@@ -295,7 +305,7 @@ module Akeyless
295
305
  # Calculates hash code according to all attributes.
296
306
  # @return [Integer] Hash code
297
307
  def hash
298
- [add_tag, allowed_users, extensions, json, metadata, name, new_name, principals, rm_tag, secure_access_bastion_api, secure_access_bastion_ssh, secure_access_enable, secure_access_host, secure_access_ssh_creds_user, secure_access_use_internal_bastion, signer_key_name, token, ttl, uid_token].hash
308
+ [add_tag, allowed_users, description, extensions, json, metadata, name, new_name, principals, rm_tag, secure_access_bastion_api, secure_access_bastion_ssh, secure_access_enable, secure_access_host, secure_access_ssh_creds_user, secure_access_use_internal_bastion, signer_key_name, token, ttl, uid_token].hash
299
309
  end
300
310
 
301
311
  # Builds the object from hash
@@ -21,13 +21,16 @@ module Akeyless
21
21
  # Protection from accidental deletion of this item
22
22
  attr_accessor :delete_protection
23
23
 
24
+ # Description of the object
25
+ attr_accessor :description
26
+
24
27
  # PKCS#12 input file (private key and certificate only)
25
28
  attr_accessor :_in
26
29
 
27
30
  # Set output format to JSON
28
31
  attr_accessor :json
29
32
 
30
- # A metadata about the key
33
+ # Deprecated - use description
31
34
  attr_accessor :metadata
32
35
 
33
36
  # Name of key to be created
@@ -53,6 +56,7 @@ module Akeyless
53
56
  {
54
57
  :'customer_frg_id' => :'customer-frg-id',
55
58
  :'delete_protection' => :'delete_protection',
59
+ :'description' => :'description',
56
60
  :'_in' => :'in',
57
61
  :'json' => :'json',
58
62
  :'metadata' => :'metadata',
@@ -75,6 +79,7 @@ module Akeyless
75
79
  {
76
80
  :'customer_frg_id' => :'String',
77
81
  :'delete_protection' => :'String',
82
+ :'description' => :'String',
78
83
  :'_in' => :'String',
79
84
  :'json' => :'Boolean',
80
85
  :'metadata' => :'String',
@@ -116,6 +121,10 @@ module Akeyless
116
121
  self.delete_protection = attributes[:'delete_protection']
117
122
  end
118
123
 
124
+ if attributes.key?(:'description')
125
+ self.description = attributes[:'description']
126
+ end
127
+
119
128
  if attributes.key?(:'_in')
120
129
  self._in = attributes[:'_in']
121
130
  end
@@ -192,6 +201,7 @@ module Akeyless
192
201
  self.class == o.class &&
193
202
  customer_frg_id == o.customer_frg_id &&
194
203
  delete_protection == o.delete_protection &&
204
+ description == o.description &&
195
205
  _in == o._in &&
196
206
  json == o.json &&
197
207
  metadata == o.metadata &&
@@ -212,7 +222,7 @@ module Akeyless
212
222
  # Calculates hash code according to all attributes.
213
223
  # @return [Integer] Hash code
214
224
  def hash
215
- [customer_frg_id, delete_protection, _in, json, metadata, name, passphrase, split_level, tag, token, uid_token].hash
225
+ [customer_frg_id, delete_protection, description, _in, json, metadata, name, passphrase, split_level, tag, token, uid_token].hash
216
226
  end
217
227
 
218
228
  # Builds the object from hash
@@ -27,10 +27,13 @@ module Akeyless
27
27
  # Protection from accidental deletion of this item
28
28
  attr_accessor :delete_protection
29
29
 
30
+ # Description of the object
31
+ attr_accessor :description
32
+
30
33
  # Set output format to JSON
31
34
  attr_accessor :json
32
35
 
33
- # A metadata about the key
36
+ # Deprecated - use description
34
37
  attr_accessor :metadata
35
38
 
36
39
  # Name of key to be created
@@ -61,6 +64,7 @@ module Akeyless
61
64
  :'cert_file_data' => :'cert-file-data',
62
65
  :'customer_frg_id' => :'customer-frg-id',
63
66
  :'delete_protection' => :'delete_protection',
67
+ :'description' => :'description',
64
68
  :'json' => :'json',
65
69
  :'metadata' => :'metadata',
66
70
  :'name' => :'name',
@@ -85,6 +89,7 @@ module Akeyless
85
89
  :'cert_file_data' => :'String',
86
90
  :'customer_frg_id' => :'String',
87
91
  :'delete_protection' => :'String',
92
+ :'description' => :'String',
88
93
  :'json' => :'Boolean',
89
94
  :'metadata' => :'String',
90
95
  :'name' => :'String',
@@ -134,6 +139,10 @@ module Akeyless
134
139
  self.delete_protection = attributes[:'delete_protection']
135
140
  end
136
141
 
142
+ if attributes.key?(:'description')
143
+ self.description = attributes[:'description']
144
+ end
145
+
137
146
  if attributes.key?(:'json')
138
147
  self.json = attributes[:'json']
139
148
  end
@@ -207,6 +216,7 @@ module Akeyless
207
216
  cert_file_data == o.cert_file_data &&
208
217
  customer_frg_id == o.customer_frg_id &&
209
218
  delete_protection == o.delete_protection &&
219
+ description == o.description &&
210
220
  json == o.json &&
211
221
  metadata == o.metadata &&
212
222
  name == o.name &&
@@ -227,7 +237,7 @@ module Akeyless
227
237
  # Calculates hash code according to all attributes.
228
238
  # @return [Integer] Hash code
229
239
  def hash
230
- [alg, cert_file_data, customer_frg_id, delete_protection, json, metadata, name, overwrite, rsa_file_data, split_level, tag, token, uid_token].hash
240
+ [alg, cert_file_data, customer_frg_id, delete_protection, description, json, metadata, name, overwrite, rsa_file_data, split_level, tag, token, uid_token].hash
231
241
  end
232
242
 
233
243
  # Builds the object from hash
@@ -0,0 +1,300 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 2.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 6.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Akeyless
17
+ class VerifyGPG
18
+ # The display id of the key to use in the encryption process
19
+ attr_accessor :display_id
20
+
21
+ # The item id of the key to use in the encryption process
22
+ attr_accessor :item_id
23
+
24
+ # Set output format to JSON
25
+ attr_accessor :json
26
+
27
+ # The name of the key to use in the encryption process
28
+ attr_accessor :key_name
29
+
30
+ # Passphrase that was used to generate the key
31
+ attr_accessor :passphrase
32
+
33
+ # The signature to be verified in base64 format
34
+ attr_accessor :signature
35
+
36
+ # Authentication token (see `/auth` and `/configure`)
37
+ attr_accessor :token
38
+
39
+ # The universal identity token, Required only for universal_identity authentication
40
+ attr_accessor :uid_token
41
+
42
+ # Attribute mapping from ruby-style variable name to JSON key.
43
+ def self.attribute_map
44
+ {
45
+ :'display_id' => :'display-id',
46
+ :'item_id' => :'item-id',
47
+ :'json' => :'json',
48
+ :'key_name' => :'key-name',
49
+ :'passphrase' => :'passphrase',
50
+ :'signature' => :'signature',
51
+ :'token' => :'token',
52
+ :'uid_token' => :'uid-token'
53
+ }
54
+ end
55
+
56
+ # Returns all the JSON keys this model knows about
57
+ def self.acceptable_attributes
58
+ attribute_map.values
59
+ end
60
+
61
+ # Attribute type mapping.
62
+ def self.openapi_types
63
+ {
64
+ :'display_id' => :'String',
65
+ :'item_id' => :'Integer',
66
+ :'json' => :'Boolean',
67
+ :'key_name' => :'String',
68
+ :'passphrase' => :'String',
69
+ :'signature' => :'String',
70
+ :'token' => :'String',
71
+ :'uid_token' => :'String'
72
+ }
73
+ end
74
+
75
+ # List of attributes with nullable: true
76
+ def self.openapi_nullable
77
+ Set.new([
78
+ ])
79
+ end
80
+
81
+ # Initializes the object
82
+ # @param [Hash] attributes Model attributes in the form of hash
83
+ def initialize(attributes = {})
84
+ if (!attributes.is_a?(Hash))
85
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Akeyless::VerifyGPG` initialize method"
86
+ end
87
+
88
+ # check to see if the attribute exists and convert string to symbol for hash key
89
+ attributes = attributes.each_with_object({}) { |(k, v), h|
90
+ if (!self.class.attribute_map.key?(k.to_sym))
91
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Akeyless::VerifyGPG`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
92
+ end
93
+ h[k.to_sym] = v
94
+ }
95
+
96
+ if attributes.key?(:'display_id')
97
+ self.display_id = attributes[:'display_id']
98
+ end
99
+
100
+ if attributes.key?(:'item_id')
101
+ self.item_id = attributes[:'item_id']
102
+ end
103
+
104
+ if attributes.key?(:'json')
105
+ self.json = attributes[:'json']
106
+ end
107
+
108
+ if attributes.key?(:'key_name')
109
+ self.key_name = attributes[:'key_name']
110
+ end
111
+
112
+ if attributes.key?(:'passphrase')
113
+ self.passphrase = attributes[:'passphrase']
114
+ end
115
+
116
+ if attributes.key?(:'signature')
117
+ self.signature = attributes[:'signature']
118
+ end
119
+
120
+ if attributes.key?(:'token')
121
+ self.token = attributes[:'token']
122
+ end
123
+
124
+ if attributes.key?(:'uid_token')
125
+ self.uid_token = attributes[:'uid_token']
126
+ end
127
+ end
128
+
129
+ # Show invalid properties with the reasons. Usually used together with valid?
130
+ # @return Array for valid properties with the reasons
131
+ def list_invalid_properties
132
+ invalid_properties = Array.new
133
+ if @key_name.nil?
134
+ invalid_properties.push('invalid value for "key_name", key_name cannot be nil.')
135
+ end
136
+
137
+ if @signature.nil?
138
+ invalid_properties.push('invalid value for "signature", signature cannot be nil.')
139
+ end
140
+
141
+ invalid_properties
142
+ end
143
+
144
+ # Check to see if the all the properties in the model are valid
145
+ # @return true if the model is valid
146
+ def valid?
147
+ return false if @key_name.nil?
148
+ return false if @signature.nil?
149
+ true
150
+ end
151
+
152
+ # Checks equality by comparing each attribute.
153
+ # @param [Object] Object to be compared
154
+ def ==(o)
155
+ return true if self.equal?(o)
156
+ self.class == o.class &&
157
+ display_id == o.display_id &&
158
+ item_id == o.item_id &&
159
+ json == o.json &&
160
+ key_name == o.key_name &&
161
+ passphrase == o.passphrase &&
162
+ signature == o.signature &&
163
+ token == o.token &&
164
+ uid_token == o.uid_token
165
+ end
166
+
167
+ # @see the `==` method
168
+ # @param [Object] Object to be compared
169
+ def eql?(o)
170
+ self == o
171
+ end
172
+
173
+ # Calculates hash code according to all attributes.
174
+ # @return [Integer] Hash code
175
+ def hash
176
+ [display_id, item_id, json, key_name, passphrase, signature, token, uid_token].hash
177
+ end
178
+
179
+ # Builds the object from hash
180
+ # @param [Hash] attributes Model attributes in the form of hash
181
+ # @return [Object] Returns the model itself
182
+ def self.build_from_hash(attributes)
183
+ new.build_from_hash(attributes)
184
+ end
185
+
186
+ # Builds the object from hash
187
+ # @param [Hash] attributes Model attributes in the form of hash
188
+ # @return [Object] Returns the model itself
189
+ def build_from_hash(attributes)
190
+ return nil unless attributes.is_a?(Hash)
191
+ attributes = attributes.transform_keys(&:to_sym)
192
+ self.class.openapi_types.each_pair do |key, type|
193
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
194
+ self.send("#{key}=", nil)
195
+ elsif type =~ /\AArray<(.*)>/i
196
+ # check to ensure the input is an array given that the attribute
197
+ # is documented as an array but the input is not
198
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
199
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
200
+ end
201
+ elsif !attributes[self.class.attribute_map[key]].nil?
202
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
203
+ end
204
+ end
205
+
206
+ self
207
+ end
208
+
209
+ # Deserializes the data based on type
210
+ # @param string type Data type
211
+ # @param string value Value to be deserialized
212
+ # @return [Object] Deserialized data
213
+ def _deserialize(type, value)
214
+ case type.to_sym
215
+ when :Time
216
+ Time.parse(value)
217
+ when :Date
218
+ Date.parse(value)
219
+ when :String
220
+ value.to_s
221
+ when :Integer
222
+ value.to_i
223
+ when :Float
224
+ value.to_f
225
+ when :Boolean
226
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
227
+ true
228
+ else
229
+ false
230
+ end
231
+ when :Object
232
+ # generic object (usually a Hash), return directly
233
+ value
234
+ when /\AArray<(?<inner_type>.+)>\z/
235
+ inner_type = Regexp.last_match[:inner_type]
236
+ value.map { |v| _deserialize(inner_type, v) }
237
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
238
+ k_type = Regexp.last_match[:k_type]
239
+ v_type = Regexp.last_match[:v_type]
240
+ {}.tap do |hash|
241
+ value.each do |k, v|
242
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
243
+ end
244
+ end
245
+ else # model
246
+ # models (e.g. Pet) or oneOf
247
+ klass = Akeyless.const_get(type)
248
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
249
+ end
250
+ end
251
+
252
+ # Returns the string representation of the object
253
+ # @return [String] String presentation of the object
254
+ def to_s
255
+ to_hash.to_s
256
+ end
257
+
258
+ # to_body is an alias to to_hash (backward compatibility)
259
+ # @return [Hash] Returns the object in the form of hash
260
+ def to_body
261
+ to_hash
262
+ end
263
+
264
+ # Returns the object in the form of hash
265
+ # @return [Hash] Returns the object in the form of hash
266
+ def to_hash
267
+ hash = {}
268
+ self.class.attribute_map.each_pair do |attr, param|
269
+ value = self.send(attr)
270
+ if value.nil?
271
+ is_nullable = self.class.openapi_nullable.include?(attr)
272
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
273
+ end
274
+
275
+ hash[param] = _to_hash(value)
276
+ end
277
+ hash
278
+ end
279
+
280
+ # Outputs non-array value in the form of hash
281
+ # For object, use to_hash. Otherwise, just return the value
282
+ # @param [Object] value Any valid value
283
+ # @return [Hash] Returns the value in the form of hash
284
+ def _to_hash(value)
285
+ if value.is_a?(Array)
286
+ value.compact.map { |v| _to_hash(v) }
287
+ elsif value.is_a?(Hash)
288
+ {}.tap do |hash|
289
+ value.each { |k, v| hash[k] = _to_hash(v) }
290
+ end
291
+ elsif value.respond_to? :to_hash
292
+ value.to_hash
293
+ else
294
+ value
295
+ end
296
+ end
297
+
298
+ end
299
+
300
+ end
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.3.0-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module Akeyless
14
- VERSION = '3.1.1'
14
+ VERSION = '3.1.2'
15
15
  end