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

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

The newest version!
package besom.api.akamai

final case class AppsecAdvancedSettingsRequestBodyArgs private(
  configId: besom.types.Output[Int],
  requestBodyInspectionLimit: besom.types.Output[String],
  securityPolicyId: besom.types.Output[scala.Option[String]]
)

object AppsecAdvancedSettingsRequestBodyArgs:
  def apply(
    configId: besom.types.Input[Int],
    requestBodyInspectionLimit: besom.types.Input[String],
    securityPolicyId: besom.types.Input.Optional[String] = scala.None
  )(using besom.types.Context): AppsecAdvancedSettingsRequestBodyArgs =
    new AppsecAdvancedSettingsRequestBodyArgs(
      configId = configId.asOutput(isSecret = false),
      requestBodyInspectionLimit = requestBodyInspectionLimit.asOutput(isSecret = false),
      securityPolicyId = securityPolicyId.asOptionOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy