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