Class: Google::Apis::RedisV1beta1::TlsCertificate

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

Overview

TlsCertificate Resource

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TlsCertificate

Returns a new instance of TlsCertificate.



2417
2418
2419
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2417

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

Instance Attribute Details

#certString

PEM representation. Corresponds to the JSON property cert

Returns:

  • (String)


2393
2394
2395
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2393

def cert
  @cert
end

#create_timeString

Output only. The time when the certificate was created in RFC 3339 format, for example 2020-05-18T00:00:00.094Z. Corresponds to the JSON property createTime

Returns:

  • (String)


2399
2400
2401
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2399

def create_time
  @create_time
end

#expire_timeString

Output only. The time when the certificate expires in RFC 3339 format, for example 2020-05-18T00:00:00.094Z. Corresponds to the JSON property expireTime

Returns:

  • (String)


2405
2406
2407
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2405

def expire_time
  @expire_time
end

#serial_numberString

Serial number, as extracted from the certificate. Corresponds to the JSON property serialNumber

Returns:

  • (String)


2410
2411
2412
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2410

def serial_number
  @serial_number
end

#sha1_fingerprintString

Sha1 Fingerprint of the certificate. Corresponds to the JSON property sha1Fingerprint

Returns:

  • (String)


2415
2416
2417
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2415

def sha1_fingerprint
  @sha1_fingerprint
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2422
2423
2424
2425
2426
2427
2428
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2422

def update!(**args)
  @cert = args[:cert] if args.key?(:cert)
  @create_time = args[:create_time] if args.key?(:create_time)
  @expire_time = args[:expire_time] if args.key?(:expire_time)
  @serial_number = args[:serial_number] if args.key?(:serial_number)
  @sha1_fingerprint = args[:sha1_fingerprint] if args.key?(:sha1_fingerprint)
end