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

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

The newest version!
package besom.api.akamai

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

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

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy