src.index.outputs.GetCloudwrapperConfigurationsConfigurationLocation.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai.outputs
final case class GetCloudwrapperConfigurationsConfigurationLocation private(
capacity: besom.api.akamai.outputs.GetCloudwrapperConfigurationsConfigurationLocationCapacity,
comments: String,
mapName: String,
trafficTypeId: Int
)
object GetCloudwrapperConfigurationsConfigurationLocation :
given decoder(using besom.types.Context): besom.types.Decoder[GetCloudwrapperConfigurationsConfigurationLocation] =
besom.internal.Decoder.derived[GetCloudwrapperConfigurationsConfigurationLocation]
given outputOps: {} with
extension(output: besom.types.Output[GetCloudwrapperConfigurationsConfigurationLocation])
def capacity : besom.types.Output[besom.api.akamai.outputs.GetCloudwrapperConfigurationsConfigurationLocationCapacity] = 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[GetCloudwrapperConfigurationsConfigurationLocation]])
def capacity : besom.types.Output[scala.Option[besom.api.akamai.outputs.GetCloudwrapperConfigurationsConfigurationLocationCapacity]] = 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))