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