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