src.index.GetCloudwrapperPropertiesResult.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai
final case class GetCloudwrapperPropertiesResult private(
contractIds: scala.Option[scala.collection.immutable.List[String]],
id: String,
properties: scala.Option[scala.collection.immutable.List[besom.api.akamai.outputs.GetCloudwrapperPropertiesProperty]],
unused: scala.Option[Boolean]
)
object GetCloudwrapperPropertiesResult :
given decoder(using besom.types.Context): besom.types.Decoder[GetCloudwrapperPropertiesResult] =
besom.internal.Decoder.derived[GetCloudwrapperPropertiesResult]
given outputOps: {} with
extension(output: besom.types.Output[GetCloudwrapperPropertiesResult])
def contractIds : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.map(_.contractIds)
def id : besom.types.Output[String] = output.map(_.id)
def properties : besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.akamai.outputs.GetCloudwrapperPropertiesProperty]]] = output.map(_.properties)
def unused : besom.types.Output[scala.Option[Boolean]] = output.map(_.unused)
given optionOutputOps: {} with
extension(output: besom.types.Output[scala.Option[GetCloudwrapperPropertiesResult]])
def contractIds : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.map(_.flatMap(_.contractIds))
def id : besom.types.Output[scala.Option[String]] = output.map(_.map(_.id))
def properties : besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.akamai.outputs.GetCloudwrapperPropertiesProperty]]] = output.map(_.flatMap(_.properties))
def unused : besom.types.Output[scala.Option[Boolean]] = output.map(_.flatMap(_.unused))