Class: Akeyless::PKICertificateIssueDetails

Inherits:
Object
  • Object
show all
Defined in:
lib/akeyless/models/pki_certificate_issue_details.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ PKICertificateIssueDetails

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 204

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `Akeyless::PKICertificateIssueDetails` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!self.class.attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `Akeyless::PKICertificateIssueDetails`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'acme_enabled')
    self.acme_enabled = attributes[:'acme_enabled']
  end

  if attributes.key?(:'allow_any_name')
    self.allow_any_name = attributes[:'allow_any_name']
  end

  if attributes.key?(:'allow_copy_ext_from_csr')
    self.allow_copy_ext_from_csr = attributes[:'allow_copy_ext_from_csr']
  end

  if attributes.key?(:'allow_subdomains')
    self.allow_subdomains = attributes[:'allow_subdomains']
  end

  if attributes.key?(:'allowed_domains_list')
    if (value = attributes[:'allowed_domains_list']).is_a?(Array)
      self.allowed_domains_list = value
    end
  end

  if attributes.key?(:'allowed_extra_extensions')
    if (value = attributes[:'allowed_extra_extensions']).is_a?(Hash)
      self.allowed_extra_extensions = value
    end
  end

  if attributes.key?(:'allowed_ip_sans')
    if (value = attributes[:'allowed_ip_sans']).is_a?(Array)
      self.allowed_ip_sans = value
    end
  end

  if attributes.key?(:'allowed_uri_sans')
    if (value = attributes[:'allowed_uri_sans']).is_a?(Array)
      self.allowed_uri_sans = value
    end
  end

  if attributes.key?(:'auto_renew_certificate')
    self.auto_renew_certificate = attributes[:'auto_renew_certificate']
  end

  if attributes.key?(:'basic_constraints_valid_for_non_ca')
    self.basic_constraints_valid_for_non_ca = attributes[:'basic_constraints_valid_for_non_ca']
  end

  if attributes.key?(:'certificate_authority_mode')
    self.certificate_authority_mode = attributes[:'certificate_authority_mode']
  end

  if attributes.key?(:'client_flag')
    self.client_flag = attributes[:'client_flag']
  end

  if attributes.key?(:'code_signing_flag')
    self.code_signing_flag = attributes[:'code_signing_flag']
  end

  if attributes.key?(:'country')
    if (value = attributes[:'country']).is_a?(Array)
      self.country = value
    end
  end

  if attributes.key?(:'create_private_crl')
    self.create_private_crl = attributes[:'create_private_crl']
  end

  if attributes.key?(:'create_public_crl')
    self.create_public_crl = attributes[:'create_public_crl']
  end

  if attributes.key?(:'destination_path')
    self.destination_path = attributes[:'destination_path']
  end

  if attributes.key?(:'enforce_hostnames')
    self.enforce_hostnames = attributes[:'enforce_hostnames']
  end

  if attributes.key?(:'expiration_events')
    if (value = attributes[:'expiration_events']).is_a?(Array)
      self.expiration_events = value
    end
  end

  if attributes.key?(:'gw_cluster_id')
    self.gw_cluster_id = attributes[:'gw_cluster_id']
  end

  if attributes.key?(:'gw_cluster_url')
    self.gw_cluster_url = attributes[:'gw_cluster_url']
  end

  if attributes.key?(:'is_ca')
    self.is_ca = attributes[:'is_ca']
  end

  if attributes.key?(:'key_bits')
    self.key_bits = attributes[:'key_bits']
  end

  if attributes.key?(:'key_type')
    self.key_type = attributes[:'key_type']
  end

  if attributes.key?(:'key_usage_list')
    if (value = attributes[:'key_usage_list']).is_a?(Array)
      self.key_usage_list = value
    end
  end

  if attributes.key?(:'locality')
    if (value = attributes[:'locality']).is_a?(Array)
      self.locality = value
    end
  end

  if attributes.key?(:'max_path_len')
    self.max_path_len = attributes[:'max_path_len']
  end

  if attributes.key?(:'non_critical_key_usage')
    self.non_critical_key_usage = attributes[:'non_critical_key_usage']
  end

  if attributes.key?(:'not_before_duration')
    self.not_before_duration = attributes[:'not_before_duration']
  end

  if attributes.key?(:'organization_list')
    if (value = attributes[:'organization_list']).is_a?(Array)
      self.organization_list = value
    end
  end

  if attributes.key?(:'organization_unit_list')
    if (value = attributes[:'organization_unit_list']).is_a?(Array)
      self.organization_unit_list = value
    end
  end

  if attributes.key?(:'pki_issuer_type')
    self.pki_issuer_type = attributes[:'pki_issuer_type']
  end

  if attributes.key?(:'postal_code')
    if (value = attributes[:'postal_code']).is_a?(Array)
      self.postal_code = value
    end
  end

  if attributes.key?(:'protect_generated_certificates')
    self.protect_generated_certificates = attributes[:'protect_generated_certificates']
  end

  if attributes.key?(:'province')
    if (value = attributes[:'province']).is_a?(Array)
      self.province = value
    end
  end

  if attributes.key?(:'renew_before_expiration_in_days')
    self.renew_before_expiration_in_days = attributes[:'renew_before_expiration_in_days']
  end

  if attributes.key?(:'require_cn')
    self.require_cn = attributes[:'require_cn']
  end

  if attributes.key?(:'server_flag')
    self.server_flag = attributes[:'server_flag']
  end

  if attributes.key?(:'street_address')
    if (value = attributes[:'street_address']).is_a?(Array)
      self.street_address = value
    end
  end
end

Instance Attribute Details

#acme_enabledObject

Returns the value of attribute acme_enabled.



18
19
20
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 18

def acme_enabled
  @acme_enabled
end

#allow_any_nameObject

Returns the value of attribute allow_any_name.



20
21
22
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 20

def allow_any_name
  @allow_any_name
end

#allow_copy_ext_from_csrObject

Returns the value of attribute allow_copy_ext_from_csr.



22
23
24
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 22

def allow_copy_ext_from_csr
  @allow_copy_ext_from_csr
end

#allow_subdomainsObject

Returns the value of attribute allow_subdomains.



24
25
26
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 24

def allow_subdomains
  @allow_subdomains
end

#allowed_domains_listObject

Returns the value of attribute allowed_domains_list.



26
27
28
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 26

def allowed_domains_list
  @allowed_domains_list
end

#allowed_extra_extensionsObject

Returns the value of attribute allowed_extra_extensions.



28
29
30
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 28

def allowed_extra_extensions
  @allowed_extra_extensions
end

#allowed_ip_sansObject

Returns the value of attribute allowed_ip_sans.



30
31
32
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 30

def allowed_ip_sans
  @allowed_ip_sans
end

#allowed_uri_sansObject

Returns the value of attribute allowed_uri_sans.



32
33
34
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 32

def allowed_uri_sans
  @allowed_uri_sans
end

#auto_renew_certificateObject

Returns the value of attribute auto_renew_certificate.



34
35
36
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 34

def auto_renew_certificate
  @auto_renew_certificate
end

#basic_constraints_valid_for_non_caObject

Returns the value of attribute basic_constraints_valid_for_non_ca.



36
37
38
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 36

def basic_constraints_valid_for_non_ca
  @basic_constraints_valid_for_non_ca
end

#certificate_authority_modeObject

Returns the value of attribute certificate_authority_mode.



38
39
40
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 38

def certificate_authority_mode
  @certificate_authority_mode
end

#client_flagObject

Returns the value of attribute client_flag.



40
41
42
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 40

def client_flag
  @client_flag
end

#code_signing_flagObject

Returns the value of attribute code_signing_flag.



42
43
44
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 42

def code_signing_flag
  @code_signing_flag
end

#countryObject

Returns the value of attribute country.



44
45
46
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 44

def country
  @country
end

#create_private_crlObject

Returns the value of attribute create_private_crl.



46
47
48
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 46

def create_private_crl
  @create_private_crl
end

#create_public_crlObject

Returns the value of attribute create_public_crl.



48
49
50
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 48

def create_public_crl
  @create_public_crl
end

#destination_pathObject

DestinationPath is the destination to save generated certificates



51
52
53
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 51

def destination_path
  @destination_path
end

#enforce_hostnamesObject

Returns the value of attribute enforce_hostnames.



53
54
55
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 53

def enforce_hostnames
  @enforce_hostnames
end

#expiration_eventsObject

ExpirationNotification holds a list of expiration notices that should be sent in case a certificate is about to expire, this value is being propagated to the Certificate resources that are created



56
57
58
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 56

def expiration_events
  @expiration_events
end

#gw_cluster_idObject

Returns the value of attribute gw_cluster_id.



58
59
60
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 58

def gw_cluster_id
  @gw_cluster_id
end

#gw_cluster_urlObject

GWClusterURL is required when CAMode is "public" and it defines the cluster URL the PKI should be issued from. The GW cluster must have permissions to read associated target’s details



61
62
63
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 61

def gw_cluster_url
  @gw_cluster_url
end

#is_caObject

Returns the value of attribute is_ca.



63
64
65
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 63

def is_ca
  @is_ca
end

#key_bitsObject

Returns the value of attribute key_bits.



65
66
67
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 65

def key_bits
  @key_bits
end

#key_typeObject

Returns the value of attribute key_type.



67
68
69
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 67

def key_type
  @key_type
end

#key_usage_listObject

Returns the value of attribute key_usage_list.



69
70
71
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 69

def key_usage_list
  @key_usage_list
end

#localityObject

Returns the value of attribute locality.



71
72
73
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 71

def locality
  @locality
end

#max_path_lenObject

Returns the value of attribute max_path_len.



73
74
75
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 73

def max_path_len
  @max_path_len
end

#non_critical_key_usageObject

Returns the value of attribute non_critical_key_usage.



75
76
77
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 75

def non_critical_key_usage
  @non_critical_key_usage
end

#not_before_durationObject

A Duration represents the elapsed time between two instants as an int64 nanosecond count. The representation limits the largest representable duration to approximately 290 years.



78
79
80
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 78

def not_before_duration
  @not_before_duration
end

#organization_listObject

Returns the value of attribute organization_list.



80
81
82
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 80

def organization_list
  @organization_list
end

#organization_unit_listObject

Returns the value of attribute organization_unit_list.



82
83
84
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 82

def organization_unit_list
  @organization_unit_list
end

#pki_issuer_typeObject

Returns the value of attribute pki_issuer_type.



84
85
86
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 84

def pki_issuer_type
  @pki_issuer_type
end

#postal_codeObject

Returns the value of attribute postal_code.



86
87
88
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 86

def postal_code
  @postal_code
end

#protect_generated_certificatesObject

ProtectGeneratedCertificates dictates whether the created certificates should be protected from deletion



89
90
91
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 89

def protect_generated_certificates
  @protect_generated_certificates
end

#provinceObject

Returns the value of attribute province.



91
92
93
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 91

def province
  @province
end

#renew_before_expiration_in_daysObject

Returns the value of attribute renew_before_expiration_in_days.



93
94
95
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 93

def renew_before_expiration_in_days
  @renew_before_expiration_in_days
end

#require_cnObject

Returns the value of attribute require_cn.



95
96
97
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 95

def require_cn
  @require_cn
end

#server_flagObject

Returns the value of attribute server_flag.



97
98
99
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 97

def server_flag
  @server_flag
end

#street_addressObject

Returns the value of attribute street_address.



99
100
101
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 99

def street_address
  @street_address
end

Class Method Details

._deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 500

def self._deserialize(type, value)
  case type.to_sym
  when :Time
    Time.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :Boolean
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    # models (e.g. Pet) or oneOf
    klass = Akeyless.const_get(type)
    klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
  end
end

.acceptable_attributesObject

Returns all the JSON keys this model knows about



147
148
149
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 147

def self.acceptable_attributes
  attribute_map.values
end

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 102

def self.attribute_map
  {
    :'acme_enabled' => :'acme_enabled',
    :'allow_any_name' => :'allow_any_name',
    :'allow_copy_ext_from_csr' => :'allow_copy_ext_from_csr',
    :'allow_subdomains' => :'allow_subdomains',
    :'allowed_domains_list' => :'allowed_domains_list',
    :'allowed_extra_extensions' => :'allowed_extra_extensions',
    :'allowed_ip_sans' => :'allowed_ip_sans',
    :'allowed_uri_sans' => :'allowed_uri_sans',
    :'auto_renew_certificate' => :'auto_renew_certificate',
    :'basic_constraints_valid_for_non_ca' => :'basic_constraints_valid_for_non_ca',
    :'certificate_authority_mode' => :'certificate_authority_mode',
    :'client_flag' => :'client_flag',
    :'code_signing_flag' => :'code_signing_flag',
    :'country' => :'country',
    :'create_private_crl' => :'create_private_crl',
    :'create_public_crl' => :'create_public_crl',
    :'destination_path' => :'destination_path',
    :'enforce_hostnames' => :'enforce_hostnames',
    :'expiration_events' => :'expiration_events',
    :'gw_cluster_id' => :'gw_cluster_id',
    :'gw_cluster_url' => :'gw_cluster_url',
    :'is_ca' => :'is_ca',
    :'key_bits' => :'key_bits',
    :'key_type' => :'key_type',
    :'key_usage_list' => :'key_usage_list',
    :'locality' => :'locality',
    :'max_path_len' => :'max_path_len',
    :'non_critical_key_usage' => :'non_critical_key_usage',
    :'not_before_duration' => :'not_before_duration',
    :'organization_list' => :'organization_list',
    :'organization_unit_list' => :'organization_unit_list',
    :'pki_issuer_type' => :'pki_issuer_type',
    :'postal_code' => :'postal_code',
    :'protect_generated_certificates' => :'protect_generated_certificates',
    :'province' => :'province',
    :'renew_before_expiration_in_days' => :'renew_before_expiration_in_days',
    :'require_cn' => :'require_cn',
    :'server_flag' => :'server_flag',
    :'street_address' => :'street_address'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 476

def self.build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  attributes = attributes.transform_keys(&:to_sym)
  transformed_hash = {}
  openapi_types.each_pair do |key, type|
    if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = nil
    elsif type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[attribute_map[key]].is_a?(Array)
        transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
      end
    elsif !attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
    end
  end
  new(transformed_hash)
end

.openapi_nullableObject

List of attributes with nullable: true



197
198
199
200
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 197

def self.openapi_nullable
  Set.new([
  ])
end

.openapi_typesObject

Attribute type mapping.



152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 152

def self.openapi_types
  {
    :'acme_enabled' => :'Boolean',
    :'allow_any_name' => :'Boolean',
    :'allow_copy_ext_from_csr' => :'Boolean',
    :'allow_subdomains' => :'Boolean',
    :'allowed_domains_list' => :'Array<String>',
    :'allowed_extra_extensions' => :'Hash<String, Array<String>>',
    :'allowed_ip_sans' => :'Array<String>',
    :'allowed_uri_sans' => :'Array<String>',
    :'auto_renew_certificate' => :'Boolean',
    :'basic_constraints_valid_for_non_ca' => :'Boolean',
    :'certificate_authority_mode' => :'String',
    :'client_flag' => :'Boolean',
    :'code_signing_flag' => :'Boolean',
    :'country' => :'Array<String>',
    :'create_private_crl' => :'Boolean',
    :'create_public_crl' => :'Boolean',
    :'destination_path' => :'String',
    :'enforce_hostnames' => :'Boolean',
    :'expiration_events' => :'Array<CertificateExpirationEvent>',
    :'gw_cluster_id' => :'Integer',
    :'gw_cluster_url' => :'String',
    :'is_ca' => :'Boolean',
    :'key_bits' => :'Integer',
    :'key_type' => :'String',
    :'key_usage_list' => :'Array<String>',
    :'locality' => :'Array<String>',
    :'max_path_len' => :'Integer',
    :'non_critical_key_usage' => :'Boolean',
    :'not_before_duration' => :'Integer',
    :'organization_list' => :'Array<String>',
    :'organization_unit_list' => :'Array<String>',
    :'pki_issuer_type' => :'String',
    :'postal_code' => :'Array<String>',
    :'protect_generated_certificates' => :'Boolean',
    :'province' => :'Array<String>',
    :'renew_before_expiration_in_days' => :'Integer',
    :'require_cn' => :'Boolean',
    :'server_flag' => :'Boolean',
    :'street_address' => :'Array<String>'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 417

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      acme_enabled == o.acme_enabled &&
      allow_any_name == o.allow_any_name &&
      allow_copy_ext_from_csr == o.allow_copy_ext_from_csr &&
      allow_subdomains == o.allow_subdomains &&
      allowed_domains_list == o.allowed_domains_list &&
      allowed_extra_extensions == o.allowed_extra_extensions &&
      allowed_ip_sans == o.allowed_ip_sans &&
      allowed_uri_sans == o.allowed_uri_sans &&
      auto_renew_certificate == o.auto_renew_certificate &&
      basic_constraints_valid_for_non_ca == o.basic_constraints_valid_for_non_ca &&
      certificate_authority_mode == o.certificate_authority_mode &&
      client_flag == o.client_flag &&
      code_signing_flag == o.code_signing_flag &&
      country == o.country &&
      create_private_crl == o.create_private_crl &&
      create_public_crl == o.create_public_crl &&
      destination_path == o.destination_path &&
      enforce_hostnames == o.enforce_hostnames &&
      expiration_events == o.expiration_events &&
      gw_cluster_id == o.gw_cluster_id &&
      gw_cluster_url == o.gw_cluster_url &&
      is_ca == o.is_ca &&
      key_bits == o.key_bits &&
      key_type == o.key_type &&
      key_usage_list == o.key_usage_list &&
      locality == o.locality &&
      max_path_len == o.max_path_len &&
      non_critical_key_usage == o.non_critical_key_usage &&
      not_before_duration == o.not_before_duration &&
      organization_list == o.organization_list &&
      organization_unit_list == o.organization_unit_list &&
      pki_issuer_type == o.pki_issuer_type &&
      postal_code == o.postal_code &&
      protect_generated_certificates == o.protect_generated_certificates &&
      province == o.province &&
      renew_before_expiration_in_days == o.renew_before_expiration_in_days &&
      require_cn == o.require_cn &&
      server_flag == o.server_flag &&
      street_address == o.street_address
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



571
572
573
574
575
576
577
578
579
580
581
582
583
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 571

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


463
464
465
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 463

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



469
470
471
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 469

def hash
  [acme_enabled, allow_any_name, allow_copy_ext_from_csr, allow_subdomains, allowed_domains_list, allowed_extra_extensions, allowed_ip_sans, allowed_uri_sans, auto_renew_certificate, basic_constraints_valid_for_non_ca, certificate_authority_mode, client_flag, code_signing_flag, country, create_private_crl, create_public_crl, destination_path, enforce_hostnames, expiration_events, gw_cluster_id, gw_cluster_url, is_ca, key_bits, key_type, key_usage_list, locality, max_path_len, non_critical_key_usage, not_before_duration, organization_list, organization_unit_list, pki_issuer_type, postal_code, protect_generated_certificates, province, renew_before_expiration_in_days, require_cn, server_flag, street_address].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



402
403
404
405
406
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 402

def list_invalid_properties
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



547
548
549
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 547

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



553
554
555
556
557
558
559
560
561
562
563
564
565
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 553

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    if value.nil?
      is_nullable = self.class.openapi_nullable.include?(attr)
      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
    end

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



541
542
543
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 541

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



410
411
412
413
# File 'lib/akeyless/models/pki_certificate_issue_details.rb', line 410

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  true
end