All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.index.inputs.GtmAsmapAssignmentArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai.inputs

final case class GtmAsmapAssignmentArgs private(
  asNumbers: besom.types.Output[scala.collection.immutable.List[Int]],
  datacenterId: besom.types.Output[Int],
  nickname: besom.types.Output[String]
)

object GtmAsmapAssignmentArgs:
  def apply(
    asNumbers: besom.types.Input[scala.collection.immutable.List[besom.types.Input[Int]]],
    datacenterId: besom.types.Input[Int],
    nickname: besom.types.Input[String]
  )(using besom.types.Context): GtmAsmapAssignmentArgs =
    new GtmAsmapAssignmentArgs(
      asNumbers = asNumbers.asOutput(isSecret = false),
      datacenterId = datacenterId.asOutput(isSecret = false),
      nickname = nickname.asOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[GtmAsmapAssignmentArgs] =
    besom.internal.Encoder.derived[GtmAsmapAssignmentArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GtmAsmapAssignmentArgs] =
    besom.internal.ArgsEncoder.derived[GtmAsmapAssignmentArgs]






© 2015 - 2024 Weber Informatics LLC | Privacy Policy