Certificate constructor

Certificate({
  1. String? createTime,
  2. String? description,
  3. String? expireTime,
  4. Map<String, String>? labels,
  5. ManagedCertificate? managed,
  6. String? name,
  7. String? pemCertificate,
  8. List<String>? sanDnsnames,
  9. String? scope,
  10. SelfManagedCertificate? selfManaged,
  11. String? updateTime,
})

Implementation

Certificate({
  this.createTime,
  this.description,
  this.expireTime,
  this.labels,
  this.managed,
  this.name,
  this.pemCertificate,
  this.sanDnsnames,
  this.scope,
  this.selfManaged,
  this.updateTime,
});