class Google::Apis::ManagedidentitiesV1beta1::Certificate

Certificate used to configure LDAPS.

Attributes

expire_time[RW]

The certificate expire time. Corresponds to the JSON property `expireTime` @return [String]

issuing_certificate[RW]

Certificate used to configure LDAPS. Corresponds to the JSON property `issuingCertificate` @return [Google::Apis::ManagedidentitiesV1beta1::Certificate]

subject[RW]

The certificate subject. Corresponds to the JSON property `subject` @return [String]

subject_alternative_name[RW]

The additional hostnames for the domain. Corresponds to the JSON property `subjectAlternativeName` @return [Array<String>]

thumbprint[RW]

The certificate thumbprint which uniquely identifies the certificate. Corresponds to the JSON property `thumbprint` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/managedidentities_v1beta1/classes.rb, line 158
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/managedidentities_v1beta1/classes.rb, line 163
def update!(**args)
  @expire_time = args[:expire_time] if args.key?(:expire_time)
  @issuing_certificate = args[:issuing_certificate] if args.key?(:issuing_certificate)
  @subject = args[:subject] if args.key?(:subject)
  @subject_alternative_name = args[:subject_alternative_name] if args.key?(:subject_alternative_name)
  @thumbprint = args[:thumbprint] if args.key?(:thumbprint)
end