Class: Google::Apis::PrivatecaV1beta1::SubjectDescription

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/privateca_v1beta1/classes.rb,
lib/google/apis/privateca_v1beta1/representations.rb,
lib/google/apis/privateca_v1beta1/representations.rb

Overview

These values describe fields in an issued X.509 certificate such as the distinguished name, subject alternative names, serial number, and lifetime.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SubjectDescription

Returns a new instance of SubjectDescription.



3437
3438
3439
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 3437

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#common_nameString

The "common name" of the distinguished name. Corresponds to the JSON property commonName

Returns:

  • (String)


3401
3402
3403
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 3401

def common_name
  @common_name
end

#hex_serial_numberString

The serial number encoded in lowercase hexadecimal. Corresponds to the JSON property hexSerialNumber

Returns:

  • (String)


3406
3407
3408
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 3406

def hex_serial_number
  @hex_serial_number
end

#lifetimeString

For convenience, the actual lifetime of an issued certificate. Corresponds to ' not_after_time' - 'not_before_time'. Corresponds to the JSON property lifetime

Returns:

  • (String)


3412
3413
3414
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 3412

def lifetime
  @lifetime
end

#not_after_timeString

The time at which the certificate expires. Corresponds to the JSON property notAfterTime

Returns:

  • (String)


3417
3418
3419
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 3417

def not_after_time
  @not_after_time
end

#not_before_timeString

The time at which the certificate becomes valid. Corresponds to the JSON property notBeforeTime

Returns:

  • (String)


3422
3423
3424
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 3422

def not_before_time
  @not_before_time
end

#subjectGoogle::Apis::PrivatecaV1beta1::Subject

Subject describes parts of a distinguished name that, in turn, describes the subject of the certificate. Corresponds to the JSON property subject



3428
3429
3430
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 3428

def subject
  @subject
end

#subject_alt_nameGoogle::Apis::PrivatecaV1beta1::SubjectAltNames

SubjectAltNames corresponds to a more modern way of listing what the asserted identity is in a certificate (i.e., compared to the "common name" in the distinguished name). Corresponds to the JSON property subjectAltName



3435
3436
3437
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 3435

def subject_alt_name
  @subject_alt_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3442
3443
3444
3445
3446
3447
3448
3449
3450
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 3442

def update!(**args)
  @common_name = args[:common_name] if args.key?(:common_name)
  @hex_serial_number = args[:hex_serial_number] if args.key?(:hex_serial_number)
  @lifetime = args[:lifetime] if args.key?(:lifetime)
  @not_after_time = args[:not_after_time] if args.key?(:not_after_time)
  @not_before_time = args[:not_before_time] if args.key?(:not_before_time)
  @subject = args[:subject] if args.key?(:subject)
  @subject_alt_name = args[:subject_alt_name] if args.key?(:subject_alt_name)
end