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]