Class: Google::Apis::PrivatecaV1beta1::SubjectDescription
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1beta1::SubjectDescription
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/privateca_v1beta1/classes.rb,
generated/google/apis/privateca_v1beta1/representations.rb,
generated/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
-
#common_name ⇒ String
The "common name" of the distinguished name.
-
#hex_serial_number ⇒ String
The serial number encoded in lowercase hexadecimal.
-
#lifetime ⇒ String
For convenience, the actual lifetime of an issued certificate.
-
#not_after_time ⇒ String
The time at which the certificate expires.
-
#not_before_time ⇒ String
The time at which the certificate becomes valid.
-
#subject ⇒ Google::Apis::PrivatecaV1beta1::Subject
Subject describes parts of a distinguished name that, in turn, describes the subject of the certificate.
-
#subject_alt_name ⇒ Google::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).
Instance Method Summary collapse
-
#initialize(**args) ⇒ SubjectDescription
constructor
A new instance of SubjectDescription.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SubjectDescription
Returns a new instance of SubjectDescription.
2323 2324 2325 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2323 def initialize(**args) update!(**args) end |
Instance Attribute Details
#common_name ⇒ String
The "common name" of the distinguished name.
Corresponds to the JSON property commonName
2287 2288 2289 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2287 def common_name @common_name end |
#hex_serial_number ⇒ String
The serial number encoded in lowercase hexadecimal.
Corresponds to the JSON property hexSerialNumber
2292 2293 2294 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2292 def hex_serial_number @hex_serial_number end |
#lifetime ⇒ String
For convenience, the actual lifetime of an issued certificate. Corresponds to '
not_after_time' - 'not_before_time'.
Corresponds to the JSON property lifetime
2298 2299 2300 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2298 def lifetime @lifetime end |
#not_after_time ⇒ String
The time at which the certificate expires.
Corresponds to the JSON property notAfterTime
2303 2304 2305 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2303 def not_after_time @not_after_time end |
#not_before_time ⇒ String
The time at which the certificate becomes valid.
Corresponds to the JSON property notBeforeTime
2308 2309 2310 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2308 def not_before_time @not_before_time end |
#subject ⇒ Google::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
2314 2315 2316 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2314 def subject @subject end |
#subject_alt_name ⇒ Google::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
2321 2322 2323 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2321 def subject_alt_name @subject_alt_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2328 2329 2330 2331 2332 2333 2334 2335 2336 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 2328 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 |