src.index.outputs.GetPropertyIncludesInclude.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai.outputs
final case class GetPropertyIncludesInclude private(
id: String,
latestVersion: Int,
name: String,
productionVersion: String,
stagingVersion: String,
`type`: String
)
object GetPropertyIncludesInclude :
given decoder(using besom.types.Context): besom.types.Decoder[GetPropertyIncludesInclude] =
besom.internal.Decoder.derived[GetPropertyIncludesInclude]
given outputOps: {} with
extension(output: besom.types.Output[GetPropertyIncludesInclude])
def id : besom.types.Output[String] = output.map(_.id)
def latestVersion : besom.types.Output[Int] = output.map(_.latestVersion)
def name : besom.types.Output[String] = output.map(_.name)
def productionVersion : besom.types.Output[String] = output.map(_.productionVersion)
def stagingVersion : besom.types.Output[String] = output.map(_.stagingVersion)
def `type` : besom.types.Output[String] = output.map(_.`type`)
given optionOutputOps: {} with
extension(output: besom.types.Output[scala.Option[GetPropertyIncludesInclude]])
def id : besom.types.Output[scala.Option[String]] = output.map(_.map(_.id))
def latestVersion : besom.types.Output[scala.Option[Int]] = output.map(_.map(_.latestVersion))
def name : besom.types.Output[scala.Option[String]] = output.map(_.map(_.name))
def productionVersion : besom.types.Output[scala.Option[String]] = output.map(_.map(_.productionVersion))
def stagingVersion : besom.types.Output[scala.Option[String]] = output.map(_.map(_.stagingVersion))
def `type` : besom.types.Output[scala.Option[String]] = output.map(_.map(_.`type`))