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