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