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