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

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

The newest version!
package besom.api.akamai

final case class AppSecSelectedHostnamesArgs private(
  configId: besom.types.Output[Int],
  hostnames: besom.types.Output[scala.collection.immutable.List[String]],
  mode: besom.types.Output[String]
)

object AppSecSelectedHostnamesArgs:
  def apply(
    configId: besom.types.Input[Int],
    hostnames: besom.types.Input[scala.collection.immutable.List[besom.types.Input[String]]],
    mode: besom.types.Input[String]
  )(using besom.types.Context): AppSecSelectedHostnamesArgs =
    new AppSecSelectedHostnamesArgs(
      configId = configId.asOutput(isSecret = false),
      hostnames = hostnames.asOutput(isSecret = false),
      mode = mode.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy