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

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

The newest version!
package besom.api.akamai

final case class AppsecPenaltyBoxConditionsArgs private(
  configId: besom.types.Output[Int],
  penaltyBoxConditions: besom.types.Output[String],
  securityPolicyId: besom.types.Output[String]
)

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

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy