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