src.index.outputs.GetPropertyHostnamesHostnameCertStatus.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai.outputs
final case class GetPropertyHostnamesHostnameCertStatus private(
hostname: String,
productionStatus: String,
stagingStatus: String,
target: String
)
object GetPropertyHostnamesHostnameCertStatus :
given decoder(using besom.types.Context): besom.types.Decoder[GetPropertyHostnamesHostnameCertStatus] =
besom.internal.Decoder.derived[GetPropertyHostnamesHostnameCertStatus]
given outputOps: {} with
extension(output: besom.types.Output[GetPropertyHostnamesHostnameCertStatus])
def hostname : besom.types.Output[String] = output.map(_.hostname)
def productionStatus : besom.types.Output[String] = output.map(_.productionStatus)
def stagingStatus : besom.types.Output[String] = output.map(_.stagingStatus)
def target : besom.types.Output[String] = output.map(_.target)
given optionOutputOps: {} with
extension(output: besom.types.Output[scala.Option[GetPropertyHostnamesHostnameCertStatus]])
def hostname : besom.types.Output[scala.Option[String]] = output.map(_.map(_.hostname))
def productionStatus : besom.types.Output[scala.Option[String]] = output.map(_.map(_.productionStatus))
def stagingStatus : besom.types.Output[scala.Option[String]] = output.map(_.map(_.stagingStatus))
def target : besom.types.Output[scala.Option[String]] = output.map(_.map(_.target))