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