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