src.index.GetBotmanRecategorizedAkamaiDefinedBotArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai
final case class GetBotmanRecategorizedAkamaiDefinedBotArgs private(
botId: besom.types.Output[scala.Option[String]],
configId: besom.types.Output[Int]
)
object GetBotmanRecategorizedAkamaiDefinedBotArgs:
def apply(
botId: besom.types.Input.Optional[String] = scala.None,
configId: besom.types.Input[Int]
)(using besom.types.Context): GetBotmanRecategorizedAkamaiDefinedBotArgs =
new GetBotmanRecategorizedAkamaiDefinedBotArgs(
botId = botId.asOptionOutput(isSecret = false),
configId = configId.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetBotmanRecategorizedAkamaiDefinedBotArgs] =
besom.internal.Encoder.derived[GetBotmanRecategorizedAkamaiDefinedBotArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetBotmanRecategorizedAkamaiDefinedBotArgs] =
besom.internal.ArgsEncoder.derived[GetBotmanRecategorizedAkamaiDefinedBotArgs]