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

src.index.AppSecCustomDenyArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai

final case class AppSecCustomDenyArgs private(
  configId: besom.types.Output[Int],
  customDeny: besom.types.Output[String]
)

object AppSecCustomDenyArgs:
  def apply(
    configId: besom.types.Input[Int],
    customDeny: besom.types.Input[String]
  )(using besom.types.Context): AppSecCustomDenyArgs =
    new AppSecCustomDenyArgs(
      configId = configId.asOutput(isSecret = false),
      customDeny = customDeny.asOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[AppSecCustomDenyArgs] =
    besom.internal.Encoder.derived[AppSecCustomDenyArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[AppSecCustomDenyArgs] =
    besom.internal.ArgsEncoder.derived[AppSecCustomDenyArgs]






© 2015 - 2024 Weber Informatics LLC | Privacy Policy