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]