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

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

The newest version!
package besom.api.akamai

final case class GetAppSecSiemSettingsArgs private(
  configId: besom.types.Output[Int]
)

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

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy