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