Certificate constructor

Certificate({
  1. CertificateDescription? certificateDescription,
  2. String? certificateTemplate,
  3. CertificateConfig? config,
  4. String? createTime,
  5. String? issuerCertificateAuthority,
  6. Map<String, String>? labels,
  7. String? lifetime,
  8. String? name,
  9. String? pemCertificate,
  10. List<String>? pemCertificateChain,
  11. String? pemCsr,
  12. RevocationDetails? revocationDetails,
  13. String? subjectMode,
  14. String? updateTime,
})

Implementation

Certificate({
  this.certificateDescription,
  this.certificateTemplate,
  this.config,
  this.createTime,
  this.issuerCertificateAuthority,
  this.labels,
  this.lifetime,
  this.name,
  this.pemCertificate,
  this.pemCertificateChain,
  this.pemCsr,
  this.revocationDetails,
  this.subjectMode,
  this.updateTime,
});