Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1CertInfo
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1CertInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
X.509 certificate as defined in RFC 5280.
Instance Attribute Summary collapse
-
#basic_constraints ⇒ String
X.509 basic constraints extension.
-
#expiry_date ⇒ Fixnum
X.509
notAfter
validity period in milliseconds since epoch. -
#is_valid ⇒ String
Flag that specifies whether the certificate is valid.
-
#issuer ⇒ String
X.509 issuer.
-
#public_key ⇒ String
Public key component of the X.509 subject public key info.
-
#serial_number ⇒ String
X.509 serial number.
-
#sig_alg_name ⇒ String
X.509 signatureAlgorithm.
-
#subject ⇒ String
X.509 subject.
-
#subject_alternative_names ⇒ Array<String>
X.509 subject alternative names (SANs) extension.
-
#valid_from ⇒ Fixnum
X.509
notBefore
validity period in milliseconds since epoch. -
#version ⇒ Fixnum
X.509 version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1CertInfo
constructor
A new instance of GoogleCloudApigeeV1CertInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1CertInfo
Returns a new instance of GoogleCloudApigeeV1CertInfo.
2353 2354 2355 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2353 def initialize(**args) update!(**args) end |
Instance Attribute Details
#basic_constraints ⇒ String
X.509 basic constraints extension.
Corresponds to the JSON property basicConstraints
2300 2301 2302 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2300 def basic_constraints @basic_constraints end |
#expiry_date ⇒ Fixnum
X.509 notAfter
validity period in milliseconds since epoch.
Corresponds to the JSON property expiryDate
2305 2306 2307 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2305 def expiry_date @expiry_date end |
#is_valid ⇒ String
Flag that specifies whether the certificate is valid. Flag is set to Yes
if
the certificate is valid, No
if expired, or Not yet
if not yet valid.
Corresponds to the JSON property isValid
2311 2312 2313 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2311 def is_valid @is_valid end |
#issuer ⇒ String
X.509 issuer.
Corresponds to the JSON property issuer
2316 2317 2318 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2316 def issuer @issuer end |
#public_key ⇒ String
Public key component of the X.509 subject public key info.
Corresponds to the JSON property publicKey
2321 2322 2323 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2321 def public_key @public_key end |
#serial_number ⇒ String
X.509 serial number.
Corresponds to the JSON property serialNumber
2326 2327 2328 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2326 def serial_number @serial_number end |
#sig_alg_name ⇒ String
X.509 signatureAlgorithm.
Corresponds to the JSON property sigAlgName
2331 2332 2333 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2331 def sig_alg_name @sig_alg_name end |
#subject ⇒ String
X.509 subject.
Corresponds to the JSON property subject
2336 2337 2338 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2336 def subject @subject end |
#subject_alternative_names ⇒ Array<String>
X.509 subject alternative names (SANs) extension.
Corresponds to the JSON property subjectAlternativeNames
2341 2342 2343 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2341 def subject_alternative_names @subject_alternative_names end |
#valid_from ⇒ Fixnum
X.509 notBefore
validity period in milliseconds since epoch.
Corresponds to the JSON property validFrom
2346 2347 2348 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2346 def valid_from @valid_from end |
#version ⇒ Fixnum
X.509 version.
Corresponds to the JSON property version
2351 2352 2353 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2351 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2358 def update!(**args) @basic_constraints = args[:basic_constraints] if args.key?(:basic_constraints) @expiry_date = args[:expiry_date] if args.key?(:expiry_date) @is_valid = args[:is_valid] if args.key?(:is_valid) @issuer = args[:issuer] if args.key?(:issuer) @public_key = args[:public_key] if args.key?(:public_key) @serial_number = args[:serial_number] if args.key?(:serial_number) @sig_alg_name = args[:sig_alg_name] if args.key?(:sig_alg_name) @subject = args[:subject] if args.key?(:subject) @subject_alternative_names = args[:subject_alternative_names] if args.key?(:subject_alternative_names) @valid_from = args[:valid_from] if args.key?(:valid_from) @version = args[:version] if args.key?(:version) end |