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

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

The newest version!
package besom.api.akamai

final case class GetBotmanCustomClientArgs private(
  configId: besom.types.Output[Int],
  customClientId: besom.types.Output[scala.Option[String]]
)

object GetBotmanCustomClientArgs:
  def apply(
    configId: besom.types.Input[Int],
    customClientId: besom.types.Input.Optional[String] = scala.None
  )(using besom.types.Context): GetBotmanCustomClientArgs =
    new GetBotmanCustomClientArgs(
      configId = configId.asOutput(isSecret = false),
      customClientId = customClientId.asOptionOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy