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

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

The newest version!
package besom.api.akamai

final case class GetBotmanCustomDenyActionArgs private(
  actionId: besom.types.Output[scala.Option[String]],
  configId: besom.types.Output[Int]
)

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

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy