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

src.index.GetDatastreamsArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai

final case class GetDatastreamsArgs private(
  groupId: besom.types.Output[scala.Option[Int]]
)

object GetDatastreamsArgs:
  def apply(
    groupId: besom.types.Input.Optional[Int] = scala.None
  )(using besom.types.Context): GetDatastreamsArgs =
    new GetDatastreamsArgs(
      groupId = groupId.asOptionOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy