All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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]






© 2015 - 2024 Weber Informatics LLC | Privacy Policy