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

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

The newest version!
package besom.api.akamai

final case class GetAppSecConfigurationVersionArgs private(
  configId: besom.types.Output[Int],
  version: besom.types.Output[scala.Option[Int]]
)

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

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy