All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.spinnaker.keel.lemur.LemurCertificate.kt Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
package com.netflix.spinnaker.keel.lemur

import java.time.Instant

data class LemurCertificateResponse(
  val items: List
)

data class LemurCertificate(
  val commonName: String,
  val name: String,
  val active: Boolean,
  val validityStart: Instant,
  val validityEnd: Instant,
  val replacedBy: List = emptyList(),
  val replaces: List = emptyList()
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy