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

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

The newest version!
package besom.api.akamai

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

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

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy