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

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

The newest version!
package besom.api.akamai

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

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

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy