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

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

The newest version!
package besom.api.akamai

final case class GetAppSecExportConfigurationArgs private(
  configId: besom.types.Output[Int],
  searches: besom.types.Output[scala.Option[scala.collection.immutable.List[String]]],
  version: besom.types.Output[Int]
)

object GetAppSecExportConfigurationArgs:
  def apply(
    configId: besom.types.Input[Int],
    searches: besom.types.Input.Optional[scala.collection.immutable.List[besom.types.Input[String]]] = scala.None,
    version: besom.types.Input[Int]
  )(using besom.types.Context): GetAppSecExportConfigurationArgs =
    new GetAppSecExportConfigurationArgs(
      configId = configId.asOutput(isSecret = false),
      searches = searches.asOptionOutput(isSecret = false),
      version = version.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy